Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 1 | //===- GVN.cpp - Eliminate redundant values and loads ---------------------===// |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This pass performs global value numbering to eliminate fully redundant |
| 11 | // instructions. It also performs simple dead load elimination. |
| 12 | // |
Matthijs Kooijman | 845f524 | 2008-06-05 07:55:49 +0000 | [diff] [blame] | 13 | // Note that this pass does the value numbering itself, it does not use the |
| 14 | // ValueNumbering analysis passes. |
| 15 | // |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 16 | //===----------------------------------------------------------------------===// |
| 17 | |
| 18 | #define DEBUG_TYPE "gvn" |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 19 | #include "llvm/Transforms/Scalar.h" |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 20 | #include "llvm/BasicBlock.h" |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 21 | #include "llvm/Constants.h" |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 22 | #include "llvm/DerivedTypes.h" |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 23 | #include "llvm/Function.h" |
| 24 | #include "llvm/Instructions.h" |
| 25 | #include "llvm/Value.h" |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 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" |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 31 | #include "llvm/Analysis/Dominators.h" |
| 32 | #include "llvm/Analysis/AliasAnalysis.h" |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 33 | #include "llvm/Analysis/MemoryDependenceAnalysis.h" |
| 34 | #include "llvm/Support/CFG.h" |
Owen Anderson | aa0b634 | 2008-06-19 19:57:25 +0000 | [diff] [blame] | 35 | #include "llvm/Support/CommandLine.h" |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 36 | #include "llvm/Support/Compiler.h" |
Chris Lattner | 9f8a6a7 | 2008-03-29 04:36:18 +0000 | [diff] [blame] | 37 | #include "llvm/Support/Debug.h" |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 38 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Duncan Sands | 4520dd2 | 2008-10-08 07:23:46 +0000 | [diff] [blame] | 39 | #include <cstdio> |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 40 | using namespace llvm; |
| 41 | |
Chris Lattner | d27290d | 2008-03-22 04:13:49 +0000 | [diff] [blame] | 42 | STATISTIC(NumGVNInstr, "Number of instructions deleted"); |
| 43 | STATISTIC(NumGVNLoad, "Number of loads deleted"); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 44 | STATISTIC(NumGVNPRE, "Number of instructions PRE'd"); |
Owen Anderson | 961edc8 | 2008-07-15 16:28:06 +0000 | [diff] [blame] | 45 | STATISTIC(NumGVNBlocks, "Number of blocks merged"); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 46 | STATISTIC(NumPRELoad, "Number of loads PRE'd"); |
Chris Lattner | d27290d | 2008-03-22 04:13:49 +0000 | [diff] [blame] | 47 | |
Evan Cheng | 88d11c0 | 2008-06-20 01:01:07 +0000 | [diff] [blame] | 48 | static cl::opt<bool> EnablePRE("enable-pre", |
Owen Anderson | c2b856e | 2008-07-17 19:41:00 +0000 | [diff] [blame] | 49 | cl::init(true), cl::Hidden); |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 50 | cl::opt<bool> EnableLoadPRE("enable-load-pre"/*, cl::init(true)*/); |
Owen Anderson | aa0b634 | 2008-06-19 19:57:25 +0000 | [diff] [blame] | 51 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 52 | //===----------------------------------------------------------------------===// |
| 53 | // ValueTable Class |
| 54 | //===----------------------------------------------------------------------===// |
| 55 | |
| 56 | /// This class holds the mapping between values and value numbers. It is used |
| 57 | /// as an efficient mechanism to determine the expression-wise equivalence of |
| 58 | /// two values. |
| 59 | namespace { |
| 60 | struct VISIBILITY_HIDDEN Expression { |
| 61 | enum ExpressionOpcode { ADD, SUB, MUL, UDIV, SDIV, FDIV, UREM, SREM, |
| 62 | FREM, SHL, LSHR, ASHR, AND, OR, XOR, ICMPEQ, |
| 63 | ICMPNE, ICMPUGT, ICMPUGE, ICMPULT, ICMPULE, |
| 64 | ICMPSGT, ICMPSGE, ICMPSLT, ICMPSLE, FCMPOEQ, |
| 65 | FCMPOGT, FCMPOGE, FCMPOLT, FCMPOLE, FCMPONE, |
| 66 | FCMPORD, FCMPUNO, FCMPUEQ, FCMPUGT, FCMPUGE, |
| 67 | FCMPULT, FCMPULE, FCMPUNE, EXTRACT, INSERT, |
| 68 | SHUFFLE, SELECT, TRUNC, ZEXT, SEXT, FPTOUI, |
| 69 | FPTOSI, UITOFP, SITOFP, FPTRUNC, FPEXT, |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 70 | PTRTOINT, INTTOPTR, BITCAST, GEP, CALL, CONSTANT, |
Owen Anderson | 3cd8eb3 | 2008-06-19 17:25:39 +0000 | [diff] [blame] | 71 | EMPTY, TOMBSTONE }; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 72 | |
| 73 | ExpressionOpcode opcode; |
| 74 | const Type* type; |
| 75 | uint32_t firstVN; |
| 76 | uint32_t secondVN; |
| 77 | uint32_t thirdVN; |
| 78 | SmallVector<uint32_t, 4> varargs; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 79 | Value* function; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 80 | |
| 81 | Expression() { } |
| 82 | Expression(ExpressionOpcode o) : opcode(o) { } |
| 83 | |
| 84 | bool operator==(const Expression &other) const { |
| 85 | if (opcode != other.opcode) |
| 86 | return false; |
| 87 | else if (opcode == EMPTY || opcode == TOMBSTONE) |
| 88 | return true; |
| 89 | else if (type != other.type) |
| 90 | return false; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 91 | else if (function != other.function) |
| 92 | return false; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 93 | else if (firstVN != other.firstVN) |
| 94 | return false; |
| 95 | else if (secondVN != other.secondVN) |
| 96 | return false; |
| 97 | else if (thirdVN != other.thirdVN) |
| 98 | return false; |
| 99 | else { |
| 100 | if (varargs.size() != other.varargs.size()) |
| 101 | return false; |
| 102 | |
| 103 | for (size_t i = 0; i < varargs.size(); ++i) |
| 104 | if (varargs[i] != other.varargs[i]) |
| 105 | return false; |
| 106 | |
| 107 | return true; |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | bool operator!=(const Expression &other) const { |
| 112 | if (opcode != other.opcode) |
| 113 | return true; |
| 114 | else if (opcode == EMPTY || opcode == TOMBSTONE) |
| 115 | return false; |
| 116 | else if (type != other.type) |
| 117 | return true; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 118 | else if (function != other.function) |
| 119 | return true; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 120 | else if (firstVN != other.firstVN) |
| 121 | return true; |
| 122 | else if (secondVN != other.secondVN) |
| 123 | return true; |
| 124 | else if (thirdVN != other.thirdVN) |
| 125 | return true; |
| 126 | else { |
| 127 | if (varargs.size() != other.varargs.size()) |
| 128 | return true; |
| 129 | |
| 130 | for (size_t i = 0; i < varargs.size(); ++i) |
| 131 | if (varargs[i] != other.varargs[i]) |
| 132 | return true; |
| 133 | |
| 134 | return false; |
| 135 | } |
| 136 | } |
| 137 | }; |
| 138 | |
| 139 | class VISIBILITY_HIDDEN ValueTable { |
| 140 | private: |
| 141 | DenseMap<Value*, uint32_t> valueNumbering; |
| 142 | DenseMap<Expression, uint32_t> expressionNumbering; |
Owen Anderson | a472c4a | 2008-05-12 20:15:55 +0000 | [diff] [blame] | 143 | AliasAnalysis* AA; |
| 144 | MemoryDependenceAnalysis* MD; |
| 145 | DominatorTree* DT; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 146 | |
| 147 | uint32_t nextValueNumber; |
| 148 | |
| 149 | Expression::ExpressionOpcode getOpcode(BinaryOperator* BO); |
| 150 | Expression::ExpressionOpcode getOpcode(CmpInst* C); |
| 151 | Expression::ExpressionOpcode getOpcode(CastInst* C); |
| 152 | Expression create_expression(BinaryOperator* BO); |
| 153 | Expression create_expression(CmpInst* C); |
| 154 | Expression create_expression(ShuffleVectorInst* V); |
| 155 | Expression create_expression(ExtractElementInst* C); |
| 156 | Expression create_expression(InsertElementInst* V); |
| 157 | Expression create_expression(SelectInst* V); |
| 158 | Expression create_expression(CastInst* C); |
| 159 | Expression create_expression(GetElementPtrInst* G); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 160 | Expression create_expression(CallInst* C); |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 161 | Expression create_expression(Constant* C); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 162 | public: |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 163 | ValueTable() : nextValueNumber(1) { } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 164 | uint32_t lookup_or_add(Value* V); |
| 165 | uint32_t lookup(Value* V) const; |
| 166 | void add(Value* V, uint32_t num); |
| 167 | void clear(); |
| 168 | void erase(Value* v); |
| 169 | unsigned size(); |
Owen Anderson | a472c4a | 2008-05-12 20:15:55 +0000 | [diff] [blame] | 170 | void setAliasAnalysis(AliasAnalysis* A) { AA = A; } |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 171 | AliasAnalysis *getAliasAnalysis() const { return AA; } |
Owen Anderson | a472c4a | 2008-05-12 20:15:55 +0000 | [diff] [blame] | 172 | void setMemDep(MemoryDependenceAnalysis* M) { MD = M; } |
| 173 | void setDomTree(DominatorTree* D) { DT = D; } |
Owen Anderson | 0ae33ef | 2008-07-03 17:44:33 +0000 | [diff] [blame] | 174 | uint32_t getNextUnusedValueNumber() { return nextValueNumber; } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 175 | }; |
| 176 | } |
| 177 | |
| 178 | namespace llvm { |
Chris Lattner | 76c1b97 | 2007-09-17 18:34:04 +0000 | [diff] [blame] | 179 | template <> struct DenseMapInfo<Expression> { |
Owen Anderson | 830db6a | 2007-08-02 18:16:06 +0000 | [diff] [blame] | 180 | static inline Expression getEmptyKey() { |
| 181 | return Expression(Expression::EMPTY); |
| 182 | } |
| 183 | |
| 184 | static inline Expression getTombstoneKey() { |
| 185 | return Expression(Expression::TOMBSTONE); |
| 186 | } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 187 | |
| 188 | static unsigned getHashValue(const Expression e) { |
| 189 | unsigned hash = e.opcode; |
| 190 | |
| 191 | hash = e.firstVN + hash * 37; |
| 192 | hash = e.secondVN + hash * 37; |
| 193 | hash = e.thirdVN + hash * 37; |
| 194 | |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 195 | hash = ((unsigned)((uintptr_t)e.type >> 4) ^ |
| 196 | (unsigned)((uintptr_t)e.type >> 9)) + |
| 197 | hash * 37; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 198 | |
Owen Anderson | 830db6a | 2007-08-02 18:16:06 +0000 | [diff] [blame] | 199 | for (SmallVector<uint32_t, 4>::const_iterator I = e.varargs.begin(), |
| 200 | E = e.varargs.end(); I != E; ++I) |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 201 | hash = *I + hash * 37; |
| 202 | |
Anton Korobeynikov | 07e6e56 | 2008-02-20 11:26:25 +0000 | [diff] [blame] | 203 | hash = ((unsigned)((uintptr_t)e.function >> 4) ^ |
| 204 | (unsigned)((uintptr_t)e.function >> 9)) + |
| 205 | hash * 37; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 206 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 207 | return hash; |
| 208 | } |
Chris Lattner | 76c1b97 | 2007-09-17 18:34:04 +0000 | [diff] [blame] | 209 | static bool isEqual(const Expression &LHS, const Expression &RHS) { |
| 210 | return LHS == RHS; |
| 211 | } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 212 | static bool isPod() { return true; } |
| 213 | }; |
| 214 | } |
| 215 | |
| 216 | //===----------------------------------------------------------------------===// |
| 217 | // ValueTable Internal Functions |
| 218 | //===----------------------------------------------------------------------===// |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 219 | Expression::ExpressionOpcode ValueTable::getOpcode(BinaryOperator* BO) { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 220 | switch(BO->getOpcode()) { |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 221 | default: // THIS SHOULD NEVER HAPPEN |
| 222 | assert(0 && "Binary operator with unknown opcode?"); |
| 223 | case Instruction::Add: return Expression::ADD; |
| 224 | case Instruction::Sub: return Expression::SUB; |
| 225 | case Instruction::Mul: return Expression::MUL; |
| 226 | case Instruction::UDiv: return Expression::UDIV; |
| 227 | case Instruction::SDiv: return Expression::SDIV; |
| 228 | case Instruction::FDiv: return Expression::FDIV; |
| 229 | case Instruction::URem: return Expression::UREM; |
| 230 | case Instruction::SRem: return Expression::SREM; |
| 231 | case Instruction::FRem: return Expression::FREM; |
| 232 | case Instruction::Shl: return Expression::SHL; |
| 233 | case Instruction::LShr: return Expression::LSHR; |
| 234 | case Instruction::AShr: return Expression::ASHR; |
| 235 | case Instruction::And: return Expression::AND; |
| 236 | case Instruction::Or: return Expression::OR; |
| 237 | case Instruction::Xor: return Expression::XOR; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 238 | } |
| 239 | } |
| 240 | |
| 241 | Expression::ExpressionOpcode ValueTable::getOpcode(CmpInst* C) { |
Nate Begeman | 1d6e409 | 2008-05-18 19:49:05 +0000 | [diff] [blame] | 242 | if (isa<ICmpInst>(C) || isa<VICmpInst>(C)) { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 243 | switch (C->getPredicate()) { |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 244 | default: // THIS SHOULD NEVER HAPPEN |
| 245 | assert(0 && "Comparison with unknown predicate?"); |
| 246 | case ICmpInst::ICMP_EQ: return Expression::ICMPEQ; |
| 247 | case ICmpInst::ICMP_NE: return Expression::ICMPNE; |
| 248 | case ICmpInst::ICMP_UGT: return Expression::ICMPUGT; |
| 249 | case ICmpInst::ICMP_UGE: return Expression::ICMPUGE; |
| 250 | case ICmpInst::ICMP_ULT: return Expression::ICMPULT; |
| 251 | case ICmpInst::ICMP_ULE: return Expression::ICMPULE; |
| 252 | case ICmpInst::ICMP_SGT: return Expression::ICMPSGT; |
| 253 | case ICmpInst::ICMP_SGE: return Expression::ICMPSGE; |
| 254 | case ICmpInst::ICMP_SLT: return Expression::ICMPSLT; |
| 255 | case ICmpInst::ICMP_SLE: return Expression::ICMPSLE; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 256 | } |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 257 | } |
Nate Begeman | 1d6e409 | 2008-05-18 19:49:05 +0000 | [diff] [blame] | 258 | assert((isa<FCmpInst>(C) || isa<VFCmpInst>(C)) && "Unknown compare"); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 259 | switch (C->getPredicate()) { |
| 260 | default: // THIS SHOULD NEVER HAPPEN |
| 261 | assert(0 && "Comparison with unknown predicate?"); |
| 262 | case FCmpInst::FCMP_OEQ: return Expression::FCMPOEQ; |
| 263 | case FCmpInst::FCMP_OGT: return Expression::FCMPOGT; |
| 264 | case FCmpInst::FCMP_OGE: return Expression::FCMPOGE; |
| 265 | case FCmpInst::FCMP_OLT: return Expression::FCMPOLT; |
| 266 | case FCmpInst::FCMP_OLE: return Expression::FCMPOLE; |
| 267 | case FCmpInst::FCMP_ONE: return Expression::FCMPONE; |
| 268 | case FCmpInst::FCMP_ORD: return Expression::FCMPORD; |
| 269 | case FCmpInst::FCMP_UNO: return Expression::FCMPUNO; |
| 270 | case FCmpInst::FCMP_UEQ: return Expression::FCMPUEQ; |
| 271 | case FCmpInst::FCMP_UGT: return Expression::FCMPUGT; |
| 272 | case FCmpInst::FCMP_UGE: return Expression::FCMPUGE; |
| 273 | case FCmpInst::FCMP_ULT: return Expression::FCMPULT; |
| 274 | case FCmpInst::FCMP_ULE: return Expression::FCMPULE; |
| 275 | case FCmpInst::FCMP_UNE: return Expression::FCMPUNE; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 276 | } |
| 277 | } |
| 278 | |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 279 | Expression::ExpressionOpcode ValueTable::getOpcode(CastInst* C) { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 280 | switch(C->getOpcode()) { |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 281 | default: // THIS SHOULD NEVER HAPPEN |
| 282 | assert(0 && "Cast operator with unknown opcode?"); |
| 283 | case Instruction::Trunc: return Expression::TRUNC; |
| 284 | case Instruction::ZExt: return Expression::ZEXT; |
| 285 | case Instruction::SExt: return Expression::SEXT; |
| 286 | case Instruction::FPToUI: return Expression::FPTOUI; |
| 287 | case Instruction::FPToSI: return Expression::FPTOSI; |
| 288 | case Instruction::UIToFP: return Expression::UITOFP; |
| 289 | case Instruction::SIToFP: return Expression::SITOFP; |
| 290 | case Instruction::FPTrunc: return Expression::FPTRUNC; |
| 291 | case Instruction::FPExt: return Expression::FPEXT; |
| 292 | case Instruction::PtrToInt: return Expression::PTRTOINT; |
| 293 | case Instruction::IntToPtr: return Expression::INTTOPTR; |
| 294 | case Instruction::BitCast: return Expression::BITCAST; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 295 | } |
| 296 | } |
| 297 | |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 298 | Expression ValueTable::create_expression(CallInst* C) { |
| 299 | Expression e; |
| 300 | |
| 301 | e.type = C->getType(); |
| 302 | e.firstVN = 0; |
| 303 | e.secondVN = 0; |
| 304 | e.thirdVN = 0; |
| 305 | e.function = C->getCalledFunction(); |
| 306 | e.opcode = Expression::CALL; |
| 307 | |
| 308 | for (CallInst::op_iterator I = C->op_begin()+1, E = C->op_end(); |
| 309 | I != E; ++I) |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 310 | e.varargs.push_back(lookup_or_add(*I)); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 311 | |
| 312 | return e; |
| 313 | } |
| 314 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 315 | Expression ValueTable::create_expression(BinaryOperator* BO) { |
| 316 | Expression e; |
| 317 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 318 | e.firstVN = lookup_or_add(BO->getOperand(0)); |
| 319 | e.secondVN = lookup_or_add(BO->getOperand(1)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 320 | e.thirdVN = 0; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 321 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 322 | e.type = BO->getType(); |
| 323 | e.opcode = getOpcode(BO); |
| 324 | |
| 325 | return e; |
| 326 | } |
| 327 | |
| 328 | Expression ValueTable::create_expression(CmpInst* C) { |
| 329 | Expression e; |
| 330 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 331 | e.firstVN = lookup_or_add(C->getOperand(0)); |
| 332 | e.secondVN = lookup_or_add(C->getOperand(1)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 333 | e.thirdVN = 0; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 334 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 335 | e.type = C->getType(); |
| 336 | e.opcode = getOpcode(C); |
| 337 | |
| 338 | return e; |
| 339 | } |
| 340 | |
| 341 | Expression ValueTable::create_expression(CastInst* C) { |
| 342 | Expression e; |
| 343 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 344 | e.firstVN = lookup_or_add(C->getOperand(0)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 345 | e.secondVN = 0; |
| 346 | e.thirdVN = 0; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 347 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 348 | e.type = C->getType(); |
| 349 | e.opcode = getOpcode(C); |
| 350 | |
| 351 | return e; |
| 352 | } |
| 353 | |
| 354 | Expression ValueTable::create_expression(ShuffleVectorInst* S) { |
| 355 | Expression e; |
| 356 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 357 | e.firstVN = lookup_or_add(S->getOperand(0)); |
| 358 | e.secondVN = lookup_or_add(S->getOperand(1)); |
| 359 | e.thirdVN = lookup_or_add(S->getOperand(2)); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 360 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 361 | e.type = S->getType(); |
| 362 | e.opcode = Expression::SHUFFLE; |
| 363 | |
| 364 | return e; |
| 365 | } |
| 366 | |
| 367 | Expression ValueTable::create_expression(ExtractElementInst* E) { |
| 368 | Expression e; |
| 369 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 370 | e.firstVN = lookup_or_add(E->getOperand(0)); |
| 371 | e.secondVN = lookup_or_add(E->getOperand(1)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 372 | e.thirdVN = 0; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 373 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 374 | e.type = E->getType(); |
| 375 | e.opcode = Expression::EXTRACT; |
| 376 | |
| 377 | return e; |
| 378 | } |
| 379 | |
| 380 | Expression ValueTable::create_expression(InsertElementInst* I) { |
| 381 | Expression e; |
| 382 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 383 | e.firstVN = lookup_or_add(I->getOperand(0)); |
| 384 | e.secondVN = lookup_or_add(I->getOperand(1)); |
| 385 | e.thirdVN = lookup_or_add(I->getOperand(2)); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 386 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 387 | e.type = I->getType(); |
| 388 | e.opcode = Expression::INSERT; |
| 389 | |
| 390 | return e; |
| 391 | } |
| 392 | |
| 393 | Expression ValueTable::create_expression(SelectInst* I) { |
| 394 | Expression e; |
| 395 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 396 | e.firstVN = lookup_or_add(I->getCondition()); |
| 397 | e.secondVN = lookup_or_add(I->getTrueValue()); |
| 398 | e.thirdVN = lookup_or_add(I->getFalseValue()); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 399 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 400 | e.type = I->getType(); |
| 401 | e.opcode = Expression::SELECT; |
| 402 | |
| 403 | return e; |
| 404 | } |
| 405 | |
| 406 | Expression ValueTable::create_expression(GetElementPtrInst* G) { |
| 407 | Expression e; |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 408 | |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 409 | e.firstVN = lookup_or_add(G->getPointerOperand()); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 410 | e.secondVN = 0; |
| 411 | e.thirdVN = 0; |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 412 | e.function = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 413 | e.type = G->getType(); |
| 414 | e.opcode = Expression::GEP; |
| 415 | |
| 416 | for (GetElementPtrInst::op_iterator I = G->idx_begin(), E = G->idx_end(); |
| 417 | I != E; ++I) |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 418 | e.varargs.push_back(lookup_or_add(*I)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 419 | |
| 420 | return e; |
| 421 | } |
| 422 | |
| 423 | //===----------------------------------------------------------------------===// |
| 424 | // ValueTable External Functions |
| 425 | //===----------------------------------------------------------------------===// |
| 426 | |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 427 | /// add - Insert a value into the table with a specified value number. |
| 428 | void ValueTable::add(Value* V, uint32_t num) { |
| 429 | valueNumbering.insert(std::make_pair(V, num)); |
| 430 | } |
| 431 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 432 | /// lookup_or_add - Returns the value number for the specified value, assigning |
| 433 | /// it a new number if it did not have one before. |
| 434 | uint32_t ValueTable::lookup_or_add(Value* V) { |
| 435 | DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V); |
| 436 | if (VI != valueNumbering.end()) |
| 437 | return VI->second; |
| 438 | |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 439 | if (CallInst* C = dyn_cast<CallInst>(V)) { |
Owen Anderson | 8f46c78 | 2008-04-11 05:11:49 +0000 | [diff] [blame] | 440 | if (AA->doesNotAccessMemory(C)) { |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 441 | Expression e = create_expression(C); |
| 442 | |
| 443 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 444 | if (EI != expressionNumbering.end()) { |
| 445 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 446 | return EI->second; |
| 447 | } else { |
| 448 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 449 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 450 | |
| 451 | return nextValueNumber++; |
| 452 | } |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 453 | } else if (AA->onlyReadsMemory(C)) { |
| 454 | Expression e = create_expression(C); |
| 455 | |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 456 | if (expressionNumbering.find(e) == expressionNumbering.end()) { |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 457 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 458 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 459 | return nextValueNumber++; |
| 460 | } |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 461 | |
Chris Lattner | 4c72400 | 2008-11-29 02:29:27 +0000 | [diff] [blame] | 462 | MemDepResult local_dep = MD->getDependency(C); |
Owen Anderson | c4f406e | 2008-05-13 23:18:30 +0000 | [diff] [blame] | 463 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 464 | if (!local_dep.isDef() && !local_dep.isNonLocal()) { |
Owen Anderson | c4f406e | 2008-05-13 23:18:30 +0000 | [diff] [blame] | 465 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 466 | return nextValueNumber++; |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 467 | } |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 468 | |
| 469 | if (local_dep.isDef()) { |
| 470 | CallInst* local_cdep = cast<CallInst>(local_dep.getInst()); |
| 471 | |
| 472 | if (local_cdep->getNumOperands() != C->getNumOperands()) { |
Owen Anderson | c4f406e | 2008-05-13 23:18:30 +0000 | [diff] [blame] | 473 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 474 | return nextValueNumber++; |
| 475 | } |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 476 | |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 477 | for (unsigned i = 1; i < C->getNumOperands(); ++i) { |
| 478 | uint32_t c_vn = lookup_or_add(C->getOperand(i)); |
| 479 | uint32_t cd_vn = lookup_or_add(local_cdep->getOperand(i)); |
| 480 | if (c_vn != cd_vn) { |
| 481 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 482 | return nextValueNumber++; |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | uint32_t v = lookup_or_add(local_cdep); |
| 487 | valueNumbering.insert(std::make_pair(V, v)); |
| 488 | return v; |
Owen Anderson | c4f406e | 2008-05-13 23:18:30 +0000 | [diff] [blame] | 489 | } |
Chris Lattner | bf145d6 | 2008-12-01 01:15:42 +0000 | [diff] [blame] | 490 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 491 | // Non-local case. |
Chris Lattner | bf145d6 | 2008-12-01 01:15:42 +0000 | [diff] [blame] | 492 | const MemoryDependenceAnalysis::NonLocalDepInfo &deps = |
Chris Lattner | 1559b36 | 2008-12-09 19:38:05 +0000 | [diff] [blame] | 493 | MD->getNonLocalCallDependency(CallSite(C)); |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 494 | // FIXME: call/call dependencies for readonly calls should return def, not |
| 495 | // clobber! Move the checking logic to MemDep! |
Owen Anderson | 16db1f7 | 2008-05-13 13:41:23 +0000 | [diff] [blame] | 496 | CallInst* cdep = 0; |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 497 | |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 498 | // Check to see if we have a single dominating call instruction that is |
| 499 | // identical to C. |
Chris Lattner | bf145d6 | 2008-12-01 01:15:42 +0000 | [diff] [blame] | 500 | for (unsigned i = 0, e = deps.size(); i != e; ++i) { |
| 501 | const MemoryDependenceAnalysis::NonLocalDepEntry *I = &deps[i]; |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 502 | // Ignore non-local dependencies. |
| 503 | if (I->second.isNonLocal()) |
| 504 | continue; |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 505 | |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 506 | // We don't handle non-depedencies. If we already have a call, reject |
| 507 | // instruction dependencies. |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 508 | if (I->second.isClobber() || cdep != 0) { |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 509 | cdep = 0; |
| 510 | break; |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 511 | } |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 512 | |
| 513 | CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->second.getInst()); |
| 514 | // FIXME: All duplicated with non-local case. |
| 515 | if (NonLocalDepCall && DT->properlyDominates(I->first, C->getParent())){ |
| 516 | cdep = NonLocalDepCall; |
| 517 | continue; |
| 518 | } |
| 519 | |
| 520 | cdep = 0; |
| 521 | break; |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 522 | } |
| 523 | |
Owen Anderson | 16db1f7 | 2008-05-13 13:41:23 +0000 | [diff] [blame] | 524 | if (!cdep) { |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 525 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 526 | return nextValueNumber++; |
| 527 | } |
| 528 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 529 | if (cdep->getNumOperands() != C->getNumOperands()) { |
Owen Anderson | 3b3f58c | 2008-05-13 08:17:22 +0000 | [diff] [blame] | 530 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 531 | return nextValueNumber++; |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 532 | } |
Chris Lattner | 1440ac5 | 2008-11-30 23:39:23 +0000 | [diff] [blame] | 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; |
Owen Anderson | 241f653 | 2008-04-17 05:36:50 +0000 | [diff] [blame] | 545 | |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 546 | } else { |
| 547 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 548 | return nextValueNumber++; |
| 549 | } |
| 550 | } else if (BinaryOperator* BO = dyn_cast<BinaryOperator>(V)) { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 551 | Expression e = create_expression(BO); |
| 552 | |
| 553 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 554 | if (EI != expressionNumbering.end()) { |
| 555 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 556 | return EI->second; |
| 557 | } else { |
| 558 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 559 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 560 | |
| 561 | return nextValueNumber++; |
| 562 | } |
| 563 | } else if (CmpInst* C = dyn_cast<CmpInst>(V)) { |
| 564 | Expression e = create_expression(C); |
| 565 | |
| 566 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 567 | if (EI != expressionNumbering.end()) { |
| 568 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 569 | return EI->second; |
| 570 | } else { |
| 571 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 572 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 573 | |
| 574 | return nextValueNumber++; |
| 575 | } |
| 576 | } else if (ShuffleVectorInst* U = dyn_cast<ShuffleVectorInst>(V)) { |
| 577 | Expression e = create_expression(U); |
| 578 | |
| 579 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 580 | if (EI != expressionNumbering.end()) { |
| 581 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 582 | return EI->second; |
| 583 | } else { |
| 584 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 585 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 586 | |
| 587 | return nextValueNumber++; |
| 588 | } |
| 589 | } else if (ExtractElementInst* U = dyn_cast<ExtractElementInst>(V)) { |
| 590 | Expression e = create_expression(U); |
| 591 | |
| 592 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 593 | if (EI != expressionNumbering.end()) { |
| 594 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 595 | return EI->second; |
| 596 | } else { |
| 597 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 598 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 599 | |
| 600 | return nextValueNumber++; |
| 601 | } |
| 602 | } else if (InsertElementInst* U = dyn_cast<InsertElementInst>(V)) { |
| 603 | Expression e = create_expression(U); |
| 604 | |
| 605 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 606 | if (EI != expressionNumbering.end()) { |
| 607 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 608 | return EI->second; |
| 609 | } else { |
| 610 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 611 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 612 | |
| 613 | return nextValueNumber++; |
| 614 | } |
| 615 | } else if (SelectInst* U = dyn_cast<SelectInst>(V)) { |
| 616 | Expression e = create_expression(U); |
| 617 | |
| 618 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 619 | if (EI != expressionNumbering.end()) { |
| 620 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 621 | return EI->second; |
| 622 | } else { |
| 623 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 624 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 625 | |
| 626 | return nextValueNumber++; |
| 627 | } |
| 628 | } else if (CastInst* U = dyn_cast<CastInst>(V)) { |
| 629 | Expression e = create_expression(U); |
| 630 | |
| 631 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 632 | if (EI != expressionNumbering.end()) { |
| 633 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 634 | return EI->second; |
| 635 | } else { |
| 636 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 637 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 638 | |
| 639 | return nextValueNumber++; |
| 640 | } |
| 641 | } else if (GetElementPtrInst* U = dyn_cast<GetElementPtrInst>(V)) { |
| 642 | Expression e = create_expression(U); |
| 643 | |
| 644 | DenseMap<Expression, uint32_t>::iterator EI = expressionNumbering.find(e); |
| 645 | if (EI != expressionNumbering.end()) { |
| 646 | valueNumbering.insert(std::make_pair(V, EI->second)); |
| 647 | return EI->second; |
| 648 | } else { |
| 649 | expressionNumbering.insert(std::make_pair(e, nextValueNumber)); |
| 650 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 651 | |
| 652 | return nextValueNumber++; |
| 653 | } |
| 654 | } else { |
| 655 | valueNumbering.insert(std::make_pair(V, nextValueNumber)); |
| 656 | return nextValueNumber++; |
| 657 | } |
| 658 | } |
| 659 | |
| 660 | /// lookup - Returns the value number of the specified value. Fails if |
| 661 | /// the value has not yet been numbered. |
| 662 | uint32_t ValueTable::lookup(Value* V) const { |
| 663 | DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 664 | assert(VI != valueNumbering.end() && "Value not numbered?"); |
| 665 | return VI->second; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | /// clear - Remove all entries from the ValueTable |
| 669 | void ValueTable::clear() { |
| 670 | valueNumbering.clear(); |
| 671 | expressionNumbering.clear(); |
| 672 | nextValueNumber = 1; |
| 673 | } |
| 674 | |
Owen Anderson | bf7d0bc | 2007-07-31 23:27:13 +0000 | [diff] [blame] | 675 | /// erase - Remove a value from the value numbering |
| 676 | void ValueTable::erase(Value* V) { |
| 677 | valueNumbering.erase(V); |
| 678 | } |
| 679 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 680 | //===----------------------------------------------------------------------===// |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 681 | // GVN Pass |
| 682 | //===----------------------------------------------------------------------===// |
| 683 | |
| 684 | namespace { |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 685 | struct VISIBILITY_HIDDEN ValueNumberScope { |
| 686 | ValueNumberScope* parent; |
| 687 | DenseMap<uint32_t, Value*> table; |
| 688 | |
| 689 | ValueNumberScope(ValueNumberScope* p) : parent(p) { } |
| 690 | }; |
| 691 | } |
| 692 | |
| 693 | namespace { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 694 | |
| 695 | class VISIBILITY_HIDDEN GVN : public FunctionPass { |
| 696 | bool runOnFunction(Function &F); |
| 697 | public: |
| 698 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 699 | GVN() : FunctionPass(&ID) { } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 700 | |
| 701 | private: |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 702 | MemoryDependenceAnalysis *MD; |
| 703 | DominatorTree *DT; |
| 704 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 705 | ValueTable VN; |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 706 | DenseMap<BasicBlock*, ValueNumberScope*> localAvail; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 707 | |
Owen Anderson | a37226a | 2007-08-07 23:12:31 +0000 | [diff] [blame] | 708 | typedef DenseMap<Value*, SmallPtrSet<Instruction*, 4> > PhiMapType; |
| 709 | PhiMapType phiMap; |
| 710 | |
| 711 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 712 | // This transformation requires dominator postdominator info |
| 713 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 714 | AU.addRequired<DominatorTree>(); |
| 715 | AU.addRequired<MemoryDependenceAnalysis>(); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 716 | AU.addRequired<AliasAnalysis>(); |
Owen Anderson | b70a571 | 2008-06-23 17:49:45 +0000 | [diff] [blame] | 717 | |
| 718 | AU.addPreserved<DominatorTree>(); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 719 | AU.addPreserved<AliasAnalysis>(); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | // Helper fuctions |
| 723 | // FIXME: eliminate or document these better |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 724 | bool processLoad(LoadInst* L, |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 725 | SmallVectorImpl<Instruction*> &toErase); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 726 | bool processInstruction(Instruction* I, |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 727 | SmallVectorImpl<Instruction*> &toErase); |
Owen Anderson | 830db6a | 2007-08-02 18:16:06 +0000 | [diff] [blame] | 728 | bool processNonLocalLoad(LoadInst* L, |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 729 | SmallVectorImpl<Instruction*> &toErase); |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 730 | bool processBlock(DomTreeNode* DTN); |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 731 | Value *GetValueForBlock(BasicBlock *BB, LoadInst* orig, |
Owen Anderson | 1c2763d | 2007-08-02 17:56:05 +0000 | [diff] [blame] | 732 | DenseMap<BasicBlock*, Value*> &Phis, |
| 733 | bool top_level = false); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 734 | void dump(DenseMap<uint32_t, Value*>& d); |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 735 | bool iterateOnFunction(Function &F); |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 736 | Value* CollapsePhi(PHINode* p); |
Owen Anderson | 2486686 | 2007-09-16 08:04:16 +0000 | [diff] [blame] | 737 | bool isSafeReplacement(PHINode* p, Instruction* inst); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 738 | bool performPRE(Function& F); |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 739 | Value* lookupNumber(BasicBlock* BB, uint32_t num); |
Owen Anderson | 961edc8 | 2008-07-15 16:28:06 +0000 | [diff] [blame] | 740 | bool mergeBlockIntoPredecessor(BasicBlock* BB); |
Nuno Lopes | 7cdd9ee | 2008-10-10 16:25:50 +0000 | [diff] [blame] | 741 | void cleanupGlobalSets(); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 742 | }; |
| 743 | |
| 744 | char GVN::ID = 0; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 745 | } |
| 746 | |
| 747 | // createGVNPass - The public interface to this file... |
| 748 | FunctionPass *llvm::createGVNPass() { return new GVN(); } |
| 749 | |
| 750 | static RegisterPass<GVN> X("gvn", |
| 751 | "Global Value Numbering"); |
| 752 | |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 753 | void GVN::dump(DenseMap<uint32_t, Value*>& d) { |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 754 | printf("{\n"); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 755 | for (DenseMap<uint32_t, Value*>::iterator I = d.begin(), |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 756 | E = d.end(); I != E; ++I) { |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 757 | printf("%d\n", I->first); |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 758 | I->second->dump(); |
| 759 | } |
| 760 | printf("}\n"); |
| 761 | } |
| 762 | |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 763 | Value* GVN::CollapsePhi(PHINode* p) { |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 764 | Value* constVal = p->hasConstantValue(); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 765 | if (!constVal) return 0; |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 766 | |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 767 | Instruction* inst = dyn_cast<Instruction>(constVal); |
| 768 | if (!inst) |
| 769 | return constVal; |
| 770 | |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 771 | if (DT->dominates(inst, p)) |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 772 | if (isSafeReplacement(p, inst)) |
| 773 | return inst; |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 774 | return 0; |
| 775 | } |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 776 | |
Owen Anderson | 2486686 | 2007-09-16 08:04:16 +0000 | [diff] [blame] | 777 | bool GVN::isSafeReplacement(PHINode* p, Instruction* inst) { |
| 778 | if (!isa<PHINode>(inst)) |
| 779 | return true; |
| 780 | |
| 781 | for (Instruction::use_iterator UI = p->use_begin(), E = p->use_end(); |
| 782 | UI != E; ++UI) |
| 783 | if (PHINode* use_phi = dyn_cast<PHINode>(UI)) |
| 784 | if (use_phi->getParent() == inst->getParent()) |
| 785 | return false; |
| 786 | |
| 787 | return true; |
| 788 | } |
| 789 | |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 790 | /// GetValueForBlock - Get the value to use within the specified basic block. |
| 791 | /// available values are in Phis. |
| 792 | Value *GVN::GetValueForBlock(BasicBlock *BB, LoadInst* orig, |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 793 | DenseMap<BasicBlock*, Value*> &Phis, |
| 794 | bool top_level) { |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 795 | |
| 796 | // If we have already computed this value, return the previously computed val. |
Owen Anderson | ab87027 | 2007-08-03 19:59:35 +0000 | [diff] [blame] | 797 | DenseMap<BasicBlock*, Value*>::iterator V = Phis.find(BB); |
| 798 | if (V != Phis.end() && !top_level) return V->second; |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 799 | |
Owen Anderson | cb29a4f | 2008-07-02 18:15:31 +0000 | [diff] [blame] | 800 | // If the block is unreachable, just return undef, since this path |
| 801 | // can't actually occur at runtime. |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 802 | if (!DT->isReachableFromEntry(BB)) |
Owen Anderson | cb29a4f | 2008-07-02 18:15:31 +0000 | [diff] [blame] | 803 | return Phis[BB] = UndefValue::get(orig->getType()); |
Owen Anderson | f2aa160 | 2008-07-02 17:20:16 +0000 | [diff] [blame] | 804 | |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 805 | if (BasicBlock *Pred = BB->getSinglePredecessor()) { |
| 806 | Value *ret = GetValueForBlock(Pred, orig, Phis); |
Owen Anderson | ab87027 | 2007-08-03 19:59:35 +0000 | [diff] [blame] | 807 | Phis[BB] = ret; |
| 808 | return ret; |
Owen Anderson | 4b55c3b | 2007-08-03 11:03:26 +0000 | [diff] [blame] | 809 | } |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 810 | |
| 811 | // Get the number of predecessors of this block so we can reserve space later. |
| 812 | // If there is already a PHI in it, use the #preds from it, otherwise count. |
| 813 | // Getting it from the PHI is constant time. |
| 814 | unsigned NumPreds; |
| 815 | if (PHINode *ExistingPN = dyn_cast<PHINode>(BB->begin())) |
| 816 | NumPreds = ExistingPN->getNumIncomingValues(); |
| 817 | else |
| 818 | NumPreds = std::distance(pred_begin(BB), pred_end(BB)); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 819 | |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 820 | // Otherwise, the idom is the loop, so we need to insert a PHI node. Do so |
| 821 | // now, then get values to fill in the incoming values for the PHI. |
Gabor Greif | 051a950 | 2008-04-06 20:25:17 +0000 | [diff] [blame] | 822 | PHINode *PN = PHINode::Create(orig->getType(), orig->getName()+".rle", |
| 823 | BB->begin()); |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 824 | PN->reserveOperandSpace(NumPreds); |
Owen Anderson | ab87027 | 2007-08-03 19:59:35 +0000 | [diff] [blame] | 825 | |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 826 | Phis.insert(std::make_pair(BB, PN)); |
Owen Anderson | 4f9ba7c | 2007-07-30 16:57:08 +0000 | [diff] [blame] | 827 | |
Owen Anderson | 4553791 | 2007-07-26 18:26:51 +0000 | [diff] [blame] | 828 | // Fill in the incoming values for the block. |
Owen Anderson | 054ab94 | 2007-07-31 17:43:14 +0000 | [diff] [blame] | 829 | for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { |
| 830 | Value* val = GetValueForBlock(*PI, orig, Phis); |
Owen Anderson | 054ab94 | 2007-07-31 17:43:14 +0000 | [diff] [blame] | 831 | PN->addIncoming(val, *PI); |
| 832 | } |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 833 | |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 834 | VN.getAliasAnalysis()->copyValue(orig, PN); |
Owen Anderson | 054ab94 | 2007-07-31 17:43:14 +0000 | [diff] [blame] | 835 | |
Owen Anderson | 62bc33c | 2007-08-16 22:02:55 +0000 | [diff] [blame] | 836 | // Attempt to collapse PHI nodes that are trivially redundant |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 837 | Value* v = CollapsePhi(PN); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 838 | if (!v) { |
| 839 | // Cache our phi construction results |
| 840 | phiMap[orig->getPointerOperand()].insert(PN); |
| 841 | return PN; |
Owen Anderson | 054ab94 | 2007-07-31 17:43:14 +0000 | [diff] [blame] | 842 | } |
Owen Anderson | a472c4a | 2008-05-12 20:15:55 +0000 | [diff] [blame] | 843 | |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 844 | PN->replaceAllUsesWith(v); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 845 | if (isa<PointerType>(v->getType())) |
| 846 | MD->invalidateCachedPointerInfo(v); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 847 | |
| 848 | for (DenseMap<BasicBlock*, Value*>::iterator I = Phis.begin(), |
| 849 | E = Phis.end(); I != E; ++I) |
| 850 | if (I->second == PN) |
| 851 | I->second = v; |
| 852 | |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 853 | DEBUG(cerr << "GVN removed: " << *PN); |
| 854 | MD->removeInstruction(PN); |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 855 | PN->eraseFromParent(); |
| 856 | |
| 857 | Phis[BB] = v; |
| 858 | return v; |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 859 | } |
| 860 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 861 | /// IsValueFullyAvailableInBlock - Return true if we can prove that the value |
| 862 | /// we're analyzing is fully available in the specified block. As we go, keep |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 863 | /// track of which blocks we know are fully alive in FullyAvailableBlocks. This |
| 864 | /// map is actually a tri-state map with the following values: |
| 865 | /// 0) we know the block *is not* fully available. |
| 866 | /// 1) we know the block *is* fully available. |
| 867 | /// 2) we do not know whether the block is fully available or not, but we are |
| 868 | /// currently speculating that it will be. |
| 869 | /// 3) we are speculating for this block and have used that to speculate for |
| 870 | /// other blocks. |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 871 | static bool IsValueFullyAvailableInBlock(BasicBlock *BB, |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 872 | DenseMap<BasicBlock*, char> &FullyAvailableBlocks) { |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 873 | // Optimistically assume that the block is fully available and check to see |
| 874 | // if we already know about this block in one lookup. |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 875 | std::pair<DenseMap<BasicBlock*, char>::iterator, char> IV = |
| 876 | FullyAvailableBlocks.insert(std::make_pair(BB, 2)); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 877 | |
| 878 | // If the entry already existed for this block, return the precomputed value. |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 879 | if (!IV.second) { |
| 880 | // If this is a speculative "available" value, mark it as being used for |
| 881 | // speculation of other blocks. |
| 882 | if (IV.first->second == 2) |
| 883 | IV.first->second = 3; |
| 884 | return IV.first->second != 0; |
| 885 | } |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 886 | |
| 887 | // Otherwise, see if it is fully available in all predecessors. |
| 888 | pred_iterator PI = pred_begin(BB), PE = pred_end(BB); |
| 889 | |
| 890 | // If this block has no predecessors, it isn't live-in here. |
| 891 | if (PI == PE) |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 892 | goto SpeculationFailure; |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 893 | |
| 894 | for (; PI != PE; ++PI) |
| 895 | // If the value isn't fully available in one of our predecessors, then it |
| 896 | // isn't fully available in this block either. Undo our previous |
| 897 | // optimistic assumption and bail out. |
| 898 | if (!IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks)) |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 899 | goto SpeculationFailure; |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 900 | |
| 901 | return true; |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 902 | |
| 903 | // SpeculationFailure - If we get here, we found out that this is not, after |
| 904 | // all, a fully-available block. We have a problem if we speculated on this and |
| 905 | // used the speculation to mark other blocks as available. |
| 906 | SpeculationFailure: |
| 907 | char &BBVal = FullyAvailableBlocks[BB]; |
| 908 | |
| 909 | // If we didn't speculate on this, just return with it set to false. |
| 910 | if (BBVal == 2) { |
| 911 | BBVal = 0; |
| 912 | return false; |
| 913 | } |
| 914 | |
| 915 | // If we did speculate on this value, we could have blocks set to 1 that are |
| 916 | // incorrect. Walk the (transitive) successors of this block and mark them as |
| 917 | // 0 if set to one. |
| 918 | SmallVector<BasicBlock*, 32> BBWorklist; |
| 919 | BBWorklist.push_back(BB); |
| 920 | |
| 921 | while (!BBWorklist.empty()) { |
| 922 | BasicBlock *Entry = BBWorklist.pop_back_val(); |
| 923 | // Note that this sets blocks to 0 (unavailable) if they happen to not |
| 924 | // already be in FullyAvailableBlocks. This is safe. |
| 925 | char &EntryVal = FullyAvailableBlocks[Entry]; |
| 926 | if (EntryVal == 0) continue; // Already unavailable. |
| 927 | |
| 928 | // Mark as unavailable. |
| 929 | EntryVal = 0; |
| 930 | |
| 931 | for (succ_iterator I = succ_begin(Entry), E = succ_end(Entry); I != E; ++I) |
| 932 | BBWorklist.push_back(*I); |
| 933 | } |
| 934 | |
| 935 | return false; |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 936 | } |
| 937 | |
Owen Anderson | 62bc33c | 2007-08-16 22:02:55 +0000 | [diff] [blame] | 938 | /// processNonLocalLoad - Attempt to eliminate a load whose dependencies are |
| 939 | /// non-local by performing PHI construction. |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 940 | bool GVN::processNonLocalLoad(LoadInst *LI, |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 941 | SmallVectorImpl<Instruction*> &toErase) { |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 942 | // Find the non-local dependencies of the load. |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 943 | SmallVector<MemoryDependenceAnalysis::NonLocalDepEntry, 64> Deps; |
| 944 | MD->getNonLocalPointerDependency(LI->getOperand(0), true, LI->getParent(), |
| 945 | Deps); |
| 946 | //DEBUG(cerr << "INVESTIGATING NONLOCAL LOAD: " << Deps.size() << *LI); |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 947 | |
Owen Anderson | 516eb1c | 2008-08-26 22:07:42 +0000 | [diff] [blame] | 948 | // If we had to process more than one hundred blocks to find the |
| 949 | // dependencies, this load isn't worth worrying about. Optimizing |
| 950 | // it will be too expensive. |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 951 | if (Deps.size() > 100) |
Owen Anderson | 516eb1c | 2008-08-26 22:07:42 +0000 | [diff] [blame] | 952 | return false; |
| 953 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 954 | // Filter out useless results (non-locals, etc). Keep track of the blocks |
| 955 | // where we have a value available in repl, also keep track of whether we see |
| 956 | // dependencies that produce an unknown value for the load (such as a call |
| 957 | // that could potentially clobber the load). |
| 958 | SmallVector<std::pair<BasicBlock*, Value*>, 16> ValuesPerBlock; |
| 959 | SmallVector<BasicBlock*, 16> UnavailableBlocks; |
Owen Anderson | a37226a | 2007-08-07 23:12:31 +0000 | [diff] [blame] | 960 | |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 961 | for (unsigned i = 0, e = Deps.size(); i != e; ++i) { |
| 962 | BasicBlock *DepBB = Deps[i].first; |
| 963 | MemDepResult DepInfo = Deps[i].second; |
Chris Lattner | bf145d6 | 2008-12-01 01:15:42 +0000 | [diff] [blame] | 964 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 965 | if (DepInfo.isClobber()) { |
| 966 | UnavailableBlocks.push_back(DepBB); |
| 967 | continue; |
| 968 | } |
| 969 | |
| 970 | Instruction *DepInst = DepInfo.getInst(); |
| 971 | |
| 972 | // Loading the allocation -> undef. |
| 973 | if (isa<AllocationInst>(DepInst)) { |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 974 | ValuesPerBlock.push_back(std::make_pair(DepBB, |
| 975 | UndefValue::get(LI->getType()))); |
Chris Lattner | bf145d6 | 2008-12-01 01:15:42 +0000 | [diff] [blame] | 976 | continue; |
| 977 | } |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 978 | |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 979 | if (StoreInst* S = dyn_cast<StoreInst>(DepInst)) { |
Chris Lattner | 978796e | 2008-12-01 01:31:36 +0000 | [diff] [blame] | 980 | // Reject loads and stores that are to the same address but are of |
| 981 | // different types. |
| 982 | // NOTE: 403.gcc does have this case (e.g. in readonly_fields_p) because |
| 983 | // of bitfield access, it would be interesting to optimize for it at some |
| 984 | // point. |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 985 | if (S->getOperand(0)->getType() != LI->getType()) { |
| 986 | UnavailableBlocks.push_back(DepBB); |
| 987 | continue; |
| 988 | } |
Chris Lattner | 978796e | 2008-12-01 01:31:36 +0000 | [diff] [blame] | 989 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 990 | ValuesPerBlock.push_back(std::make_pair(DepBB, S->getOperand(0))); |
Chris Lattner | 978796e | 2008-12-01 01:31:36 +0000 | [diff] [blame] | 991 | |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 992 | } else if (LoadInst* LD = dyn_cast<LoadInst>(DepInst)) { |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 993 | if (LD->getType() != LI->getType()) { |
| 994 | UnavailableBlocks.push_back(DepBB); |
| 995 | continue; |
| 996 | } |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 997 | ValuesPerBlock.push_back(std::make_pair(DepBB, LD)); |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 998 | } else { |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 999 | UnavailableBlocks.push_back(DepBB); |
| 1000 | continue; |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 1001 | } |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 1002 | } |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 1003 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1004 | // If we have no predecessors that produce a known value for this load, exit |
| 1005 | // early. |
| 1006 | if (ValuesPerBlock.empty()) return false; |
| 1007 | |
| 1008 | // If all of the instructions we depend on produce a known value for this |
| 1009 | // load, then it is fully redundant and we can use PHI insertion to compute |
| 1010 | // its value. Insert PHIs and remove the fully redundant value now. |
| 1011 | if (UnavailableBlocks.empty()) { |
| 1012 | // Use cached PHI construction information from previous runs |
| 1013 | SmallPtrSet<Instruction*, 4> &p = phiMap[LI->getPointerOperand()]; |
Chris Lattner | 91bcf64 | 2008-12-09 19:25:07 +0000 | [diff] [blame] | 1014 | // FIXME: What does phiMap do? Are we positive it isn't getting invalidated? |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1015 | for (SmallPtrSet<Instruction*, 4>::iterator I = p.begin(), E = p.end(); |
| 1016 | I != E; ++I) { |
| 1017 | if ((*I)->getParent() == LI->getParent()) { |
| 1018 | DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD #1: " << *LI); |
| 1019 | LI->replaceAllUsesWith(*I); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1020 | if (isa<PointerType>((*I)->getType())) |
| 1021 | MD->invalidateCachedPointerInfo(*I); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1022 | toErase.push_back(LI); |
| 1023 | NumGVNLoad++; |
| 1024 | return true; |
| 1025 | } |
| 1026 | |
| 1027 | ValuesPerBlock.push_back(std::make_pair((*I)->getParent(), *I)); |
Owen Anderson | a37226a | 2007-08-07 23:12:31 +0000 | [diff] [blame] | 1028 | } |
Chris Lattner | 88365bb | 2008-03-21 21:14:38 +0000 | [diff] [blame] | 1029 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1030 | DEBUG(cerr << "GVN REMOVING NONLOCAL LOAD: " << *LI); |
| 1031 | |
| 1032 | DenseMap<BasicBlock*, Value*> BlockReplValues; |
| 1033 | BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end()); |
| 1034 | // Perform PHI construction. |
| 1035 | Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true); |
| 1036 | LI->replaceAllUsesWith(v); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1037 | if (isa<PointerType>(v->getType())) |
| 1038 | MD->invalidateCachedPointerInfo(v); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1039 | toErase.push_back(LI); |
| 1040 | NumGVNLoad++; |
| 1041 | return true; |
| 1042 | } |
| 1043 | |
| 1044 | if (!EnablePRE || !EnableLoadPRE) |
| 1045 | return false; |
| 1046 | |
| 1047 | // Okay, we have *some* definitions of the value. This means that the value |
| 1048 | // is available in some of our (transitive) predecessors. Lets think about |
| 1049 | // doing PRE of this load. This will involve inserting a new load into the |
| 1050 | // predecessor when it's not available. We could do this in general, but |
| 1051 | // prefer to not increase code size. As such, we only do this when we know |
| 1052 | // that we only have to insert *one* load (which means we're basically moving |
| 1053 | // the load, not inserting a new one). |
| 1054 | |
| 1055 | // Everything we do here is based on local predecessors of LI's block. If it |
| 1056 | // only has one predecessor, bail now. |
| 1057 | BasicBlock *LoadBB = LI->getParent(); |
| 1058 | if (LoadBB->getSinglePredecessor()) |
| 1059 | return false; |
| 1060 | |
| 1061 | // If we have a repl set with LI itself in it, this means we have a loop where |
| 1062 | // at least one of the values is LI. Since this means that we won't be able |
| 1063 | // to eliminate LI even if we insert uses in the other predecessors, we will |
| 1064 | // end up increasing code size. Reject this by scanning for LI. |
| 1065 | for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i) |
| 1066 | if (ValuesPerBlock[i].second == LI) |
| 1067 | return false; |
| 1068 | |
| 1069 | // Okay, we have some hope :). Check to see if the loaded value is fully |
| 1070 | // available in all but one predecessor. |
| 1071 | // FIXME: If we could restructure the CFG, we could make a common pred with |
| 1072 | // all the preds that don't have an available LI and insert a new load into |
| 1073 | // that one block. |
| 1074 | BasicBlock *UnavailablePred = 0; |
| 1075 | |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 1076 | DenseMap<BasicBlock*, char> FullyAvailableBlocks; |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1077 | for (unsigned i = 0, e = ValuesPerBlock.size(); i != e; ++i) |
| 1078 | FullyAvailableBlocks[ValuesPerBlock[i].first] = true; |
| 1079 | for (unsigned i = 0, e = UnavailableBlocks.size(); i != e; ++i) |
| 1080 | FullyAvailableBlocks[UnavailableBlocks[i]] = false; |
| 1081 | |
| 1082 | for (pred_iterator PI = pred_begin(LoadBB), E = pred_end(LoadBB); |
| 1083 | PI != E; ++PI) { |
| 1084 | if (IsValueFullyAvailableInBlock(*PI, FullyAvailableBlocks)) |
| 1085 | continue; |
| 1086 | |
| 1087 | // If this load is not available in multiple predecessors, reject it. |
| 1088 | if (UnavailablePred && UnavailablePred != *PI) |
| 1089 | return false; |
| 1090 | UnavailablePred = *PI; |
| 1091 | } |
| 1092 | |
| 1093 | assert(UnavailablePred != 0 && |
| 1094 | "Fully available value should be eliminated above!"); |
| 1095 | |
| 1096 | // If the loaded pointer is PHI node defined in this block, do PHI translation |
| 1097 | // to get its value in the predecessor. |
| 1098 | Value *LoadPtr = LI->getOperand(0)->DoPHITranslation(LoadBB, UnavailablePred); |
| 1099 | |
| 1100 | // Make sure the value is live in the predecessor. If it was defined by a |
| 1101 | // non-PHI instruction in this block, we don't know how to recompute it above. |
| 1102 | if (Instruction *LPInst = dyn_cast<Instruction>(LoadPtr)) |
| 1103 | if (!DT->dominates(LPInst->getParent(), UnavailablePred)) { |
| 1104 | DEBUG(cerr << "COULDN'T PRE LOAD BECAUSE PTR IS UNAVAILABLE IN PRED: " |
| 1105 | << *LPInst << *LI << "\n"); |
| 1106 | return false; |
| 1107 | } |
| 1108 | |
| 1109 | // We don't currently handle critical edges :( |
| 1110 | if (UnavailablePred->getTerminator()->getNumSuccessors() != 1) { |
| 1111 | DEBUG(cerr << "COULD NOT PRE LOAD BECAUSE OF CRITICAL EDGE '" |
| 1112 | << UnavailablePred->getName() << "': " << *LI); |
| 1113 | return false; |
Owen Anderson | a37226a | 2007-08-07 23:12:31 +0000 | [diff] [blame] | 1114 | } |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 1115 | |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1116 | // Okay, we can eliminate this load by inserting a reload in the predecessor |
| 1117 | // and using PHI construction to get the value in the other predecessors, do |
| 1118 | // it. |
Chris Lattner | 7f7c736 | 2008-12-05 17:04:12 +0000 | [diff] [blame] | 1119 | DEBUG(cerr << "GVN REMOVING PRE LOAD: " << *LI); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1120 | |
| 1121 | Value *NewLoad = new LoadInst(LoadPtr, LI->getName()+".pre", false, |
| 1122 | LI->getAlignment(), |
| 1123 | UnavailablePred->getTerminator()); |
| 1124 | |
| 1125 | DenseMap<BasicBlock*, Value*> BlockReplValues; |
| 1126 | BlockReplValues.insert(ValuesPerBlock.begin(), ValuesPerBlock.end()); |
| 1127 | BlockReplValues[UnavailablePred] = NewLoad; |
| 1128 | |
| 1129 | // Perform PHI construction. |
| 1130 | Value* v = GetValueForBlock(LI->getParent(), LI, BlockReplValues, true); |
| 1131 | LI->replaceAllUsesWith(v); |
Chris Lattner | 72bc70d | 2008-12-05 07:49:08 +0000 | [diff] [blame] | 1132 | v->takeName(LI); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1133 | if (isa<PointerType>(v->getType())) |
| 1134 | MD->invalidateCachedPointerInfo(v); |
Chris Lattner | c89c6a9 | 2008-12-02 08:16:11 +0000 | [diff] [blame] | 1135 | toErase.push_back(LI); |
| 1136 | NumPRELoad++; |
Owen Anderson | 0cd3203 | 2007-07-25 19:57:03 +0000 | [diff] [blame] | 1137 | return true; |
| 1138 | } |
| 1139 | |
Owen Anderson | 62bc33c | 2007-08-16 22:02:55 +0000 | [diff] [blame] | 1140 | /// processLoad - Attempt to eliminate a load, first by eliminating it |
| 1141 | /// locally, and then attempting non-local elimination if that fails. |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1142 | bool GVN::processLoad(LoadInst *L, SmallVectorImpl<Instruction*> &toErase) { |
| 1143 | if (L->isVolatile()) |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1144 | return false; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1145 | |
| 1146 | Value* pointer = L->getPointerOperand(); |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1147 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1148 | // ... to a pointer that has been loaded from before... |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1149 | MemDepResult dep = MD->getDependency(L); |
Owen Anderson | 8e8278e | 2007-08-14 17:59:48 +0000 | [diff] [blame] | 1150 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1151 | // If the value isn't available, don't do anything! |
| 1152 | if (dep.isClobber()) |
| 1153 | return false; |
| 1154 | |
| 1155 | // If it is defined in another block, try harder. |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1156 | if (dep.isNonLocal()) |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1157 | return processNonLocalLoad(L, toErase); |
Eli Friedman | b6c36e4 | 2008-02-12 12:08:14 +0000 | [diff] [blame] | 1158 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1159 | Instruction *DepInst = dep.getInst(); |
| 1160 | if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { |
| 1161 | // Only forward substitute stores to loads of the same type. |
| 1162 | // FIXME: Could do better! |
| 1163 | if (DepSI->getPointerOperand()->getType() != pointer->getType()) |
| 1164 | return false; |
| 1165 | |
| 1166 | // Remove it! |
| 1167 | L->replaceAllUsesWith(DepSI->getOperand(0)); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1168 | if (isa<PointerType>(DepSI->getOperand(0)->getType())) |
| 1169 | MD->invalidateCachedPointerInfo(DepSI->getOperand(0)); |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1170 | toErase.push_back(L); |
| 1171 | NumGVNLoad++; |
| 1172 | return true; |
| 1173 | } |
| 1174 | |
| 1175 | if (LoadInst *DepLI = dyn_cast<LoadInst>(DepInst)) { |
| 1176 | // Only forward substitute stores to loads of the same type. |
| 1177 | // FIXME: Could do better! load i32 -> load i8 -> truncate on little endian. |
| 1178 | if (DepLI->getType() != L->getType()) |
| 1179 | return false; |
| 1180 | |
| 1181 | // Remove it! |
| 1182 | L->replaceAllUsesWith(DepLI); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1183 | if (isa<PointerType>(DepLI->getType())) |
| 1184 | MD->invalidateCachedPointerInfo(DepLI); |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1185 | toErase.push_back(L); |
| 1186 | NumGVNLoad++; |
| 1187 | return true; |
| 1188 | } |
| 1189 | |
Chris Lattner | 237a828 | 2008-11-30 01:39:32 +0000 | [diff] [blame] | 1190 | // If this load really doesn't depend on anything, then we must be loading an |
| 1191 | // undef value. This can happen when loading for a fresh allocation with no |
| 1192 | // intervening stores, for example. |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1193 | if (isa<AllocationInst>(DepInst)) { |
Chris Lattner | 237a828 | 2008-11-30 01:39:32 +0000 | [diff] [blame] | 1194 | L->replaceAllUsesWith(UndefValue::get(L->getType())); |
| 1195 | toErase.push_back(L); |
Chris Lattner | 237a828 | 2008-11-30 01:39:32 +0000 | [diff] [blame] | 1196 | NumGVNLoad++; |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1197 | return true; |
Eli Friedman | b6c36e4 | 2008-02-12 12:08:14 +0000 | [diff] [blame] | 1198 | } |
| 1199 | |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1200 | return false; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1203 | Value* GVN::lookupNumber(BasicBlock* BB, uint32_t num) { |
Owen Anderson | b70a571 | 2008-06-23 17:49:45 +0000 | [diff] [blame] | 1204 | DenseMap<BasicBlock*, ValueNumberScope*>::iterator I = localAvail.find(BB); |
| 1205 | if (I == localAvail.end()) |
| 1206 | return 0; |
| 1207 | |
| 1208 | ValueNumberScope* locals = I->second; |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1209 | |
| 1210 | while (locals) { |
| 1211 | DenseMap<uint32_t, Value*>::iterator I = locals->table.find(num); |
| 1212 | if (I != locals->table.end()) |
| 1213 | return I->second; |
| 1214 | else |
| 1215 | locals = locals->parent; |
| 1216 | } |
| 1217 | |
| 1218 | return 0; |
| 1219 | } |
| 1220 | |
Owen Anderson | 36057c7 | 2007-08-14 18:16:29 +0000 | [diff] [blame] | 1221 | /// processInstruction - When calculating availability, handle an instruction |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1222 | /// by inserting it into the appropriate sets |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1223 | bool GVN::processInstruction(Instruction *I, |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 1224 | SmallVectorImpl<Instruction*> &toErase) { |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1225 | if (LoadInst* L = dyn_cast<LoadInst>(I)) { |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1226 | bool changed = processLoad(L, toErase); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1227 | |
| 1228 | if (!changed) { |
| 1229 | unsigned num = VN.lookup_or_add(L); |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1230 | localAvail[I->getParent()]->table.insert(std::make_pair(num, L)); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
| 1233 | return changed; |
| 1234 | } |
| 1235 | |
Owen Anderson | 0ae33ef | 2008-07-03 17:44:33 +0000 | [diff] [blame] | 1236 | uint32_t nextNum = VN.getNextUnusedValueNumber(); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1237 | unsigned num = VN.lookup_or_add(I); |
Chris Lattner | 8e1e95c | 2008-03-21 22:01:16 +0000 | [diff] [blame] | 1238 | |
Owen Anderson | e5ffa90 | 2008-04-07 09:59:07 +0000 | [diff] [blame] | 1239 | // Allocations are always uniquely numbered, so we can save time and memory |
| 1240 | // by fast failing them. |
Owen Anderson | 0ae33ef | 2008-07-03 17:44:33 +0000 | [diff] [blame] | 1241 | if (isa<AllocationInst>(I) || isa<TerminatorInst>(I)) { |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1242 | localAvail[I->getParent()]->table.insert(std::make_pair(num, I)); |
Owen Anderson | e5ffa90 | 2008-04-07 09:59:07 +0000 | [diff] [blame] | 1243 | return false; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1244 | } |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1245 | |
Owen Anderson | 62bc33c | 2007-08-16 22:02:55 +0000 | [diff] [blame] | 1246 | // Collapse PHI nodes |
Owen Anderson | 31f4967 | 2007-08-14 18:33:27 +0000 | [diff] [blame] | 1247 | if (PHINode* p = dyn_cast<PHINode>(I)) { |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 1248 | Value* constVal = CollapsePhi(p); |
Owen Anderson | 31f4967 | 2007-08-14 18:33:27 +0000 | [diff] [blame] | 1249 | |
| 1250 | if (constVal) { |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 1251 | for (PhiMapType::iterator PI = phiMap.begin(), PE = phiMap.end(); |
| 1252 | PI != PE; ++PI) |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1253 | PI->second.erase(p); |
Owen Anderson | 31f4967 | 2007-08-14 18:33:27 +0000 | [diff] [blame] | 1254 | |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 1255 | p->replaceAllUsesWith(constVal); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1256 | if (isa<PointerType>(constVal->getType())) |
| 1257 | MD->invalidateCachedPointerInfo(constVal); |
Owen Anderson | 1defe2d | 2007-08-16 22:51:56 +0000 | [diff] [blame] | 1258 | toErase.push_back(p); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1259 | } else { |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1260 | localAvail[I->getParent()]->table.insert(std::make_pair(num, I)); |
Owen Anderson | 31f4967 | 2007-08-14 18:33:27 +0000 | [diff] [blame] | 1261 | } |
Owen Anderson | 0ae33ef | 2008-07-03 17:44:33 +0000 | [diff] [blame] | 1262 | |
| 1263 | // If the number we were assigned was a brand new VN, then we don't |
| 1264 | // need to do a lookup to see if the number already exists |
| 1265 | // somewhere in the domtree: it can't! |
| 1266 | } else if (num == nextNum) { |
| 1267 | localAvail[I->getParent()]->table.insert(std::make_pair(num, I)); |
| 1268 | |
Owen Anderson | 62bc33c | 2007-08-16 22:02:55 +0000 | [diff] [blame] | 1269 | // Perform value-number based elimination |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1270 | } else if (Value* repl = lookupNumber(I->getParent(), num)) { |
Owen Anderson | 5fc4aba | 2007-12-08 01:37:09 +0000 | [diff] [blame] | 1271 | // Remove it! |
Owen Anderson | bf7d0bc | 2007-07-31 23:27:13 +0000 | [diff] [blame] | 1272 | VN.erase(I); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1273 | I->replaceAllUsesWith(repl); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1274 | if (isa<PointerType>(repl->getType())) |
| 1275 | MD->invalidateCachedPointerInfo(repl); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1276 | toErase.push_back(I); |
| 1277 | return true; |
Owen Anderson | 0ae33ef | 2008-07-03 17:44:33 +0000 | [diff] [blame] | 1278 | } else { |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1279 | localAvail[I->getParent()]->table.insert(std::make_pair(num, I)); |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1280 | } |
| 1281 | |
| 1282 | return false; |
| 1283 | } |
| 1284 | |
| 1285 | // GVN::runOnFunction - This is the main transformation entry point for a |
| 1286 | // function. |
| 1287 | // |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1288 | bool GVN::runOnFunction(Function& F) { |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1289 | MD = &getAnalysis<MemoryDependenceAnalysis>(); |
| 1290 | DT = &getAnalysis<DominatorTree>(); |
Owen Anderson | a472c4a | 2008-05-12 20:15:55 +0000 | [diff] [blame] | 1291 | VN.setAliasAnalysis(&getAnalysis<AliasAnalysis>()); |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1292 | VN.setMemDep(MD); |
| 1293 | VN.setDomTree(DT); |
Owen Anderson | b388ca9 | 2007-10-18 19:39:33 +0000 | [diff] [blame] | 1294 | |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1295 | bool changed = false; |
| 1296 | bool shouldContinue = true; |
| 1297 | |
Owen Anderson | 5d0af03 | 2008-07-16 17:52:31 +0000 | [diff] [blame] | 1298 | // Merge unconditional branches, allowing PRE to catch more |
| 1299 | // optimization opportunities. |
| 1300 | for (Function::iterator FI = F.begin(), FE = F.end(); FI != FE; ) { |
| 1301 | BasicBlock* BB = FI; |
| 1302 | ++FI; |
Owen Anderson | b31b06d | 2008-07-17 00:01:40 +0000 | [diff] [blame] | 1303 | bool removedBlock = MergeBlockIntoPredecessor(BB, this); |
| 1304 | if (removedBlock) NumGVNBlocks++; |
| 1305 | |
| 1306 | changed |= removedBlock; |
Owen Anderson | 5d0af03 | 2008-07-16 17:52:31 +0000 | [diff] [blame] | 1307 | } |
| 1308 | |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1309 | unsigned Iteration = 0; |
| 1310 | |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1311 | while (shouldContinue) { |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1312 | DEBUG(cerr << "GVN iteration: " << Iteration << "\n"); |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1313 | shouldContinue = iterateOnFunction(F); |
| 1314 | changed |= shouldContinue; |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1315 | ++Iteration; |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1316 | } |
| 1317 | |
Owen Anderson | e98c54c | 2008-07-18 18:03:38 +0000 | [diff] [blame] | 1318 | if (EnablePRE) { |
Owen Anderson | 0c7f91c | 2008-09-03 23:06:07 +0000 | [diff] [blame] | 1319 | bool PREChanged = true; |
| 1320 | while (PREChanged) { |
| 1321 | PREChanged = performPRE(F); |
Owen Anderson | e98c54c | 2008-07-18 18:03:38 +0000 | [diff] [blame] | 1322 | changed |= PREChanged; |
Owen Anderson | 0c7f91c | 2008-09-03 23:06:07 +0000 | [diff] [blame] | 1323 | } |
Owen Anderson | e98c54c | 2008-07-18 18:03:38 +0000 | [diff] [blame] | 1324 | } |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1325 | // FIXME: Should perform GVN again after PRE does something. PRE can move |
| 1326 | // computations into blocks where they become fully redundant. Note that |
| 1327 | // we can't do this until PRE's critical edge splitting updates memdep. |
| 1328 | // Actually, when this happens, we should just fully integrate PRE into GVN. |
Nuno Lopes | 7cdd9ee | 2008-10-10 16:25:50 +0000 | [diff] [blame] | 1329 | |
| 1330 | cleanupGlobalSets(); |
| 1331 | |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1332 | return changed; |
| 1333 | } |
| 1334 | |
| 1335 | |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1336 | bool GVN::processBlock(DomTreeNode* DTN) { |
| 1337 | BasicBlock* BB = DTN->getBlock(); |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1338 | // FIXME: Kill off toErase by doing erasing eagerly in a helper function (and |
| 1339 | // incrementing BI before processing an instruction). |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1340 | SmallVector<Instruction*, 8> toErase; |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1341 | bool changed_function = false; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1342 | |
| 1343 | if (DTN->getIDom()) |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1344 | localAvail[BB] = |
| 1345 | new ValueNumberScope(localAvail[DTN->getIDom()->getBlock()]); |
| 1346 | else |
| 1347 | localAvail[BB] = new ValueNumberScope(0); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1348 | |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1349 | for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); |
| 1350 | BI != BE;) { |
Chris Lattner | b51deb9 | 2008-12-05 21:04:20 +0000 | [diff] [blame] | 1351 | changed_function |= processInstruction(BI, toErase); |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1352 | if (toErase.empty()) { |
| 1353 | ++BI; |
| 1354 | continue; |
| 1355 | } |
| 1356 | |
| 1357 | // If we need some instructions deleted, do it now. |
| 1358 | NumGVNInstr += toErase.size(); |
| 1359 | |
| 1360 | // Avoid iterator invalidation. |
| 1361 | bool AtStart = BI == BB->begin(); |
| 1362 | if (!AtStart) |
| 1363 | --BI; |
| 1364 | |
| 1365 | for (SmallVector<Instruction*, 4>::iterator I = toErase.begin(), |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1366 | E = toErase.end(); I != E; ++I) { |
| 1367 | DEBUG(cerr << "GVN removed: " << **I); |
| 1368 | MD->removeInstruction(*I); |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1369 | (*I)->eraseFromParent(); |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1370 | } |
Chris Lattner | ae19931 | 2008-12-09 19:21:47 +0000 | [diff] [blame] | 1371 | toErase.clear(); |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1372 | |
| 1373 | if (AtStart) |
| 1374 | BI = BB->begin(); |
| 1375 | else |
| 1376 | ++BI; |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1377 | } |
| 1378 | |
Owen Anderson | af4240a | 2008-06-12 19:25:32 +0000 | [diff] [blame] | 1379 | return changed_function; |
| 1380 | } |
| 1381 | |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1382 | /// performPRE - Perform a purely local form of PRE that looks for diamond |
| 1383 | /// control flow patterns and attempts to perform simple PRE at the join point. |
| 1384 | bool GVN::performPRE(Function& F) { |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1385 | bool Changed = false; |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1386 | SmallVector<std::pair<TerminatorInst*, unsigned>, 4> toSplit; |
Chris Lattner | 0971379 | 2008-12-01 07:29:03 +0000 | [diff] [blame] | 1387 | DenseMap<BasicBlock*, Value*> predMap; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1388 | for (df_iterator<BasicBlock*> DI = df_begin(&F.getEntryBlock()), |
| 1389 | DE = df_end(&F.getEntryBlock()); DI != DE; ++DI) { |
| 1390 | BasicBlock* CurrentBlock = *DI; |
| 1391 | |
| 1392 | // Nothing to PRE in the entry block. |
| 1393 | if (CurrentBlock == &F.getEntryBlock()) continue; |
| 1394 | |
| 1395 | for (BasicBlock::iterator BI = CurrentBlock->begin(), |
| 1396 | BE = CurrentBlock->end(); BI != BE; ) { |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1397 | Instruction *CurInst = BI++; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1398 | |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1399 | if (isa<AllocationInst>(CurInst) || isa<TerminatorInst>(CurInst) || |
| 1400 | isa<PHINode>(CurInst) || CurInst->mayReadFromMemory() || |
| 1401 | CurInst->mayWriteToMemory()) |
| 1402 | continue; |
| 1403 | |
| 1404 | uint32_t valno = VN.lookup(CurInst); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1405 | |
| 1406 | // Look for the predecessors for PRE opportunities. We're |
| 1407 | // only trying to solve the basic diamond case, where |
| 1408 | // a value is computed in the successor and one predecessor, |
| 1409 | // but not the other. We also explicitly disallow cases |
| 1410 | // where the successor is its own predecessor, because they're |
| 1411 | // more complicated to get right. |
| 1412 | unsigned numWith = 0; |
| 1413 | unsigned numWithout = 0; |
| 1414 | BasicBlock* PREPred = 0; |
Chris Lattner | 0971379 | 2008-12-01 07:29:03 +0000 | [diff] [blame] | 1415 | predMap.clear(); |
| 1416 | |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1417 | for (pred_iterator PI = pred_begin(CurrentBlock), |
| 1418 | PE = pred_end(CurrentBlock); PI != PE; ++PI) { |
| 1419 | // We're not interested in PRE where the block is its |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1420 | // own predecessor, on in blocks with predecessors |
| 1421 | // that are not reachable. |
| 1422 | if (*PI == CurrentBlock) { |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1423 | numWithout = 2; |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1424 | break; |
| 1425 | } else if (!localAvail.count(*PI)) { |
| 1426 | numWithout = 2; |
| 1427 | break; |
| 1428 | } |
| 1429 | |
| 1430 | DenseMap<uint32_t, Value*>::iterator predV = |
| 1431 | localAvail[*PI]->table.find(valno); |
| 1432 | if (predV == localAvail[*PI]->table.end()) { |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1433 | PREPred = *PI; |
| 1434 | numWithout++; |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1435 | } else if (predV->second == CurInst) { |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1436 | numWithout = 2; |
| 1437 | } else { |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1438 | predMap[*PI] = predV->second; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1439 | numWith++; |
| 1440 | } |
| 1441 | } |
| 1442 | |
| 1443 | // Don't do PRE when it might increase code size, i.e. when |
| 1444 | // we would need to insert instructions in more than one pred. |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1445 | if (numWithout != 1 || numWith == 0) |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1446 | continue; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1447 | |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1448 | // We can't do PRE safely on a critical edge, so instead we schedule |
| 1449 | // the edge to be split and perform the PRE the next time we iterate |
| 1450 | // on the function. |
| 1451 | unsigned succNum = 0; |
| 1452 | for (unsigned i = 0, e = PREPred->getTerminator()->getNumSuccessors(); |
| 1453 | i != e; ++i) |
Owen Anderson | 0c7f91c | 2008-09-03 23:06:07 +0000 | [diff] [blame] | 1454 | if (PREPred->getTerminator()->getSuccessor(i) == CurrentBlock) { |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1455 | succNum = i; |
| 1456 | break; |
| 1457 | } |
| 1458 | |
| 1459 | if (isCriticalEdge(PREPred->getTerminator(), succNum)) { |
| 1460 | toSplit.push_back(std::make_pair(PREPred->getTerminator(), succNum)); |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1461 | continue; |
| 1462 | } |
| 1463 | |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1464 | // Instantiate the expression the in predecessor that lacked it. |
| 1465 | // Because we are going top-down through the block, all value numbers |
| 1466 | // will be available in the predecessor by the time we need them. Any |
| 1467 | // that weren't original present will have been instantiated earlier |
| 1468 | // in this loop. |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1469 | Instruction* PREInstr = CurInst->clone(); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1470 | bool success = true; |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1471 | for (unsigned i = 0, e = CurInst->getNumOperands(); i != e; ++i) { |
| 1472 | Value *Op = PREInstr->getOperand(i); |
| 1473 | if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op)) |
| 1474 | continue; |
| 1475 | |
| 1476 | if (Value *V = lookupNumber(PREPred, VN.lookup(Op))) { |
| 1477 | PREInstr->setOperand(i, V); |
| 1478 | } else { |
| 1479 | success = false; |
| 1480 | break; |
Owen Anderson | c45996b | 2008-07-11 20:05:13 +0000 | [diff] [blame] | 1481 | } |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1482 | } |
| 1483 | |
| 1484 | // Fail out if we encounter an operand that is not available in |
| 1485 | // the PRE predecessor. This is typically because of loads which |
| 1486 | // are not value numbered precisely. |
| 1487 | if (!success) { |
| 1488 | delete PREInstr; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1489 | continue; |
| 1490 | } |
| 1491 | |
| 1492 | PREInstr->insertBefore(PREPred->getTerminator()); |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1493 | PREInstr->setName(CurInst->getName() + ".pre"); |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1494 | predMap[PREPred] = PREInstr; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1495 | VN.add(PREInstr, valno); |
| 1496 | NumGVNPRE++; |
| 1497 | |
| 1498 | // Update the availability map to include the new instruction. |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1499 | localAvail[PREPred]->table.insert(std::make_pair(valno, PREInstr)); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1500 | |
| 1501 | // Create a PHI to make the value available in this block. |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1502 | PHINode* Phi = PHINode::Create(CurInst->getType(), |
| 1503 | CurInst->getName() + ".pre-phi", |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1504 | CurrentBlock->begin()); |
| 1505 | for (pred_iterator PI = pred_begin(CurrentBlock), |
| 1506 | PE = pred_end(CurrentBlock); PI != PE; ++PI) |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1507 | Phi->addIncoming(predMap[*PI], *PI); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1508 | |
| 1509 | VN.add(Phi, valno); |
Owen Anderson | 6fafe84 | 2008-06-20 01:15:47 +0000 | [diff] [blame] | 1510 | localAvail[CurrentBlock]->table[valno] = Phi; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1511 | |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1512 | CurInst->replaceAllUsesWith(Phi); |
Chris Lattner | bc99be1 | 2008-12-09 22:06:23 +0000 | [diff] [blame^] | 1513 | if (isa<PointerType>(Phi->getType())) |
| 1514 | MD->invalidateCachedPointerInfo(Phi); |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1515 | VN.erase(CurInst); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1516 | |
Chris Lattner | d0f5bfc | 2008-12-01 07:35:54 +0000 | [diff] [blame] | 1517 | DEBUG(cerr << "GVN PRE removed: " << *CurInst); |
| 1518 | MD->removeInstruction(CurInst); |
| 1519 | CurInst->eraseFromParent(); |
| 1520 | Changed = true; |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1521 | } |
| 1522 | } |
| 1523 | |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1524 | for (SmallVector<std::pair<TerminatorInst*, unsigned>, 4>::iterator |
Anton Korobeynikov | 64b5356 | 2008-12-05 19:38:49 +0000 | [diff] [blame] | 1525 | I = toSplit.begin(), E = toSplit.end(); I != E; ++I) |
Owen Anderson | 5c274ee | 2008-06-19 19:54:19 +0000 | [diff] [blame] | 1526 | SplitCriticalEdge(I->first, I->second, this); |
| 1527 | |
Anton Korobeynikov | 64b5356 | 2008-12-05 19:38:49 +0000 | [diff] [blame] | 1528 | return Changed || toSplit.size(); |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1529 | } |
| 1530 | |
Owen Anderson | 961edc8 | 2008-07-15 16:28:06 +0000 | [diff] [blame] | 1531 | // iterateOnFunction - Executes one iteration of GVN |
Owen Anderson | 3e75a42 | 2007-08-14 18:04:11 +0000 | [diff] [blame] | 1532 | bool GVN::iterateOnFunction(Function &F) { |
Nuno Lopes | 7cdd9ee | 2008-10-10 16:25:50 +0000 | [diff] [blame] | 1533 | cleanupGlobalSets(); |
Chris Lattner | 2e60701 | 2008-03-21 21:33:23 +0000 | [diff] [blame] | 1534 | |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1535 | // Top-down walk of the dominator tree |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1536 | bool changed = false; |
Chris Lattner | 663e441 | 2008-12-01 00:40:32 +0000 | [diff] [blame] | 1537 | for (df_iterator<DomTreeNode*> DI = df_begin(DT->getRootNode()), |
| 1538 | DE = df_end(DT->getRootNode()); DI != DE; ++DI) |
Owen Anderson | b230372 | 2008-06-18 21:41:49 +0000 | [diff] [blame] | 1539 | changed |= processBlock(*DI); |
Owen Anderson | aa0b634 | 2008-06-19 19:57:25 +0000 | [diff] [blame] | 1540 | |
Owen Anderson | 5d0af03 | 2008-07-16 17:52:31 +0000 | [diff] [blame] | 1541 | return changed; |
Owen Anderson | 1ad2cb7 | 2007-07-24 17:55:58 +0000 | [diff] [blame] | 1542 | } |
Nuno Lopes | 7cdd9ee | 2008-10-10 16:25:50 +0000 | [diff] [blame] | 1543 | |
| 1544 | void GVN::cleanupGlobalSets() { |
| 1545 | VN.clear(); |
| 1546 | phiMap.clear(); |
| 1547 | |
| 1548 | for (DenseMap<BasicBlock*, ValueNumberScope*>::iterator |
| 1549 | I = localAvail.begin(), E = localAvail.end(); I != E; ++I) |
| 1550 | delete I->second; |
| 1551 | localAvail.clear(); |
| 1552 | } |