Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1 | //===-- PredicateSimplifier.cpp - Path Sensitive Simplifier ---------------===// |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +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. |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 7 | // |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 9 | // |
| 10 | // Path-sensitive optimizer. In a branch where x == y, replace uses of |
| 11 | // x with y. Permits further optimization, such as the elimination of |
| 12 | // the unreachable call: |
| 13 | // |
| 14 | // void test(int *p, int *q) |
| 15 | // { |
| 16 | // if (p != q) |
| 17 | // return; |
| 18 | // |
| 19 | // if (*p != *q) |
| 20 | // foo(); // unreachable |
| 21 | // } |
| 22 | // |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 23 | //===----------------------------------------------------------------------===// |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 24 | // |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 25 | // The InequalityGraph focusses on four properties; equals, not equals, |
| 26 | // less-than and less-than-or-equals-to. The greater-than forms are also held |
| 27 | // just to allow walking from a lesser node to a greater one. These properties |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 28 | // are stored in a lattice; LE can become LT or EQ, NE can become LT or GT. |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 29 | // |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 30 | // These relationships define a graph between values of the same type. Each |
| 31 | // Value is stored in a map table that retrieves the associated Node. This |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 32 | // is how EQ relationships are stored; the map contains pointers from equal |
| 33 | // Value to the same node. The node contains a most canonical Value* form |
| 34 | // and the list of known relationships with other nodes. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 35 | // |
| 36 | // If two nodes are known to be inequal, then they will contain pointers to |
| 37 | // each other with an "NE" relationship. If node getNode(%x) is less than |
| 38 | // getNode(%y), then the %x node will contain <%y, GT> and %y will contain |
| 39 | // <%x, LT>. This allows us to tie nodes together into a graph like this: |
| 40 | // |
| 41 | // %a < %b < %c < %d |
| 42 | // |
| 43 | // with four nodes representing the properties. The InequalityGraph provides |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 44 | // querying with "isRelatedBy" and mutators "addEquality" and "addInequality". |
| 45 | // To find a relationship, we start with one of the nodes any binary search |
| 46 | // through its list to find where the relationships with the second node start. |
| 47 | // Then we iterate through those to find the first relationship that dominates |
| 48 | // our context node. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 49 | // |
| 50 | // To create these properties, we wait until a branch or switch instruction |
| 51 | // implies that a particular value is true (or false). The VRPSolver is |
| 52 | // responsible for analyzing the variable and seeing what new inferences |
| 53 | // can be made from each property. For example: |
| 54 | // |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 55 | // %P = icmp ne i32* %ptr, null |
| 56 | // %a = and i1 %P, %Q |
| 57 | // br i1 %a label %cond_true, label %cond_false |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 58 | // |
| 59 | // For the true branch, the VRPSolver will start with %a EQ true and look at |
| 60 | // the definition of %a and find that it can infer that %P and %Q are both |
| 61 | // true. From %P being true, it can infer that %ptr NE null. For the false |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 62 | // branch it can't infer anything from the "and" instruction. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 63 | // |
| 64 | // Besides branches, we can also infer properties from instruction that may |
| 65 | // have undefined behaviour in certain cases. For example, the dividend of |
| 66 | // a division may never be zero. After the division instruction, we may assume |
| 67 | // that the dividend is not equal to zero. |
| 68 | // |
| 69 | //===----------------------------------------------------------------------===// |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 70 | // |
| 71 | // The ValueRanges class stores the known integer bounds of a Value. When we |
| 72 | // encounter i8 %a u< %b, the ValueRanges stores that %a = [1, 255] and |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 73 | // %b = [0, 254]. |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 74 | // |
| 75 | // It never stores an empty range, because that means that the code is |
| 76 | // unreachable. It never stores a single-element range since that's an equality |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 77 | // relationship and better stored in the InequalityGraph, nor an empty range |
| 78 | // since that is better stored in UnreachableBlocks. |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 79 | // |
| 80 | //===----------------------------------------------------------------------===// |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 81 | |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 82 | #define DEBUG_TYPE "predsimplify" |
| 83 | #include "llvm/Transforms/Scalar.h" |
| 84 | #include "llvm/Constants.h" |
Nick Lewycky | 802fe27 | 2006-10-22 19:53:27 +0000 | [diff] [blame] | 85 | #include "llvm/DerivedTypes.h" |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 86 | #include "llvm/Instructions.h" |
| 87 | #include "llvm/Pass.h" |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 88 | #include "llvm/ADT/DepthFirstIterator.h" |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 89 | #include "llvm/ADT/SetOperations.h" |
Reid Spencer | 6734b57 | 2007-02-04 00:40:42 +0000 | [diff] [blame] | 90 | #include "llvm/ADT/SetVector.h" |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 91 | #include "llvm/ADT/Statistic.h" |
| 92 | #include "llvm/ADT/STLExtras.h" |
| 93 | #include "llvm/Analysis/Dominators.h" |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 94 | #include "llvm/Assembly/Writer.h" |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 95 | #include "llvm/Support/CFG.h" |
Chris Lattner | 02fc40e | 2006-12-06 18:14:47 +0000 | [diff] [blame] | 96 | #include "llvm/Support/Compiler.h" |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 97 | #include "llvm/Support/ConstantRange.h" |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 98 | #include "llvm/Support/Debug.h" |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 99 | #include "llvm/Support/InstVisitor.h" |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 100 | #include "llvm/Target/TargetData.h" |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 101 | #include "llvm/Transforms/Utils/Local.h" |
| 102 | #include <algorithm> |
| 103 | #include <deque> |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 104 | #include <stack> |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 105 | using namespace llvm; |
| 106 | |
Chris Lattner | 438e08e | 2006-12-19 21:49:03 +0000 | [diff] [blame] | 107 | STATISTIC(NumVarsReplaced, "Number of argument substitutions"); |
| 108 | STATISTIC(NumInstruction , "Number of instructions removed"); |
| 109 | STATISTIC(NumSimple , "Number of simple replacements"); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 110 | STATISTIC(NumBlocks , "Number of blocks marked unreachable"); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 111 | STATISTIC(NumSnuggle , "Number of comparisons snuggled"); |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 112 | |
Chris Lattner | 438e08e | 2006-12-19 21:49:03 +0000 | [diff] [blame] | 113 | namespace { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 114 | class DomTreeDFS { |
| 115 | public: |
| 116 | class Node { |
| 117 | friend class DomTreeDFS; |
| 118 | public: |
| 119 | typedef std::vector<Node *>::iterator iterator; |
| 120 | typedef std::vector<Node *>::const_iterator const_iterator; |
| 121 | |
| 122 | unsigned getDFSNumIn() const { return DFSin; } |
| 123 | unsigned getDFSNumOut() const { return DFSout; } |
| 124 | |
| 125 | BasicBlock *getBlock() const { return BB; } |
| 126 | |
| 127 | iterator begin() { return Children.begin(); } |
| 128 | iterator end() { return Children.end(); } |
| 129 | |
| 130 | const_iterator begin() const { return Children.begin(); } |
| 131 | const_iterator end() const { return Children.end(); } |
| 132 | |
| 133 | bool dominates(const Node *N) const { |
| 134 | return DFSin <= N->DFSin && DFSout >= N->DFSout; |
| 135 | } |
| 136 | |
| 137 | bool DominatedBy(const Node *N) const { |
| 138 | return N->dominates(this); |
| 139 | } |
| 140 | |
| 141 | /// Sorts by the number of descendants. With this, you can iterate |
| 142 | /// through a sorted list and the first matching entry is the most |
| 143 | /// specific match for your basic block. The order provided is stable; |
| 144 | /// DomTreeDFS::Nodes with the same number of descendants are sorted by |
| 145 | /// DFS in number. |
| 146 | bool operator<(const Node &N) const { |
| 147 | unsigned spread = DFSout - DFSin; |
| 148 | unsigned N_spread = N.DFSout - N.DFSin; |
| 149 | if (spread == N_spread) return DFSin < N.DFSin; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 150 | return spread < N_spread; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 151 | } |
| 152 | bool operator>(const Node &N) const { return N < *this; } |
| 153 | |
| 154 | private: |
| 155 | unsigned DFSin, DFSout; |
| 156 | BasicBlock *BB; |
| 157 | |
| 158 | std::vector<Node *> Children; |
| 159 | }; |
| 160 | |
| 161 | // XXX: this may be slow. Instead of using "new" for each node, consider |
| 162 | // putting them in a vector to keep them contiguous. |
| 163 | explicit DomTreeDFS(DominatorTree *DT) { |
| 164 | std::stack<std::pair<Node *, DomTreeNode *> > S; |
| 165 | |
| 166 | Entry = new Node; |
| 167 | Entry->BB = DT->getRootNode()->getBlock(); |
| 168 | S.push(std::make_pair(Entry, DT->getRootNode())); |
| 169 | |
| 170 | NodeMap[Entry->BB] = Entry; |
| 171 | |
| 172 | while (!S.empty()) { |
| 173 | std::pair<Node *, DomTreeNode *> &Pair = S.top(); |
| 174 | Node *N = Pair.first; |
| 175 | DomTreeNode *DTNode = Pair.second; |
| 176 | S.pop(); |
| 177 | |
| 178 | for (DomTreeNode::iterator I = DTNode->begin(), E = DTNode->end(); |
| 179 | I != E; ++I) { |
| 180 | Node *NewNode = new Node; |
| 181 | NewNode->BB = (*I)->getBlock(); |
| 182 | N->Children.push_back(NewNode); |
| 183 | S.push(std::make_pair(NewNode, *I)); |
| 184 | |
| 185 | NodeMap[NewNode->BB] = NewNode; |
| 186 | } |
| 187 | } |
| 188 | |
| 189 | renumber(); |
| 190 | |
| 191 | #ifndef NDEBUG |
| 192 | DEBUG(dump()); |
| 193 | #endif |
| 194 | } |
| 195 | |
| 196 | #ifndef NDEBUG |
| 197 | virtual |
| 198 | #endif |
| 199 | ~DomTreeDFS() { |
| 200 | std::stack<Node *> S; |
| 201 | |
| 202 | S.push(Entry); |
| 203 | while (!S.empty()) { |
| 204 | Node *N = S.top(); S.pop(); |
| 205 | |
| 206 | for (Node::iterator I = N->begin(), E = N->end(); I != E; ++I) |
| 207 | S.push(*I); |
| 208 | |
| 209 | delete N; |
| 210 | } |
| 211 | } |
| 212 | |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 213 | /// getRootNode - This returns the entry node for the CFG of the function. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 214 | Node *getRootNode() const { return Entry; } |
| 215 | |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 216 | /// getNodeForBlock - return the node for the specified basic block. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 217 | Node *getNodeForBlock(BasicBlock *BB) const { |
| 218 | if (!NodeMap.count(BB)) return 0; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 219 | return const_cast<DomTreeDFS*>(this)->NodeMap[BB]; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 220 | } |
| 221 | |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 222 | /// dominates - returns true if the basic block for I1 dominates that of |
| 223 | /// the basic block for I2. If the instructions belong to the same basic |
| 224 | /// block, the instruction first instruction sequentially in the block is |
| 225 | /// considered dominating. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 226 | bool dominates(Instruction *I1, Instruction *I2) { |
| 227 | BasicBlock *BB1 = I1->getParent(), |
| 228 | *BB2 = I2->getParent(); |
| 229 | if (BB1 == BB2) { |
| 230 | if (isa<TerminatorInst>(I1)) return false; |
| 231 | if (isa<TerminatorInst>(I2)) return true; |
| 232 | if ( isa<PHINode>(I1) && !isa<PHINode>(I2)) return true; |
| 233 | if (!isa<PHINode>(I1) && isa<PHINode>(I2)) return false; |
| 234 | |
| 235 | for (BasicBlock::const_iterator I = BB2->begin(), E = BB2->end(); |
| 236 | I != E; ++I) { |
| 237 | if (&*I == I1) return true; |
| 238 | else if (&*I == I2) return false; |
| 239 | } |
| 240 | assert(!"Instructions not found in parent BasicBlock?"); |
| 241 | } else { |
Nick Lewycky | dea2526 | 2007-06-24 04:40:16 +0000 | [diff] [blame] | 242 | Node *Node1 = getNodeForBlock(BB1), |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 243 | *Node2 = getNodeForBlock(BB2); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 244 | return Node1 && Node2 && Node1->dominates(Node2); |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 245 | } |
Chris Lattner | d27c991 | 2008-03-30 18:22:13 +0000 | [diff] [blame] | 246 | return false; // Not reached |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 247 | } |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 248 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 249 | private: |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 250 | /// renumber - calculates the depth first search numberings and applies |
| 251 | /// them onto the nodes. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 252 | void renumber() { |
| 253 | std::stack<std::pair<Node *, Node::iterator> > S; |
| 254 | unsigned n = 0; |
| 255 | |
| 256 | Entry->DFSin = ++n; |
| 257 | S.push(std::make_pair(Entry, Entry->begin())); |
| 258 | |
| 259 | while (!S.empty()) { |
| 260 | std::pair<Node *, Node::iterator> &Pair = S.top(); |
| 261 | Node *N = Pair.first; |
| 262 | Node::iterator &I = Pair.second; |
| 263 | |
| 264 | if (I == N->end()) { |
| 265 | N->DFSout = ++n; |
| 266 | S.pop(); |
| 267 | } else { |
| 268 | Node *Next = *I++; |
| 269 | Next->DFSin = ++n; |
| 270 | S.push(std::make_pair(Next, Next->begin())); |
| 271 | } |
| 272 | } |
| 273 | } |
| 274 | |
| 275 | #ifndef NDEBUG |
| 276 | virtual void dump() const { |
| 277 | dump(*cerr.stream()); |
| 278 | } |
| 279 | |
| 280 | void dump(std::ostream &os) const { |
| 281 | os << "Predicate simplifier DomTreeDFS: \n"; |
| 282 | dump(Entry, 0, os); |
| 283 | os << "\n\n"; |
| 284 | } |
| 285 | |
| 286 | void dump(Node *N, int depth, std::ostream &os) const { |
| 287 | ++depth; |
| 288 | for (int i = 0; i < depth; ++i) { os << " "; } |
| 289 | os << "[" << depth << "] "; |
| 290 | |
| 291 | os << N->getBlock()->getName() << " (" << N->getDFSNumIn() |
| 292 | << ", " << N->getDFSNumOut() << ")\n"; |
| 293 | |
| 294 | for (Node::iterator I = N->begin(), E = N->end(); I != E; ++I) |
| 295 | dump(*I, depth, os); |
| 296 | } |
| 297 | #endif |
| 298 | |
| 299 | Node *Entry; |
| 300 | std::map<BasicBlock *, Node *> NodeMap; |
| 301 | }; |
| 302 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 303 | // SLT SGT ULT UGT EQ |
| 304 | // 0 1 0 1 0 -- GT 10 |
| 305 | // 0 1 0 1 1 -- GE 11 |
| 306 | // 0 1 1 0 0 -- SGTULT 12 |
| 307 | // 0 1 1 0 1 -- SGEULE 13 |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 308 | // 0 1 1 1 0 -- SGT 14 |
| 309 | // 0 1 1 1 1 -- SGE 15 |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 310 | // 1 0 0 1 0 -- SLTUGT 18 |
| 311 | // 1 0 0 1 1 -- SLEUGE 19 |
| 312 | // 1 0 1 0 0 -- LT 20 |
| 313 | // 1 0 1 0 1 -- LE 21 |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 314 | // 1 0 1 1 0 -- SLT 22 |
| 315 | // 1 0 1 1 1 -- SLE 23 |
| 316 | // 1 1 0 1 0 -- UGT 26 |
| 317 | // 1 1 0 1 1 -- UGE 27 |
| 318 | // 1 1 1 0 0 -- ULT 28 |
| 319 | // 1 1 1 0 1 -- ULE 29 |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 320 | // 1 1 1 1 0 -- NE 30 |
| 321 | enum LatticeBits { |
| 322 | EQ_BIT = 1, UGT_BIT = 2, ULT_BIT = 4, SGT_BIT = 8, SLT_BIT = 16 |
| 323 | }; |
| 324 | enum LatticeVal { |
| 325 | GT = SGT_BIT | UGT_BIT, |
| 326 | GE = GT | EQ_BIT, |
| 327 | LT = SLT_BIT | ULT_BIT, |
| 328 | LE = LT | EQ_BIT, |
| 329 | NE = SLT_BIT | SGT_BIT | ULT_BIT | UGT_BIT, |
| 330 | SGTULT = SGT_BIT | ULT_BIT, |
| 331 | SGEULE = SGTULT | EQ_BIT, |
| 332 | SLTUGT = SLT_BIT | UGT_BIT, |
| 333 | SLEUGE = SLTUGT | EQ_BIT, |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 334 | ULT = SLT_BIT | SGT_BIT | ULT_BIT, |
| 335 | UGT = SLT_BIT | SGT_BIT | UGT_BIT, |
| 336 | SLT = SLT_BIT | ULT_BIT | UGT_BIT, |
| 337 | SGT = SGT_BIT | ULT_BIT | UGT_BIT, |
| 338 | SLE = SLT | EQ_BIT, |
| 339 | SGE = SGT | EQ_BIT, |
| 340 | ULE = ULT | EQ_BIT, |
| 341 | UGE = UGT | EQ_BIT |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 342 | }; |
| 343 | |
Devang Patel | 59500c8 | 2008-11-21 20:00:59 +0000 | [diff] [blame] | 344 | #ifndef NDEBUG |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 345 | /// validPredicate - determines whether a given value is actually a lattice |
| 346 | /// value. Only used in assertions or debugging. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 347 | static bool validPredicate(LatticeVal LV) { |
| 348 | switch (LV) { |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 349 | case GT: case GE: case LT: case LE: case NE: |
| 350 | case SGTULT: case SGT: case SGEULE: |
| 351 | case SLTUGT: case SLT: case SLEUGE: |
| 352 | case ULT: case UGT: |
| 353 | case SLE: case SGE: case ULE: case UGE: |
| 354 | return true; |
| 355 | default: |
| 356 | return false; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 357 | } |
| 358 | } |
Devang Patel | 59500c8 | 2008-11-21 20:00:59 +0000 | [diff] [blame] | 359 | #endif |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 360 | |
| 361 | /// reversePredicate - reverse the direction of the inequality |
| 362 | static LatticeVal reversePredicate(LatticeVal LV) { |
| 363 | unsigned reverse = LV ^ (SLT_BIT|SGT_BIT|ULT_BIT|UGT_BIT); //preserve EQ_BIT |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 364 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 365 | if ((reverse & (SLT_BIT|SGT_BIT)) == 0) |
| 366 | reverse |= (SLT_BIT|SGT_BIT); |
| 367 | |
| 368 | if ((reverse & (ULT_BIT|UGT_BIT)) == 0) |
| 369 | reverse |= (ULT_BIT|UGT_BIT); |
| 370 | |
| 371 | LatticeVal Rev = static_cast<LatticeVal>(reverse); |
| 372 | assert(validPredicate(Rev) && "Failed reversing predicate."); |
| 373 | return Rev; |
| 374 | } |
| 375 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 376 | /// ValueNumbering stores the scope-specific value numbers for a given Value. |
| 377 | class VISIBILITY_HIDDEN ValueNumbering { |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 378 | |
| 379 | /// VNPair is a tuple of {Value, index number, DomTreeDFS::Node}. It |
| 380 | /// includes the comparison operators necessary to allow you to store it |
| 381 | /// in a sorted vector. |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 382 | class VISIBILITY_HIDDEN VNPair { |
| 383 | public: |
| 384 | Value *V; |
| 385 | unsigned index; |
| 386 | DomTreeDFS::Node *Subtree; |
| 387 | |
| 388 | VNPair(Value *V, unsigned index, DomTreeDFS::Node *Subtree) |
| 389 | : V(V), index(index), Subtree(Subtree) {} |
| 390 | |
| 391 | bool operator==(const VNPair &RHS) const { |
| 392 | return V == RHS.V && Subtree == RHS.Subtree; |
| 393 | } |
| 394 | |
| 395 | bool operator<(const VNPair &RHS) const { |
| 396 | if (V != RHS.V) return V < RHS.V; |
| 397 | return *Subtree < *RHS.Subtree; |
| 398 | } |
| 399 | |
| 400 | bool operator<(Value *RHS) const { |
| 401 | return V < RHS; |
| 402 | } |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 403 | |
| 404 | bool operator>(Value *RHS) const { |
| 405 | return V > RHS; |
| 406 | } |
| 407 | |
| 408 | friend bool operator<(Value *RHS, const VNPair &pair) { |
| 409 | return pair.operator>(RHS); |
| 410 | } |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 411 | }; |
| 412 | |
| 413 | typedef std::vector<VNPair> VNMapType; |
| 414 | VNMapType VNMap; |
| 415 | |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 416 | /// The canonical choice for value number at index. |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 417 | std::vector<Value *> Values; |
| 418 | |
| 419 | DomTreeDFS *DTDFS; |
| 420 | |
| 421 | public: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 422 | #ifndef NDEBUG |
| 423 | virtual ~ValueNumbering() {} |
| 424 | virtual void dump() { |
| 425 | dump(*cerr.stream()); |
| 426 | } |
| 427 | |
| 428 | void dump(std::ostream &os) { |
| 429 | for (unsigned i = 1; i <= Values.size(); ++i) { |
| 430 | os << i << " = "; |
| 431 | WriteAsOperand(os, Values[i-1]); |
| 432 | os << " {"; |
| 433 | for (unsigned j = 0; j < VNMap.size(); ++j) { |
| 434 | if (VNMap[j].index == i) { |
| 435 | WriteAsOperand(os, VNMap[j].V); |
| 436 | os << " (" << VNMap[j].Subtree->getDFSNumIn() << ") "; |
| 437 | } |
| 438 | } |
| 439 | os << "}\n"; |
| 440 | } |
| 441 | } |
| 442 | #endif |
| 443 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 444 | /// compare - returns true if V1 is a better canonical value than V2. |
| 445 | bool compare(Value *V1, Value *V2) const { |
| 446 | if (isa<Constant>(V1)) |
| 447 | return !isa<Constant>(V2); |
| 448 | else if (isa<Constant>(V2)) |
| 449 | return false; |
| 450 | else if (isa<Argument>(V1)) |
| 451 | return !isa<Argument>(V2); |
| 452 | else if (isa<Argument>(V2)) |
| 453 | return false; |
| 454 | |
| 455 | Instruction *I1 = dyn_cast<Instruction>(V1); |
| 456 | Instruction *I2 = dyn_cast<Instruction>(V2); |
| 457 | |
| 458 | if (!I1 || !I2) |
| 459 | return V1->getNumUses() < V2->getNumUses(); |
| 460 | |
| 461 | return DTDFS->dominates(I1, I2); |
| 462 | } |
| 463 | |
| 464 | ValueNumbering(DomTreeDFS *DTDFS) : DTDFS(DTDFS) {} |
| 465 | |
| 466 | /// valueNumber - finds the value number for V under the Subtree. If |
| 467 | /// there is no value number, returns zero. |
| 468 | unsigned valueNumber(Value *V, DomTreeDFS::Node *Subtree) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 469 | if (!(isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) |
| 470 | || V->getType() == Type::VoidTy) return 0; |
| 471 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 472 | VNMapType::iterator E = VNMap.end(); |
| 473 | VNPair pair(V, 0, Subtree); |
| 474 | VNMapType::iterator I = std::lower_bound(VNMap.begin(), E, pair); |
| 475 | while (I != E && I->V == V) { |
| 476 | if (I->Subtree->dominates(Subtree)) |
| 477 | return I->index; |
| 478 | ++I; |
| 479 | } |
| 480 | return 0; |
| 481 | } |
| 482 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 483 | /// getOrInsertVN - always returns a value number, creating it if necessary. |
| 484 | unsigned getOrInsertVN(Value *V, DomTreeDFS::Node *Subtree) { |
| 485 | if (unsigned n = valueNumber(V, Subtree)) |
| 486 | return n; |
| 487 | else |
| 488 | return newVN(V); |
| 489 | } |
| 490 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 491 | /// newVN - creates a new value number. Value V must not already have a |
| 492 | /// value number assigned. |
| 493 | unsigned newVN(Value *V) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 494 | assert((isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) && |
| 495 | "Bad Value for value numbering."); |
| 496 | assert(V->getType() != Type::VoidTy && "Won't value number a void value"); |
| 497 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 498 | Values.push_back(V); |
| 499 | |
| 500 | VNPair pair = VNPair(V, Values.size(), DTDFS->getRootNode()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 501 | VNMapType::iterator I = std::lower_bound(VNMap.begin(), VNMap.end(), pair); |
| 502 | assert((I == VNMap.end() || value(I->index) != V) && |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 503 | "Attempt to create a duplicate value number."); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 504 | VNMap.insert(I, pair); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 505 | |
| 506 | return Values.size(); |
| 507 | } |
| 508 | |
| 509 | /// value - returns the Value associated with a value number. |
| 510 | Value *value(unsigned index) const { |
| 511 | assert(index != 0 && "Zero index is reserved for not found."); |
| 512 | assert(index <= Values.size() && "Index out of range."); |
| 513 | return Values[index-1]; |
| 514 | } |
| 515 | |
| 516 | /// canonicalize - return a Value that is equal to V under Subtree. |
| 517 | Value *canonicalize(Value *V, DomTreeDFS::Node *Subtree) { |
| 518 | if (isa<Constant>(V)) return V; |
| 519 | |
| 520 | if (unsigned n = valueNumber(V, Subtree)) |
| 521 | return value(n); |
| 522 | else |
| 523 | return V; |
| 524 | } |
| 525 | |
| 526 | /// addEquality - adds that value V belongs to the set of equivalent |
| 527 | /// values defined by value number n under Subtree. |
| 528 | void addEquality(unsigned n, Value *V, DomTreeDFS::Node *Subtree) { |
| 529 | assert(canonicalize(value(n), Subtree) == value(n) && |
| 530 | "Node's 'canonical' choice isn't best within this subtree."); |
| 531 | |
| 532 | // Suppose that we are given "%x -> node #1 (%y)". The problem is that |
| 533 | // we may already have "%z -> node #2 (%x)" somewhere above us in the |
| 534 | // graph. We need to find those edges and add "%z -> node #1 (%y)" |
| 535 | // to keep the lookups canonical. |
| 536 | |
| 537 | std::vector<Value *> ToRepoint(1, V); |
| 538 | |
| 539 | if (unsigned Conflict = valueNumber(V, Subtree)) { |
| 540 | for (VNMapType::iterator I = VNMap.begin(), E = VNMap.end(); |
| 541 | I != E; ++I) { |
| 542 | if (I->index == Conflict && I->Subtree->dominates(Subtree)) |
| 543 | ToRepoint.push_back(I->V); |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | for (std::vector<Value *>::iterator VI = ToRepoint.begin(), |
| 548 | VE = ToRepoint.end(); VI != VE; ++VI) { |
| 549 | Value *V = *VI; |
| 550 | |
| 551 | VNPair pair(V, n, Subtree); |
| 552 | VNMapType::iterator B = VNMap.begin(), E = VNMap.end(); |
| 553 | VNMapType::iterator I = std::lower_bound(B, E, pair); |
| 554 | if (I != E && I->V == V && I->Subtree == Subtree) |
| 555 | I->index = n; // Update best choice |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 556 | else |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 557 | VNMap.insert(I, pair); // New Value |
| 558 | |
| 559 | // XXX: we currently don't have to worry about updating values with |
| 560 | // more specific Subtrees, but we will need to for PHI node support. |
| 561 | |
| 562 | #ifndef NDEBUG |
| 563 | Value *V_n = value(n); |
| 564 | if (isa<Constant>(V) && isa<Constant>(V_n)) { |
| 565 | assert(V == V_n && "Constant equals different constant?"); |
| 566 | } |
| 567 | #endif |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | /// remove - removes all references to value V. |
| 572 | void remove(Value *V) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 573 | VNMapType::iterator B = VNMap.begin(), E = VNMap.end(); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 574 | VNPair pair(V, 0, DTDFS->getRootNode()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 575 | VNMapType::iterator J = std::upper_bound(B, E, pair); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 576 | VNMapType::iterator I = J; |
| 577 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 578 | while (I != B && (I == E || I->V == V)) --I; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 579 | |
| 580 | VNMap.erase(I, J); |
| 581 | } |
| 582 | }; |
| 583 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 584 | /// The InequalityGraph stores the relationships between values. |
| 585 | /// Each Value in the graph is assigned to a Node. Nodes are pointer |
| 586 | /// comparable for equality. The caller is expected to maintain the logical |
| 587 | /// consistency of the system. |
| 588 | /// |
| 589 | /// The InequalityGraph class may invalidate Node*s after any mutator call. |
| 590 | /// @brief The InequalityGraph stores the relationships between values. |
| 591 | class VISIBILITY_HIDDEN InequalityGraph { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 592 | ValueNumbering &VN; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 593 | DomTreeDFS::Node *TreeRoot; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 594 | |
| 595 | InequalityGraph(); // DO NOT IMPLEMENT |
| 596 | InequalityGraph(InequalityGraph &); // DO NOT IMPLEMENT |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 597 | public: |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 598 | InequalityGraph(ValueNumbering &VN, DomTreeDFS::Node *TreeRoot) |
| 599 | : VN(VN), TreeRoot(TreeRoot) {} |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 600 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 601 | class Node; |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 602 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 603 | /// An Edge is contained inside a Node making one end of the edge implicit |
| 604 | /// and contains a pointer to the other end. The edge contains a lattice |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 605 | /// value specifying the relationship and an DomTreeDFS::Node specifying |
| 606 | /// the root in the dominator tree to which this edge applies. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 607 | class VISIBILITY_HIDDEN Edge { |
| 608 | public: |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 609 | Edge(unsigned T, LatticeVal V, DomTreeDFS::Node *ST) |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 610 | : To(T), LV(V), Subtree(ST) {} |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 611 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 612 | unsigned To; |
| 613 | LatticeVal LV; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 614 | DomTreeDFS::Node *Subtree; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 615 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 616 | bool operator<(const Edge &edge) const { |
| 617 | if (To != edge.To) return To < edge.To; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 618 | return *Subtree < *edge.Subtree; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 619 | } |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 620 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 621 | bool operator<(unsigned to) const { |
| 622 | return To < to; |
| 623 | } |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 624 | |
Bill Wendling | 851879c | 2007-06-04 23:52:59 +0000 | [diff] [blame] | 625 | bool operator>(unsigned to) const { |
| 626 | return To > to; |
| 627 | } |
| 628 | |
| 629 | friend bool operator<(unsigned to, const Edge &edge) { |
| 630 | return edge.operator>(to); |
| 631 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 632 | }; |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 633 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 634 | /// A single node in the InequalityGraph. This stores the canonical Value |
| 635 | /// for the node, as well as the relationships with the neighbours. |
| 636 | /// |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 637 | /// @brief A single node in the InequalityGraph. |
| 638 | class VISIBILITY_HIDDEN Node { |
| 639 | friend class InequalityGraph; |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 640 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 641 | typedef SmallVector<Edge, 4> RelationsType; |
| 642 | RelationsType Relations; |
| 643 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 644 | // TODO: can this idea improve performance? |
| 645 | //friend class std::vector<Node>; |
| 646 | //Node(Node &N) { RelationsType.swap(N.RelationsType); } |
| 647 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 648 | public: |
| 649 | typedef RelationsType::iterator iterator; |
| 650 | typedef RelationsType::const_iterator const_iterator; |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 651 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 652 | #ifndef NDEBUG |
Nick Lewycky | bc00fec | 2007-01-11 02:38:21 +0000 | [diff] [blame] | 653 | virtual ~Node() {} |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 654 | virtual void dump() const { |
| 655 | dump(*cerr.stream()); |
| 656 | } |
| 657 | private: |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 658 | void dump(std::ostream &os) const { |
| 659 | static const std::string names[32] = |
| 660 | { "000000", "000001", "000002", "000003", "000004", "000005", |
| 661 | "000006", "000007", "000008", "000009", " >", " >=", |
| 662 | " s>u<", "s>=u<=", " s>", " s>=", "000016", "000017", |
| 663 | " s<u>", "s<=u>=", " <", " <=", " s<", " s<=", |
| 664 | "000024", "000025", " u>", " u>=", " u<", " u<=", |
| 665 | " !=", "000031" }; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 666 | for (Node::const_iterator NI = begin(), NE = end(); NI != NE; ++NI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 667 | os << names[NI->LV] << " " << NI->To |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 668 | << " (" << NI->Subtree->getDFSNumIn() << "), "; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 669 | } |
| 670 | } |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 671 | public: |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 672 | #endif |
| 673 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 674 | iterator begin() { return Relations.begin(); } |
| 675 | iterator end() { return Relations.end(); } |
| 676 | const_iterator begin() const { return Relations.begin(); } |
| 677 | const_iterator end() const { return Relations.end(); } |
| 678 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 679 | iterator find(unsigned n, DomTreeDFS::Node *Subtree) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 680 | iterator E = end(); |
| 681 | for (iterator I = std::lower_bound(begin(), E, n); |
| 682 | I != E && I->To == n; ++I) { |
| 683 | if (Subtree->DominatedBy(I->Subtree)) |
| 684 | return I; |
| 685 | } |
| 686 | return E; |
| 687 | } |
| 688 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 689 | const_iterator find(unsigned n, DomTreeDFS::Node *Subtree) const { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 690 | const_iterator E = end(); |
| 691 | for (const_iterator I = std::lower_bound(begin(), E, n); |
| 692 | I != E && I->To == n; ++I) { |
| 693 | if (Subtree->DominatedBy(I->Subtree)) |
| 694 | return I; |
| 695 | } |
| 696 | return E; |
| 697 | } |
| 698 | |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 699 | /// update - updates the lattice value for a given node, creating a new |
| 700 | /// entry if one doesn't exist. The new lattice value must not be |
| 701 | /// inconsistent with any previously existing value. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 702 | void update(unsigned n, LatticeVal R, DomTreeDFS::Node *Subtree) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 703 | assert(validPredicate(R) && "Invalid predicate."); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 704 | |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 705 | Edge edge(n, R, Subtree); |
| 706 | iterator B = begin(), E = end(); |
| 707 | iterator I = std::lower_bound(B, E, edge); |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 708 | |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 709 | iterator J = I; |
| 710 | while (J != E && J->To == n) { |
| 711 | if (Subtree->DominatedBy(J->Subtree)) |
| 712 | break; |
| 713 | ++J; |
| 714 | } |
| 715 | |
Nick Lewycky | c721223 | 2007-08-18 23:18:03 +0000 | [diff] [blame] | 716 | if (J != E && J->To == n) { |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 717 | edge.LV = static_cast<LatticeVal>(J->LV & R); |
| 718 | assert(validPredicate(edge.LV) && "Invalid union of lattice values."); |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 719 | |
Nick Lewycky | c721223 | 2007-08-18 23:18:03 +0000 | [diff] [blame] | 720 | if (edge.LV == J->LV) |
| 721 | return; // This update adds nothing new. |
Bill Wendling | 587c01d | 2008-02-26 10:53:30 +0000 | [diff] [blame] | 722 | } |
Nick Lewycky | c721223 | 2007-08-18 23:18:03 +0000 | [diff] [blame] | 723 | |
| 724 | if (I != B) { |
| 725 | // We also have to tighten any edge beneath our update. |
| 726 | for (iterator K = I - 1; K->To == n; --K) { |
| 727 | if (K->Subtree->DominatedBy(Subtree)) { |
| 728 | LatticeVal LV = static_cast<LatticeVal>(K->LV & edge.LV); |
| 729 | assert(validPredicate(LV) && "Invalid union of lattice values"); |
| 730 | K->LV = LV; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 731 | } |
Nick Lewycky | c721223 | 2007-08-18 23:18:03 +0000 | [diff] [blame] | 732 | if (K == B) break; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 733 | } |
Bill Wendling | 587c01d | 2008-02-26 10:53:30 +0000 | [diff] [blame] | 734 | } |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 735 | |
| 736 | // Insert new edge at Subtree if it isn't already there. |
| 737 | if (I == E || I->To != n || Subtree != I->Subtree) |
| 738 | Relations.insert(I, edge); |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 739 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 740 | }; |
| 741 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 742 | private: |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 743 | |
| 744 | std::vector<Node> Nodes; |
| 745 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 746 | public: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 747 | /// node - returns the node object at a given value number. The pointer |
| 748 | /// returned may be invalidated on the next call to node(). |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 749 | Node *node(unsigned index) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 750 | assert(VN.value(index)); // This triggers the necessary checks. |
| 751 | if (Nodes.size() < index) Nodes.resize(index); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 752 | return &Nodes[index-1]; |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 753 | } |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 754 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 755 | /// isRelatedBy - true iff n1 op n2 |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 756 | bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree, |
| 757 | LatticeVal LV) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 758 | if (n1 == n2) return LV & EQ_BIT; |
| 759 | |
| 760 | Node *N1 = node(n1); |
| 761 | Node::iterator I = N1->find(n2, Subtree), E = N1->end(); |
| 762 | if (I != E) return (I->LV & LV) == I->LV; |
| 763 | |
Nick Lewycky | 406fc0c | 2006-09-20 17:04:01 +0000 | [diff] [blame] | 764 | return false; |
| 765 | } |
| 766 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 767 | // The add* methods assume that your input is logically valid and may |
| 768 | // assertion-fail or infinitely loop if you attempt a contradiction. |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 769 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 770 | /// addInequality - Sets n1 op n2. |
| 771 | /// It is also an error to call this on an inequality that is already true. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 772 | void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree, |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 773 | LatticeVal LV1) { |
| 774 | assert(n1 != n2 && "A node can't be inequal to itself."); |
| 775 | |
| 776 | if (LV1 != NE) |
| 777 | assert(!isRelatedBy(n1, n2, Subtree, reversePredicate(LV1)) && |
| 778 | "Contradictory inequality."); |
| 779 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 780 | // Suppose we're adding %n1 < %n2. Find all the %a < %n1 and |
| 781 | // add %a < %n2 too. This keeps the graph fully connected. |
| 782 | if (LV1 != NE) { |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 783 | // Break up the relationship into signed and unsigned comparison parts. |
| 784 | // If the signed parts of %a op1 %n1 match that of %n1 op2 %n2, and |
| 785 | // op1 and op2 aren't NE, then add %a op3 %n2. The new relationship |
| 786 | // should have the EQ_BIT iff it's set for both op1 and op2. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 787 | |
| 788 | unsigned LV1_s = LV1 & (SLT_BIT|SGT_BIT); |
| 789 | unsigned LV1_u = LV1 & (ULT_BIT|UGT_BIT); |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 790 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 791 | for (Node::iterator I = node(n1)->begin(), E = node(n1)->end(); I != E; ++I) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 792 | if (I->LV != NE && I->To != n2) { |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 793 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 794 | DomTreeDFS::Node *Local_Subtree = NULL; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 795 | if (Subtree->DominatedBy(I->Subtree)) |
| 796 | Local_Subtree = Subtree; |
| 797 | else if (I->Subtree->DominatedBy(Subtree)) |
| 798 | Local_Subtree = I->Subtree; |
| 799 | |
| 800 | if (Local_Subtree) { |
| 801 | unsigned new_relationship = 0; |
| 802 | LatticeVal ILV = reversePredicate(I->LV); |
| 803 | unsigned ILV_s = ILV & (SLT_BIT|SGT_BIT); |
| 804 | unsigned ILV_u = ILV & (ULT_BIT|UGT_BIT); |
| 805 | |
| 806 | if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s) |
| 807 | new_relationship |= ILV_s; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 808 | if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u) |
| 809 | new_relationship |= ILV_u; |
| 810 | |
| 811 | if (new_relationship) { |
| 812 | if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0) |
| 813 | new_relationship |= (SLT_BIT|SGT_BIT); |
| 814 | if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0) |
| 815 | new_relationship |= (ULT_BIT|UGT_BIT); |
| 816 | if ((LV1 & EQ_BIT) && (ILV & EQ_BIT)) |
| 817 | new_relationship |= EQ_BIT; |
| 818 | |
| 819 | LatticeVal NewLV = static_cast<LatticeVal>(new_relationship); |
| 820 | |
| 821 | node(I->To)->update(n2, NewLV, Local_Subtree); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 822 | node(n2)->update(I->To, reversePredicate(NewLV), Local_Subtree); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 823 | } |
| 824 | } |
| 825 | } |
| 826 | } |
| 827 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 828 | for (Node::iterator I = node(n2)->begin(), E = node(n2)->end(); I != E; ++I) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 829 | if (I->LV != NE && I->To != n1) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 830 | DomTreeDFS::Node *Local_Subtree = NULL; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 831 | if (Subtree->DominatedBy(I->Subtree)) |
| 832 | Local_Subtree = Subtree; |
| 833 | else if (I->Subtree->DominatedBy(Subtree)) |
| 834 | Local_Subtree = I->Subtree; |
| 835 | |
| 836 | if (Local_Subtree) { |
| 837 | unsigned new_relationship = 0; |
| 838 | unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT); |
| 839 | unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT); |
| 840 | |
| 841 | if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s) |
| 842 | new_relationship |= ILV_s; |
| 843 | |
| 844 | if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u) |
| 845 | new_relationship |= ILV_u; |
| 846 | |
| 847 | if (new_relationship) { |
| 848 | if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0) |
| 849 | new_relationship |= (SLT_BIT|SGT_BIT); |
| 850 | if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0) |
| 851 | new_relationship |= (ULT_BIT|UGT_BIT); |
| 852 | if ((LV1 & EQ_BIT) && (I->LV & EQ_BIT)) |
| 853 | new_relationship |= EQ_BIT; |
| 854 | |
| 855 | LatticeVal NewLV = static_cast<LatticeVal>(new_relationship); |
| 856 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 857 | node(n1)->update(I->To, NewLV, Local_Subtree); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 858 | node(I->To)->update(n1, reversePredicate(NewLV), Local_Subtree); |
| 859 | } |
| 860 | } |
| 861 | } |
| 862 | } |
| 863 | } |
| 864 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 865 | node(n1)->update(n2, LV1, Subtree); |
| 866 | node(n2)->update(n1, reversePredicate(LV1), Subtree); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 867 | } |
Nick Lewycky | 977be25 | 2006-09-13 19:24:01 +0000 | [diff] [blame] | 868 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 869 | /// remove - removes a node from the graph by removing all references to |
| 870 | /// and from it. |
| 871 | void remove(unsigned n) { |
| 872 | Node *N = node(n); |
| 873 | for (Node::iterator NI = N->begin(), NE = N->end(); NI != NE; ++NI) { |
| 874 | Node::iterator Iter = node(NI->To)->find(n, TreeRoot); |
| 875 | do { |
| 876 | node(NI->To)->Relations.erase(Iter); |
| 877 | Iter = node(NI->To)->find(n, TreeRoot); |
| 878 | } while (Iter != node(NI->To)->end()); |
Nick Lewycky | dc08cd5 | 2006-09-10 02:27:07 +0000 | [diff] [blame] | 879 | } |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 880 | N->Relations.clear(); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 881 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 882 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 883 | #ifndef NDEBUG |
Nick Lewycky | bc00fec | 2007-01-11 02:38:21 +0000 | [diff] [blame] | 884 | virtual ~InequalityGraph() {} |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 885 | virtual void dump() { |
| 886 | dump(*cerr.stream()); |
| 887 | } |
| 888 | |
| 889 | void dump(std::ostream &os) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 890 | for (unsigned i = 1; i <= Nodes.size(); ++i) { |
| 891 | os << i << " = {"; |
| 892 | node(i)->dump(os); |
| 893 | os << "}\n"; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 894 | } |
| 895 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 896 | #endif |
| 897 | }; |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 898 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 899 | class VRPSolver; |
| 900 | |
| 901 | /// ValueRanges tracks the known integer ranges and anti-ranges of the nodes |
| 902 | /// in the InequalityGraph. |
| 903 | class VISIBILITY_HIDDEN ValueRanges { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 904 | ValueNumbering &VN; |
| 905 | TargetData *TD; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 906 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 907 | class VISIBILITY_HIDDEN ScopedRange { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 908 | typedef std::vector<std::pair<DomTreeDFS::Node *, ConstantRange> > |
| 909 | RangeListType; |
| 910 | RangeListType RangeList; |
| 911 | |
| 912 | static bool swo(const std::pair<DomTreeDFS::Node *, ConstantRange> &LHS, |
| 913 | const std::pair<DomTreeDFS::Node *, ConstantRange> &RHS) { |
| 914 | return *LHS.first < *RHS.first; |
| 915 | } |
| 916 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 917 | public: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 918 | #ifndef NDEBUG |
| 919 | virtual ~ScopedRange() {} |
| 920 | virtual void dump() const { |
| 921 | dump(*cerr.stream()); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 922 | } |
| 923 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 924 | void dump(std::ostream &os) const { |
| 925 | os << "{"; |
| 926 | for (const_iterator I = begin(), E = end(); I != E; ++I) { |
Chris Lattner | 944fac7 | 2008-08-23 22:23:09 +0000 | [diff] [blame] | 927 | os << &I->second << " (" << I->first->getDFSNumIn() << "), "; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 928 | } |
| 929 | os << "}"; |
| 930 | } |
| 931 | #endif |
| 932 | |
| 933 | typedef RangeListType::iterator iterator; |
| 934 | typedef RangeListType::const_iterator const_iterator; |
| 935 | |
| 936 | iterator begin() { return RangeList.begin(); } |
| 937 | iterator end() { return RangeList.end(); } |
| 938 | const_iterator begin() const { return RangeList.begin(); } |
| 939 | const_iterator end() const { return RangeList.end(); } |
| 940 | |
| 941 | iterator find(DomTreeDFS::Node *Subtree) { |
| 942 | static ConstantRange empty(1, false); |
| 943 | iterator E = end(); |
| 944 | iterator I = std::lower_bound(begin(), E, |
| 945 | std::make_pair(Subtree, empty), swo); |
| 946 | |
| 947 | while (I != E && !I->first->dominates(Subtree)) ++I; |
| 948 | return I; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 949 | } |
Bill Wendling | 851879c | 2007-06-04 23:52:59 +0000 | [diff] [blame] | 950 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 951 | const_iterator find(DomTreeDFS::Node *Subtree) const { |
| 952 | static const ConstantRange empty(1, false); |
| 953 | const_iterator E = end(); |
| 954 | const_iterator I = std::lower_bound(begin(), E, |
| 955 | std::make_pair(Subtree, empty), swo); |
| 956 | |
| 957 | while (I != E && !I->first->dominates(Subtree)) ++I; |
| 958 | return I; |
Bill Wendling | 851879c | 2007-06-04 23:52:59 +0000 | [diff] [blame] | 959 | } |
| 960 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 961 | void update(const ConstantRange &CR, DomTreeDFS::Node *Subtree) { |
| 962 | assert(!CR.isEmptySet() && "Empty ConstantRange."); |
Nick Lewycky | 7956dae | 2007-08-04 18:45:32 +0000 | [diff] [blame] | 963 | assert(!CR.isSingleElement() && "Refusing to store single element."); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 964 | |
| 965 | static ConstantRange empty(1, false); |
| 966 | iterator E = end(); |
| 967 | iterator I = |
| 968 | std::lower_bound(begin(), E, std::make_pair(Subtree, empty), swo); |
| 969 | |
| 970 | if (I != end() && I->first == Subtree) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 971 | ConstantRange CR2 = I->second.maximalIntersectWith(CR); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 972 | assert(!CR2.isEmptySet() && !CR2.isSingleElement() && |
| 973 | "Invalid union of ranges."); |
| 974 | I->second = CR2; |
| 975 | } else |
| 976 | RangeList.insert(I, std::make_pair(Subtree, CR)); |
Bill Wendling | 851879c | 2007-06-04 23:52:59 +0000 | [diff] [blame] | 977 | } |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 978 | }; |
| 979 | |
| 980 | std::vector<ScopedRange> Ranges; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 981 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 982 | void update(unsigned n, const ConstantRange &CR, DomTreeDFS::Node *Subtree){ |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 983 | if (CR.isFullSet()) return; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 984 | if (Ranges.size() < n) Ranges.resize(n); |
| 985 | Ranges[n-1].update(CR, Subtree); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 986 | } |
| 987 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 988 | /// create - Creates a ConstantRange that matches the given LatticeVal |
| 989 | /// relation with a given integer. |
| 990 | ConstantRange create(LatticeVal LV, const ConstantRange &CR) { |
| 991 | assert(!CR.isEmptySet() && "Can't deal with empty set."); |
| 992 | |
| 993 | if (LV == NE) |
| 994 | return makeConstantRange(ICmpInst::ICMP_NE, CR); |
| 995 | |
| 996 | unsigned LV_s = LV & (SGT_BIT|SLT_BIT); |
| 997 | unsigned LV_u = LV & (UGT_BIT|ULT_BIT); |
| 998 | bool hasEQ = LV & EQ_BIT; |
| 999 | |
| 1000 | ConstantRange Range(CR.getBitWidth()); |
| 1001 | |
| 1002 | if (LV_s == SGT_BIT) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1003 | Range = Range.maximalIntersectWith(makeConstantRange( |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1004 | hasEQ ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_SGT, CR)); |
| 1005 | } else if (LV_s == SLT_BIT) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1006 | Range = Range.maximalIntersectWith(makeConstantRange( |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1007 | hasEQ ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_SLT, CR)); |
| 1008 | } |
| 1009 | |
| 1010 | if (LV_u == UGT_BIT) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1011 | Range = Range.maximalIntersectWith(makeConstantRange( |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1012 | hasEQ ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_UGT, CR)); |
| 1013 | } else if (LV_u == ULT_BIT) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1014 | Range = Range.maximalIntersectWith(makeConstantRange( |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1015 | hasEQ ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_ULT, CR)); |
| 1016 | } |
| 1017 | |
| 1018 | return Range; |
| 1019 | } |
| 1020 | |
| 1021 | /// makeConstantRange - Creates a ConstantRange representing the set of all |
| 1022 | /// value that match the ICmpInst::Predicate with any of the values in CR. |
| 1023 | ConstantRange makeConstantRange(ICmpInst::Predicate ICmpOpcode, |
| 1024 | const ConstantRange &CR) { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1025 | uint32_t W = CR.getBitWidth(); |
| 1026 | switch (ICmpOpcode) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1027 | default: assert(!"Invalid ICmp opcode to makeConstantRange()"); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1028 | case ICmpInst::ICMP_EQ: |
| 1029 | return ConstantRange(CR.getLower(), CR.getUpper()); |
| 1030 | case ICmpInst::ICMP_NE: |
| 1031 | if (CR.isSingleElement()) |
| 1032 | return ConstantRange(CR.getUpper(), CR.getLower()); |
| 1033 | return ConstantRange(W); |
| 1034 | case ICmpInst::ICMP_ULT: |
| 1035 | return ConstantRange(APInt::getMinValue(W), CR.getUnsignedMax()); |
| 1036 | case ICmpInst::ICMP_SLT: |
| 1037 | return ConstantRange(APInt::getSignedMinValue(W), CR.getSignedMax()); |
| 1038 | case ICmpInst::ICMP_ULE: { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1039 | APInt UMax(CR.getUnsignedMax()); |
Zhou Sheng | c125c00 | 2007-04-26 16:42:07 +0000 | [diff] [blame] | 1040 | if (UMax.isMaxValue()) |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1041 | return ConstantRange(W); |
| 1042 | return ConstantRange(APInt::getMinValue(W), UMax + 1); |
| 1043 | } |
| 1044 | case ICmpInst::ICMP_SLE: { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1045 | APInt SMax(CR.getSignedMax()); |
Zhou Sheng | c125c00 | 2007-04-26 16:42:07 +0000 | [diff] [blame] | 1046 | if (SMax.isMaxSignedValue() || (SMax+1).isMaxSignedValue()) |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1047 | return ConstantRange(W); |
| 1048 | return ConstantRange(APInt::getSignedMinValue(W), SMax + 1); |
| 1049 | } |
| 1050 | case ICmpInst::ICMP_UGT: |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1051 | return ConstantRange(CR.getUnsignedMin() + 1, APInt::getNullValue(W)); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1052 | case ICmpInst::ICMP_SGT: |
| 1053 | return ConstantRange(CR.getSignedMin() + 1, |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1054 | APInt::getSignedMinValue(W)); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1055 | case ICmpInst::ICMP_UGE: { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1056 | APInt UMin(CR.getUnsignedMin()); |
Zhou Sheng | c125c00 | 2007-04-26 16:42:07 +0000 | [diff] [blame] | 1057 | if (UMin.isMinValue()) |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1058 | return ConstantRange(W); |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1059 | return ConstantRange(UMin, APInt::getNullValue(W)); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1060 | } |
| 1061 | case ICmpInst::ICMP_SGE: { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1062 | APInt SMin(CR.getSignedMin()); |
Zhou Sheng | c125c00 | 2007-04-26 16:42:07 +0000 | [diff] [blame] | 1063 | if (SMin.isMinSignedValue()) |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1064 | return ConstantRange(W); |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1065 | return ConstantRange(SMin, APInt::getSignedMinValue(W)); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1066 | } |
| 1067 | } |
| 1068 | } |
| 1069 | |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1070 | #ifndef NDEBUG |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1071 | bool isCanonical(Value *V, DomTreeDFS::Node *Subtree) { |
| 1072 | return V == VN.canonicalize(V, Subtree); |
| 1073 | } |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1074 | #endif |
| 1075 | |
| 1076 | public: |
| 1077 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1078 | ValueRanges(ValueNumbering &VN, TargetData *TD) : VN(VN), TD(TD) {} |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1079 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1080 | #ifndef NDEBUG |
| 1081 | virtual ~ValueRanges() {} |
| 1082 | |
| 1083 | virtual void dump() const { |
| 1084 | dump(*cerr.stream()); |
| 1085 | } |
| 1086 | |
| 1087 | void dump(std::ostream &os) const { |
| 1088 | for (unsigned i = 0, e = Ranges.size(); i != e; ++i) { |
| 1089 | os << (i+1) << " = "; |
| 1090 | Ranges[i].dump(os); |
| 1091 | os << "\n"; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1092 | } |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1093 | } |
| 1094 | #endif |
| 1095 | |
| 1096 | /// range - looks up the ConstantRange associated with a value number. |
| 1097 | ConstantRange range(unsigned n, DomTreeDFS::Node *Subtree) { |
| 1098 | assert(VN.value(n)); // performs range checks |
| 1099 | |
| 1100 | if (n <= Ranges.size()) { |
| 1101 | ScopedRange::iterator I = Ranges[n-1].find(Subtree); |
| 1102 | if (I != Ranges[n-1].end()) return I->second; |
| 1103 | } |
| 1104 | |
| 1105 | Value *V = VN.value(n); |
| 1106 | ConstantRange CR = range(V); |
| 1107 | return CR; |
| 1108 | } |
| 1109 | |
| 1110 | /// range - determine a range from a Value without performing any lookups. |
| 1111 | ConstantRange range(Value *V) const { |
| 1112 | if (ConstantInt *C = dyn_cast<ConstantInt>(V)) |
| 1113 | return ConstantRange(C->getValue()); |
| 1114 | else if (isa<ConstantPointerNull>(V)) |
| 1115 | return ConstantRange(APInt::getNullValue(typeToWidth(V->getType()))); |
| 1116 | else |
Dan Gohman | b5660dc | 2008-02-20 16:44:09 +0000 | [diff] [blame] | 1117 | return ConstantRange(typeToWidth(V->getType())); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1118 | } |
| 1119 | |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 1120 | // typeToWidth - returns the number of bits necessary to store a value of |
| 1121 | // this type, or zero if unknown. |
| 1122 | uint32_t typeToWidth(const Type *Ty) const { |
| 1123 | if (TD) |
| 1124 | return TD->getTypeSizeInBits(Ty); |
Duncan Sands | 514ab34 | 2007-11-01 20:53:16 +0000 | [diff] [blame] | 1125 | else |
| 1126 | return Ty->getPrimitiveSizeInBits(); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1127 | } |
| 1128 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1129 | static bool isRelatedBy(const ConstantRange &CR1, const ConstantRange &CR2, |
| 1130 | LatticeVal LV) { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 1131 | switch (LV) { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1132 | default: assert(!"Impossible lattice value!"); |
| 1133 | case NE: |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1134 | return CR1.maximalIntersectWith(CR2).isEmptySet(); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1135 | case ULT: |
| 1136 | return CR1.getUnsignedMax().ult(CR2.getUnsignedMin()); |
| 1137 | case ULE: |
| 1138 | return CR1.getUnsignedMax().ule(CR2.getUnsignedMin()); |
| 1139 | case UGT: |
| 1140 | return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax()); |
| 1141 | case UGE: |
| 1142 | return CR1.getUnsignedMin().uge(CR2.getUnsignedMax()); |
| 1143 | case SLT: |
| 1144 | return CR1.getSignedMax().slt(CR2.getSignedMin()); |
| 1145 | case SLE: |
| 1146 | return CR1.getSignedMax().sle(CR2.getSignedMin()); |
| 1147 | case SGT: |
| 1148 | return CR1.getSignedMin().sgt(CR2.getSignedMax()); |
| 1149 | case SGE: |
| 1150 | return CR1.getSignedMin().sge(CR2.getSignedMax()); |
| 1151 | case LT: |
| 1152 | return CR1.getUnsignedMax().ult(CR2.getUnsignedMin()) && |
| 1153 | CR1.getSignedMax().slt(CR2.getUnsignedMin()); |
| 1154 | case LE: |
| 1155 | return CR1.getUnsignedMax().ule(CR2.getUnsignedMin()) && |
| 1156 | CR1.getSignedMax().sle(CR2.getUnsignedMin()); |
| 1157 | case GT: |
| 1158 | return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax()) && |
| 1159 | CR1.getSignedMin().sgt(CR2.getSignedMax()); |
| 1160 | case GE: |
| 1161 | return CR1.getUnsignedMin().uge(CR2.getUnsignedMax()) && |
| 1162 | CR1.getSignedMin().sge(CR2.getSignedMax()); |
| 1163 | case SLTUGT: |
| 1164 | return CR1.getSignedMax().slt(CR2.getSignedMin()) && |
| 1165 | CR1.getUnsignedMin().ugt(CR2.getUnsignedMax()); |
| 1166 | case SLEUGE: |
| 1167 | return CR1.getSignedMax().sle(CR2.getSignedMin()) && |
| 1168 | CR1.getUnsignedMin().uge(CR2.getUnsignedMax()); |
| 1169 | case SGTULT: |
| 1170 | return CR1.getSignedMin().sgt(CR2.getSignedMax()) && |
| 1171 | CR1.getUnsignedMax().ult(CR2.getUnsignedMin()); |
| 1172 | case SGEULE: |
| 1173 | return CR1.getSignedMin().sge(CR2.getSignedMax()) && |
| 1174 | CR1.getUnsignedMax().ule(CR2.getUnsignedMin()); |
| 1175 | } |
| 1176 | } |
| 1177 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1178 | bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree, |
| 1179 | LatticeVal LV) { |
| 1180 | ConstantRange CR1 = range(n1, Subtree); |
| 1181 | ConstantRange CR2 = range(n2, Subtree); |
| 1182 | |
| 1183 | // True iff all values in CR1 are LV to all values in CR2. |
| 1184 | return isRelatedBy(CR1, CR2, LV); |
| 1185 | } |
| 1186 | |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1187 | void addToWorklist(Value *V, Constant *C, ICmpInst::Predicate Pred, |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1188 | VRPSolver *VRP); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1189 | void markBlock(VRPSolver *VRP); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1190 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1191 | void mergeInto(Value **I, unsigned n, unsigned New, |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1192 | DomTreeDFS::Node *Subtree, VRPSolver *VRP) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1193 | ConstantRange CR_New = range(New, Subtree); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1194 | ConstantRange Merged = CR_New; |
| 1195 | |
| 1196 | for (; n != 0; ++I, --n) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1197 | unsigned i = VN.valueNumber(*I, Subtree); |
| 1198 | ConstantRange CR_Kill = i ? range(i, Subtree) : range(*I); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1199 | if (CR_Kill.isFullSet()) continue; |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1200 | Merged = Merged.maximalIntersectWith(CR_Kill); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1201 | } |
| 1202 | |
| 1203 | if (Merged.isFullSet() || Merged == CR_New) return; |
| 1204 | |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1205 | applyRange(New, Merged, Subtree, VRP); |
| 1206 | } |
| 1207 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1208 | void applyRange(unsigned n, const ConstantRange &CR, |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1209 | DomTreeDFS::Node *Subtree, VRPSolver *VRP) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1210 | ConstantRange Merged = CR.maximalIntersectWith(range(n, Subtree)); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1211 | if (Merged.isEmptySet()) { |
| 1212 | markBlock(VRP); |
| 1213 | return; |
| 1214 | } |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1215 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1216 | if (const APInt *I = Merged.getSingleElement()) { |
| 1217 | Value *V = VN.value(n); // XXX: redesign worklist. |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1218 | const Type *Ty = V->getType(); |
| 1219 | if (Ty->isInteger()) { |
| 1220 | addToWorklist(V, ConstantInt::get(*I), ICmpInst::ICMP_EQ, VRP); |
| 1221 | return; |
| 1222 | } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) { |
| 1223 | assert(*I == 0 && "Pointer is null but not zero?"); |
| 1224 | addToWorklist(V, ConstantPointerNull::get(PTy), |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1225 | ICmpInst::ICMP_EQ, VRP); |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1226 | return; |
| 1227 | } |
| 1228 | } |
| 1229 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1230 | update(n, Merged, Subtree); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1231 | } |
| 1232 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1233 | void addNotEquals(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree, |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1234 | VRPSolver *VRP) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1235 | ConstantRange CR1 = range(n1, Subtree); |
| 1236 | ConstantRange CR2 = range(n2, Subtree); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1237 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1238 | uint32_t W = CR1.getBitWidth(); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1239 | |
| 1240 | if (const APInt *I = CR1.getSingleElement()) { |
| 1241 | if (CR2.isFullSet()) { |
| 1242 | ConstantRange NewCR2(CR1.getUpper(), CR1.getLower()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1243 | applyRange(n2, NewCR2, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1244 | } else if (*I == CR2.getLower()) { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1245 | APInt NewLower(CR2.getLower() + 1), |
| 1246 | NewUpper(CR2.getUpper()); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1247 | if (NewLower == NewUpper) |
| 1248 | NewLower = NewUpper = APInt::getMinValue(W); |
| 1249 | |
| 1250 | ConstantRange NewCR2(NewLower, NewUpper); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1251 | applyRange(n2, NewCR2, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1252 | } else if (*I == CR2.getUpper() - 1) { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1253 | APInt NewLower(CR2.getLower()), |
| 1254 | NewUpper(CR2.getUpper() - 1); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1255 | if (NewLower == NewUpper) |
| 1256 | NewLower = NewUpper = APInt::getMinValue(W); |
| 1257 | |
| 1258 | ConstantRange NewCR2(NewLower, NewUpper); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1259 | applyRange(n2, NewCR2, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1260 | } |
| 1261 | } |
| 1262 | |
| 1263 | if (const APInt *I = CR2.getSingleElement()) { |
| 1264 | if (CR1.isFullSet()) { |
| 1265 | ConstantRange NewCR1(CR2.getUpper(), CR2.getLower()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1266 | applyRange(n1, NewCR1, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1267 | } else if (*I == CR1.getLower()) { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1268 | APInt NewLower(CR1.getLower() + 1), |
| 1269 | NewUpper(CR1.getUpper()); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1270 | if (NewLower == NewUpper) |
| 1271 | NewLower = NewUpper = APInt::getMinValue(W); |
| 1272 | |
| 1273 | ConstantRange NewCR1(NewLower, NewUpper); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1274 | applyRange(n1, NewCR1, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1275 | } else if (*I == CR1.getUpper() - 1) { |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 1276 | APInt NewLower(CR1.getLower()), |
| 1277 | NewUpper(CR1.getUpper() - 1); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1278 | if (NewLower == NewUpper) |
| 1279 | NewLower = NewUpper = APInt::getMinValue(W); |
| 1280 | |
| 1281 | ConstantRange NewCR1(NewLower, NewUpper); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1282 | applyRange(n1, NewCR1, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1283 | } |
| 1284 | } |
| 1285 | } |
| 1286 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1287 | void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree, |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1288 | LatticeVal LV, VRPSolver *VRP) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1289 | assert(!isRelatedBy(n1, n2, Subtree, LV) && "Asked to do useless work."); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1290 | |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1291 | if (LV == NE) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1292 | addNotEquals(n1, n2, Subtree, VRP); |
Nick Lewycky | a995d92 | 2007-04-07 04:49:12 +0000 | [diff] [blame] | 1293 | return; |
| 1294 | } |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1295 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1296 | ConstantRange CR1 = range(n1, Subtree); |
| 1297 | ConstantRange CR2 = range(n2, Subtree); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1298 | |
| 1299 | if (!CR1.isSingleElement()) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1300 | ConstantRange NewCR1 = CR1.maximalIntersectWith(create(LV, CR2)); |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1301 | if (NewCR1 != CR1) |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1302 | applyRange(n1, NewCR1, Subtree, VRP); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1303 | } |
| 1304 | |
| 1305 | if (!CR2.isSingleElement()) { |
Nick Lewycky | a73d11e | 2007-07-14 04:28:04 +0000 | [diff] [blame] | 1306 | ConstantRange NewCR2 = CR2.maximalIntersectWith( |
| 1307 | create(reversePredicate(LV), CR1)); |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 1308 | if (NewCR2 != CR2) |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1309 | applyRange(n2, NewCR2, Subtree, VRP); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1310 | } |
| 1311 | } |
| 1312 | }; |
| 1313 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1314 | /// UnreachableBlocks keeps tracks of blocks that are for one reason or |
| 1315 | /// another discovered to be unreachable. This is used to cull the graph when |
| 1316 | /// analyzing instructions, and to mark blocks with the "unreachable" |
| 1317 | /// terminator instruction after the function has executed. |
| 1318 | class VISIBILITY_HIDDEN UnreachableBlocks { |
| 1319 | private: |
| 1320 | std::vector<BasicBlock *> DeadBlocks; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1321 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1322 | public: |
| 1323 | /// mark - mark a block as dead |
| 1324 | void mark(BasicBlock *BB) { |
| 1325 | std::vector<BasicBlock *>::iterator E = DeadBlocks.end(); |
| 1326 | std::vector<BasicBlock *>::iterator I = |
| 1327 | std::lower_bound(DeadBlocks.begin(), E, BB); |
| 1328 | |
| 1329 | if (I == E || *I != BB) DeadBlocks.insert(I, BB); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1330 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1331 | |
| 1332 | /// isDead - returns whether a block is known to be dead already |
| 1333 | bool isDead(BasicBlock *BB) { |
| 1334 | std::vector<BasicBlock *>::iterator E = DeadBlocks.end(); |
| 1335 | std::vector<BasicBlock *>::iterator I = |
| 1336 | std::lower_bound(DeadBlocks.begin(), E, BB); |
| 1337 | |
| 1338 | return I != E && *I == BB; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1339 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1340 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1341 | /// kill - replace the dead blocks' terminator with an UnreachableInst. |
| 1342 | bool kill() { |
| 1343 | bool modified = false; |
| 1344 | for (std::vector<BasicBlock *>::iterator I = DeadBlocks.begin(), |
| 1345 | E = DeadBlocks.end(); I != E; ++I) { |
| 1346 | BasicBlock *BB = *I; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1347 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1348 | DOUT << "unreachable block: " << BB->getName() << "\n"; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1349 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1350 | for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB); |
| 1351 | SI != SE; ++SI) { |
| 1352 | BasicBlock *Succ = *SI; |
| 1353 | Succ->removePredecessor(BB); |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1354 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1355 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1356 | TerminatorInst *TI = BB->getTerminator(); |
| 1357 | TI->replaceAllUsesWith(UndefValue::get(TI->getType())); |
| 1358 | TI->eraseFromParent(); |
| 1359 | new UnreachableInst(BB); |
| 1360 | ++NumBlocks; |
| 1361 | modified = true; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1362 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1363 | DeadBlocks.clear(); |
| 1364 | return modified; |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1365 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1366 | }; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1367 | |
| 1368 | /// VRPSolver keeps track of how changes to one variable affect other |
| 1369 | /// variables, and forwards changes along to the InequalityGraph. It |
| 1370 | /// also maintains the correct choice for "canonical" in the IG. |
| 1371 | /// @brief VRPSolver calculates inferences from a new relationship. |
| 1372 | class VISIBILITY_HIDDEN VRPSolver { |
| 1373 | private: |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1374 | friend class ValueRanges; |
| 1375 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1376 | struct Operation { |
| 1377 | Value *LHS, *RHS; |
| 1378 | ICmpInst::Predicate Op; |
| 1379 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1380 | BasicBlock *ContextBB; // XXX use a DomTreeDFS::Node instead |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 1381 | Instruction *ContextInst; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1382 | }; |
| 1383 | std::deque<Operation> WorkList; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1384 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1385 | ValueNumbering &VN; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1386 | InequalityGraph &IG; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1387 | UnreachableBlocks &UB; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1388 | ValueRanges &VR; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1389 | DomTreeDFS *DTDFS; |
| 1390 | DomTreeDFS::Node *Top; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1391 | BasicBlock *TopBB; |
| 1392 | Instruction *TopInst; |
| 1393 | bool &modified; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1394 | |
| 1395 | typedef InequalityGraph::Node Node; |
| 1396 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1397 | // below - true if the Instruction is dominated by the current context |
| 1398 | // block or instruction |
| 1399 | bool below(Instruction *I) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1400 | BasicBlock *BB = I->getParent(); |
| 1401 | if (TopInst && TopInst->getParent() == BB) { |
| 1402 | if (isa<TerminatorInst>(TopInst)) return false; |
| 1403 | if (isa<TerminatorInst>(I)) return true; |
| 1404 | if ( isa<PHINode>(TopInst) && !isa<PHINode>(I)) return true; |
| 1405 | if (!isa<PHINode>(TopInst) && isa<PHINode>(I)) return false; |
| 1406 | |
| 1407 | for (BasicBlock::const_iterator Iter = BB->begin(), E = BB->end(); |
| 1408 | Iter != E; ++Iter) { |
| 1409 | if (&*Iter == TopInst) return true; |
| 1410 | else if (&*Iter == I) return false; |
| 1411 | } |
| 1412 | assert(!"Instructions not found in parent BasicBlock?"); |
| 1413 | } else { |
Nick Lewycky | dea2526 | 2007-06-24 04:40:16 +0000 | [diff] [blame] | 1414 | DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB); |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1415 | if (!Node) return false; |
| 1416 | return Top->dominates(Node); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1417 | } |
Chris Lattner | d27c991 | 2008-03-30 18:22:13 +0000 | [diff] [blame] | 1418 | return false; // Not reached |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1419 | } |
| 1420 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1421 | // aboveOrBelow - true if the Instruction either dominates or is dominated |
| 1422 | // by the current context block or instruction |
| 1423 | bool aboveOrBelow(Instruction *I) { |
| 1424 | BasicBlock *BB = I->getParent(); |
| 1425 | DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB); |
| 1426 | if (!Node) return false; |
| 1427 | |
| 1428 | return Top == Node || Top->dominates(Node) || Node->dominates(Top); |
| 1429 | } |
| 1430 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1431 | bool makeEqual(Value *V1, Value *V2) { |
| 1432 | DOUT << "makeEqual(" << *V1 << ", " << *V2 << ")\n"; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1433 | DOUT << "context is "; |
| 1434 | if (TopInst) DOUT << "I: " << *TopInst << "\n"; |
| 1435 | else DOUT << "BB: " << TopBB->getName() |
| 1436 | << "(" << Top->getDFSNumIn() << ")\n"; |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1437 | |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 1438 | assert(V1->getType() == V2->getType() && |
| 1439 | "Can't make two values with different types equal."); |
| 1440 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1441 | if (V1 == V2) return true; |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1442 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1443 | if (isa<Constant>(V1) && isa<Constant>(V2)) |
| 1444 | return false; |
| 1445 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1446 | unsigned n1 = VN.valueNumber(V1, Top), n2 = VN.valueNumber(V2, Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1447 | |
| 1448 | if (n1 && n2) { |
| 1449 | if (n1 == n2) return true; |
| 1450 | if (IG.isRelatedBy(n1, n2, Top, NE)) return false; |
| 1451 | } |
| 1452 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1453 | if (n1) assert(V1 == VN.value(n1) && "Value isn't canonical."); |
| 1454 | if (n2) assert(V2 == VN.value(n2) && "Value isn't canonical."); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1455 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1456 | assert(!VN.compare(V2, V1) && "Please order parameters to makeEqual."); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1457 | |
| 1458 | assert(!isa<Constant>(V2) && "Tried to remove a constant."); |
| 1459 | |
| 1460 | SetVector<unsigned> Remove; |
| 1461 | if (n2) Remove.insert(n2); |
| 1462 | |
| 1463 | if (n1 && n2) { |
| 1464 | // Suppose we're being told that %x == %y, and %x <= %z and %y >= %z. |
| 1465 | // We can't just merge %x and %y because the relationship with %z would |
| 1466 | // be EQ and that's invalid. What we're doing is looking for any nodes |
| 1467 | // %z such that %x <= %z and %y >= %z, and vice versa. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1468 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1469 | Node::iterator end = IG.node(n2)->end(); |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 1470 | |
| 1471 | // Find the intersection between N1 and N2 which is dominated by |
| 1472 | // Top. If we find %x where N1 <= %x <= N2 (or >=) then add %x to |
| 1473 | // Remove. |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1474 | for (Node::iterator I = IG.node(n1)->begin(), E = IG.node(n1)->end(); |
| 1475 | I != E; ++I) { |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 1476 | if (!(I->LV & EQ_BIT) || !Top->DominatedBy(I->Subtree)) continue; |
| 1477 | |
| 1478 | unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT); |
| 1479 | unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1480 | Node::iterator NI = IG.node(n2)->find(I->To, Top); |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 1481 | if (NI != end) { |
| 1482 | LatticeVal NILV = reversePredicate(NI->LV); |
| 1483 | unsigned NILV_s = NILV & (SLT_BIT|SGT_BIT); |
| 1484 | unsigned NILV_u = NILV & (ULT_BIT|UGT_BIT); |
| 1485 | |
| 1486 | if ((ILV_s != (SLT_BIT|SGT_BIT) && ILV_s == NILV_s) || |
| 1487 | (ILV_u != (ULT_BIT|UGT_BIT) && ILV_u == NILV_u)) |
| 1488 | Remove.insert(I->To); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1489 | } |
| 1490 | } |
| 1491 | |
| 1492 | // See if one of the nodes about to be removed is actually a better |
| 1493 | // canonical choice than n1. |
| 1494 | unsigned orig_n1 = n1; |
Reid Spencer | 7af9a13 | 2007-01-17 02:23:37 +0000 | [diff] [blame] | 1495 | SetVector<unsigned>::iterator DontRemove = Remove.end(); |
| 1496 | for (SetVector<unsigned>::iterator I = Remove.begin()+1 /* skip n2 */, |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1497 | E = Remove.end(); I != E; ++I) { |
| 1498 | unsigned n = *I; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1499 | Value *V = VN.value(n); |
| 1500 | if (VN.compare(V, V1)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1501 | V1 = V; |
| 1502 | n1 = n; |
| 1503 | DontRemove = I; |
| 1504 | } |
| 1505 | } |
| 1506 | if (DontRemove != Remove.end()) { |
| 1507 | unsigned n = *DontRemove; |
| 1508 | Remove.remove(n); |
| 1509 | Remove.insert(orig_n1); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1510 | } |
| 1511 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1512 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1513 | // We'd like to allow makeEqual on two values to perform a simple |
Nick Lewycky | 70ef629 | 2008-05-26 22:49:36 +0000 | [diff] [blame] | 1514 | // substitution without creating nodes in the IG whenever possible. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1515 | // |
| 1516 | // The first iteration through this loop operates on V2 before going |
| 1517 | // through the Remove list and operating on those too. If all of the |
| 1518 | // iterations performed simple replacements then we exit early. |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1519 | bool mergeIGNode = false; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1520 | unsigned i = 0; |
| 1521 | for (Value *R = V2; i == 0 || i < Remove.size(); ++i) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1522 | if (i) R = VN.value(Remove[i]); // skip n2. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1523 | |
| 1524 | // Try to replace the whole instruction. If we can, we're done. |
| 1525 | Instruction *I2 = dyn_cast<Instruction>(R); |
| 1526 | if (I2 && below(I2)) { |
| 1527 | std::vector<Instruction *> ToNotify; |
| 1528 | for (Value::use_iterator UI = R->use_begin(), UE = R->use_end(); |
| 1529 | UI != UE;) { |
| 1530 | Use &TheUse = UI.getUse(); |
| 1531 | ++UI; |
| 1532 | if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) |
| 1533 | ToNotify.push_back(I); |
| 1534 | } |
| 1535 | |
| 1536 | DOUT << "Simply removing " << *I2 |
| 1537 | << ", replacing with " << *V1 << "\n"; |
| 1538 | I2->replaceAllUsesWith(V1); |
| 1539 | // leave it dead; it'll get erased later. |
| 1540 | ++NumInstruction; |
| 1541 | modified = true; |
| 1542 | |
| 1543 | for (std::vector<Instruction *>::iterator II = ToNotify.begin(), |
| 1544 | IE = ToNotify.end(); II != IE; ++II) { |
| 1545 | opsToDef(*II); |
| 1546 | } |
| 1547 | |
| 1548 | continue; |
| 1549 | } |
| 1550 | |
| 1551 | // Otherwise, replace all dominated uses. |
| 1552 | for (Value::use_iterator UI = R->use_begin(), UE = R->use_end(); |
| 1553 | UI != UE;) { |
| 1554 | Use &TheUse = UI.getUse(); |
| 1555 | ++UI; |
| 1556 | if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) { |
| 1557 | if (below(I)) { |
| 1558 | TheUse.set(V1); |
| 1559 | modified = true; |
| 1560 | ++NumVarsReplaced; |
| 1561 | opsToDef(I); |
| 1562 | } |
| 1563 | } |
| 1564 | } |
| 1565 | |
| 1566 | // If that killed the instruction, stop here. |
| 1567 | if (I2 && isInstructionTriviallyDead(I2)) { |
| 1568 | DOUT << "Killed all uses of " << *I2 |
| 1569 | << ", replacing with " << *V1 << "\n"; |
| 1570 | continue; |
| 1571 | } |
| 1572 | |
| 1573 | // If we make it to here, then we will need to create a node for N1. |
| 1574 | // Otherwise, we can skip out early! |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1575 | mergeIGNode = true; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1576 | } |
| 1577 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1578 | if (!isa<Constant>(V1)) { |
| 1579 | if (Remove.empty()) { |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1580 | VR.mergeInto(&V2, 1, VN.getOrInsertVN(V1, Top), Top, this); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1581 | } else { |
| 1582 | std::vector<Value*> RemoveVals; |
| 1583 | RemoveVals.reserve(Remove.size()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1584 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1585 | for (SetVector<unsigned>::iterator I = Remove.begin(), |
| 1586 | E = Remove.end(); I != E; ++I) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1587 | Value *V = VN.value(*I); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1588 | if (!V->use_empty()) |
| 1589 | RemoveVals.push_back(V); |
| 1590 | } |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1591 | VR.mergeInto(&RemoveVals[0], RemoveVals.size(), |
| 1592 | VN.getOrInsertVN(V1, Top), Top, this); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1593 | } |
| 1594 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1595 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1596 | if (mergeIGNode) { |
| 1597 | // Create N1. |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1598 | if (!n1) n1 = VN.getOrInsertVN(V1, Top); |
Nick Lewycky | 6918a91 | 2008-05-27 00:59:05 +0000 | [diff] [blame] | 1599 | IG.node(n1); // Ensure that IG.Nodes won't get resized |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1600 | |
| 1601 | // Migrate relationships from removed nodes to N1. |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1602 | for (SetVector<unsigned>::iterator I = Remove.begin(), E = Remove.end(); |
| 1603 | I != E; ++I) { |
| 1604 | unsigned n = *I; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1605 | for (Node::iterator NI = IG.node(n)->begin(), NE = IG.node(n)->end(); |
| 1606 | NI != NE; ++NI) { |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1607 | if (NI->Subtree->DominatedBy(Top)) { |
| 1608 | if (NI->To == n1) { |
| 1609 | assert((NI->LV & EQ_BIT) && "Node inequal to itself."); |
| 1610 | continue; |
| 1611 | } |
| 1612 | if (Remove.count(NI->To)) |
| 1613 | continue; |
| 1614 | |
| 1615 | IG.node(NI->To)->update(n1, reversePredicate(NI->LV), Top); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1616 | IG.node(n1)->update(NI->To, NI->LV, Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1617 | } |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1618 | } |
| 1619 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1620 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1621 | // Point V2 (and all items in Remove) to N1. |
| 1622 | if (!n2) |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1623 | VN.addEquality(n1, V2, Top); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1624 | else { |
| 1625 | for (SetVector<unsigned>::iterator I = Remove.begin(), |
| 1626 | E = Remove.end(); I != E; ++I) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1627 | VN.addEquality(n1, VN.value(*I), Top); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1628 | } |
| 1629 | } |
| 1630 | |
| 1631 | // If !Remove.empty() then V2 = Remove[0]->getValue(). |
| 1632 | // Even when Remove is empty, we still want to process V2. |
| 1633 | i = 0; |
| 1634 | for (Value *R = V2; i == 0 || i < Remove.size(); ++i) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1635 | if (i) R = VN.value(Remove[i]); // skip n2. |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1636 | |
| 1637 | if (Instruction *I2 = dyn_cast<Instruction>(R)) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1638 | if (aboveOrBelow(I2)) |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1639 | defToOps(I2); |
| 1640 | } |
| 1641 | for (Value::use_iterator UI = V2->use_begin(), UE = V2->use_end(); |
| 1642 | UI != UE;) { |
| 1643 | Use &TheUse = UI.getUse(); |
| 1644 | ++UI; |
| 1645 | if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1646 | if (aboveOrBelow(I)) |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1647 | opsToDef(I); |
| 1648 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1649 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1650 | } |
| 1651 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1652 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1653 | // re-opsToDef all dominated users of V1. |
| 1654 | if (Instruction *I = dyn_cast<Instruction>(V1)) { |
| 1655 | for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1656 | UI != UE;) { |
| 1657 | Use &TheUse = UI.getUse(); |
| 1658 | ++UI; |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1659 | Value *V = TheUse.getUser(); |
| 1660 | if (!V->use_empty()) { |
| 1661 | if (Instruction *Inst = dyn_cast<Instruction>(V)) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1662 | if (aboveOrBelow(Inst)) |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1663 | opsToDef(Inst); |
| 1664 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1665 | } |
| 1666 | } |
| 1667 | } |
| 1668 | |
| 1669 | return true; |
| 1670 | } |
| 1671 | |
| 1672 | /// cmpInstToLattice - converts an CmpInst::Predicate to lattice value |
| 1673 | /// Requires that the lattice value be valid; does not accept ICMP_EQ. |
| 1674 | static LatticeVal cmpInstToLattice(ICmpInst::Predicate Pred) { |
| 1675 | switch (Pred) { |
| 1676 | case ICmpInst::ICMP_EQ: |
| 1677 | assert(!"No matching lattice value."); |
| 1678 | return static_cast<LatticeVal>(EQ_BIT); |
| 1679 | default: |
| 1680 | assert(!"Invalid 'icmp' predicate."); |
| 1681 | case ICmpInst::ICMP_NE: |
| 1682 | return NE; |
| 1683 | case ICmpInst::ICMP_UGT: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1684 | return UGT; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1685 | case ICmpInst::ICMP_UGE: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1686 | return UGE; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1687 | case ICmpInst::ICMP_ULT: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1688 | return ULT; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1689 | case ICmpInst::ICMP_ULE: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1690 | return ULE; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1691 | case ICmpInst::ICMP_SGT: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1692 | return SGT; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1693 | case ICmpInst::ICMP_SGE: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1694 | return SGE; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1695 | case ICmpInst::ICMP_SLT: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1696 | return SLT; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1697 | case ICmpInst::ICMP_SLE: |
Nick Lewycky | 6a08f91 | 2007-01-29 02:56:54 +0000 | [diff] [blame] | 1698 | return SLE; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1699 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1700 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1701 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1702 | public: |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1703 | VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB, |
| 1704 | ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified, |
| 1705 | BasicBlock *TopBB) |
| 1706 | : VN(VN), |
| 1707 | IG(IG), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1708 | UB(UB), |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1709 | VR(VR), |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1710 | DTDFS(DTDFS), |
| 1711 | Top(DTDFS->getNodeForBlock(TopBB)), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1712 | TopBB(TopBB), |
| 1713 | TopInst(NULL), |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1714 | modified(modified) |
| 1715 | { |
| 1716 | assert(Top && "VRPSolver created for unreachable basic block."); |
| 1717 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 1718 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1719 | VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB, |
| 1720 | ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified, |
| 1721 | Instruction *TopInst) |
| 1722 | : VN(VN), |
| 1723 | IG(IG), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1724 | UB(UB), |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1725 | VR(VR), |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1726 | DTDFS(DTDFS), |
| 1727 | Top(DTDFS->getNodeForBlock(TopInst->getParent())), |
| 1728 | TopBB(TopInst->getParent()), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1729 | TopInst(TopInst), |
| 1730 | modified(modified) |
| 1731 | { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1732 | assert(Top && "VRPSolver created for unreachable basic block."); |
| 1733 | assert(Top->getBlock() == TopInst->getParent() && "Context mismatch."); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1734 | } |
| 1735 | |
| 1736 | bool isRelatedBy(Value *V1, Value *V2, ICmpInst::Predicate Pred) const { |
| 1737 | if (Constant *C1 = dyn_cast<Constant>(V1)) |
| 1738 | if (Constant *C2 = dyn_cast<Constant>(V2)) |
| 1739 | return ConstantExpr::getCompare(Pred, C1, C2) == |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1740 | ConstantInt::getTrue(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1741 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1742 | unsigned n1 = VN.valueNumber(V1, Top); |
| 1743 | unsigned n2 = VN.valueNumber(V2, Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1744 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1745 | if (n1 && n2) { |
| 1746 | if (n1 == n2) return Pred == ICmpInst::ICMP_EQ || |
| 1747 | Pred == ICmpInst::ICMP_ULE || |
| 1748 | Pred == ICmpInst::ICMP_UGE || |
| 1749 | Pred == ICmpInst::ICMP_SLE || |
| 1750 | Pred == ICmpInst::ICMP_SGE; |
| 1751 | if (Pred == ICmpInst::ICMP_EQ) return false; |
| 1752 | if (IG.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true; |
| 1753 | if (VR.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true; |
| 1754 | } |
| 1755 | |
| 1756 | if ((n1 && !n2 && isa<Constant>(V2)) || |
| 1757 | (n2 && !n1 && isa<Constant>(V1))) { |
| 1758 | ConstantRange CR1 = n1 ? VR.range(n1, Top) : VR.range(V1); |
| 1759 | ConstantRange CR2 = n2 ? VR.range(n2, Top) : VR.range(V2); |
| 1760 | |
| 1761 | if (Pred == ICmpInst::ICMP_EQ) |
| 1762 | return CR1.isSingleElement() && |
| 1763 | CR1.getSingleElement() == CR2.getSingleElement(); |
| 1764 | |
| 1765 | return VR.isRelatedBy(CR1, CR2, cmpInstToLattice(Pred)); |
| 1766 | } |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1767 | if (Pred == ICmpInst::ICMP_EQ) return V1 == V2; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1768 | return false; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1769 | } |
| 1770 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1771 | /// add - adds a new property to the work queue |
| 1772 | void add(Value *V1, Value *V2, ICmpInst::Predicate Pred, |
| 1773 | Instruction *I = NULL) { |
| 1774 | DOUT << "adding " << *V1 << " " << Pred << " " << *V2; |
| 1775 | if (I) DOUT << " context: " << *I; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 1776 | else DOUT << " default context (" << Top->getDFSNumIn() << ")"; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1777 | DOUT << "\n"; |
| 1778 | |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 1779 | assert(V1->getType() == V2->getType() && |
| 1780 | "Can't relate two values with different types."); |
| 1781 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1782 | WorkList.push_back(Operation()); |
| 1783 | Operation &O = WorkList.back(); |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 1784 | O.LHS = V1, O.RHS = V2, O.Op = Pred, O.ContextInst = I; |
| 1785 | O.ContextBB = I ? I->getParent() : TopBB; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1786 | } |
| 1787 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1788 | /// defToOps - Given an instruction definition that we've learned something |
| 1789 | /// new about, find any new relationships between its operands. |
| 1790 | void defToOps(Instruction *I) { |
| 1791 | Instruction *NewContext = below(I) ? I : TopInst; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1792 | Value *Canonical = VN.canonicalize(I, Top); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1793 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1794 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) { |
| 1795 | const Type *Ty = BO->getType(); |
| 1796 | assert(!Ty->isFPOrFPVector() && "Float in work queue!"); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1797 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1798 | Value *Op0 = VN.canonicalize(BO->getOperand(0), Top); |
| 1799 | Value *Op1 = VN.canonicalize(BO->getOperand(1), Top); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1800 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1801 | // TODO: "and i32 -1, %x" EQ %y then %x EQ %y. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1802 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1803 | switch (BO->getOpcode()) { |
| 1804 | case Instruction::And: { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 1805 | // "and i32 %a, %b" EQ -1 then %a EQ -1 and %b EQ -1 |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1806 | ConstantInt *CI = ConstantInt::getAllOnesValue(Ty); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1807 | if (Canonical == CI) { |
| 1808 | add(CI, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 1809 | add(CI, Op1, ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1810 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1811 | } break; |
| 1812 | case Instruction::Or: { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1813 | // "or i32 %a, %b" EQ 0 then %a EQ 0 and %b EQ 0 |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1814 | Constant *Zero = Constant::getNullValue(Ty); |
| 1815 | if (Canonical == Zero) { |
| 1816 | add(Zero, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 1817 | add(Zero, Op1, ICmpInst::ICMP_EQ, NewContext); |
| 1818 | } |
| 1819 | } break; |
| 1820 | case Instruction::Xor: { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1821 | // "xor i32 %c, %a" EQ %b then %a EQ %c ^ %b |
| 1822 | // "xor i32 %c, %a" EQ %c then %a EQ 0 |
| 1823 | // "xor i32 %c, %a" NE %c then %a NE 0 |
| 1824 | // Repeat the above, with order of operands reversed. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1825 | Value *LHS = Op0; |
| 1826 | Value *RHS = Op1; |
| 1827 | if (!isa<Constant>(LHS)) std::swap(LHS, RHS); |
| 1828 | |
Nick Lewycky | c2a7d09 | 2007-01-12 00:02:12 +0000 | [diff] [blame] | 1829 | if (ConstantInt *CI = dyn_cast<ConstantInt>(Canonical)) { |
| 1830 | if (ConstantInt *Arg = dyn_cast<ConstantInt>(LHS)) { |
Reid Spencer | af3e946 | 2007-03-03 00:48:31 +0000 | [diff] [blame] | 1831 | add(RHS, ConstantInt::get(CI->getValue() ^ Arg->getValue()), |
Nick Lewycky | c2a7d09 | 2007-01-12 00:02:12 +0000 | [diff] [blame] | 1832 | ICmpInst::ICMP_EQ, NewContext); |
| 1833 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1834 | } |
| 1835 | if (Canonical == LHS) { |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1836 | if (isa<ConstantInt>(Canonical)) |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1837 | add(RHS, Constant::getNullValue(Ty), ICmpInst::ICMP_EQ, |
| 1838 | NewContext); |
| 1839 | } else if (isRelatedBy(LHS, Canonical, ICmpInst::ICMP_NE)) { |
| 1840 | add(RHS, Constant::getNullValue(Ty), ICmpInst::ICMP_NE, |
| 1841 | NewContext); |
| 1842 | } |
| 1843 | } break; |
| 1844 | default: |
| 1845 | break; |
| 1846 | } |
| 1847 | } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1848 | // "icmp ult i32 %a, %y" EQ true then %a u< y |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1849 | // etc. |
| 1850 | |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1851 | if (Canonical == ConstantInt::getTrue()) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1852 | add(IC->getOperand(0), IC->getOperand(1), IC->getPredicate(), |
| 1853 | NewContext); |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1854 | } else if (Canonical == ConstantInt::getFalse()) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1855 | add(IC->getOperand(0), IC->getOperand(1), |
| 1856 | ICmpInst::getInversePredicate(IC->getPredicate()), NewContext); |
| 1857 | } |
| 1858 | } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) { |
| 1859 | if (I->getType()->isFPOrFPVector()) return; |
| 1860 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1861 | // Given: "%a = select i1 %x, i32 %b, i32 %c" |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1862 | // %a EQ %b and %b NE %c then %x EQ true |
| 1863 | // %a EQ %c and %b NE %c then %x EQ false |
| 1864 | |
| 1865 | Value *True = SI->getTrueValue(); |
| 1866 | Value *False = SI->getFalseValue(); |
| 1867 | if (isRelatedBy(True, False, ICmpInst::ICMP_NE)) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1868 | if (Canonical == VN.canonicalize(True, Top) || |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1869 | isRelatedBy(Canonical, False, ICmpInst::ICMP_NE)) |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1870 | add(SI->getCondition(), ConstantInt::getTrue(), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1871 | ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1872 | else if (Canonical == VN.canonicalize(False, Top) || |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 1873 | isRelatedBy(Canonical, True, ICmpInst::ICMP_NE)) |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1874 | add(SI->getCondition(), ConstantInt::getFalse(), |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1875 | ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1876 | } |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 1877 | } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { |
| 1878 | for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(), |
| 1879 | OE = GEPI->idx_end(); OI != OE; ++OI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1880 | ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top)); |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 1881 | if (!Op || !Op->isZero()) return; |
| 1882 | } |
| 1883 | // TODO: The GEPI indices are all zero. Copy from definition to operand, |
| 1884 | // jumping the type plane as needed. |
| 1885 | if (isRelatedBy(GEPI, Constant::getNullValue(GEPI->getType()), |
| 1886 | ICmpInst::ICMP_NE)) { |
| 1887 | Value *Ptr = GEPI->getPointerOperand(); |
| 1888 | add(Ptr, Constant::getNullValue(Ptr->getType()), ICmpInst::ICMP_NE, |
| 1889 | NewContext); |
| 1890 | } |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1891 | } else if (CastInst *CI = dyn_cast<CastInst>(I)) { |
| 1892 | const Type *SrcTy = CI->getSrcTy(); |
| 1893 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1894 | unsigned ci = VN.getOrInsertVN(CI, Top); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1895 | uint32_t W = VR.typeToWidth(SrcTy); |
| 1896 | if (!W) return; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1897 | ConstantRange CR = VR.range(ci, Top); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1898 | |
| 1899 | if (CR.isFullSet()) return; |
| 1900 | |
| 1901 | switch (CI->getOpcode()) { |
| 1902 | default: break; |
| 1903 | case Instruction::ZExt: |
| 1904 | case Instruction::SExt: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1905 | VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top), |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1906 | CR.truncate(W), Top, this); |
| 1907 | break; |
| 1908 | case Instruction::BitCast: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 1909 | VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top), |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1910 | CR, Top, this); |
| 1911 | break; |
| 1912 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1913 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1914 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 1915 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1916 | /// opsToDef - A new relationship was discovered involving one of this |
| 1917 | /// instruction's operands. Find any new relationship involving the |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 1918 | /// definition, or another operand. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1919 | void opsToDef(Instruction *I) { |
| 1920 | Instruction *NewContext = below(I) ? I : TopInst; |
| 1921 | |
| 1922 | if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 1923 | Value *Op0 = VN.canonicalize(BO->getOperand(0), Top); |
| 1924 | Value *Op1 = VN.canonicalize(BO->getOperand(1), Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1925 | |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 1926 | if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) |
| 1927 | if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 1928 | add(BO, ConstantExpr::get(BO->getOpcode(), CI0, CI1), |
| 1929 | ICmpInst::ICMP_EQ, NewContext); |
| 1930 | return; |
| 1931 | } |
| 1932 | |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1933 | // "%y = and i1 true, %x" then %x EQ %y |
| 1934 | // "%y = or i1 false, %x" then %x EQ %y |
| 1935 | // "%x = add i32 %y, 0" then %x EQ %y |
| 1936 | // "%x = mul i32 %y, 0" then %x EQ 0 |
| 1937 | |
| 1938 | Instruction::BinaryOps Opcode = BO->getOpcode(); |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 1939 | const Type *Ty = BO->getType(); |
| 1940 | assert(!Ty->isFPOrFPVector() && "Float in work queue!"); |
| 1941 | |
| 1942 | Constant *Zero = Constant::getNullValue(Ty); |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 1943 | Constant *One = ConstantInt::get(Ty, 1); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 1944 | ConstantInt *AllOnes = ConstantInt::getAllOnesValue(Ty); |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1945 | |
| 1946 | switch (Opcode) { |
| 1947 | default: break; |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 1948 | case Instruction::LShr: |
| 1949 | case Instruction::AShr: |
| 1950 | case Instruction::Shl: |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 1951 | if (Op1 == Zero) { |
| 1952 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 1953 | return; |
| 1954 | } |
| 1955 | break; |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1956 | case Instruction::Sub: |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 1957 | if (Op1 == Zero) { |
| 1958 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 1959 | return; |
| 1960 | } |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 1961 | if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) { |
| 1962 | unsigned n_ci0 = VN.getOrInsertVN(Op1, Top); |
| 1963 | ConstantRange CR = VR.range(n_ci0, Top); |
| 1964 | if (!CR.isFullSet()) { |
| 1965 | CR.subtract(CI0->getValue()); |
| 1966 | unsigned n_bo = VN.getOrInsertVN(BO, Top); |
| 1967 | VR.applyRange(n_bo, CR, Top, this); |
| 1968 | return; |
| 1969 | } |
| 1970 | } |
| 1971 | if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) { |
| 1972 | unsigned n_ci1 = VN.getOrInsertVN(Op0, Top); |
| 1973 | ConstantRange CR = VR.range(n_ci1, Top); |
| 1974 | if (!CR.isFullSet()) { |
| 1975 | CR.subtract(CI1->getValue()); |
| 1976 | unsigned n_bo = VN.getOrInsertVN(BO, Top); |
| 1977 | VR.applyRange(n_bo, CR, Top, this); |
| 1978 | return; |
| 1979 | } |
| 1980 | } |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 1981 | break; |
| 1982 | case Instruction::Or: |
| 1983 | if (Op0 == AllOnes || Op1 == AllOnes) { |
| 1984 | add(BO, AllOnes, ICmpInst::ICMP_EQ, NewContext); |
| 1985 | return; |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 1986 | } |
| 1987 | if (Op0 == Zero) { |
| 1988 | add(BO, Op1, ICmpInst::ICMP_EQ, NewContext); |
| 1989 | return; |
| 1990 | } else if (Op1 == Zero) { |
| 1991 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 1992 | return; |
| 1993 | } |
| 1994 | break; |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 1995 | case Instruction::Add: |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 1996 | if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) { |
| 1997 | unsigned n_ci0 = VN.getOrInsertVN(Op1, Top); |
| 1998 | ConstantRange CR = VR.range(n_ci0, Top); |
| 1999 | if (!CR.isFullSet()) { |
| 2000 | CR.subtract(-CI0->getValue()); |
| 2001 | unsigned n_bo = VN.getOrInsertVN(BO, Top); |
| 2002 | VR.applyRange(n_bo, CR, Top, this); |
| 2003 | return; |
| 2004 | } |
| 2005 | } |
| 2006 | if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) { |
| 2007 | unsigned n_ci1 = VN.getOrInsertVN(Op0, Top); |
| 2008 | ConstantRange CR = VR.range(n_ci1, Top); |
| 2009 | if (!CR.isFullSet()) { |
| 2010 | CR.subtract(-CI1->getValue()); |
| 2011 | unsigned n_bo = VN.getOrInsertVN(BO, Top); |
| 2012 | VR.applyRange(n_bo, CR, Top, this); |
| 2013 | return; |
| 2014 | } |
| 2015 | } |
| 2016 | // fall-through |
| 2017 | case Instruction::Xor: |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 2018 | if (Op0 == Zero) { |
| 2019 | add(BO, Op1, ICmpInst::ICMP_EQ, NewContext); |
| 2020 | return; |
| 2021 | } else if (Op1 == Zero) { |
| 2022 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 2023 | return; |
| 2024 | } |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 2025 | break; |
| 2026 | case Instruction::And: |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 2027 | if (Op0 == AllOnes) { |
| 2028 | add(BO, Op1, ICmpInst::ICMP_EQ, NewContext); |
| 2029 | return; |
| 2030 | } else if (Op1 == AllOnes) { |
| 2031 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 2032 | return; |
| 2033 | } |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2034 | if (Op0 == Zero || Op1 == Zero) { |
| 2035 | add(BO, Zero, ICmpInst::ICMP_EQ, NewContext); |
| 2036 | return; |
| 2037 | } |
| 2038 | break; |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 2039 | case Instruction::Mul: |
| 2040 | if (Op0 == Zero || Op1 == Zero) { |
Nick Lewycky | 1eda0f6 | 2007-03-18 01:09:32 +0000 | [diff] [blame] | 2041 | add(BO, Zero, ICmpInst::ICMP_EQ, NewContext); |
| 2042 | return; |
| 2043 | } |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2044 | if (Op0 == One) { |
| 2045 | add(BO, Op1, ICmpInst::ICMP_EQ, NewContext); |
| 2046 | return; |
| 2047 | } else if (Op1 == One) { |
| 2048 | add(BO, Op0, ICmpInst::ICMP_EQ, NewContext); |
| 2049 | return; |
| 2050 | } |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 2051 | break; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2052 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2053 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2054 | // "%x = add i32 %y, %z" and %x EQ %y then %z EQ 0 |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2055 | // "%x = add i32 %y, %z" and %x EQ %z then %y EQ 0 |
| 2056 | // "%x = shl i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 0 |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2057 | // "%x = udiv i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 1 |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2058 | |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2059 | Value *Known = Op0, *Unknown = Op1, |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2060 | *TheBO = VN.canonicalize(BO, Top); |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2061 | if (Known != TheBO) std::swap(Known, Unknown); |
| 2062 | if (Known == TheBO) { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2063 | switch (Opcode) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2064 | default: break; |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2065 | case Instruction::LShr: |
| 2066 | case Instruction::AShr: |
| 2067 | case Instruction::Shl: |
| 2068 | if (!isRelatedBy(Known, Zero, ICmpInst::ICMP_NE)) break; |
| 2069 | // otherwise, fall-through. |
| 2070 | case Instruction::Sub: |
Nick Lewycky | e29578a | 2007-09-20 00:48:36 +0000 | [diff] [blame] | 2071 | if (Unknown == Op0) break; |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2072 | // otherwise, fall-through. |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2073 | case Instruction::Xor: |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2074 | case Instruction::Add: |
Nick Lewycky | 3f64b1a | 2007-03-18 22:58:46 +0000 | [diff] [blame] | 2075 | add(Unknown, Zero, ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2076 | break; |
| 2077 | case Instruction::UDiv: |
| 2078 | case Instruction::SDiv: |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2079 | if (Unknown == Op1) break; |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2080 | if (isRelatedBy(Known, Zero, ICmpInst::ICMP_NE)) |
Nick Lewycky | c2a7d09 | 2007-01-12 00:02:12 +0000 | [diff] [blame] | 2081 | add(Unknown, One, ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 2082 | break; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2083 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2084 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2085 | |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2086 | // TODO: "%a = add i32 %b, 1" and %b > %z then %a >= %z. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2087 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2088 | } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2089 | // "%a = icmp ult i32 %b, %c" and %b u< %c then %a EQ true |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2090 | // "%a = icmp ult i32 %b, %c" and %b u>= %c then %a EQ false |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2091 | // etc. |
| 2092 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2093 | Value *Op0 = VN.canonicalize(IC->getOperand(0), Top); |
| 2094 | Value *Op1 = VN.canonicalize(IC->getOperand(1), Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2095 | |
| 2096 | ICmpInst::Predicate Pred = IC->getPredicate(); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2097 | if (isRelatedBy(Op0, Op1, Pred)) |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2098 | add(IC, ConstantInt::getTrue(), ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2099 | else if (isRelatedBy(Op0, Op1, ICmpInst::getInversePredicate(Pred))) |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2100 | add(IC, ConstantInt::getFalse(), ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2101 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2102 | } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) { |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2103 | if (I->getType()->isFPOrFPVector()) return; |
| 2104 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2105 | // Given: "%a = select i1 %x, i32 %b, i32 %c" |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2106 | // %x EQ true then %a EQ %b |
| 2107 | // %x EQ false then %a EQ %c |
| 2108 | // %b EQ %c then %a EQ %b |
| 2109 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2110 | Value *Canonical = VN.canonicalize(SI->getCondition(), Top); |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2111 | if (Canonical == ConstantInt::getTrue()) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2112 | add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext); |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2113 | } else if (Canonical == ConstantInt::getFalse()) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2114 | add(SI, SI->getFalseValue(), ICmpInst::ICMP_EQ, NewContext); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2115 | } else if (VN.canonicalize(SI->getTrueValue(), Top) == |
| 2116 | VN.canonicalize(SI->getFalseValue(), Top)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2117 | add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext); |
| 2118 | } |
Nick Lewycky | 28c5b15 | 2007-01-12 01:23:53 +0000 | [diff] [blame] | 2119 | } else if (CastInst *CI = dyn_cast<CastInst>(I)) { |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2120 | const Type *DestTy = CI->getDestTy(); |
| 2121 | if (DestTy->isFPOrFPVector()) return; |
Nick Lewycky | 28c5b15 | 2007-01-12 01:23:53 +0000 | [diff] [blame] | 2122 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2123 | Value *Op = VN.canonicalize(CI->getOperand(0), Top); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2124 | Instruction::CastOps Opcode = CI->getOpcode(); |
| 2125 | |
| 2126 | if (Constant *C = dyn_cast<Constant>(Op)) { |
| 2127 | add(CI, ConstantExpr::getCast(Opcode, C, DestTy), |
Nick Lewycky | 28c5b15 | 2007-01-12 01:23:53 +0000 | [diff] [blame] | 2128 | ICmpInst::ICMP_EQ, NewContext); |
| 2129 | } |
| 2130 | |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2131 | uint32_t W = VR.typeToWidth(DestTy); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2132 | unsigned ci = VN.getOrInsertVN(CI, Top); |
| 2133 | ConstantRange CR = VR.range(VN.getOrInsertVN(Op, Top), Top); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2134 | |
| 2135 | if (!CR.isFullSet()) { |
| 2136 | switch (Opcode) { |
| 2137 | default: break; |
| 2138 | case Instruction::ZExt: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2139 | VR.applyRange(ci, CR.zeroExtend(W), Top, this); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2140 | break; |
| 2141 | case Instruction::SExt: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2142 | VR.applyRange(ci, CR.signExtend(W), Top, this); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2143 | break; |
| 2144 | case Instruction::Trunc: { |
| 2145 | ConstantRange Result = CR.truncate(W); |
| 2146 | if (!Result.isFullSet()) |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2147 | VR.applyRange(ci, Result, Top, this); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2148 | } break; |
| 2149 | case Instruction::BitCast: |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2150 | VR.applyRange(ci, CR, Top, this); |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2151 | break; |
| 2152 | // TODO: other casts? |
| 2153 | } |
| 2154 | } |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2155 | } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) { |
| 2156 | for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(), |
| 2157 | OE = GEPI->idx_end(); OI != OE; ++OI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2158 | ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top)); |
Nick Lewycky | 27e4da9 | 2007-03-22 02:02:51 +0000 | [diff] [blame] | 2159 | if (!Op || !Op->isZero()) return; |
| 2160 | } |
| 2161 | // TODO: The GEPI indices are all zero. Copy from operand to definition, |
| 2162 | // jumping the type plane as needed. |
| 2163 | Value *Ptr = GEPI->getPointerOperand(); |
| 2164 | if (isRelatedBy(Ptr, Constant::getNullValue(Ptr->getType()), |
| 2165 | ICmpInst::ICMP_NE)) { |
| 2166 | add(GEPI, Constant::getNullValue(GEPI->getType()), ICmpInst::ICMP_NE, |
| 2167 | NewContext); |
| 2168 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2169 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2170 | } |
| 2171 | |
| 2172 | /// solve - process the work queue |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2173 | void solve() { |
| 2174 | //DOUT << "WorkList entry, size: " << WorkList.size() << "\n"; |
| 2175 | while (!WorkList.empty()) { |
| 2176 | //DOUT << "WorkList size: " << WorkList.size() << "\n"; |
| 2177 | |
| 2178 | Operation &O = WorkList.front(); |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 2179 | TopInst = O.ContextInst; |
| 2180 | TopBB = O.ContextBB; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2181 | Top = DTDFS->getNodeForBlock(TopBB); // XXX move this into Context |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 2182 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2183 | O.LHS = VN.canonicalize(O.LHS, Top); |
| 2184 | O.RHS = VN.canonicalize(O.RHS, Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2185 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2186 | assert(O.LHS == VN.canonicalize(O.LHS, Top) && "Canonicalize isn't."); |
| 2187 | assert(O.RHS == VN.canonicalize(O.RHS, Top) && "Canonicalize isn't."); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2188 | |
| 2189 | DOUT << "solving " << *O.LHS << " " << O.Op << " " << *O.RHS; |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 2190 | if (O.ContextInst) DOUT << " context inst: " << *O.ContextInst; |
| 2191 | else DOUT << " context block: " << O.ContextBB->getName(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2192 | DOUT << "\n"; |
| 2193 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2194 | DEBUG(VN.dump()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2195 | DEBUG(IG.dump()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2196 | DEBUG(VR.dump()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2197 | |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2198 | // If they're both Constant, skip it. Check for contradiction and mark |
| 2199 | // the BB as unreachable if so. |
| 2200 | if (Constant *CI_L = dyn_cast<Constant>(O.LHS)) { |
| 2201 | if (Constant *CI_R = dyn_cast<Constant>(O.RHS)) { |
| 2202 | if (ConstantExpr::getCompare(O.Op, CI_L, CI_R) == |
| 2203 | ConstantInt::getFalse()) |
| 2204 | UB.mark(TopBB); |
| 2205 | |
| 2206 | WorkList.pop_front(); |
| 2207 | continue; |
| 2208 | } |
| 2209 | } |
| 2210 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2211 | if (VN.compare(O.LHS, O.RHS)) { |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2212 | std::swap(O.LHS, O.RHS); |
| 2213 | O.Op = ICmpInst::getSwappedPredicate(O.Op); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2214 | } |
| 2215 | |
| 2216 | if (O.Op == ICmpInst::ICMP_EQ) { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2217 | if (!makeEqual(O.RHS, O.LHS)) |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2218 | UB.mark(TopBB); |
| 2219 | } else { |
| 2220 | LatticeVal LV = cmpInstToLattice(O.Op); |
| 2221 | |
| 2222 | if ((LV & EQ_BIT) && |
| 2223 | isRelatedBy(O.LHS, O.RHS, ICmpInst::getSwappedPredicate(O.Op))) { |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2224 | if (!makeEqual(O.RHS, O.LHS)) |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2225 | UB.mark(TopBB); |
| 2226 | } else { |
| 2227 | if (isRelatedBy(O.LHS, O.RHS, ICmpInst::getInversePredicate(O.Op))){ |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2228 | UB.mark(TopBB); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2229 | WorkList.pop_front(); |
| 2230 | continue; |
| 2231 | } |
| 2232 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2233 | unsigned n1 = VN.getOrInsertVN(O.LHS, Top); |
| 2234 | unsigned n2 = VN.getOrInsertVN(O.RHS, Top); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2235 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2236 | if (n1 == n2) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2237 | if (O.Op != ICmpInst::ICMP_UGE && O.Op != ICmpInst::ICMP_ULE && |
| 2238 | O.Op != ICmpInst::ICMP_SGE && O.Op != ICmpInst::ICMP_SLE) |
| 2239 | UB.mark(TopBB); |
| 2240 | |
| 2241 | WorkList.pop_front(); |
| 2242 | continue; |
| 2243 | } |
| 2244 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2245 | if (VR.isRelatedBy(n1, n2, Top, LV) || |
| 2246 | IG.isRelatedBy(n1, n2, Top, LV)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2247 | WorkList.pop_front(); |
| 2248 | continue; |
| 2249 | } |
| 2250 | |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2251 | VR.addInequality(n1, n2, Top, LV, this); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2252 | if ((!isa<ConstantInt>(O.RHS) && !isa<ConstantInt>(O.LHS)) || |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2253 | LV == NE) |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2254 | IG.addInequality(n1, n2, Top, LV); |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2255 | |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2256 | if (Instruction *I1 = dyn_cast<Instruction>(O.LHS)) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2257 | if (aboveOrBelow(I1)) |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2258 | defToOps(I1); |
| 2259 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2260 | if (isa<Instruction>(O.LHS) || isa<Argument>(O.LHS)) { |
| 2261 | for (Value::use_iterator UI = O.LHS->use_begin(), |
| 2262 | UE = O.LHS->use_end(); UI != UE;) { |
| 2263 | Use &TheUse = UI.getUse(); |
| 2264 | ++UI; |
| 2265 | if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2266 | if (aboveOrBelow(I)) |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2267 | opsToDef(I); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2268 | } |
| 2269 | } |
| 2270 | } |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2271 | if (Instruction *I2 = dyn_cast<Instruction>(O.RHS)) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2272 | if (aboveOrBelow(I2)) |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2273 | defToOps(I2); |
| 2274 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2275 | if (isa<Instruction>(O.RHS) || isa<Argument>(O.RHS)) { |
| 2276 | for (Value::use_iterator UI = O.RHS->use_begin(), |
| 2277 | UE = O.RHS->use_end(); UI != UE;) { |
| 2278 | Use &TheUse = UI.getUse(); |
| 2279 | ++UI; |
| 2280 | if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2281 | if (aboveOrBelow(I)) |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2282 | opsToDef(I); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2283 | } |
| 2284 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 2285 | } |
| 2286 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 2287 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2288 | WorkList.pop_front(); |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 2289 | } |
Nick Lewycky | e63bf95 | 2006-10-25 23:48:24 +0000 | [diff] [blame] | 2290 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2291 | }; |
| 2292 | |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 2293 | void ValueRanges::addToWorklist(Value *V, Constant *C, |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2294 | ICmpInst::Predicate Pred, VRPSolver *VRP) { |
Nick Lewycky | f3a9e36 | 2007-04-07 03:36:51 +0000 | [diff] [blame] | 2295 | VRP->add(V, C, Pred, VRP->TopInst); |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2296 | } |
| 2297 | |
Nick Lewycky | ac4d664 | 2007-04-07 15:48:32 +0000 | [diff] [blame] | 2298 | void ValueRanges::markBlock(VRPSolver *VRP) { |
| 2299 | VRP->UB.mark(VRP->TopBB); |
| 2300 | } |
| 2301 | |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2302 | /// PredicateSimplifier - This class is a simplifier that replaces |
| 2303 | /// one equivalent variable with another. It also tracks what |
| 2304 | /// can't be equal and will solve setcc instructions when possible. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2305 | /// @brief Root of the predicate simplifier optimization. |
| 2306 | class VISIBILITY_HIDDEN PredicateSimplifier : public FunctionPass { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2307 | DomTreeDFS *DTDFS; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2308 | bool modified; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2309 | ValueNumbering *VN; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2310 | InequalityGraph *IG; |
| 2311 | UnreachableBlocks UB; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2312 | ValueRanges *VR; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2313 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2314 | std::vector<DomTreeDFS::Node *> WorkList; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2315 | |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2316 | public: |
Nick Lewycky | ecd94c8 | 2007-05-06 13:37:16 +0000 | [diff] [blame] | 2317 | static char ID; // Pass identification, replacement for typeid |
Dan Gohman | ae73dc1 | 2008-09-04 17:05:41 +0000 | [diff] [blame] | 2318 | PredicateSimplifier() : FunctionPass(&ID) {} |
Devang Patel | 794fd75 | 2007-05-01 21:15:47 +0000 | [diff] [blame] | 2319 | |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2320 | bool runOnFunction(Function &F); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2321 | |
| 2322 | virtual void getAnalysisUsage(AnalysisUsage &AU) const { |
| 2323 | AU.addRequiredID(BreakCriticalEdgesID); |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2324 | AU.addRequired<DominatorTree>(); |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 2325 | AU.addRequired<TargetData>(); |
| 2326 | AU.addPreserved<TargetData>(); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2327 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2328 | |
| 2329 | private: |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 2330 | /// Forwards - Adds new properties to VRPSolver and uses them to |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2331 | /// simplify instructions. Because new properties sometimes apply to |
| 2332 | /// a transition from one BasicBlock to another, this will use the |
| 2333 | /// PredicateSimplifier::proceedToSuccessor(s) interface to enter the |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 2334 | /// basic block. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2335 | /// @brief Performs abstract execution of the program. |
| 2336 | class VISIBILITY_HIDDEN Forwards : public InstVisitor<Forwards> { |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2337 | friend class InstVisitor<Forwards>; |
| 2338 | PredicateSimplifier *PS; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2339 | DomTreeDFS::Node *DTNode; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2340 | |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2341 | public: |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2342 | ValueNumbering &VN; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2343 | InequalityGraph &IG; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2344 | UnreachableBlocks &UB; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2345 | ValueRanges &VR; |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2346 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2347 | Forwards(PredicateSimplifier *PS, DomTreeDFS::Node *DTNode) |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2348 | : PS(PS), DTNode(DTNode), VN(*PS->VN), IG(*PS->IG), UB(PS->UB), |
| 2349 | VR(*PS->VR) {} |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2350 | |
| 2351 | void visitTerminatorInst(TerminatorInst &TI); |
| 2352 | void visitBranchInst(BranchInst &BI); |
| 2353 | void visitSwitchInst(SwitchInst &SI); |
| 2354 | |
Nick Lewycky | 802fe27 | 2006-10-22 19:53:27 +0000 | [diff] [blame] | 2355 | void visitAllocaInst(AllocaInst &AI); |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2356 | void visitLoadInst(LoadInst &LI); |
| 2357 | void visitStoreInst(StoreInst &SI); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2358 | |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2359 | void visitSExtInst(SExtInst &SI); |
| 2360 | void visitZExtInst(ZExtInst &ZI); |
| 2361 | |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2362 | void visitBinaryOperator(BinaryOperator &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2363 | void visitICmpInst(ICmpInst &IC); |
Nick Lewycky | 078ff41 | 2006-10-12 02:02:44 +0000 | [diff] [blame] | 2364 | }; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2365 | |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2366 | // Used by terminator instructions to proceed from the current basic |
| 2367 | // block to the next. Verifies that "current" dominates "next", |
| 2368 | // then calls visitBasicBlock. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2369 | void proceedToSuccessors(DomTreeDFS::Node *Current) { |
| 2370 | for (DomTreeDFS::Node::iterator I = Current->begin(), |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2371 | E = Current->end(); I != E; ++I) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2372 | WorkList.push_back(*I); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2373 | } |
| 2374 | } |
| 2375 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2376 | void proceedToSuccessor(DomTreeDFS::Node *Next) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2377 | WorkList.push_back(Next); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2378 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2379 | |
| 2380 | // Visits each instruction in the basic block. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2381 | void visitBasicBlock(DomTreeDFS::Node *Node) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2382 | BasicBlock *BB = Node->getBlock(); |
Nick Lewycky | dd40258 | 2007-01-15 14:30:07 +0000 | [diff] [blame] | 2383 | DOUT << "Entering Basic Block: " << BB->getName() |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2384 | << " (" << Node->getDFSNumIn() << ")\n"; |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2385 | for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2386 | visitInstruction(I++, Node); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2387 | } |
| 2388 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2389 | |
Nick Lewycky | 5380e94 | 2007-07-16 02:58:37 +0000 | [diff] [blame] | 2390 | // Tries to simplify each Instruction and add new properties. |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2391 | void visitInstruction(Instruction *I, DomTreeDFS::Node *DT) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2392 | DOUT << "Considering instruction " << *I << "\n"; |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2393 | DEBUG(VN->dump()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2394 | DEBUG(IG->dump()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2395 | DEBUG(VR->dump()); |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2396 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2397 | // Sometimes instructions are killed in earlier analysis. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2398 | if (isInstructionTriviallyDead(I)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2399 | ++NumSimple; |
| 2400 | modified = true; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2401 | if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode())) |
| 2402 | if (VN->value(n) == I) IG->remove(n); |
| 2403 | VN->remove(I); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2404 | I->eraseFromParent(); |
| 2405 | return; |
| 2406 | } |
| 2407 | |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 2408 | #ifndef NDEBUG |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2409 | // Try to replace the whole instruction. |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2410 | Value *V = VN->canonicalize(I, DT); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2411 | assert(V == I && "Late instruction canonicalization."); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2412 | if (V != I) { |
| 2413 | modified = true; |
| 2414 | ++NumInstruction; |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2415 | DOUT << "Removing " << *I << ", replacing with " << *V << "\n"; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2416 | if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode())) |
| 2417 | if (VN->value(n) == I) IG->remove(n); |
| 2418 | VN->remove(I); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2419 | I->replaceAllUsesWith(V); |
| 2420 | I->eraseFromParent(); |
| 2421 | return; |
| 2422 | } |
| 2423 | |
| 2424 | // Try to substitute operands. |
| 2425 | for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { |
| 2426 | Value *Oper = I->getOperand(i); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2427 | Value *V = VN->canonicalize(Oper, DT); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2428 | assert(V == Oper && "Late operand canonicalization."); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2429 | if (V != Oper) { |
| 2430 | modified = true; |
| 2431 | ++NumVarsReplaced; |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2432 | DOUT << "Resolving " << *I; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2433 | I->setOperand(i, V); |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2434 | DOUT << " into " << *I; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2435 | } |
| 2436 | } |
Nick Lewycky | 0be7f47 | 2007-01-13 02:05:28 +0000 | [diff] [blame] | 2437 | #endif |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2438 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2439 | std::string name = I->getParent()->getName(); |
| 2440 | DOUT << "push (%" << name << ")\n"; |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2441 | Forwards visit(this, DT); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2442 | visit.visit(*I); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2443 | DOUT << "pop (%" << name << ")\n"; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2444 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2445 | }; |
| 2446 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2447 | bool PredicateSimplifier::runOnFunction(Function &F) { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2448 | DominatorTree *DT = &getAnalysis<DominatorTree>(); |
| 2449 | DTDFS = new DomTreeDFS(DT); |
Nick Lewycky | b01c77e | 2007-04-07 03:16:12 +0000 | [diff] [blame] | 2450 | TargetData *TD = &getAnalysis<TargetData>(); |
| 2451 | |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 2452 | DOUT << "Entering Function: " << F.getName() << "\n"; |
Nick Lewycky | 406fc0c | 2006-09-20 17:04:01 +0000 | [diff] [blame] | 2453 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2454 | modified = false; |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2455 | DomTreeDFS::Node *Root = DTDFS->getRootNode(); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2456 | VN = new ValueNumbering(DTDFS); |
| 2457 | IG = new InequalityGraph(*VN, Root); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2458 | VR = new ValueRanges(*VN, TD); |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2459 | WorkList.push_back(Root); |
Nick Lewycky | 406fc0c | 2006-09-20 17:04:01 +0000 | [diff] [blame] | 2460 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2461 | do { |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2462 | DomTreeDFS::Node *DTNode = WorkList.back(); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2463 | WorkList.pop_back(); |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2464 | if (!UB.isDead(DTNode->getBlock())) visitBasicBlock(DTNode); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2465 | } while (!WorkList.empty()); |
Nick Lewycky | 406fc0c | 2006-09-20 17:04:01 +0000 | [diff] [blame] | 2466 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2467 | delete DTDFS; |
Nick Lewycky | e677a0b | 2007-03-10 18:12:48 +0000 | [diff] [blame] | 2468 | delete VR; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2469 | delete IG; |
Nuno Lopes | ea736ce | 2008-11-09 12:45:23 +0000 | [diff] [blame] | 2470 | delete VN; |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2471 | |
| 2472 | modified |= UB.kill(); |
Nick Lewycky | 406fc0c | 2006-09-20 17:04:01 +0000 | [diff] [blame] | 2473 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2474 | return modified; |
Nick Lewycky | a3a68bd | 2006-09-02 19:40:38 +0000 | [diff] [blame] | 2475 | } |
| 2476 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2477 | void PredicateSimplifier::Forwards::visitTerminatorInst(TerminatorInst &TI) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2478 | PS->proceedToSuccessors(DTNode); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2479 | } |
| 2480 | |
| 2481 | void PredicateSimplifier::Forwards::visitBranchInst(BranchInst &BI) { |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2482 | if (BI.isUnconditional()) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2483 | PS->proceedToSuccessors(DTNode); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2484 | return; |
| 2485 | } |
| 2486 | |
| 2487 | Value *Condition = BI.getCondition(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2488 | BasicBlock *TrueDest = BI.getSuccessor(0); |
| 2489 | BasicBlock *FalseDest = BI.getSuccessor(1); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2490 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2491 | if (isa<Constant>(Condition) || TrueDest == FalseDest) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2492 | PS->proceedToSuccessors(DTNode); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2493 | return; |
| 2494 | } |
| 2495 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2496 | for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end(); |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2497 | I != E; ++I) { |
| 2498 | BasicBlock *Dest = (*I)->getBlock(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2499 | DOUT << "Branch thinking about %" << Dest->getName() |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2500 | << "(" << PS->DTDFS->getNodeForBlock(Dest)->getDFSNumIn() << ")\n"; |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2501 | |
| 2502 | if (Dest == TrueDest) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2503 | DOUT << "(" << DTNode->getBlock()->getName() << ") true set:\n"; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2504 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest); |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2505 | VRP.add(ConstantInt::getTrue(), Condition, ICmpInst::ICMP_EQ); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2506 | VRP.solve(); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2507 | DEBUG(VN.dump()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2508 | DEBUG(IG.dump()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2509 | DEBUG(VR.dump()); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2510 | } else if (Dest == FalseDest) { |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2511 | DOUT << "(" << DTNode->getBlock()->getName() << ") false set:\n"; |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2512 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest); |
Zhou Sheng | 6b6b6ef | 2007-01-11 12:24:14 +0000 | [diff] [blame] | 2513 | VRP.add(ConstantInt::getFalse(), Condition, ICmpInst::ICMP_EQ); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2514 | VRP.solve(); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2515 | DEBUG(VN.dump()); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2516 | DEBUG(IG.dump()); |
Nick Lewycky | 6e8eb7f | 2007-07-10 03:28:21 +0000 | [diff] [blame] | 2517 | DEBUG(VR.dump()); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2518 | } |
| 2519 | |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2520 | PS->proceedToSuccessor(*I); |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2521 | } |
| 2522 | } |
| 2523 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2524 | void PredicateSimplifier::Forwards::visitSwitchInst(SwitchInst &SI) { |
| 2525 | Value *Condition = SI.getCondition(); |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2526 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2527 | // Set the EQProperty in each of the cases BBs, and the NEProperties |
| 2528 | // in the default BB. |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2529 | |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2530 | for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end(); |
Owen Anderson | ab0e4d3 | 2007-04-25 04:18:54 +0000 | [diff] [blame] | 2531 | I != E; ++I) { |
| 2532 | BasicBlock *BB = (*I)->getBlock(); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2533 | DOUT << "Switch thinking about BB %" << BB->getName() |
Nick Lewycky | 984504b | 2007-06-24 04:36:20 +0000 | [diff] [blame] | 2534 | << "(" << PS->DTDFS->getNodeForBlock(BB)->getDFSNumIn() << ")\n"; |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2535 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2536 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, BB); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2537 | if (BB == SI.getDefaultDest()) { |
| 2538 | for (unsigned i = 1, e = SI.getNumCases(); i < e; ++i) |
| 2539 | if (SI.getSuccessor(i) != BB) |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2540 | VRP.add(Condition, SI.getCaseValue(i), ICmpInst::ICMP_NE); |
| 2541 | VRP.solve(); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2542 | } else if (ConstantInt *CI = SI.findCaseDest(BB)) { |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2543 | VRP.add(Condition, CI, ICmpInst::ICMP_EQ); |
| 2544 | VRP.solve(); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2545 | } |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2546 | PS->proceedToSuccessor(*I); |
Nick Lewycky | a73a654 | 2006-10-03 15:19:11 +0000 | [diff] [blame] | 2547 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2548 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2549 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2550 | void PredicateSimplifier::Forwards::visitAllocaInst(AllocaInst &AI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2551 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &AI); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2552 | VRP.add(Constant::getNullValue(AI.getType()), &AI, ICmpInst::ICMP_NE); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2553 | VRP.solve(); |
| 2554 | } |
Nick Lewycky | 802fe27 | 2006-10-22 19:53:27 +0000 | [diff] [blame] | 2555 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2556 | void PredicateSimplifier::Forwards::visitLoadInst(LoadInst &LI) { |
| 2557 | Value *Ptr = LI.getPointerOperand(); |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2558 | // avoid "load i8* null" -> null NE null. |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2559 | if (isa<Constant>(Ptr)) return; |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2560 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2561 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &LI); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2562 | VRP.add(Constant::getNullValue(Ptr->getType()), Ptr, ICmpInst::ICMP_NE); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2563 | VRP.solve(); |
| 2564 | } |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2565 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2566 | void PredicateSimplifier::Forwards::visitStoreInst(StoreInst &SI) { |
| 2567 | Value *Ptr = SI.getPointerOperand(); |
| 2568 | if (isa<Constant>(Ptr)) return; |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2569 | |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2570 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI); |
Nick Lewycky | 419c6f5 | 2007-01-11 02:32:38 +0000 | [diff] [blame] | 2571 | VRP.add(Constant::getNullValue(Ptr->getType()), Ptr, ICmpInst::ICMP_NE); |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2572 | VRP.solve(); |
| 2573 | } |
| 2574 | |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2575 | void PredicateSimplifier::Forwards::visitSExtInst(SExtInst &SI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2576 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI); |
Reid Spencer | af3e946 | 2007-03-03 00:48:31 +0000 | [diff] [blame] | 2577 | uint32_t SrcBitWidth = cast<IntegerType>(SI.getSrcTy())->getBitWidth(); |
| 2578 | uint32_t DstBitWidth = cast<IntegerType>(SI.getDestTy())->getBitWidth(); |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 2579 | APInt Min(APInt::getHighBitsSet(DstBitWidth, DstBitWidth-SrcBitWidth+1)); |
| 2580 | APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth-1)); |
Reid Spencer | af3e946 | 2007-03-03 00:48:31 +0000 | [diff] [blame] | 2581 | VRP.add(ConstantInt::get(Min), &SI, ICmpInst::ICMP_SLE); |
| 2582 | VRP.add(ConstantInt::get(Max), &SI, ICmpInst::ICMP_SGE); |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2583 | VRP.solve(); |
| 2584 | } |
| 2585 | |
| 2586 | void PredicateSimplifier::Forwards::visitZExtInst(ZExtInst &ZI) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2587 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &ZI); |
Reid Spencer | af3e946 | 2007-03-03 00:48:31 +0000 | [diff] [blame] | 2588 | uint32_t SrcBitWidth = cast<IntegerType>(ZI.getSrcTy())->getBitWidth(); |
| 2589 | uint32_t DstBitWidth = cast<IntegerType>(ZI.getDestTy())->getBitWidth(); |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 2590 | APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth)); |
Reid Spencer | af3e946 | 2007-03-03 00:48:31 +0000 | [diff] [blame] | 2591 | VRP.add(ConstantInt::get(Max), &ZI, ICmpInst::ICMP_UGE); |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2592 | VRP.solve(); |
| 2593 | } |
| 2594 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2595 | void PredicateSimplifier::Forwards::visitBinaryOperator(BinaryOperator &BO) { |
| 2596 | Instruction::BinaryOps ops = BO.getOpcode(); |
| 2597 | |
| 2598 | switch (ops) { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2599 | default: break; |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2600 | case Instruction::URem: |
| 2601 | case Instruction::SRem: |
| 2602 | case Instruction::UDiv: |
| 2603 | case Instruction::SDiv: { |
| 2604 | Value *Divisor = BO.getOperand(1); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2605 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4535175 | 2007-02-04 23:43:05 +0000 | [diff] [blame] | 2606 | VRP.add(Constant::getNullValue(Divisor->getType()), Divisor, |
| 2607 | ICmpInst::ICMP_NE); |
| 2608 | VRP.solve(); |
| 2609 | break; |
| 2610 | } |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2611 | } |
| 2612 | |
| 2613 | switch (ops) { |
| 2614 | default: break; |
| 2615 | case Instruction::Shl: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2616 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2617 | VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE); |
| 2618 | VRP.solve(); |
| 2619 | } break; |
| 2620 | case Instruction::AShr: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2621 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2622 | VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_SLE); |
| 2623 | VRP.solve(); |
| 2624 | } break; |
| 2625 | case Instruction::LShr: |
| 2626 | case Instruction::UDiv: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2627 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2628 | VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE); |
| 2629 | VRP.solve(); |
| 2630 | } break; |
| 2631 | case Instruction::URem: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2632 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2633 | VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE); |
| 2634 | VRP.solve(); |
| 2635 | } break; |
| 2636 | case Instruction::And: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2637 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2638 | VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE); |
| 2639 | VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE); |
| 2640 | VRP.solve(); |
| 2641 | } break; |
| 2642 | case Instruction::Or: { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2643 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2644 | VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE); |
| 2645 | VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_UGE); |
| 2646 | VRP.solve(); |
| 2647 | } break; |
| 2648 | } |
| 2649 | } |
| 2650 | |
| 2651 | void PredicateSimplifier::Forwards::visitICmpInst(ICmpInst &IC) { |
| 2652 | // If possible, squeeze the ICmp predicate into something simpler. |
| 2653 | // Eg., if x = [0, 4) and we're being asked icmp uge %x, 3 then change |
| 2654 | // the predicate to eq. |
| 2655 | |
Nick Lewycky | 8ac40dd | 2007-04-07 02:30:14 +0000 | [diff] [blame] | 2656 | // XXX: once we do full PHI handling, modifying the instruction in the |
| 2657 | // Forwards visitor will cause missed optimizations. |
| 2658 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2659 | ICmpInst::Predicate Pred = IC.getPredicate(); |
| 2660 | |
Nick Lewycky | 8ac40dd | 2007-04-07 02:30:14 +0000 | [diff] [blame] | 2661 | switch (Pred) { |
| 2662 | default: break; |
| 2663 | case ICmpInst::ICMP_ULE: Pred = ICmpInst::ICMP_ULT; break; |
| 2664 | case ICmpInst::ICMP_UGE: Pred = ICmpInst::ICMP_UGT; break; |
| 2665 | case ICmpInst::ICMP_SLE: Pred = ICmpInst::ICMP_SLT; break; |
| 2666 | case ICmpInst::ICMP_SGE: Pred = ICmpInst::ICMP_SGT; break; |
| 2667 | } |
| 2668 | if (Pred != IC.getPredicate()) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2669 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC); |
Nick Lewycky | 8ac40dd | 2007-04-07 02:30:14 +0000 | [diff] [blame] | 2670 | if (VRP.isRelatedBy(IC.getOperand(1), IC.getOperand(0), |
| 2671 | ICmpInst::ICMP_NE)) { |
| 2672 | ++NumSnuggle; |
| 2673 | PS->modified = true; |
| 2674 | IC.setPredicate(Pred); |
| 2675 | } |
| 2676 | } |
| 2677 | |
| 2678 | Pred = IC.getPredicate(); |
| 2679 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2680 | if (ConstantInt *Op1 = dyn_cast<ConstantInt>(IC.getOperand(1))) { |
| 2681 | ConstantInt *NextVal = 0; |
Nick Lewycky | 8ac40dd | 2007-04-07 02:30:14 +0000 | [diff] [blame] | 2682 | switch (Pred) { |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2683 | default: break; |
| 2684 | case ICmpInst::ICMP_SLT: |
| 2685 | case ICmpInst::ICMP_ULT: |
| 2686 | if (Op1->getValue() != 0) |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 2687 | NextVal = ConstantInt::get(Op1->getValue()-1); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2688 | break; |
| 2689 | case ICmpInst::ICMP_SGT: |
| 2690 | case ICmpInst::ICMP_UGT: |
| 2691 | if (!Op1->getValue().isAllOnesValue()) |
Zhou Sheng | 223d65b | 2007-04-19 05:35:00 +0000 | [diff] [blame] | 2692 | NextVal = ConstantInt::get(Op1->getValue()+1); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2693 | break; |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2694 | } |
Nick Lewycky | 79cce5c | 2008-10-24 04:00:26 +0000 | [diff] [blame] | 2695 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2696 | if (NextVal) { |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2697 | VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC); |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2698 | if (VRP.isRelatedBy(IC.getOperand(0), NextVal, |
| 2699 | ICmpInst::getInversePredicate(Pred))) { |
| 2700 | ICmpInst *NewIC = new ICmpInst(ICmpInst::ICMP_EQ, IC.getOperand(0), |
| 2701 | NextVal, "", &IC); |
| 2702 | NewIC->takeName(&IC); |
| 2703 | IC.replaceAllUsesWith(NewIC); |
Nick Lewycky | 29a05b6 | 2007-07-05 03:15:00 +0000 | [diff] [blame] | 2704 | |
| 2705 | // XXX: prove this isn't necessary |
| 2706 | if (unsigned n = VN.valueNumber(&IC, PS->DTDFS->getRootNode())) |
| 2707 | if (VN.value(n) == &IC) IG.remove(n); |
| 2708 | VN.remove(&IC); |
| 2709 | |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2710 | IC.eraseFromParent(); |
| 2711 | ++NumSnuggle; |
| 2712 | PS->modified = true; |
Nick Lewycky | 4c70875 | 2007-03-16 02:37:39 +0000 | [diff] [blame] | 2713 | } |
| 2714 | } |
| 2715 | } |
Nick Lewycky | 3947a76 | 2006-08-30 02:46:48 +0000 | [diff] [blame] | 2716 | } |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2717 | } |
| 2718 | |
Dan Gohman | 844731a | 2008-05-13 00:00:25 +0000 | [diff] [blame] | 2719 | char PredicateSimplifier::ID = 0; |
| 2720 | static RegisterPass<PredicateSimplifier> |
| 2721 | X("predsimplify", "Predicate Simplifier"); |
| 2722 | |
Nick Lewycky | 565706b | 2006-11-22 23:49:16 +0000 | [diff] [blame] | 2723 | FunctionPass *llvm::createPredicateSimplifierPass() { |
| 2724 | return new PredicateSimplifier(); |
Nick Lewycky | 05450ae | 2006-08-28 22:44:55 +0000 | [diff] [blame] | 2725 | } |