blob: 5939f190c8c24ec0106f1fd5a6d0462afcc402c4 [file] [log] [blame]
Nick Lewycky565706b2006-11-22 23:49:16 +00001//===-- PredicateSimplifier.cpp - Path Sensitive Simplifier ---------------===//
Nick Lewycky05450ae2006-08-28 22:44:55 +00002//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Nick Lewycky05450ae2006-08-28 22:44:55 +00007//
Nick Lewycky565706b2006-11-22 23:49:16 +00008//===----------------------------------------------------------------------===//
Nick Lewycky05450ae2006-08-28 22:44:55 +00009//
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 Lewycky565706b2006-11-22 23:49:16 +000023//===----------------------------------------------------------------------===//
Nick Lewycky05450ae2006-08-28 22:44:55 +000024//
Nick Lewycky4c708752007-03-16 02:37:39 +000025// 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 Lewycky565706b2006-11-22 23:49:16 +000028// are stored in a lattice; LE can become LT or EQ, NE can become LT or GT.
Nick Lewycky05450ae2006-08-28 22:44:55 +000029//
Nick Lewycky565706b2006-11-22 23:49:16 +000030// 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 Lewyckye677a0b2007-03-10 18:12:48 +000032// 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 Lewycky565706b2006-11-22 23:49:16 +000035//
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 Lewycky419c6f52007-01-11 02:32:38 +000044// 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 Lewycky565706b2006-11-22 23:49:16 +000049//
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 Lewyckye677a0b2007-03-10 18:12:48 +000055// %P = icmp ne i32* %ptr, null
56// %a = and i1 %P, %Q
57// br i1 %a label %cond_true, label %cond_false
Nick Lewycky565706b2006-11-22 23:49:16 +000058//
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 Lewycky6a08f912007-01-29 02:56:54 +000062// branch it can't infer anything from the "and" instruction.
Nick Lewycky565706b2006-11-22 23:49:16 +000063//
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 Lewycky4c708752007-03-16 02:37:39 +000070//
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 Lewycky7956dae2007-08-04 18:45:32 +000073// %b = [0, 254].
Nick Lewycky4c708752007-03-16 02:37:39 +000074//
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 Lewyckyb01c77e2007-04-07 03:16:12 +000077// relationship and better stored in the InequalityGraph, nor an empty range
78// since that is better stored in UnreachableBlocks.
Nick Lewycky4c708752007-03-16 02:37:39 +000079//
80//===----------------------------------------------------------------------===//
Nick Lewycky05450ae2006-08-28 22:44:55 +000081
Nick Lewycky05450ae2006-08-28 22:44:55 +000082#define DEBUG_TYPE "predsimplify"
83#include "llvm/Transforms/Scalar.h"
84#include "llvm/Constants.h"
Nick Lewycky802fe272006-10-22 19:53:27 +000085#include "llvm/DerivedTypes.h"
Nick Lewycky05450ae2006-08-28 22:44:55 +000086#include "llvm/Instructions.h"
87#include "llvm/Pass.h"
Nick Lewycky419c6f52007-01-11 02:32:38 +000088#include "llvm/ADT/DepthFirstIterator.h"
Nick Lewycky565706b2006-11-22 23:49:16 +000089#include "llvm/ADT/SetOperations.h"
Reid Spencer6734b572007-02-04 00:40:42 +000090#include "llvm/ADT/SetVector.h"
Nick Lewycky05450ae2006-08-28 22:44:55 +000091#include "llvm/ADT/Statistic.h"
92#include "llvm/ADT/STLExtras.h"
93#include "llvm/Analysis/Dominators.h"
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +000094#include "llvm/Assembly/Writer.h"
Nick Lewycky05450ae2006-08-28 22:44:55 +000095#include "llvm/Support/CFG.h"
Chris Lattner02fc40e2006-12-06 18:14:47 +000096#include "llvm/Support/Compiler.h"
Nick Lewyckye677a0b2007-03-10 18:12:48 +000097#include "llvm/Support/ConstantRange.h"
Nick Lewycky05450ae2006-08-28 22:44:55 +000098#include "llvm/Support/Debug.h"
Nick Lewycky078ff412006-10-12 02:02:44 +000099#include "llvm/Support/InstVisitor.h"
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000100#include "llvm/Support/raw_ostream.h"
Nick Lewyckyb01c77e2007-04-07 03:16:12 +0000101#include "llvm/Target/TargetData.h"
Nick Lewycky565706b2006-11-22 23:49:16 +0000102#include "llvm/Transforms/Utils/Local.h"
103#include <algorithm>
104#include <deque>
Nick Lewycky984504b2007-06-24 04:36:20 +0000105#include <stack>
Nick Lewycky05450ae2006-08-28 22:44:55 +0000106using namespace llvm;
107
Chris Lattner438e08e2006-12-19 21:49:03 +0000108STATISTIC(NumVarsReplaced, "Number of argument substitutions");
109STATISTIC(NumInstruction , "Number of instructions removed");
110STATISTIC(NumSimple , "Number of simple replacements");
Nick Lewycky419c6f52007-01-11 02:32:38 +0000111STATISTIC(NumBlocks , "Number of blocks marked unreachable");
Nick Lewycky4c708752007-03-16 02:37:39 +0000112STATISTIC(NumSnuggle , "Number of comparisons snuggled");
Nick Lewycky05450ae2006-08-28 22:44:55 +0000113
Owen Andersonafe0a082009-06-26 21:39:56 +0000114static const ConstantRange empty(1, false);
115
Chris Lattner438e08e2006-12-19 21:49:03 +0000116namespace {
Nick Lewycky984504b2007-06-24 04:36:20 +0000117 class DomTreeDFS {
118 public:
119 class Node {
120 friend class DomTreeDFS;
121 public:
122 typedef std::vector<Node *>::iterator iterator;
123 typedef std::vector<Node *>::const_iterator const_iterator;
124
125 unsigned getDFSNumIn() const { return DFSin; }
126 unsigned getDFSNumOut() const { return DFSout; }
127
128 BasicBlock *getBlock() const { return BB; }
129
130 iterator begin() { return Children.begin(); }
131 iterator end() { return Children.end(); }
132
133 const_iterator begin() const { return Children.begin(); }
134 const_iterator end() const { return Children.end(); }
135
136 bool dominates(const Node *N) const {
137 return DFSin <= N->DFSin && DFSout >= N->DFSout;
138 }
139
140 bool DominatedBy(const Node *N) const {
141 return N->dominates(this);
142 }
143
144 /// Sorts by the number of descendants. With this, you can iterate
145 /// through a sorted list and the first matching entry is the most
146 /// specific match for your basic block. The order provided is stable;
147 /// DomTreeDFS::Nodes with the same number of descendants are sorted by
148 /// DFS in number.
149 bool operator<(const Node &N) const {
150 unsigned spread = DFSout - DFSin;
151 unsigned N_spread = N.DFSout - N.DFSin;
152 if (spread == N_spread) return DFSin < N.DFSin;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000153 return spread < N_spread;
Nick Lewycky984504b2007-06-24 04:36:20 +0000154 }
155 bool operator>(const Node &N) const { return N < *this; }
156
157 private:
158 unsigned DFSin, DFSout;
159 BasicBlock *BB;
160
161 std::vector<Node *> Children;
162 };
163
164 // XXX: this may be slow. Instead of using "new" for each node, consider
165 // putting them in a vector to keep them contiguous.
166 explicit DomTreeDFS(DominatorTree *DT) {
167 std::stack<std::pair<Node *, DomTreeNode *> > S;
168
169 Entry = new Node;
170 Entry->BB = DT->getRootNode()->getBlock();
171 S.push(std::make_pair(Entry, DT->getRootNode()));
172
173 NodeMap[Entry->BB] = Entry;
174
175 while (!S.empty()) {
176 std::pair<Node *, DomTreeNode *> &Pair = S.top();
177 Node *N = Pair.first;
178 DomTreeNode *DTNode = Pair.second;
179 S.pop();
180
181 for (DomTreeNode::iterator I = DTNode->begin(), E = DTNode->end();
182 I != E; ++I) {
183 Node *NewNode = new Node;
184 NewNode->BB = (*I)->getBlock();
185 N->Children.push_back(NewNode);
186 S.push(std::make_pair(NewNode, *I));
187
188 NodeMap[NewNode->BB] = NewNode;
189 }
190 }
191
192 renumber();
193
194#ifndef NDEBUG
195 DEBUG(dump());
196#endif
197 }
198
199#ifndef NDEBUG
200 virtual
201#endif
202 ~DomTreeDFS() {
203 std::stack<Node *> S;
204
205 S.push(Entry);
206 while (!S.empty()) {
207 Node *N = S.top(); S.pop();
208
209 for (Node::iterator I = N->begin(), E = N->end(); I != E; ++I)
210 S.push(*I);
211
212 delete N;
213 }
214 }
215
Nick Lewycky5380e942007-07-16 02:58:37 +0000216 /// getRootNode - This returns the entry node for the CFG of the function.
Nick Lewycky984504b2007-06-24 04:36:20 +0000217 Node *getRootNode() const { return Entry; }
218
Nick Lewycky5380e942007-07-16 02:58:37 +0000219 /// getNodeForBlock - return the node for the specified basic block.
Nick Lewycky984504b2007-06-24 04:36:20 +0000220 Node *getNodeForBlock(BasicBlock *BB) const {
221 if (!NodeMap.count(BB)) return 0;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000222 return const_cast<DomTreeDFS*>(this)->NodeMap[BB];
Nick Lewycky984504b2007-06-24 04:36:20 +0000223 }
224
Nick Lewycky5380e942007-07-16 02:58:37 +0000225 /// dominates - returns true if the basic block for I1 dominates that of
226 /// the basic block for I2. If the instructions belong to the same basic
227 /// block, the instruction first instruction sequentially in the block is
228 /// considered dominating.
Nick Lewycky984504b2007-06-24 04:36:20 +0000229 bool dominates(Instruction *I1, Instruction *I2) {
230 BasicBlock *BB1 = I1->getParent(),
231 *BB2 = I2->getParent();
232 if (BB1 == BB2) {
233 if (isa<TerminatorInst>(I1)) return false;
234 if (isa<TerminatorInst>(I2)) return true;
235 if ( isa<PHINode>(I1) && !isa<PHINode>(I2)) return true;
236 if (!isa<PHINode>(I1) && isa<PHINode>(I2)) return false;
237
238 for (BasicBlock::const_iterator I = BB2->begin(), E = BB2->end();
239 I != E; ++I) {
240 if (&*I == I1) return true;
241 else if (&*I == I2) return false;
242 }
243 assert(!"Instructions not found in parent BasicBlock?");
244 } else {
Nick Lewyckydea25262007-06-24 04:40:16 +0000245 Node *Node1 = getNodeForBlock(BB1),
Nick Lewycky984504b2007-06-24 04:36:20 +0000246 *Node2 = getNodeForBlock(BB2);
Nick Lewycky29a05b62007-07-05 03:15:00 +0000247 return Node1 && Node2 && Node1->dominates(Node2);
Nick Lewycky984504b2007-06-24 04:36:20 +0000248 }
Chris Lattnerd27c9912008-03-30 18:22:13 +0000249 return false; // Not reached
Nick Lewycky984504b2007-06-24 04:36:20 +0000250 }
Nick Lewycky5380e942007-07-16 02:58:37 +0000251
Nick Lewycky984504b2007-06-24 04:36:20 +0000252 private:
Nick Lewycky5380e942007-07-16 02:58:37 +0000253 /// renumber - calculates the depth first search numberings and applies
254 /// them onto the nodes.
Nick Lewycky984504b2007-06-24 04:36:20 +0000255 void renumber() {
256 std::stack<std::pair<Node *, Node::iterator> > S;
257 unsigned n = 0;
258
259 Entry->DFSin = ++n;
260 S.push(std::make_pair(Entry, Entry->begin()));
261
262 while (!S.empty()) {
263 std::pair<Node *, Node::iterator> &Pair = S.top();
264 Node *N = Pair.first;
265 Node::iterator &I = Pair.second;
266
267 if (I == N->end()) {
268 N->DFSout = ++n;
269 S.pop();
270 } else {
271 Node *Next = *I++;
272 Next->DFSin = ++n;
273 S.push(std::make_pair(Next, Next->begin()));
274 }
275 }
276 }
277
278#ifndef NDEBUG
279 virtual void dump() const {
280 dump(*cerr.stream());
281 }
282
283 void dump(std::ostream &os) const {
284 os << "Predicate simplifier DomTreeDFS: \n";
285 dump(Entry, 0, os);
286 os << "\n\n";
287 }
288
289 void dump(Node *N, int depth, std::ostream &os) const {
290 ++depth;
291 for (int i = 0; i < depth; ++i) { os << " "; }
292 os << "[" << depth << "] ";
293
Daniel Dunbarce63ffb2009-07-25 00:23:56 +0000294 os << N->getBlock()->getNameStr() << " (" << N->getDFSNumIn()
Nick Lewycky984504b2007-06-24 04:36:20 +0000295 << ", " << N->getDFSNumOut() << ")\n";
296
297 for (Node::iterator I = N->begin(), E = N->end(); I != E; ++I)
298 dump(*I, depth, os);
299 }
300#endif
301
302 Node *Entry;
303 std::map<BasicBlock *, Node *> NodeMap;
304 };
305
Nick Lewycky419c6f52007-01-11 02:32:38 +0000306 // SLT SGT ULT UGT EQ
307 // 0 1 0 1 0 -- GT 10
308 // 0 1 0 1 1 -- GE 11
309 // 0 1 1 0 0 -- SGTULT 12
310 // 0 1 1 0 1 -- SGEULE 13
Nick Lewycky6a08f912007-01-29 02:56:54 +0000311 // 0 1 1 1 0 -- SGT 14
312 // 0 1 1 1 1 -- SGE 15
Nick Lewycky419c6f52007-01-11 02:32:38 +0000313 // 1 0 0 1 0 -- SLTUGT 18
314 // 1 0 0 1 1 -- SLEUGE 19
315 // 1 0 1 0 0 -- LT 20
316 // 1 0 1 0 1 -- LE 21
Nick Lewycky6a08f912007-01-29 02:56:54 +0000317 // 1 0 1 1 0 -- SLT 22
318 // 1 0 1 1 1 -- SLE 23
319 // 1 1 0 1 0 -- UGT 26
320 // 1 1 0 1 1 -- UGE 27
321 // 1 1 1 0 0 -- ULT 28
322 // 1 1 1 0 1 -- ULE 29
Nick Lewycky419c6f52007-01-11 02:32:38 +0000323 // 1 1 1 1 0 -- NE 30
324 enum LatticeBits {
325 EQ_BIT = 1, UGT_BIT = 2, ULT_BIT = 4, SGT_BIT = 8, SLT_BIT = 16
326 };
327 enum LatticeVal {
328 GT = SGT_BIT | UGT_BIT,
329 GE = GT | EQ_BIT,
330 LT = SLT_BIT | ULT_BIT,
331 LE = LT | EQ_BIT,
332 NE = SLT_BIT | SGT_BIT | ULT_BIT | UGT_BIT,
333 SGTULT = SGT_BIT | ULT_BIT,
334 SGEULE = SGTULT | EQ_BIT,
335 SLTUGT = SLT_BIT | UGT_BIT,
336 SLEUGE = SLTUGT | EQ_BIT,
Nick Lewycky6a08f912007-01-29 02:56:54 +0000337 ULT = SLT_BIT | SGT_BIT | ULT_BIT,
338 UGT = SLT_BIT | SGT_BIT | UGT_BIT,
339 SLT = SLT_BIT | ULT_BIT | UGT_BIT,
340 SGT = SGT_BIT | ULT_BIT | UGT_BIT,
341 SLE = SLT | EQ_BIT,
342 SGE = SGT | EQ_BIT,
343 ULE = ULT | EQ_BIT,
344 UGE = UGT | EQ_BIT
Nick Lewycky419c6f52007-01-11 02:32:38 +0000345 };
346
Devang Patel59500c82008-11-21 20:00:59 +0000347#ifndef NDEBUG
Nick Lewycky7956dae2007-08-04 18:45:32 +0000348 /// validPredicate - determines whether a given value is actually a lattice
349 /// value. Only used in assertions or debugging.
Nick Lewycky419c6f52007-01-11 02:32:38 +0000350 static bool validPredicate(LatticeVal LV) {
351 switch (LV) {
Nick Lewycky45351752007-02-04 23:43:05 +0000352 case GT: case GE: case LT: case LE: case NE:
353 case SGTULT: case SGT: case SGEULE:
354 case SLTUGT: case SLT: case SLEUGE:
355 case ULT: case UGT:
356 case SLE: case SGE: case ULE: case UGE:
357 return true;
358 default:
359 return false;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000360 }
361 }
Devang Patel59500c82008-11-21 20:00:59 +0000362#endif
Nick Lewycky419c6f52007-01-11 02:32:38 +0000363
364 /// reversePredicate - reverse the direction of the inequality
365 static LatticeVal reversePredicate(LatticeVal LV) {
366 unsigned reverse = LV ^ (SLT_BIT|SGT_BIT|ULT_BIT|UGT_BIT); //preserve EQ_BIT
Nick Lewycky4c708752007-03-16 02:37:39 +0000367
Nick Lewycky419c6f52007-01-11 02:32:38 +0000368 if ((reverse & (SLT_BIT|SGT_BIT)) == 0)
369 reverse |= (SLT_BIT|SGT_BIT);
370
371 if ((reverse & (ULT_BIT|UGT_BIT)) == 0)
372 reverse |= (ULT_BIT|UGT_BIT);
373
374 LatticeVal Rev = static_cast<LatticeVal>(reverse);
375 assert(validPredicate(Rev) && "Failed reversing predicate.");
376 return Rev;
377 }
378
Nick Lewycky29a05b62007-07-05 03:15:00 +0000379 /// ValueNumbering stores the scope-specific value numbers for a given Value.
380 class VISIBILITY_HIDDEN ValueNumbering {
Nick Lewycky7956dae2007-08-04 18:45:32 +0000381
382 /// VNPair is a tuple of {Value, index number, DomTreeDFS::Node}. It
383 /// includes the comparison operators necessary to allow you to store it
384 /// in a sorted vector.
Nick Lewycky29a05b62007-07-05 03:15:00 +0000385 class VISIBILITY_HIDDEN VNPair {
386 public:
387 Value *V;
388 unsigned index;
389 DomTreeDFS::Node *Subtree;
390
391 VNPair(Value *V, unsigned index, DomTreeDFS::Node *Subtree)
392 : V(V), index(index), Subtree(Subtree) {}
393
394 bool operator==(const VNPair &RHS) const {
395 return V == RHS.V && Subtree == RHS.Subtree;
396 }
397
398 bool operator<(const VNPair &RHS) const {
399 if (V != RHS.V) return V < RHS.V;
400 return *Subtree < *RHS.Subtree;
401 }
402
403 bool operator<(Value *RHS) const {
404 return V < RHS;
405 }
Nick Lewycky7956dae2007-08-04 18:45:32 +0000406
407 bool operator>(Value *RHS) const {
408 return V > RHS;
409 }
410
411 friend bool operator<(Value *RHS, const VNPair &pair) {
412 return pair.operator>(RHS);
413 }
Nick Lewycky29a05b62007-07-05 03:15:00 +0000414 };
415
416 typedef std::vector<VNPair> VNMapType;
417 VNMapType VNMap;
418
Nick Lewycky7956dae2007-08-04 18:45:32 +0000419 /// The canonical choice for value number at index.
Nick Lewycky29a05b62007-07-05 03:15:00 +0000420 std::vector<Value *> Values;
421
422 DomTreeDFS *DTDFS;
423
424 public:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000425#ifndef NDEBUG
426 virtual ~ValueNumbering() {}
427 virtual void dump() {
428 dump(*cerr.stream());
429 }
430
431 void dump(std::ostream &os) {
432 for (unsigned i = 1; i <= Values.size(); ++i) {
433 os << i << " = ";
434 WriteAsOperand(os, Values[i-1]);
435 os << " {";
436 for (unsigned j = 0; j < VNMap.size(); ++j) {
437 if (VNMap[j].index == i) {
438 WriteAsOperand(os, VNMap[j].V);
439 os << " (" << VNMap[j].Subtree->getDFSNumIn() << ") ";
440 }
441 }
442 os << "}\n";
443 }
444 }
445#endif
446
Nick Lewycky29a05b62007-07-05 03:15:00 +0000447 /// compare - returns true if V1 is a better canonical value than V2.
448 bool compare(Value *V1, Value *V2) const {
449 if (isa<Constant>(V1))
450 return !isa<Constant>(V2);
451 else if (isa<Constant>(V2))
452 return false;
453 else if (isa<Argument>(V1))
454 return !isa<Argument>(V2);
455 else if (isa<Argument>(V2))
456 return false;
457
458 Instruction *I1 = dyn_cast<Instruction>(V1);
459 Instruction *I2 = dyn_cast<Instruction>(V2);
460
461 if (!I1 || !I2)
462 return V1->getNumUses() < V2->getNumUses();
463
464 return DTDFS->dominates(I1, I2);
465 }
466
467 ValueNumbering(DomTreeDFS *DTDFS) : DTDFS(DTDFS) {}
468
469 /// valueNumber - finds the value number for V under the Subtree. If
470 /// there is no value number, returns zero.
471 unsigned valueNumber(Value *V, DomTreeDFS::Node *Subtree) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000472 if (!(isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V))
473 || V->getType() == Type::VoidTy) return 0;
474
Nick Lewycky29a05b62007-07-05 03:15:00 +0000475 VNMapType::iterator E = VNMap.end();
476 VNPair pair(V, 0, Subtree);
477 VNMapType::iterator I = std::lower_bound(VNMap.begin(), E, pair);
478 while (I != E && I->V == V) {
479 if (I->Subtree->dominates(Subtree))
480 return I->index;
481 ++I;
482 }
483 return 0;
484 }
485
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000486 /// getOrInsertVN - always returns a value number, creating it if necessary.
487 unsigned getOrInsertVN(Value *V, DomTreeDFS::Node *Subtree) {
488 if (unsigned n = valueNumber(V, Subtree))
489 return n;
490 else
491 return newVN(V);
492 }
493
Nick Lewycky29a05b62007-07-05 03:15:00 +0000494 /// newVN - creates a new value number. Value V must not already have a
495 /// value number assigned.
496 unsigned newVN(Value *V) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000497 assert((isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) &&
498 "Bad Value for value numbering.");
499 assert(V->getType() != Type::VoidTy && "Won't value number a void value");
500
Nick Lewycky29a05b62007-07-05 03:15:00 +0000501 Values.push_back(V);
502
503 VNPair pair = VNPair(V, Values.size(), DTDFS->getRootNode());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000504 VNMapType::iterator I = std::lower_bound(VNMap.begin(), VNMap.end(), pair);
505 assert((I == VNMap.end() || value(I->index) != V) &&
Nick Lewycky29a05b62007-07-05 03:15:00 +0000506 "Attempt to create a duplicate value number.");
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000507 VNMap.insert(I, pair);
Nick Lewycky29a05b62007-07-05 03:15:00 +0000508
509 return Values.size();
510 }
511
512 /// value - returns the Value associated with a value number.
513 Value *value(unsigned index) const {
514 assert(index != 0 && "Zero index is reserved for not found.");
515 assert(index <= Values.size() && "Index out of range.");
516 return Values[index-1];
517 }
518
519 /// canonicalize - return a Value that is equal to V under Subtree.
520 Value *canonicalize(Value *V, DomTreeDFS::Node *Subtree) {
521 if (isa<Constant>(V)) return V;
522
523 if (unsigned n = valueNumber(V, Subtree))
524 return value(n);
525 else
526 return V;
527 }
528
529 /// addEquality - adds that value V belongs to the set of equivalent
530 /// values defined by value number n under Subtree.
531 void addEquality(unsigned n, Value *V, DomTreeDFS::Node *Subtree) {
532 assert(canonicalize(value(n), Subtree) == value(n) &&
533 "Node's 'canonical' choice isn't best within this subtree.");
534
535 // Suppose that we are given "%x -> node #1 (%y)". The problem is that
536 // we may already have "%z -> node #2 (%x)" somewhere above us in the
537 // graph. We need to find those edges and add "%z -> node #1 (%y)"
538 // to keep the lookups canonical.
539
540 std::vector<Value *> ToRepoint(1, V);
541
542 if (unsigned Conflict = valueNumber(V, Subtree)) {
543 for (VNMapType::iterator I = VNMap.begin(), E = VNMap.end();
544 I != E; ++I) {
545 if (I->index == Conflict && I->Subtree->dominates(Subtree))
546 ToRepoint.push_back(I->V);
547 }
548 }
549
550 for (std::vector<Value *>::iterator VI = ToRepoint.begin(),
551 VE = ToRepoint.end(); VI != VE; ++VI) {
552 Value *V = *VI;
553
554 VNPair pair(V, n, Subtree);
555 VNMapType::iterator B = VNMap.begin(), E = VNMap.end();
556 VNMapType::iterator I = std::lower_bound(B, E, pair);
557 if (I != E && I->V == V && I->Subtree == Subtree)
558 I->index = n; // Update best choice
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000559 else
Nick Lewycky29a05b62007-07-05 03:15:00 +0000560 VNMap.insert(I, pair); // New Value
561
562 // XXX: we currently don't have to worry about updating values with
563 // more specific Subtrees, but we will need to for PHI node support.
564
565#ifndef NDEBUG
566 Value *V_n = value(n);
567 if (isa<Constant>(V) && isa<Constant>(V_n)) {
568 assert(V == V_n && "Constant equals different constant?");
569 }
570#endif
571 }
572 }
573
574 /// remove - removes all references to value V.
575 void remove(Value *V) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000576 VNMapType::iterator B = VNMap.begin(), E = VNMap.end();
Nick Lewycky29a05b62007-07-05 03:15:00 +0000577 VNPair pair(V, 0, DTDFS->getRootNode());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000578 VNMapType::iterator J = std::upper_bound(B, E, pair);
Nick Lewycky29a05b62007-07-05 03:15:00 +0000579 VNMapType::iterator I = J;
580
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000581 while (I != B && (I == E || I->V == V)) --I;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000582
583 VNMap.erase(I, J);
584 }
585 };
586
Nick Lewycky565706b2006-11-22 23:49:16 +0000587 /// The InequalityGraph stores the relationships between values.
588 /// Each Value in the graph is assigned to a Node. Nodes are pointer
589 /// comparable for equality. The caller is expected to maintain the logical
590 /// consistency of the system.
591 ///
592 /// The InequalityGraph class may invalidate Node*s after any mutator call.
593 /// @brief The InequalityGraph stores the relationships between values.
594 class VISIBILITY_HIDDEN InequalityGraph {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000595 ValueNumbering &VN;
Nick Lewycky984504b2007-06-24 04:36:20 +0000596 DomTreeDFS::Node *TreeRoot;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000597
598 InequalityGraph(); // DO NOT IMPLEMENT
599 InequalityGraph(InequalityGraph &); // DO NOT IMPLEMENT
Nick Lewycky565706b2006-11-22 23:49:16 +0000600 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +0000601 InequalityGraph(ValueNumbering &VN, DomTreeDFS::Node *TreeRoot)
602 : VN(VN), TreeRoot(TreeRoot) {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000603
Nick Lewycky565706b2006-11-22 23:49:16 +0000604 class Node;
Nick Lewycky05450ae2006-08-28 22:44:55 +0000605
Nick Lewycky419c6f52007-01-11 02:32:38 +0000606 /// An Edge is contained inside a Node making one end of the edge implicit
607 /// and contains a pointer to the other end. The edge contains a lattice
Nick Lewycky984504b2007-06-24 04:36:20 +0000608 /// value specifying the relationship and an DomTreeDFS::Node specifying
609 /// the root in the dominator tree to which this edge applies.
Nick Lewycky419c6f52007-01-11 02:32:38 +0000610 class VISIBILITY_HIDDEN Edge {
611 public:
Nick Lewycky984504b2007-06-24 04:36:20 +0000612 Edge(unsigned T, LatticeVal V, DomTreeDFS::Node *ST)
Nick Lewycky419c6f52007-01-11 02:32:38 +0000613 : To(T), LV(V), Subtree(ST) {}
Nick Lewycky565706b2006-11-22 23:49:16 +0000614
Nick Lewycky419c6f52007-01-11 02:32:38 +0000615 unsigned To;
616 LatticeVal LV;
Nick Lewycky984504b2007-06-24 04:36:20 +0000617 DomTreeDFS::Node *Subtree;
Nick Lewycky565706b2006-11-22 23:49:16 +0000618
Nick Lewycky419c6f52007-01-11 02:32:38 +0000619 bool operator<(const Edge &edge) const {
620 if (To != edge.To) return To < edge.To;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000621 return *Subtree < *edge.Subtree;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000622 }
Nick Lewycky984504b2007-06-24 04:36:20 +0000623
Nick Lewycky419c6f52007-01-11 02:32:38 +0000624 bool operator<(unsigned to) const {
625 return To < to;
626 }
Nick Lewycky984504b2007-06-24 04:36:20 +0000627
Bill Wendling851879c2007-06-04 23:52:59 +0000628 bool operator>(unsigned to) const {
629 return To > to;
630 }
631
632 friend bool operator<(unsigned to, const Edge &edge) {
633 return edge.operator>(to);
634 }
Nick Lewycky419c6f52007-01-11 02:32:38 +0000635 };
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000636
Nick Lewycky565706b2006-11-22 23:49:16 +0000637 /// A single node in the InequalityGraph. This stores the canonical Value
638 /// for the node, as well as the relationships with the neighbours.
639 ///
Nick Lewycky565706b2006-11-22 23:49:16 +0000640 /// @brief A single node in the InequalityGraph.
641 class VISIBILITY_HIDDEN Node {
642 friend class InequalityGraph;
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000643
Nick Lewycky419c6f52007-01-11 02:32:38 +0000644 typedef SmallVector<Edge, 4> RelationsType;
645 RelationsType Relations;
646
Nick Lewycky419c6f52007-01-11 02:32:38 +0000647 // TODO: can this idea improve performance?
648 //friend class std::vector<Node>;
649 //Node(Node &N) { RelationsType.swap(N.RelationsType); }
650
Nick Lewycky565706b2006-11-22 23:49:16 +0000651 public:
652 typedef RelationsType::iterator iterator;
653 typedef RelationsType::const_iterator const_iterator;
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000654
Nick Lewycky419c6f52007-01-11 02:32:38 +0000655#ifndef NDEBUG
Nick Lewyckybc00fec2007-01-11 02:38:21 +0000656 virtual ~Node() {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000657 virtual void dump() const {
658 dump(*cerr.stream());
659 }
660 private:
Nick Lewycky29a05b62007-07-05 03:15:00 +0000661 void dump(std::ostream &os) const {
662 static const std::string names[32] =
663 { "000000", "000001", "000002", "000003", "000004", "000005",
664 "000006", "000007", "000008", "000009", " >", " >=",
665 " s>u<", "s>=u<=", " s>", " s>=", "000016", "000017",
666 " s<u>", "s<=u>=", " <", " <=", " s<", " s<=",
667 "000024", "000025", " u>", " u>=", " u<", " u<=",
668 " !=", "000031" };
Nick Lewycky419c6f52007-01-11 02:32:38 +0000669 for (Node::const_iterator NI = begin(), NE = end(); NI != NE; ++NI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000670 os << names[NI->LV] << " " << NI->To
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000671 << " (" << NI->Subtree->getDFSNumIn() << "), ";
Nick Lewycky419c6f52007-01-11 02:32:38 +0000672 }
673 }
Nick Lewycky29a05b62007-07-05 03:15:00 +0000674 public:
Nick Lewycky419c6f52007-01-11 02:32:38 +0000675#endif
676
Nick Lewycky419c6f52007-01-11 02:32:38 +0000677 iterator begin() { return Relations.begin(); }
678 iterator end() { return Relations.end(); }
679 const_iterator begin() const { return Relations.begin(); }
680 const_iterator end() const { return Relations.end(); }
681
Nick Lewycky984504b2007-06-24 04:36:20 +0000682 iterator find(unsigned n, DomTreeDFS::Node *Subtree) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000683 iterator E = end();
684 for (iterator I = std::lower_bound(begin(), E, n);
685 I != E && I->To == n; ++I) {
686 if (Subtree->DominatedBy(I->Subtree))
687 return I;
688 }
689 return E;
690 }
691
Nick Lewycky984504b2007-06-24 04:36:20 +0000692 const_iterator find(unsigned n, DomTreeDFS::Node *Subtree) const {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000693 const_iterator E = end();
694 for (const_iterator I = std::lower_bound(begin(), E, n);
695 I != E && I->To == n; ++I) {
696 if (Subtree->DominatedBy(I->Subtree))
697 return I;
698 }
699 return E;
700 }
701
Nick Lewycky7956dae2007-08-04 18:45:32 +0000702 /// update - updates the lattice value for a given node, creating a new
703 /// entry if one doesn't exist. The new lattice value must not be
704 /// inconsistent with any previously existing value.
Nick Lewycky984504b2007-06-24 04:36:20 +0000705 void update(unsigned n, LatticeVal R, DomTreeDFS::Node *Subtree) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000706 assert(validPredicate(R) && "Invalid predicate.");
Nick Lewycky419c6f52007-01-11 02:32:38 +0000707
Nick Lewycky7956dae2007-08-04 18:45:32 +0000708 Edge edge(n, R, Subtree);
709 iterator B = begin(), E = end();
710 iterator I = std::lower_bound(B, E, edge);
Nick Lewyckydd402582007-01-15 14:30:07 +0000711
Nick Lewycky7956dae2007-08-04 18:45:32 +0000712 iterator J = I;
713 while (J != E && J->To == n) {
714 if (Subtree->DominatedBy(J->Subtree))
715 break;
716 ++J;
717 }
718
Nick Lewyckyc7212232007-08-18 23:18:03 +0000719 if (J != E && J->To == n) {
Nick Lewycky7956dae2007-08-04 18:45:32 +0000720 edge.LV = static_cast<LatticeVal>(J->LV & R);
721 assert(validPredicate(edge.LV) && "Invalid union of lattice values.");
Nick Lewycky7956dae2007-08-04 18:45:32 +0000722
Nick Lewyckyc7212232007-08-18 23:18:03 +0000723 if (edge.LV == J->LV)
724 return; // This update adds nothing new.
Bill Wendling587c01d2008-02-26 10:53:30 +0000725 }
Nick Lewyckyc7212232007-08-18 23:18:03 +0000726
727 if (I != B) {
728 // We also have to tighten any edge beneath our update.
729 for (iterator K = I - 1; K->To == n; --K) {
730 if (K->Subtree->DominatedBy(Subtree)) {
731 LatticeVal LV = static_cast<LatticeVal>(K->LV & edge.LV);
732 assert(validPredicate(LV) && "Invalid union of lattice values");
733 K->LV = LV;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000734 }
Nick Lewyckyc7212232007-08-18 23:18:03 +0000735 if (K == B) break;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000736 }
Bill Wendling587c01d2008-02-26 10:53:30 +0000737 }
Nick Lewycky7956dae2007-08-04 18:45:32 +0000738
739 // Insert new edge at Subtree if it isn't already there.
740 if (I == E || I->To != n || Subtree != I->Subtree)
741 Relations.insert(I, edge);
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000742 }
Nick Lewycky565706b2006-11-22 23:49:16 +0000743 };
744
Nick Lewycky565706b2006-11-22 23:49:16 +0000745 private:
Nick Lewycky419c6f52007-01-11 02:32:38 +0000746
747 std::vector<Node> Nodes;
748
Nick Lewycky565706b2006-11-22 23:49:16 +0000749 public:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000750 /// node - returns the node object at a given value number. The pointer
751 /// returned may be invalidated on the next call to node().
Nick Lewycky419c6f52007-01-11 02:32:38 +0000752 Node *node(unsigned index) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000753 assert(VN.value(index)); // This triggers the necessary checks.
754 if (Nodes.size() < index) Nodes.resize(index);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000755 return &Nodes[index-1];
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000756 }
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000757
Nick Lewycky419c6f52007-01-11 02:32:38 +0000758 /// isRelatedBy - true iff n1 op n2
Nick Lewycky984504b2007-06-24 04:36:20 +0000759 bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
760 LatticeVal LV) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000761 if (n1 == n2) return LV & EQ_BIT;
762
763 Node *N1 = node(n1);
764 Node::iterator I = N1->find(n2, Subtree), E = N1->end();
765 if (I != E) return (I->LV & LV) == I->LV;
766
Nick Lewycky406fc0c2006-09-20 17:04:01 +0000767 return false;
768 }
769
Nick Lewycky565706b2006-11-22 23:49:16 +0000770 // The add* methods assume that your input is logically valid and may
771 // assertion-fail or infinitely loop if you attempt a contradiction.
Nick Lewyckye63bf952006-10-25 23:48:24 +0000772
Nick Lewycky419c6f52007-01-11 02:32:38 +0000773 /// addInequality - Sets n1 op n2.
774 /// It is also an error to call this on an inequality that is already true.
Nick Lewycky984504b2007-06-24 04:36:20 +0000775 void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky419c6f52007-01-11 02:32:38 +0000776 LatticeVal LV1) {
777 assert(n1 != n2 && "A node can't be inequal to itself.");
778
779 if (LV1 != NE)
780 assert(!isRelatedBy(n1, n2, Subtree, reversePredicate(LV1)) &&
781 "Contradictory inequality.");
782
Nick Lewycky419c6f52007-01-11 02:32:38 +0000783 // Suppose we're adding %n1 < %n2. Find all the %a < %n1 and
784 // add %a < %n2 too. This keeps the graph fully connected.
785 if (LV1 != NE) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000786 // Break up the relationship into signed and unsigned comparison parts.
787 // If the signed parts of %a op1 %n1 match that of %n1 op2 %n2, and
788 // op1 and op2 aren't NE, then add %a op3 %n2. The new relationship
789 // should have the EQ_BIT iff it's set for both op1 and op2.
Nick Lewycky419c6f52007-01-11 02:32:38 +0000790
791 unsigned LV1_s = LV1 & (SLT_BIT|SGT_BIT);
792 unsigned LV1_u = LV1 & (ULT_BIT|UGT_BIT);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000793
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000794 for (Node::iterator I = node(n1)->begin(), E = node(n1)->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000795 if (I->LV != NE && I->To != n2) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000796
Nick Lewycky984504b2007-06-24 04:36:20 +0000797 DomTreeDFS::Node *Local_Subtree = NULL;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000798 if (Subtree->DominatedBy(I->Subtree))
799 Local_Subtree = Subtree;
800 else if (I->Subtree->DominatedBy(Subtree))
801 Local_Subtree = I->Subtree;
802
803 if (Local_Subtree) {
804 unsigned new_relationship = 0;
805 LatticeVal ILV = reversePredicate(I->LV);
806 unsigned ILV_s = ILV & (SLT_BIT|SGT_BIT);
807 unsigned ILV_u = ILV & (ULT_BIT|UGT_BIT);
808
809 if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s)
810 new_relationship |= ILV_s;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000811 if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u)
812 new_relationship |= ILV_u;
813
814 if (new_relationship) {
815 if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0)
816 new_relationship |= (SLT_BIT|SGT_BIT);
817 if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0)
818 new_relationship |= (ULT_BIT|UGT_BIT);
819 if ((LV1 & EQ_BIT) && (ILV & EQ_BIT))
820 new_relationship |= EQ_BIT;
821
822 LatticeVal NewLV = static_cast<LatticeVal>(new_relationship);
823
824 node(I->To)->update(n2, NewLV, Local_Subtree);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000825 node(n2)->update(I->To, reversePredicate(NewLV), Local_Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000826 }
827 }
828 }
829 }
830
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000831 for (Node::iterator I = node(n2)->begin(), E = node(n2)->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000832 if (I->LV != NE && I->To != n1) {
Nick Lewycky984504b2007-06-24 04:36:20 +0000833 DomTreeDFS::Node *Local_Subtree = NULL;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000834 if (Subtree->DominatedBy(I->Subtree))
835 Local_Subtree = Subtree;
836 else if (I->Subtree->DominatedBy(Subtree))
837 Local_Subtree = I->Subtree;
838
839 if (Local_Subtree) {
840 unsigned new_relationship = 0;
841 unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT);
842 unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT);
843
844 if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s)
845 new_relationship |= ILV_s;
846
847 if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u)
848 new_relationship |= ILV_u;
849
850 if (new_relationship) {
851 if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0)
852 new_relationship |= (SLT_BIT|SGT_BIT);
853 if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0)
854 new_relationship |= (ULT_BIT|UGT_BIT);
855 if ((LV1 & EQ_BIT) && (I->LV & EQ_BIT))
856 new_relationship |= EQ_BIT;
857
858 LatticeVal NewLV = static_cast<LatticeVal>(new_relationship);
859
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000860 node(n1)->update(I->To, NewLV, Local_Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000861 node(I->To)->update(n1, reversePredicate(NewLV), Local_Subtree);
862 }
863 }
864 }
865 }
866 }
867
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000868 node(n1)->update(n2, LV1, Subtree);
869 node(n2)->update(n1, reversePredicate(LV1), Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000870 }
Nick Lewycky977be252006-09-13 19:24:01 +0000871
Nick Lewycky29a05b62007-07-05 03:15:00 +0000872 /// remove - removes a node from the graph by removing all references to
873 /// and from it.
874 void remove(unsigned n) {
875 Node *N = node(n);
876 for (Node::iterator NI = N->begin(), NE = N->end(); NI != NE; ++NI) {
877 Node::iterator Iter = node(NI->To)->find(n, TreeRoot);
878 do {
879 node(NI->To)->Relations.erase(Iter);
880 Iter = node(NI->To)->find(n, TreeRoot);
881 } while (Iter != node(NI->To)->end());
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000882 }
Nick Lewycky29a05b62007-07-05 03:15:00 +0000883 N->Relations.clear();
Nick Lewycky565706b2006-11-22 23:49:16 +0000884 }
Nick Lewycky05450ae2006-08-28 22:44:55 +0000885
Nick Lewycky565706b2006-11-22 23:49:16 +0000886#ifndef NDEBUG
Nick Lewyckybc00fec2007-01-11 02:38:21 +0000887 virtual ~InequalityGraph() {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000888 virtual void dump() {
889 dump(*cerr.stream());
890 }
891
892 void dump(std::ostream &os) {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000893 for (unsigned i = 1; i <= Nodes.size(); ++i) {
894 os << i << " = {";
895 node(i)->dump(os);
896 os << "}\n";
Nick Lewycky565706b2006-11-22 23:49:16 +0000897 }
898 }
Nick Lewycky565706b2006-11-22 23:49:16 +0000899#endif
900 };
Nick Lewycky05450ae2006-08-28 22:44:55 +0000901
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000902 class VRPSolver;
903
904 /// ValueRanges tracks the known integer ranges and anti-ranges of the nodes
905 /// in the InequalityGraph.
906 class VISIBILITY_HIDDEN ValueRanges {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000907 ValueNumbering &VN;
908 TargetData *TD;
Owen Anderson001dbfe2009-07-16 18:04:31 +0000909 LLVMContext *Context;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000910
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000911 class VISIBILITY_HIDDEN ScopedRange {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000912 typedef std::vector<std::pair<DomTreeDFS::Node *, ConstantRange> >
913 RangeListType;
914 RangeListType RangeList;
915
916 static bool swo(const std::pair<DomTreeDFS::Node *, ConstantRange> &LHS,
917 const std::pair<DomTreeDFS::Node *, ConstantRange> &RHS) {
918 return *LHS.first < *RHS.first;
919 }
920
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000921 public:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000922#ifndef NDEBUG
923 virtual ~ScopedRange() {}
924 virtual void dump() const {
925 dump(*cerr.stream());
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000926 }
927
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000928 void dump(std::ostream &os) const {
929 os << "{";
930 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chris Lattner944fac72008-08-23 22:23:09 +0000931 os << &I->second << " (" << I->first->getDFSNumIn() << "), ";
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000932 }
933 os << "}";
934 }
935#endif
936
937 typedef RangeListType::iterator iterator;
938 typedef RangeListType::const_iterator const_iterator;
939
940 iterator begin() { return RangeList.begin(); }
941 iterator end() { return RangeList.end(); }
942 const_iterator begin() const { return RangeList.begin(); }
943 const_iterator end() const { return RangeList.end(); }
944
945 iterator find(DomTreeDFS::Node *Subtree) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000946 iterator E = end();
947 iterator I = std::lower_bound(begin(), E,
948 std::make_pair(Subtree, empty), swo);
949
950 while (I != E && !I->first->dominates(Subtree)) ++I;
951 return I;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000952 }
Bill Wendling851879c2007-06-04 23:52:59 +0000953
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000954 const_iterator find(DomTreeDFS::Node *Subtree) const {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000955 const_iterator E = end();
956 const_iterator I = std::lower_bound(begin(), E,
957 std::make_pair(Subtree, empty), swo);
958
959 while (I != E && !I->first->dominates(Subtree)) ++I;
960 return I;
Bill Wendling851879c2007-06-04 23:52:59 +0000961 }
962
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000963 void update(const ConstantRange &CR, DomTreeDFS::Node *Subtree) {
964 assert(!CR.isEmptySet() && "Empty ConstantRange.");
Nick Lewycky7956dae2007-08-04 18:45:32 +0000965 assert(!CR.isSingleElement() && "Refusing to store single element.");
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000966
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000967 iterator E = end();
968 iterator I =
969 std::lower_bound(begin(), E, std::make_pair(Subtree, empty), swo);
970
971 if (I != end() && I->first == Subtree) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +0000972 ConstantRange CR2 = I->second.intersectWith(CR);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000973 assert(!CR2.isEmptySet() && !CR2.isSingleElement() &&
974 "Invalid union of ranges.");
975 I->second = CR2;
976 } else
977 RangeList.insert(I, std::make_pair(Subtree, CR));
Bill Wendling851879c2007-06-04 23:52:59 +0000978 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000979 };
980
981 std::vector<ScopedRange> Ranges;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000982
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000983 void update(unsigned n, const ConstantRange &CR, DomTreeDFS::Node *Subtree){
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000984 if (CR.isFullSet()) return;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000985 if (Ranges.size() < n) Ranges.resize(n);
986 Ranges[n-1].update(CR, Subtree);
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000987 }
988
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000989 /// create - Creates a ConstantRange that matches the given LatticeVal
990 /// relation with a given integer.
991 ConstantRange create(LatticeVal LV, const ConstantRange &CR) {
992 assert(!CR.isEmptySet() && "Can't deal with empty set.");
993
994 if (LV == NE)
Nick Lewyckybf8c7f02009-07-11 06:15:39 +0000995 return ConstantRange::makeICmpRegion(ICmpInst::ICMP_NE, CR);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000996
997 unsigned LV_s = LV & (SGT_BIT|SLT_BIT);
998 unsigned LV_u = LV & (UGT_BIT|ULT_BIT);
999 bool hasEQ = LV & EQ_BIT;
1000
1001 ConstantRange Range(CR.getBitWidth());
1002
1003 if (LV_s == SGT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001004 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001005 hasEQ ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_SGT, CR));
1006 } else if (LV_s == SLT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001007 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001008 hasEQ ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_SLT, CR));
1009 }
1010
1011 if (LV_u == UGT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001012 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001013 hasEQ ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_UGT, CR));
1014 } else if (LV_u == ULT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001015 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001016 hasEQ ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_ULT, CR));
1017 }
1018
1019 return Range;
1020 }
1021
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001022#ifndef NDEBUG
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001023 bool isCanonical(Value *V, DomTreeDFS::Node *Subtree) {
1024 return V == VN.canonicalize(V, Subtree);
1025 }
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001026#endif
1027
1028 public:
1029
Owen Anderson001dbfe2009-07-16 18:04:31 +00001030 ValueRanges(ValueNumbering &VN, TargetData *TD, LLVMContext *C) :
1031 VN(VN), TD(TD), Context(C) {}
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001032
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001033#ifndef NDEBUG
1034 virtual ~ValueRanges() {}
1035
1036 virtual void dump() const {
1037 dump(*cerr.stream());
1038 }
1039
1040 void dump(std::ostream &os) const {
1041 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1042 os << (i+1) << " = ";
1043 Ranges[i].dump(os);
1044 os << "\n";
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001045 }
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001046 }
1047#endif
1048
1049 /// range - looks up the ConstantRange associated with a value number.
1050 ConstantRange range(unsigned n, DomTreeDFS::Node *Subtree) {
1051 assert(VN.value(n)); // performs range checks
1052
1053 if (n <= Ranges.size()) {
1054 ScopedRange::iterator I = Ranges[n-1].find(Subtree);
1055 if (I != Ranges[n-1].end()) return I->second;
1056 }
1057
1058 Value *V = VN.value(n);
1059 ConstantRange CR = range(V);
1060 return CR;
1061 }
1062
1063 /// range - determine a range from a Value without performing any lookups.
1064 ConstantRange range(Value *V) const {
1065 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
1066 return ConstantRange(C->getValue());
1067 else if (isa<ConstantPointerNull>(V))
1068 return ConstantRange(APInt::getNullValue(typeToWidth(V->getType())));
1069 else
Dan Gohmanb5660dc2008-02-20 16:44:09 +00001070 return ConstantRange(typeToWidth(V->getType()));
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001071 }
1072
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001073 // typeToWidth - returns the number of bits necessary to store a value of
1074 // this type, or zero if unknown.
1075 uint32_t typeToWidth(const Type *Ty) const {
1076 if (TD)
1077 return TD->getTypeSizeInBits(Ty);
Duncan Sands514ab342007-11-01 20:53:16 +00001078 else
1079 return Ty->getPrimitiveSizeInBits();
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001080 }
1081
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001082 static bool isRelatedBy(const ConstantRange &CR1, const ConstantRange &CR2,
1083 LatticeVal LV) {
Nick Lewycky4c708752007-03-16 02:37:39 +00001084 switch (LV) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001085 default: assert(!"Impossible lattice value!");
1086 case NE:
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001087 return CR1.intersectWith(CR2).isEmptySet();
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001088 case ULT:
1089 return CR1.getUnsignedMax().ult(CR2.getUnsignedMin());
1090 case ULE:
1091 return CR1.getUnsignedMax().ule(CR2.getUnsignedMin());
1092 case UGT:
1093 return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax());
1094 case UGE:
1095 return CR1.getUnsignedMin().uge(CR2.getUnsignedMax());
1096 case SLT:
1097 return CR1.getSignedMax().slt(CR2.getSignedMin());
1098 case SLE:
1099 return CR1.getSignedMax().sle(CR2.getSignedMin());
1100 case SGT:
1101 return CR1.getSignedMin().sgt(CR2.getSignedMax());
1102 case SGE:
1103 return CR1.getSignedMin().sge(CR2.getSignedMax());
1104 case LT:
1105 return CR1.getUnsignedMax().ult(CR2.getUnsignedMin()) &&
1106 CR1.getSignedMax().slt(CR2.getUnsignedMin());
1107 case LE:
1108 return CR1.getUnsignedMax().ule(CR2.getUnsignedMin()) &&
1109 CR1.getSignedMax().sle(CR2.getUnsignedMin());
1110 case GT:
1111 return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax()) &&
1112 CR1.getSignedMin().sgt(CR2.getSignedMax());
1113 case GE:
1114 return CR1.getUnsignedMin().uge(CR2.getUnsignedMax()) &&
1115 CR1.getSignedMin().sge(CR2.getSignedMax());
1116 case SLTUGT:
1117 return CR1.getSignedMax().slt(CR2.getSignedMin()) &&
1118 CR1.getUnsignedMin().ugt(CR2.getUnsignedMax());
1119 case SLEUGE:
1120 return CR1.getSignedMax().sle(CR2.getSignedMin()) &&
1121 CR1.getUnsignedMin().uge(CR2.getUnsignedMax());
1122 case SGTULT:
1123 return CR1.getSignedMin().sgt(CR2.getSignedMax()) &&
1124 CR1.getUnsignedMax().ult(CR2.getUnsignedMin());
1125 case SGEULE:
1126 return CR1.getSignedMin().sge(CR2.getSignedMax()) &&
1127 CR1.getUnsignedMax().ule(CR2.getUnsignedMin());
1128 }
1129 }
1130
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001131 bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
1132 LatticeVal LV) {
1133 ConstantRange CR1 = range(n1, Subtree);
1134 ConstantRange CR2 = range(n2, Subtree);
1135
1136 // True iff all values in CR1 are LV to all values in CR2.
1137 return isRelatedBy(CR1, CR2, LV);
1138 }
1139
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001140 void addToWorklist(Value *V, Constant *C, ICmpInst::Predicate Pred,
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001141 VRPSolver *VRP);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001142 void markBlock(VRPSolver *VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001143
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001144 void mergeInto(Value **I, unsigned n, unsigned New,
Nick Lewycky984504b2007-06-24 04:36:20 +00001145 DomTreeDFS::Node *Subtree, VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001146 ConstantRange CR_New = range(New, Subtree);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001147 ConstantRange Merged = CR_New;
1148
1149 for (; n != 0; ++I, --n) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001150 unsigned i = VN.valueNumber(*I, Subtree);
1151 ConstantRange CR_Kill = i ? range(i, Subtree) : range(*I);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001152 if (CR_Kill.isFullSet()) continue;
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001153 Merged = Merged.intersectWith(CR_Kill);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001154 }
1155
1156 if (Merged.isFullSet() || Merged == CR_New) return;
1157
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001158 applyRange(New, Merged, Subtree, VRP);
1159 }
1160
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001161 void applyRange(unsigned n, const ConstantRange &CR,
Nick Lewycky984504b2007-06-24 04:36:20 +00001162 DomTreeDFS::Node *Subtree, VRPSolver *VRP) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001163 ConstantRange Merged = CR.intersectWith(range(n, Subtree));
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001164 if (Merged.isEmptySet()) {
1165 markBlock(VRP);
1166 return;
1167 }
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001168
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001169 if (const APInt *I = Merged.getSingleElement()) {
1170 Value *V = VN.value(n); // XXX: redesign worklist.
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001171 const Type *Ty = V->getType();
1172 if (Ty->isInteger()) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001173 addToWorklist(V, ConstantInt::get(*Context, *I),
1174 ICmpInst::ICMP_EQ, VRP);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001175 return;
1176 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
1177 assert(*I == 0 && "Pointer is null but not zero?");
1178 addToWorklist(V, ConstantPointerNull::get(PTy),
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001179 ICmpInst::ICMP_EQ, VRP);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001180 return;
1181 }
1182 }
1183
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001184 update(n, Merged, Subtree);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001185 }
1186
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001187 void addNotEquals(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky984504b2007-06-24 04:36:20 +00001188 VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001189 ConstantRange CR1 = range(n1, Subtree);
1190 ConstantRange CR2 = range(n2, Subtree);
Nick Lewyckya995d922007-04-07 04:49:12 +00001191
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001192 uint32_t W = CR1.getBitWidth();
Nick Lewyckya995d922007-04-07 04:49:12 +00001193
1194 if (const APInt *I = CR1.getSingleElement()) {
1195 if (CR2.isFullSet()) {
1196 ConstantRange NewCR2(CR1.getUpper(), CR1.getLower());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001197 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001198 } else if (*I == CR2.getLower()) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001199 APInt NewLower(CR2.getLower() + 1),
1200 NewUpper(CR2.getUpper());
Nick Lewyckya995d922007-04-07 04:49:12 +00001201 if (NewLower == NewUpper)
1202 NewLower = NewUpper = APInt::getMinValue(W);
1203
1204 ConstantRange NewCR2(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001205 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001206 } else if (*I == CR2.getUpper() - 1) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001207 APInt NewLower(CR2.getLower()),
1208 NewUpper(CR2.getUpper() - 1);
Nick Lewyckya995d922007-04-07 04:49:12 +00001209 if (NewLower == NewUpper)
1210 NewLower = NewUpper = APInt::getMinValue(W);
1211
1212 ConstantRange NewCR2(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001213 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001214 }
1215 }
1216
1217 if (const APInt *I = CR2.getSingleElement()) {
1218 if (CR1.isFullSet()) {
1219 ConstantRange NewCR1(CR2.getUpper(), CR2.getLower());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001220 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001221 } else if (*I == CR1.getLower()) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001222 APInt NewLower(CR1.getLower() + 1),
1223 NewUpper(CR1.getUpper());
Nick Lewyckya995d922007-04-07 04:49:12 +00001224 if (NewLower == NewUpper)
1225 NewLower = NewUpper = APInt::getMinValue(W);
1226
1227 ConstantRange NewCR1(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001228 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001229 } else if (*I == CR1.getUpper() - 1) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001230 APInt NewLower(CR1.getLower()),
1231 NewUpper(CR1.getUpper() - 1);
Nick Lewyckya995d922007-04-07 04:49:12 +00001232 if (NewLower == NewUpper)
1233 NewLower = NewUpper = APInt::getMinValue(W);
1234
1235 ConstantRange NewCR1(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001236 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001237 }
1238 }
1239 }
1240
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001241 void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky984504b2007-06-24 04:36:20 +00001242 LatticeVal LV, VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001243 assert(!isRelatedBy(n1, n2, Subtree, LV) && "Asked to do useless work.");
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001244
Nick Lewyckya995d922007-04-07 04:49:12 +00001245 if (LV == NE) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001246 addNotEquals(n1, n2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001247 return;
1248 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001249
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001250 ConstantRange CR1 = range(n1, Subtree);
1251 ConstantRange CR2 = range(n2, Subtree);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001252
1253 if (!CR1.isSingleElement()) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001254 ConstantRange NewCR1 = CR1.intersectWith(create(LV, CR2));
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001255 if (NewCR1 != CR1)
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001256 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001257 }
1258
1259 if (!CR2.isSingleElement()) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001260 ConstantRange NewCR2 = CR2.intersectWith(
Nick Lewyckya73d11e2007-07-14 04:28:04 +00001261 create(reversePredicate(LV), CR1));
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001262 if (NewCR2 != CR2)
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001263 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001264 }
1265 }
1266 };
1267
Nick Lewycky419c6f52007-01-11 02:32:38 +00001268 /// UnreachableBlocks keeps tracks of blocks that are for one reason or
1269 /// another discovered to be unreachable. This is used to cull the graph when
1270 /// analyzing instructions, and to mark blocks with the "unreachable"
1271 /// terminator instruction after the function has executed.
1272 class VISIBILITY_HIDDEN UnreachableBlocks {
1273 private:
1274 std::vector<BasicBlock *> DeadBlocks;
Nick Lewycky565706b2006-11-22 23:49:16 +00001275
Nick Lewycky419c6f52007-01-11 02:32:38 +00001276 public:
1277 /// mark - mark a block as dead
1278 void mark(BasicBlock *BB) {
1279 std::vector<BasicBlock *>::iterator E = DeadBlocks.end();
1280 std::vector<BasicBlock *>::iterator I =
1281 std::lower_bound(DeadBlocks.begin(), E, BB);
1282
1283 if (I == E || *I != BB) DeadBlocks.insert(I, BB);
Nick Lewycky565706b2006-11-22 23:49:16 +00001284 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001285
1286 /// isDead - returns whether a block is known to be dead already
1287 bool isDead(BasicBlock *BB) {
1288 std::vector<BasicBlock *>::iterator E = DeadBlocks.end();
1289 std::vector<BasicBlock *>::iterator I =
1290 std::lower_bound(DeadBlocks.begin(), E, BB);
1291
1292 return I != E && *I == BB;
Nick Lewycky565706b2006-11-22 23:49:16 +00001293 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001294
Nick Lewycky419c6f52007-01-11 02:32:38 +00001295 /// kill - replace the dead blocks' terminator with an UnreachableInst.
1296 bool kill() {
1297 bool modified = false;
1298 for (std::vector<BasicBlock *>::iterator I = DeadBlocks.begin(),
1299 E = DeadBlocks.end(); I != E; ++I) {
1300 BasicBlock *BB = *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00001301
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001302 DEBUG(errs() << "unreachable block: " << BB->getName() << "\n");
Nick Lewycky565706b2006-11-22 23:49:16 +00001303
Nick Lewycky419c6f52007-01-11 02:32:38 +00001304 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
1305 SI != SE; ++SI) {
1306 BasicBlock *Succ = *SI;
1307 Succ->removePredecessor(BB);
Nick Lewyckye63bf952006-10-25 23:48:24 +00001308 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001309
Nick Lewycky419c6f52007-01-11 02:32:38 +00001310 TerminatorInst *TI = BB->getTerminator();
1311 TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
1312 TI->eraseFromParent();
1313 new UnreachableInst(BB);
1314 ++NumBlocks;
1315 modified = true;
Nick Lewycky565706b2006-11-22 23:49:16 +00001316 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001317 DeadBlocks.clear();
1318 return modified;
Nick Lewyckye63bf952006-10-25 23:48:24 +00001319 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001320 };
Nick Lewycky565706b2006-11-22 23:49:16 +00001321
1322 /// VRPSolver keeps track of how changes to one variable affect other
1323 /// variables, and forwards changes along to the InequalityGraph. It
1324 /// also maintains the correct choice for "canonical" in the IG.
1325 /// @brief VRPSolver calculates inferences from a new relationship.
1326 class VISIBILITY_HIDDEN VRPSolver {
1327 private:
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001328 friend class ValueRanges;
1329
Nick Lewycky419c6f52007-01-11 02:32:38 +00001330 struct Operation {
1331 Value *LHS, *RHS;
1332 ICmpInst::Predicate Op;
1333
Nick Lewycky984504b2007-06-24 04:36:20 +00001334 BasicBlock *ContextBB; // XXX use a DomTreeDFS::Node instead
Nick Lewycky0be7f472007-01-13 02:05:28 +00001335 Instruction *ContextInst;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001336 };
1337 std::deque<Operation> WorkList;
Nick Lewycky565706b2006-11-22 23:49:16 +00001338
Nick Lewycky29a05b62007-07-05 03:15:00 +00001339 ValueNumbering &VN;
Nick Lewycky565706b2006-11-22 23:49:16 +00001340 InequalityGraph &IG;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001341 UnreachableBlocks &UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001342 ValueRanges &VR;
Nick Lewycky984504b2007-06-24 04:36:20 +00001343 DomTreeDFS *DTDFS;
1344 DomTreeDFS::Node *Top;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001345 BasicBlock *TopBB;
1346 Instruction *TopInst;
1347 bool &modified;
Owen Anderson0a5372e2009-07-13 04:09:18 +00001348 LLVMContext *Context;
Nick Lewycky565706b2006-11-22 23:49:16 +00001349
1350 typedef InequalityGraph::Node Node;
1351
Nick Lewycky419c6f52007-01-11 02:32:38 +00001352 // below - true if the Instruction is dominated by the current context
1353 // block or instruction
1354 bool below(Instruction *I) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001355 BasicBlock *BB = I->getParent();
1356 if (TopInst && TopInst->getParent() == BB) {
1357 if (isa<TerminatorInst>(TopInst)) return false;
1358 if (isa<TerminatorInst>(I)) return true;
1359 if ( isa<PHINode>(TopInst) && !isa<PHINode>(I)) return true;
1360 if (!isa<PHINode>(TopInst) && isa<PHINode>(I)) return false;
1361
1362 for (BasicBlock::const_iterator Iter = BB->begin(), E = BB->end();
1363 Iter != E; ++Iter) {
1364 if (&*Iter == TopInst) return true;
1365 else if (&*Iter == I) return false;
1366 }
1367 assert(!"Instructions not found in parent BasicBlock?");
1368 } else {
Nick Lewyckydea25262007-06-24 04:40:16 +00001369 DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB);
Nick Lewycky984504b2007-06-24 04:36:20 +00001370 if (!Node) return false;
1371 return Top->dominates(Node);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001372 }
Chris Lattnerd27c9912008-03-30 18:22:13 +00001373 return false; // Not reached
Nick Lewycky565706b2006-11-22 23:49:16 +00001374 }
1375
Nick Lewycky984504b2007-06-24 04:36:20 +00001376 // aboveOrBelow - true if the Instruction either dominates or is dominated
1377 // by the current context block or instruction
1378 bool aboveOrBelow(Instruction *I) {
1379 BasicBlock *BB = I->getParent();
1380 DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB);
1381 if (!Node) return false;
1382
1383 return Top == Node || Top->dominates(Node) || Node->dominates(Top);
1384 }
1385
Nick Lewycky419c6f52007-01-11 02:32:38 +00001386 bool makeEqual(Value *V1, Value *V2) {
1387 DOUT << "makeEqual(" << *V1 << ", " << *V2 << ")\n";
Nick Lewycky984504b2007-06-24 04:36:20 +00001388 DOUT << "context is ";
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001389 DEBUG(if (TopInst)
1390 errs() << "I: " << *TopInst << "\n";
1391 else
1392 errs() << "BB: " << TopBB->getName()
1393 << "(" << Top->getDFSNumIn() << ")\n");
Nick Lewyckye63bf952006-10-25 23:48:24 +00001394
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001395 assert(V1->getType() == V2->getType() &&
1396 "Can't make two values with different types equal.");
1397
Nick Lewycky419c6f52007-01-11 02:32:38 +00001398 if (V1 == V2) return true;
Nick Lewyckye63bf952006-10-25 23:48:24 +00001399
Nick Lewycky419c6f52007-01-11 02:32:38 +00001400 if (isa<Constant>(V1) && isa<Constant>(V2))
1401 return false;
1402
Nick Lewycky29a05b62007-07-05 03:15:00 +00001403 unsigned n1 = VN.valueNumber(V1, Top), n2 = VN.valueNumber(V2, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001404
1405 if (n1 && n2) {
1406 if (n1 == n2) return true;
1407 if (IG.isRelatedBy(n1, n2, Top, NE)) return false;
1408 }
1409
Nick Lewycky29a05b62007-07-05 03:15:00 +00001410 if (n1) assert(V1 == VN.value(n1) && "Value isn't canonical.");
1411 if (n2) assert(V2 == VN.value(n2) && "Value isn't canonical.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001412
Nick Lewycky29a05b62007-07-05 03:15:00 +00001413 assert(!VN.compare(V2, V1) && "Please order parameters to makeEqual.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001414
1415 assert(!isa<Constant>(V2) && "Tried to remove a constant.");
1416
1417 SetVector<unsigned> Remove;
1418 if (n2) Remove.insert(n2);
1419
1420 if (n1 && n2) {
1421 // Suppose we're being told that %x == %y, and %x <= %z and %y >= %z.
1422 // We can't just merge %x and %y because the relationship with %z would
1423 // be EQ and that's invalid. What we're doing is looking for any nodes
1424 // %z such that %x <= %z and %y >= %z, and vice versa.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001425
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001426 Node::iterator end = IG.node(n2)->end();
Nick Lewyckydd402582007-01-15 14:30:07 +00001427
1428 // Find the intersection between N1 and N2 which is dominated by
1429 // Top. If we find %x where N1 <= %x <= N2 (or >=) then add %x to
1430 // Remove.
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001431 for (Node::iterator I = IG.node(n1)->begin(), E = IG.node(n1)->end();
1432 I != E; ++I) {
Nick Lewyckydd402582007-01-15 14:30:07 +00001433 if (!(I->LV & EQ_BIT) || !Top->DominatedBy(I->Subtree)) continue;
1434
1435 unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT);
1436 unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001437 Node::iterator NI = IG.node(n2)->find(I->To, Top);
Nick Lewyckydd402582007-01-15 14:30:07 +00001438 if (NI != end) {
1439 LatticeVal NILV = reversePredicate(NI->LV);
1440 unsigned NILV_s = NILV & (SLT_BIT|SGT_BIT);
1441 unsigned NILV_u = NILV & (ULT_BIT|UGT_BIT);
1442
1443 if ((ILV_s != (SLT_BIT|SGT_BIT) && ILV_s == NILV_s) ||
1444 (ILV_u != (ULT_BIT|UGT_BIT) && ILV_u == NILV_u))
1445 Remove.insert(I->To);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001446 }
1447 }
1448
1449 // See if one of the nodes about to be removed is actually a better
1450 // canonical choice than n1.
1451 unsigned orig_n1 = n1;
Reid Spencer7af9a132007-01-17 02:23:37 +00001452 SetVector<unsigned>::iterator DontRemove = Remove.end();
1453 for (SetVector<unsigned>::iterator I = Remove.begin()+1 /* skip n2 */,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001454 E = Remove.end(); I != E; ++I) {
1455 unsigned n = *I;
Nick Lewycky29a05b62007-07-05 03:15:00 +00001456 Value *V = VN.value(n);
1457 if (VN.compare(V, V1)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001458 V1 = V;
1459 n1 = n;
1460 DontRemove = I;
1461 }
1462 }
1463 if (DontRemove != Remove.end()) {
1464 unsigned n = *DontRemove;
1465 Remove.remove(n);
1466 Remove.insert(orig_n1);
Nick Lewycky565706b2006-11-22 23:49:16 +00001467 }
1468 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001469
Nick Lewycky419c6f52007-01-11 02:32:38 +00001470 // We'd like to allow makeEqual on two values to perform a simple
Nick Lewycky70ef6292008-05-26 22:49:36 +00001471 // substitution without creating nodes in the IG whenever possible.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001472 //
1473 // The first iteration through this loop operates on V2 before going
1474 // through the Remove list and operating on those too. If all of the
1475 // iterations performed simple replacements then we exit early.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001476 bool mergeIGNode = false;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001477 unsigned i = 0;
1478 for (Value *R = V2; i == 0 || i < Remove.size(); ++i) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001479 if (i) R = VN.value(Remove[i]); // skip n2.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001480
1481 // Try to replace the whole instruction. If we can, we're done.
1482 Instruction *I2 = dyn_cast<Instruction>(R);
1483 if (I2 && below(I2)) {
1484 std::vector<Instruction *> ToNotify;
Jay Foad0906b1b2009-06-06 17:49:35 +00001485 for (Value::use_iterator UI = I2->use_begin(), UE = I2->use_end();
Nick Lewycky419c6f52007-01-11 02:32:38 +00001486 UI != UE;) {
1487 Use &TheUse = UI.getUse();
1488 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00001489 Instruction *I = cast<Instruction>(TheUse.getUser());
1490 ToNotify.push_back(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001491 }
1492
1493 DOUT << "Simply removing " << *I2
1494 << ", replacing with " << *V1 << "\n";
1495 I2->replaceAllUsesWith(V1);
1496 // leave it dead; it'll get erased later.
1497 ++NumInstruction;
1498 modified = true;
1499
1500 for (std::vector<Instruction *>::iterator II = ToNotify.begin(),
1501 IE = ToNotify.end(); II != IE; ++II) {
1502 opsToDef(*II);
1503 }
1504
1505 continue;
1506 }
1507
1508 // Otherwise, replace all dominated uses.
1509 for (Value::use_iterator UI = R->use_begin(), UE = R->use_end();
1510 UI != UE;) {
1511 Use &TheUse = UI.getUse();
1512 ++UI;
1513 if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) {
1514 if (below(I)) {
1515 TheUse.set(V1);
1516 modified = true;
1517 ++NumVarsReplaced;
1518 opsToDef(I);
1519 }
1520 }
1521 }
1522
1523 // If that killed the instruction, stop here.
1524 if (I2 && isInstructionTriviallyDead(I2)) {
1525 DOUT << "Killed all uses of " << *I2
1526 << ", replacing with " << *V1 << "\n";
1527 continue;
1528 }
1529
1530 // If we make it to here, then we will need to create a node for N1.
1531 // Otherwise, we can skip out early!
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001532 mergeIGNode = true;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001533 }
1534
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001535 if (!isa<Constant>(V1)) {
1536 if (Remove.empty()) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001537 VR.mergeInto(&V2, 1, VN.getOrInsertVN(V1, Top), Top, this);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001538 } else {
1539 std::vector<Value*> RemoveVals;
1540 RemoveVals.reserve(Remove.size());
Nick Lewycky419c6f52007-01-11 02:32:38 +00001541
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001542 for (SetVector<unsigned>::iterator I = Remove.begin(),
1543 E = Remove.end(); I != E; ++I) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001544 Value *V = VN.value(*I);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001545 if (!V->use_empty())
1546 RemoveVals.push_back(V);
1547 }
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001548 VR.mergeInto(&RemoveVals[0], RemoveVals.size(),
1549 VN.getOrInsertVN(V1, Top), Top, this);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001550 }
1551 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001552
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001553 if (mergeIGNode) {
1554 // Create N1.
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001555 if (!n1) n1 = VN.getOrInsertVN(V1, Top);
Nick Lewycky6918a912008-05-27 00:59:05 +00001556 IG.node(n1); // Ensure that IG.Nodes won't get resized
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001557
1558 // Migrate relationships from removed nodes to N1.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001559 for (SetVector<unsigned>::iterator I = Remove.begin(), E = Remove.end();
1560 I != E; ++I) {
1561 unsigned n = *I;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001562 for (Node::iterator NI = IG.node(n)->begin(), NE = IG.node(n)->end();
1563 NI != NE; ++NI) {
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001564 if (NI->Subtree->DominatedBy(Top)) {
1565 if (NI->To == n1) {
1566 assert((NI->LV & EQ_BIT) && "Node inequal to itself.");
1567 continue;
1568 }
1569 if (Remove.count(NI->To))
1570 continue;
1571
1572 IG.node(NI->To)->update(n1, reversePredicate(NI->LV), Top);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001573 IG.node(n1)->update(NI->To, NI->LV, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001574 }
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001575 }
1576 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001577
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001578 // Point V2 (and all items in Remove) to N1.
1579 if (!n2)
Nick Lewycky29a05b62007-07-05 03:15:00 +00001580 VN.addEquality(n1, V2, Top);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001581 else {
1582 for (SetVector<unsigned>::iterator I = Remove.begin(),
1583 E = Remove.end(); I != E; ++I) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001584 VN.addEquality(n1, VN.value(*I), Top);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001585 }
1586 }
1587
1588 // If !Remove.empty() then V2 = Remove[0]->getValue().
1589 // Even when Remove is empty, we still want to process V2.
1590 i = 0;
1591 for (Value *R = V2; i == 0 || i < Remove.size(); ++i) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001592 if (i) R = VN.value(Remove[i]); // skip n2.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001593
1594 if (Instruction *I2 = dyn_cast<Instruction>(R)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001595 if (aboveOrBelow(I2))
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001596 defToOps(I2);
1597 }
1598 for (Value::use_iterator UI = V2->use_begin(), UE = V2->use_end();
1599 UI != UE;) {
1600 Use &TheUse = UI.getUse();
1601 ++UI;
1602 if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001603 if (aboveOrBelow(I))
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001604 opsToDef(I);
1605 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001606 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001607 }
1608 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001609
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001610 // re-opsToDef all dominated users of V1.
1611 if (Instruction *I = dyn_cast<Instruction>(V1)) {
1612 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
Nick Lewycky419c6f52007-01-11 02:32:38 +00001613 UI != UE;) {
1614 Use &TheUse = UI.getUse();
1615 ++UI;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001616 Value *V = TheUse.getUser();
1617 if (!V->use_empty()) {
Jay Foad0906b1b2009-06-06 17:49:35 +00001618 Instruction *Inst = cast<Instruction>(V);
1619 if (aboveOrBelow(Inst))
1620 opsToDef(Inst);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001621 }
1622 }
1623 }
1624
1625 return true;
1626 }
1627
1628 /// cmpInstToLattice - converts an CmpInst::Predicate to lattice value
1629 /// Requires that the lattice value be valid; does not accept ICMP_EQ.
1630 static LatticeVal cmpInstToLattice(ICmpInst::Predicate Pred) {
1631 switch (Pred) {
1632 case ICmpInst::ICMP_EQ:
1633 assert(!"No matching lattice value.");
1634 return static_cast<LatticeVal>(EQ_BIT);
1635 default:
1636 assert(!"Invalid 'icmp' predicate.");
1637 case ICmpInst::ICMP_NE:
1638 return NE;
1639 case ICmpInst::ICMP_UGT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001640 return UGT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001641 case ICmpInst::ICMP_UGE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001642 return UGE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001643 case ICmpInst::ICMP_ULT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001644 return ULT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001645 case ICmpInst::ICMP_ULE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001646 return ULE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001647 case ICmpInst::ICMP_SGT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001648 return SGT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001649 case ICmpInst::ICMP_SGE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001650 return SGE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001651 case ICmpInst::ICMP_SLT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001652 return SLT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001653 case ICmpInst::ICMP_SLE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001654 return SLE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001655 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001656 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001657
Nick Lewycky565706b2006-11-22 23:49:16 +00001658 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +00001659 VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB,
1660 ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified,
1661 BasicBlock *TopBB)
1662 : VN(VN),
1663 IG(IG),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001664 UB(UB),
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001665 VR(VR),
Nick Lewycky984504b2007-06-24 04:36:20 +00001666 DTDFS(DTDFS),
1667 Top(DTDFS->getNodeForBlock(TopBB)),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001668 TopBB(TopBB),
1669 TopInst(NULL),
Owen Anderson0a5372e2009-07-13 04:09:18 +00001670 modified(modified),
Owen Andersone922c022009-07-22 00:24:57 +00001671 Context(&TopBB->getContext())
Nick Lewycky984504b2007-06-24 04:36:20 +00001672 {
1673 assert(Top && "VRPSolver created for unreachable basic block.");
1674 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001675
Nick Lewycky29a05b62007-07-05 03:15:00 +00001676 VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB,
1677 ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified,
1678 Instruction *TopInst)
1679 : VN(VN),
1680 IG(IG),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001681 UB(UB),
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001682 VR(VR),
Nick Lewycky984504b2007-06-24 04:36:20 +00001683 DTDFS(DTDFS),
1684 Top(DTDFS->getNodeForBlock(TopInst->getParent())),
1685 TopBB(TopInst->getParent()),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001686 TopInst(TopInst),
Owen Anderson001dbfe2009-07-16 18:04:31 +00001687 modified(modified),
Owen Andersone922c022009-07-22 00:24:57 +00001688 Context(&TopInst->getContext())
Nick Lewycky419c6f52007-01-11 02:32:38 +00001689 {
Nick Lewycky984504b2007-06-24 04:36:20 +00001690 assert(Top && "VRPSolver created for unreachable basic block.");
1691 assert(Top->getBlock() == TopInst->getParent() && "Context mismatch.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001692 }
1693
1694 bool isRelatedBy(Value *V1, Value *V2, ICmpInst::Predicate Pred) const {
1695 if (Constant *C1 = dyn_cast<Constant>(V1))
1696 if (Constant *C2 = dyn_cast<Constant>(V2))
Owen Andersonf53c3712009-07-21 02:47:59 +00001697 return Context->getConstantExprCompare(Pred, C1, C2) ==
Owen Andersonb3056fa2009-07-21 18:03:38 +00001698 Context->getTrue();
Nick Lewycky419c6f52007-01-11 02:32:38 +00001699
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001700 unsigned n1 = VN.valueNumber(V1, Top);
1701 unsigned n2 = VN.valueNumber(V2, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001702
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001703 if (n1 && n2) {
1704 if (n1 == n2) return Pred == ICmpInst::ICMP_EQ ||
1705 Pred == ICmpInst::ICMP_ULE ||
1706 Pred == ICmpInst::ICMP_UGE ||
1707 Pred == ICmpInst::ICMP_SLE ||
1708 Pred == ICmpInst::ICMP_SGE;
1709 if (Pred == ICmpInst::ICMP_EQ) return false;
1710 if (IG.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true;
1711 if (VR.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true;
1712 }
1713
1714 if ((n1 && !n2 && isa<Constant>(V2)) ||
1715 (n2 && !n1 && isa<Constant>(V1))) {
1716 ConstantRange CR1 = n1 ? VR.range(n1, Top) : VR.range(V1);
1717 ConstantRange CR2 = n2 ? VR.range(n2, Top) : VR.range(V2);
1718
1719 if (Pred == ICmpInst::ICMP_EQ)
1720 return CR1.isSingleElement() &&
1721 CR1.getSingleElement() == CR2.getSingleElement();
1722
1723 return VR.isRelatedBy(CR1, CR2, cmpInstToLattice(Pred));
1724 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001725 if (Pred == ICmpInst::ICMP_EQ) return V1 == V2;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001726 return false;
Nick Lewycky565706b2006-11-22 23:49:16 +00001727 }
1728
Nick Lewycky419c6f52007-01-11 02:32:38 +00001729 /// add - adds a new property to the work queue
1730 void add(Value *V1, Value *V2, ICmpInst::Predicate Pred,
1731 Instruction *I = NULL) {
1732 DOUT << "adding " << *V1 << " " << Pred << " " << *V2;
1733 if (I) DOUT << " context: " << *I;
Nick Lewycky984504b2007-06-24 04:36:20 +00001734 else DOUT << " default context (" << Top->getDFSNumIn() << ")";
Nick Lewycky419c6f52007-01-11 02:32:38 +00001735 DOUT << "\n";
1736
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001737 assert(V1->getType() == V2->getType() &&
1738 "Can't relate two values with different types.");
1739
Nick Lewycky419c6f52007-01-11 02:32:38 +00001740 WorkList.push_back(Operation());
1741 Operation &O = WorkList.back();
Nick Lewycky0be7f472007-01-13 02:05:28 +00001742 O.LHS = V1, O.RHS = V2, O.Op = Pred, O.ContextInst = I;
1743 O.ContextBB = I ? I->getParent() : TopBB;
Nick Lewycky565706b2006-11-22 23:49:16 +00001744 }
1745
Nick Lewycky419c6f52007-01-11 02:32:38 +00001746 /// defToOps - Given an instruction definition that we've learned something
1747 /// new about, find any new relationships between its operands.
1748 void defToOps(Instruction *I) {
1749 Instruction *NewContext = below(I) ? I : TopInst;
Nick Lewycky29a05b62007-07-05 03:15:00 +00001750 Value *Canonical = VN.canonicalize(I, Top);
Nick Lewycky565706b2006-11-22 23:49:16 +00001751
Nick Lewycky419c6f52007-01-11 02:32:38 +00001752 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
1753 const Type *Ty = BO->getType();
1754 assert(!Ty->isFPOrFPVector() && "Float in work queue!");
Nick Lewycky565706b2006-11-22 23:49:16 +00001755
Nick Lewycky29a05b62007-07-05 03:15:00 +00001756 Value *Op0 = VN.canonicalize(BO->getOperand(0), Top);
1757 Value *Op1 = VN.canonicalize(BO->getOperand(1), Top);
Nick Lewycky565706b2006-11-22 23:49:16 +00001758
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001759 // TODO: "and i32 -1, %x" EQ %y then %x EQ %y.
Nick Lewycky565706b2006-11-22 23:49:16 +00001760
Nick Lewycky419c6f52007-01-11 02:32:38 +00001761 switch (BO->getOpcode()) {
1762 case Instruction::And: {
Nick Lewycky4c708752007-03-16 02:37:39 +00001763 // "and i32 %a, %b" EQ -1 then %a EQ -1 and %b EQ -1
Owen Anderson73c6b712009-07-13 20:58:05 +00001764 ConstantInt *CI = cast<ConstantInt>(Context->getAllOnesValue(Ty));
Nick Lewycky419c6f52007-01-11 02:32:38 +00001765 if (Canonical == CI) {
1766 add(CI, Op0, ICmpInst::ICMP_EQ, NewContext);
1767 add(CI, Op1, ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky565706b2006-11-22 23:49:16 +00001768 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001769 } break;
1770 case Instruction::Or: {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001771 // "or i32 %a, %b" EQ 0 then %a EQ 0 and %b EQ 0
Owen Anderson0a5372e2009-07-13 04:09:18 +00001772 Constant *Zero = Context->getNullValue(Ty);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001773 if (Canonical == Zero) {
1774 add(Zero, Op0, ICmpInst::ICMP_EQ, NewContext);
1775 add(Zero, Op1, ICmpInst::ICMP_EQ, NewContext);
1776 }
1777 } break;
1778 case Instruction::Xor: {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001779 // "xor i32 %c, %a" EQ %b then %a EQ %c ^ %b
1780 // "xor i32 %c, %a" EQ %c then %a EQ 0
1781 // "xor i32 %c, %a" NE %c then %a NE 0
1782 // Repeat the above, with order of operands reversed.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001783 Value *LHS = Op0;
1784 Value *RHS = Op1;
1785 if (!isa<Constant>(LHS)) std::swap(LHS, RHS);
1786
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00001787 if (ConstantInt *CI = dyn_cast<ConstantInt>(Canonical)) {
1788 if (ConstantInt *Arg = dyn_cast<ConstantInt>(LHS)) {
Owen Anderson001dbfe2009-07-16 18:04:31 +00001789 add(RHS,
Owen Andersoneed707b2009-07-24 23:12:02 +00001790 ConstantInt::get(*Context, CI->getValue() ^ Arg->getValue()),
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00001791 ICmpInst::ICMP_EQ, NewContext);
1792 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001793 }
1794 if (Canonical == LHS) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001795 if (isa<ConstantInt>(Canonical))
Owen Anderson0a5372e2009-07-13 04:09:18 +00001796 add(RHS, Context->getNullValue(Ty), ICmpInst::ICMP_EQ,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001797 NewContext);
1798 } else if (isRelatedBy(LHS, Canonical, ICmpInst::ICMP_NE)) {
Owen Anderson0a5372e2009-07-13 04:09:18 +00001799 add(RHS, Context->getNullValue(Ty), ICmpInst::ICMP_NE,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001800 NewContext);
1801 }
1802 } break;
1803 default:
1804 break;
1805 }
1806 } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001807 // "icmp ult i32 %a, %y" EQ true then %a u< y
Nick Lewycky419c6f52007-01-11 02:32:38 +00001808 // etc.
1809
Owen Andersonb3056fa2009-07-21 18:03:38 +00001810 if (Canonical == Context->getTrue()) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001811 add(IC->getOperand(0), IC->getOperand(1), IC->getPredicate(),
1812 NewContext);
Owen Andersonb3056fa2009-07-21 18:03:38 +00001813 } else if (Canonical == Context->getFalse()) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001814 add(IC->getOperand(0), IC->getOperand(1),
1815 ICmpInst::getInversePredicate(IC->getPredicate()), NewContext);
1816 }
1817 } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
1818 if (I->getType()->isFPOrFPVector()) return;
1819
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001820 // Given: "%a = select i1 %x, i32 %b, i32 %c"
Nick Lewycky419c6f52007-01-11 02:32:38 +00001821 // %a EQ %b and %b NE %c then %x EQ true
1822 // %a EQ %c and %b NE %c then %x EQ false
1823
1824 Value *True = SI->getTrueValue();
1825 Value *False = SI->getFalseValue();
1826 if (isRelatedBy(True, False, ICmpInst::ICMP_NE)) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001827 if (Canonical == VN.canonicalize(True, Top) ||
Nick Lewycky419c6f52007-01-11 02:32:38 +00001828 isRelatedBy(Canonical, False, ICmpInst::ICMP_NE))
Owen Andersonb3056fa2009-07-21 18:03:38 +00001829 add(SI->getCondition(), Context->getTrue(),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001830 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky29a05b62007-07-05 03:15:00 +00001831 else if (Canonical == VN.canonicalize(False, Top) ||
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001832 isRelatedBy(Canonical, True, ICmpInst::ICMP_NE))
Owen Andersonb3056fa2009-07-21 18:03:38 +00001833 add(SI->getCondition(), Context->getFalse(),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001834 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky565706b2006-11-22 23:49:16 +00001835 }
Nick Lewycky27e4da92007-03-22 02:02:51 +00001836 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
1837 for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(),
1838 OE = GEPI->idx_end(); OI != OE; ++OI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001839 ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top));
Nick Lewycky27e4da92007-03-22 02:02:51 +00001840 if (!Op || !Op->isZero()) return;
1841 }
1842 // TODO: The GEPI indices are all zero. Copy from definition to operand,
1843 // jumping the type plane as needed.
Owen Anderson0a5372e2009-07-13 04:09:18 +00001844 if (isRelatedBy(GEPI, Context->getNullValue(GEPI->getType()),
Nick Lewycky27e4da92007-03-22 02:02:51 +00001845 ICmpInst::ICMP_NE)) {
1846 Value *Ptr = GEPI->getPointerOperand();
Owen Anderson0a5372e2009-07-13 04:09:18 +00001847 add(Ptr, Context->getNullValue(Ptr->getType()), ICmpInst::ICMP_NE,
Nick Lewycky27e4da92007-03-22 02:02:51 +00001848 NewContext);
1849 }
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001850 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
1851 const Type *SrcTy = CI->getSrcTy();
1852
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001853 unsigned ci = VN.getOrInsertVN(CI, Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001854 uint32_t W = VR.typeToWidth(SrcTy);
1855 if (!W) return;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001856 ConstantRange CR = VR.range(ci, Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001857
1858 if (CR.isFullSet()) return;
1859
1860 switch (CI->getOpcode()) {
1861 default: break;
1862 case Instruction::ZExt:
1863 case Instruction::SExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001864 VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top),
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001865 CR.truncate(W), Top, this);
1866 break;
1867 case Instruction::BitCast:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001868 VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top),
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001869 CR, Top, this);
1870 break;
1871 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001872 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001873 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001874
Nick Lewycky419c6f52007-01-11 02:32:38 +00001875 /// opsToDef - A new relationship was discovered involving one of this
1876 /// instruction's operands. Find any new relationship involving the
Nick Lewycky27e4da92007-03-22 02:02:51 +00001877 /// definition, or another operand.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001878 void opsToDef(Instruction *I) {
1879 Instruction *NewContext = below(I) ? I : TopInst;
1880
1881 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001882 Value *Op0 = VN.canonicalize(BO->getOperand(0), Top);
1883 Value *Op1 = VN.canonicalize(BO->getOperand(1), Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001884
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001885 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0))
1886 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001887 add(BO, ConstantExpr::get(BO->getOpcode(), CI0, CI1),
1888 ICmpInst::ICMP_EQ, NewContext);
1889 return;
1890 }
1891
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001892 // "%y = and i1 true, %x" then %x EQ %y
1893 // "%y = or i1 false, %x" then %x EQ %y
1894 // "%x = add i32 %y, 0" then %x EQ %y
1895 // "%x = mul i32 %y, 0" then %x EQ 0
1896
1897 Instruction::BinaryOps Opcode = BO->getOpcode();
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001898 const Type *Ty = BO->getType();
1899 assert(!Ty->isFPOrFPVector() && "Float in work queue!");
1900
Owen Anderson0a5372e2009-07-13 04:09:18 +00001901 Constant *Zero = Context->getNullValue(Ty);
Owen Andersoneed707b2009-07-24 23:12:02 +00001902 Constant *One = ConstantInt::get(Ty, 1);
Owen Anderson73c6b712009-07-13 20:58:05 +00001903 ConstantInt *AllOnes = cast<ConstantInt>(Context->getAllOnesValue(Ty));
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001904
1905 switch (Opcode) {
1906 default: break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00001907 case Instruction::LShr:
1908 case Instruction::AShr:
1909 case Instruction::Shl:
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001910 if (Op1 == Zero) {
1911 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1912 return;
1913 }
1914 break;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001915 case Instruction::Sub:
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001916 if (Op1 == Zero) {
1917 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1918 return;
1919 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001920 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) {
1921 unsigned n_ci0 = VN.getOrInsertVN(Op1, Top);
1922 ConstantRange CR = VR.range(n_ci0, Top);
1923 if (!CR.isFullSet()) {
1924 CR.subtract(CI0->getValue());
1925 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1926 VR.applyRange(n_bo, CR, Top, this);
1927 return;
1928 }
1929 }
1930 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
1931 unsigned n_ci1 = VN.getOrInsertVN(Op0, Top);
1932 ConstantRange CR = VR.range(n_ci1, Top);
1933 if (!CR.isFullSet()) {
1934 CR.subtract(CI1->getValue());
1935 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1936 VR.applyRange(n_bo, CR, Top, this);
1937 return;
1938 }
1939 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001940 break;
1941 case Instruction::Or:
1942 if (Op0 == AllOnes || Op1 == AllOnes) {
1943 add(BO, AllOnes, ICmpInst::ICMP_EQ, NewContext);
1944 return;
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001945 }
1946 if (Op0 == Zero) {
1947 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1948 return;
1949 } else if (Op1 == Zero) {
1950 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1951 return;
1952 }
1953 break;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001954 case Instruction::Add:
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001955 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) {
1956 unsigned n_ci0 = VN.getOrInsertVN(Op1, Top);
1957 ConstantRange CR = VR.range(n_ci0, Top);
1958 if (!CR.isFullSet()) {
1959 CR.subtract(-CI0->getValue());
1960 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1961 VR.applyRange(n_bo, CR, Top, this);
1962 return;
1963 }
1964 }
1965 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
1966 unsigned n_ci1 = VN.getOrInsertVN(Op0, Top);
1967 ConstantRange CR = VR.range(n_ci1, Top);
1968 if (!CR.isFullSet()) {
1969 CR.subtract(-CI1->getValue());
1970 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1971 VR.applyRange(n_bo, CR, Top, this);
1972 return;
1973 }
1974 }
1975 // fall-through
1976 case Instruction::Xor:
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001977 if (Op0 == Zero) {
1978 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1979 return;
1980 } else if (Op1 == Zero) {
1981 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1982 return;
1983 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001984 break;
1985 case Instruction::And:
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001986 if (Op0 == AllOnes) {
1987 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1988 return;
1989 } else if (Op1 == AllOnes) {
1990 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1991 return;
1992 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001993 if (Op0 == Zero || Op1 == Zero) {
1994 add(BO, Zero, ICmpInst::ICMP_EQ, NewContext);
1995 return;
1996 }
1997 break;
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001998 case Instruction::Mul:
1999 if (Op0 == Zero || Op1 == Zero) {
Nick Lewycky1eda0f62007-03-18 01:09:32 +00002000 add(BO, Zero, ICmpInst::ICMP_EQ, NewContext);
2001 return;
2002 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002003 if (Op0 == One) {
2004 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
2005 return;
2006 } else if (Op1 == One) {
2007 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
2008 return;
2009 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00002010 break;
Nick Lewycky565706b2006-11-22 23:49:16 +00002011 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002012
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002013 // "%x = add i32 %y, %z" and %x EQ %y then %z EQ 0
Nick Lewycky27e4da92007-03-22 02:02:51 +00002014 // "%x = add i32 %y, %z" and %x EQ %z then %y EQ 0
2015 // "%x = shl i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 0
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002016 // "%x = udiv i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 1
Nick Lewycky565706b2006-11-22 23:49:16 +00002017
Nick Lewycky27e4da92007-03-22 02:02:51 +00002018 Value *Known = Op0, *Unknown = Op1,
Nick Lewycky29a05b62007-07-05 03:15:00 +00002019 *TheBO = VN.canonicalize(BO, Top);
Nick Lewycky27e4da92007-03-22 02:02:51 +00002020 if (Known != TheBO) std::swap(Known, Unknown);
2021 if (Known == TheBO) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002022 switch (Opcode) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002023 default: break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00002024 case Instruction::LShr:
2025 case Instruction::AShr:
2026 case Instruction::Shl:
2027 if (!isRelatedBy(Known, Zero, ICmpInst::ICMP_NE)) break;
2028 // otherwise, fall-through.
2029 case Instruction::Sub:
Nick Lewyckye29578a2007-09-20 00:48:36 +00002030 if (Unknown == Op0) break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00002031 // otherwise, fall-through.
Nick Lewycky419c6f52007-01-11 02:32:38 +00002032 case Instruction::Xor:
Nick Lewycky419c6f52007-01-11 02:32:38 +00002033 case Instruction::Add:
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00002034 add(Unknown, Zero, ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002035 break;
2036 case Instruction::UDiv:
2037 case Instruction::SDiv:
Nick Lewycky27e4da92007-03-22 02:02:51 +00002038 if (Unknown == Op1) break;
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002039 if (isRelatedBy(Known, Zero, ICmpInst::ICMP_NE))
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00002040 add(Unknown, One, ICmpInst::ICMP_EQ, NewContext);
Nick Lewyckye63bf952006-10-25 23:48:24 +00002041 break;
Nick Lewycky565706b2006-11-22 23:49:16 +00002042 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002043 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002044
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002045 // TODO: "%a = add i32 %b, 1" and %b > %z then %a >= %z.
Nick Lewycky565706b2006-11-22 23:49:16 +00002046
Nick Lewycky419c6f52007-01-11 02:32:38 +00002047 } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002048 // "%a = icmp ult i32 %b, %c" and %b u< %c then %a EQ true
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002049 // "%a = icmp ult i32 %b, %c" and %b u>= %c then %a EQ false
Nick Lewycky419c6f52007-01-11 02:32:38 +00002050 // etc.
2051
Nick Lewycky29a05b62007-07-05 03:15:00 +00002052 Value *Op0 = VN.canonicalize(IC->getOperand(0), Top);
2053 Value *Op1 = VN.canonicalize(IC->getOperand(1), Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002054
2055 ICmpInst::Predicate Pred = IC->getPredicate();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002056 if (isRelatedBy(Op0, Op1, Pred))
Owen Andersonb3056fa2009-07-21 18:03:38 +00002057 add(IC, Context->getTrue(), ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002058 else if (isRelatedBy(Op0, Op1, ICmpInst::getInversePredicate(Pred)))
Owen Andersonb3056fa2009-07-21 18:03:38 +00002059 add(IC, Context->getFalse(),
Owen Andersonf53c3712009-07-21 02:47:59 +00002060 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002061
Nick Lewycky419c6f52007-01-11 02:32:38 +00002062 } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
Nick Lewycky27e4da92007-03-22 02:02:51 +00002063 if (I->getType()->isFPOrFPVector()) return;
2064
Nick Lewycky4c708752007-03-16 02:37:39 +00002065 // Given: "%a = select i1 %x, i32 %b, i32 %c"
Nick Lewycky419c6f52007-01-11 02:32:38 +00002066 // %x EQ true then %a EQ %b
2067 // %x EQ false then %a EQ %c
2068 // %b EQ %c then %a EQ %b
2069
Nick Lewycky29a05b62007-07-05 03:15:00 +00002070 Value *Canonical = VN.canonicalize(SI->getCondition(), Top);
Owen Andersonb3056fa2009-07-21 18:03:38 +00002071 if (Canonical == Context->getTrue()) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002072 add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext);
Owen Andersonb3056fa2009-07-21 18:03:38 +00002073 } else if (Canonical == Context->getFalse()) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002074 add(SI, SI->getFalseValue(), ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002075 } else if (VN.canonicalize(SI->getTrueValue(), Top) ==
2076 VN.canonicalize(SI->getFalseValue(), Top)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002077 add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext);
2078 }
Nick Lewycky28c5b152007-01-12 01:23:53 +00002079 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002080 const Type *DestTy = CI->getDestTy();
2081 if (DestTy->isFPOrFPVector()) return;
Nick Lewycky28c5b152007-01-12 01:23:53 +00002082
Nick Lewycky29a05b62007-07-05 03:15:00 +00002083 Value *Op = VN.canonicalize(CI->getOperand(0), Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002084 Instruction::CastOps Opcode = CI->getOpcode();
2085
2086 if (Constant *C = dyn_cast<Constant>(Op)) {
2087 add(CI, ConstantExpr::getCast(Opcode, C, DestTy),
Nick Lewycky28c5b152007-01-12 01:23:53 +00002088 ICmpInst::ICMP_EQ, NewContext);
2089 }
2090
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002091 uint32_t W = VR.typeToWidth(DestTy);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002092 unsigned ci = VN.getOrInsertVN(CI, Top);
2093 ConstantRange CR = VR.range(VN.getOrInsertVN(Op, Top), Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002094
2095 if (!CR.isFullSet()) {
2096 switch (Opcode) {
2097 default: break;
2098 case Instruction::ZExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002099 VR.applyRange(ci, CR.zeroExtend(W), Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002100 break;
2101 case Instruction::SExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002102 VR.applyRange(ci, CR.signExtend(W), Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002103 break;
2104 case Instruction::Trunc: {
2105 ConstantRange Result = CR.truncate(W);
2106 if (!Result.isFullSet())
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002107 VR.applyRange(ci, Result, Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002108 } break;
2109 case Instruction::BitCast:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002110 VR.applyRange(ci, CR, Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002111 break;
2112 // TODO: other casts?
2113 }
2114 }
Nick Lewycky27e4da92007-03-22 02:02:51 +00002115 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
2116 for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(),
2117 OE = GEPI->idx_end(); OI != OE; ++OI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002118 ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top));
Nick Lewycky27e4da92007-03-22 02:02:51 +00002119 if (!Op || !Op->isZero()) return;
2120 }
2121 // TODO: The GEPI indices are all zero. Copy from operand to definition,
2122 // jumping the type plane as needed.
2123 Value *Ptr = GEPI->getPointerOperand();
Owen Anderson0a5372e2009-07-13 04:09:18 +00002124 if (isRelatedBy(Ptr, Context->getNullValue(Ptr->getType()),
Nick Lewycky27e4da92007-03-22 02:02:51 +00002125 ICmpInst::ICMP_NE)) {
Owen Anderson0a5372e2009-07-13 04:09:18 +00002126 add(GEPI, Context->getNullValue(GEPI->getType()), ICmpInst::ICMP_NE,
Nick Lewycky27e4da92007-03-22 02:02:51 +00002127 NewContext);
2128 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002129 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002130 }
2131
2132 /// solve - process the work queue
Nick Lewycky419c6f52007-01-11 02:32:38 +00002133 void solve() {
2134 //DOUT << "WorkList entry, size: " << WorkList.size() << "\n";
2135 while (!WorkList.empty()) {
2136 //DOUT << "WorkList size: " << WorkList.size() << "\n";
2137
2138 Operation &O = WorkList.front();
Nick Lewycky0be7f472007-01-13 02:05:28 +00002139 TopInst = O.ContextInst;
2140 TopBB = O.ContextBB;
Nick Lewycky984504b2007-06-24 04:36:20 +00002141 Top = DTDFS->getNodeForBlock(TopBB); // XXX move this into Context
Nick Lewycky0be7f472007-01-13 02:05:28 +00002142
Nick Lewycky29a05b62007-07-05 03:15:00 +00002143 O.LHS = VN.canonicalize(O.LHS, Top);
2144 O.RHS = VN.canonicalize(O.RHS, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002145
Nick Lewycky29a05b62007-07-05 03:15:00 +00002146 assert(O.LHS == VN.canonicalize(O.LHS, Top) && "Canonicalize isn't.");
2147 assert(O.RHS == VN.canonicalize(O.RHS, Top) && "Canonicalize isn't.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00002148
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002149 DEBUG(errs() << "solving " << *O.LHS << " " << O.Op << " " << *O.RHS;
2150 if (O.ContextInst)
2151 errs() << " context inst: " << *O.ContextInst;
2152 else
2153 errs() << " context block: " << O.ContextBB->getName();
2154 errs() << "\n";
Nick Lewycky419c6f52007-01-11 02:32:38 +00002155
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002156 VN.dump();
2157 IG.dump();
2158 VR.dump(););
Nick Lewycky419c6f52007-01-11 02:32:38 +00002159
Nick Lewycky45351752007-02-04 23:43:05 +00002160 // If they're both Constant, skip it. Check for contradiction and mark
2161 // the BB as unreachable if so.
2162 if (Constant *CI_L = dyn_cast<Constant>(O.LHS)) {
2163 if (Constant *CI_R = dyn_cast<Constant>(O.RHS)) {
Owen Andersonf53c3712009-07-21 02:47:59 +00002164 if (Context->getConstantExprCompare(O.Op, CI_L, CI_R) ==
Owen Andersonb3056fa2009-07-21 18:03:38 +00002165 Context->getFalse())
Nick Lewycky45351752007-02-04 23:43:05 +00002166 UB.mark(TopBB);
2167
2168 WorkList.pop_front();
2169 continue;
2170 }
2171 }
2172
Nick Lewycky29a05b62007-07-05 03:15:00 +00002173 if (VN.compare(O.LHS, O.RHS)) {
Nick Lewycky45351752007-02-04 23:43:05 +00002174 std::swap(O.LHS, O.RHS);
2175 O.Op = ICmpInst::getSwappedPredicate(O.Op);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002176 }
2177
2178 if (O.Op == ICmpInst::ICMP_EQ) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002179 if (!makeEqual(O.RHS, O.LHS))
Nick Lewycky419c6f52007-01-11 02:32:38 +00002180 UB.mark(TopBB);
2181 } else {
2182 LatticeVal LV = cmpInstToLattice(O.Op);
2183
2184 if ((LV & EQ_BIT) &&
2185 isRelatedBy(O.LHS, O.RHS, ICmpInst::getSwappedPredicate(O.Op))) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002186 if (!makeEqual(O.RHS, O.LHS))
Nick Lewycky419c6f52007-01-11 02:32:38 +00002187 UB.mark(TopBB);
2188 } else {
2189 if (isRelatedBy(O.LHS, O.RHS, ICmpInst::getInversePredicate(O.Op))){
Nick Lewycky45351752007-02-04 23:43:05 +00002190 UB.mark(TopBB);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002191 WorkList.pop_front();
2192 continue;
2193 }
2194
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002195 unsigned n1 = VN.getOrInsertVN(O.LHS, Top);
2196 unsigned n2 = VN.getOrInsertVN(O.RHS, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002197
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002198 if (n1 == n2) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002199 if (O.Op != ICmpInst::ICMP_UGE && O.Op != ICmpInst::ICMP_ULE &&
2200 O.Op != ICmpInst::ICMP_SGE && O.Op != ICmpInst::ICMP_SLE)
2201 UB.mark(TopBB);
2202
2203 WorkList.pop_front();
2204 continue;
2205 }
2206
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002207 if (VR.isRelatedBy(n1, n2, Top, LV) ||
2208 IG.isRelatedBy(n1, n2, Top, LV)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002209 WorkList.pop_front();
2210 continue;
2211 }
2212
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002213 VR.addInequality(n1, n2, Top, LV, this);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002214 if ((!isa<ConstantInt>(O.RHS) && !isa<ConstantInt>(O.LHS)) ||
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002215 LV == NE)
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002216 IG.addInequality(n1, n2, Top, LV);
Nick Lewycky45351752007-02-04 23:43:05 +00002217
Nick Lewyckydd402582007-01-15 14:30:07 +00002218 if (Instruction *I1 = dyn_cast<Instruction>(O.LHS)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002219 if (aboveOrBelow(I1))
Nick Lewyckydd402582007-01-15 14:30:07 +00002220 defToOps(I1);
2221 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002222 if (isa<Instruction>(O.LHS) || isa<Argument>(O.LHS)) {
2223 for (Value::use_iterator UI = O.LHS->use_begin(),
2224 UE = O.LHS->use_end(); UI != UE;) {
2225 Use &TheUse = UI.getUse();
2226 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00002227 Instruction *I = cast<Instruction>(TheUse.getUser());
2228 if (aboveOrBelow(I))
2229 opsToDef(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002230 }
2231 }
Nick Lewyckydd402582007-01-15 14:30:07 +00002232 if (Instruction *I2 = dyn_cast<Instruction>(O.RHS)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002233 if (aboveOrBelow(I2))
Nick Lewyckydd402582007-01-15 14:30:07 +00002234 defToOps(I2);
2235 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002236 if (isa<Instruction>(O.RHS) || isa<Argument>(O.RHS)) {
2237 for (Value::use_iterator UI = O.RHS->use_begin(),
2238 UE = O.RHS->use_end(); UI != UE;) {
2239 Use &TheUse = UI.getUse();
2240 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00002241 Instruction *I = cast<Instruction>(TheUse.getUser());
2242 if (aboveOrBelow(I))
2243 opsToDef(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002244 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002245 }
2246 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002247 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002248 WorkList.pop_front();
Nick Lewyckye63bf952006-10-25 23:48:24 +00002249 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002250 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002251 };
2252
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00002253 void ValueRanges::addToWorklist(Value *V, Constant *C,
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002254 ICmpInst::Predicate Pred, VRPSolver *VRP) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00002255 VRP->add(V, C, Pred, VRP->TopInst);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002256 }
2257
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002258 void ValueRanges::markBlock(VRPSolver *VRP) {
2259 VRP->UB.mark(VRP->TopBB);
2260 }
2261
Nick Lewycky05450ae2006-08-28 22:44:55 +00002262 /// PredicateSimplifier - This class is a simplifier that replaces
2263 /// one equivalent variable with another. It also tracks what
2264 /// can't be equal and will solve setcc instructions when possible.
Nick Lewycky565706b2006-11-22 23:49:16 +00002265 /// @brief Root of the predicate simplifier optimization.
2266 class VISIBILITY_HIDDEN PredicateSimplifier : public FunctionPass {
Nick Lewycky984504b2007-06-24 04:36:20 +00002267 DomTreeDFS *DTDFS;
Nick Lewycky565706b2006-11-22 23:49:16 +00002268 bool modified;
Nick Lewycky29a05b62007-07-05 03:15:00 +00002269 ValueNumbering *VN;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002270 InequalityGraph *IG;
2271 UnreachableBlocks UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002272 ValueRanges *VR;
Nick Lewycky565706b2006-11-22 23:49:16 +00002273
Nick Lewycky984504b2007-06-24 04:36:20 +00002274 std::vector<DomTreeDFS::Node *> WorkList;
Nick Lewycky565706b2006-11-22 23:49:16 +00002275
Owen Andersone922c022009-07-22 00:24:57 +00002276 LLVMContext *Context;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002277 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +00002278 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +00002279 PredicateSimplifier() : FunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +00002280
Nick Lewycky05450ae2006-08-28 22:44:55 +00002281 bool runOnFunction(Function &F);
Nick Lewycky565706b2006-11-22 23:49:16 +00002282
2283 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
2284 AU.addRequiredID(BreakCriticalEdgesID);
Owen Andersonab0e4d32007-04-25 04:18:54 +00002285 AU.addRequired<DominatorTree>();
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002286 AU.addRequired<TargetData>();
2287 AU.addPreserved<TargetData>();
Nick Lewycky565706b2006-11-22 23:49:16 +00002288 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002289
2290 private:
Nick Lewycky5380e942007-07-16 02:58:37 +00002291 /// Forwards - Adds new properties to VRPSolver and uses them to
Nick Lewycky078ff412006-10-12 02:02:44 +00002292 /// simplify instructions. Because new properties sometimes apply to
2293 /// a transition from one BasicBlock to another, this will use the
2294 /// PredicateSimplifier::proceedToSuccessor(s) interface to enter the
Nick Lewycky5380e942007-07-16 02:58:37 +00002295 /// basic block.
Nick Lewycky565706b2006-11-22 23:49:16 +00002296 /// @brief Performs abstract execution of the program.
2297 class VISIBILITY_HIDDEN Forwards : public InstVisitor<Forwards> {
Nick Lewycky078ff412006-10-12 02:02:44 +00002298 friend class InstVisitor<Forwards>;
2299 PredicateSimplifier *PS;
Nick Lewycky984504b2007-06-24 04:36:20 +00002300 DomTreeDFS::Node *DTNode;
Nick Lewycky565706b2006-11-22 23:49:16 +00002301
Nick Lewycky078ff412006-10-12 02:02:44 +00002302 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +00002303 ValueNumbering &VN;
Nick Lewycky565706b2006-11-22 23:49:16 +00002304 InequalityGraph &IG;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002305 UnreachableBlocks &UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002306 ValueRanges &VR;
Nick Lewycky078ff412006-10-12 02:02:44 +00002307
Nick Lewycky984504b2007-06-24 04:36:20 +00002308 Forwards(PredicateSimplifier *PS, DomTreeDFS::Node *DTNode)
Nick Lewycky29a05b62007-07-05 03:15:00 +00002309 : PS(PS), DTNode(DTNode), VN(*PS->VN), IG(*PS->IG), UB(PS->UB),
2310 VR(*PS->VR) {}
Nick Lewycky078ff412006-10-12 02:02:44 +00002311
2312 void visitTerminatorInst(TerminatorInst &TI);
2313 void visitBranchInst(BranchInst &BI);
2314 void visitSwitchInst(SwitchInst &SI);
2315
Nick Lewycky802fe272006-10-22 19:53:27 +00002316 void visitAllocaInst(AllocaInst &AI);
Nick Lewycky078ff412006-10-12 02:02:44 +00002317 void visitLoadInst(LoadInst &LI);
2318 void visitStoreInst(StoreInst &SI);
Nick Lewycky565706b2006-11-22 23:49:16 +00002319
Nick Lewycky45351752007-02-04 23:43:05 +00002320 void visitSExtInst(SExtInst &SI);
2321 void visitZExtInst(ZExtInst &ZI);
2322
Nick Lewycky078ff412006-10-12 02:02:44 +00002323 void visitBinaryOperator(BinaryOperator &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002324 void visitICmpInst(ICmpInst &IC);
Nick Lewycky078ff412006-10-12 02:02:44 +00002325 };
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002326
Nick Lewycky05450ae2006-08-28 22:44:55 +00002327 // Used by terminator instructions to proceed from the current basic
2328 // block to the next. Verifies that "current" dominates "next",
2329 // then calls visitBasicBlock.
Nick Lewycky984504b2007-06-24 04:36:20 +00002330 void proceedToSuccessors(DomTreeDFS::Node *Current) {
2331 for (DomTreeDFS::Node::iterator I = Current->begin(),
Owen Andersonab0e4d32007-04-25 04:18:54 +00002332 E = Current->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002333 WorkList.push_back(*I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002334 }
2335 }
2336
Nick Lewycky984504b2007-06-24 04:36:20 +00002337 void proceedToSuccessor(DomTreeDFS::Node *Next) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002338 WorkList.push_back(Next);
Nick Lewycky565706b2006-11-22 23:49:16 +00002339 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002340
2341 // Visits each instruction in the basic block.
Nick Lewycky984504b2007-06-24 04:36:20 +00002342 void visitBasicBlock(DomTreeDFS::Node *Node) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002343 BasicBlock *BB = Node->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002344 DEBUG(errs() << "Entering Basic Block: " << BB->getName()
2345 << " (" << Node->getDFSNumIn() << ")\n");
Bill Wendling832171c2006-12-07 20:04:42 +00002346 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002347 visitInstruction(I++, Node);
Nick Lewycky565706b2006-11-22 23:49:16 +00002348 }
2349 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002350
Nick Lewycky5380e942007-07-16 02:58:37 +00002351 // Tries to simplify each Instruction and add new properties.
Nick Lewycky984504b2007-06-24 04:36:20 +00002352 void visitInstruction(Instruction *I, DomTreeDFS::Node *DT) {
Bill Wendling832171c2006-12-07 20:04:42 +00002353 DOUT << "Considering instruction " << *I << "\n";
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002354 DEBUG(VN->dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002355 DEBUG(IG->dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002356 DEBUG(VR->dump());
Nick Lewycky05450ae2006-08-28 22:44:55 +00002357
Nick Lewycky419c6f52007-01-11 02:32:38 +00002358 // Sometimes instructions are killed in earlier analysis.
Nick Lewycky565706b2006-11-22 23:49:16 +00002359 if (isInstructionTriviallyDead(I)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002360 ++NumSimple;
2361 modified = true;
Nick Lewycky29a05b62007-07-05 03:15:00 +00002362 if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode()))
2363 if (VN->value(n) == I) IG->remove(n);
2364 VN->remove(I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002365 I->eraseFromParent();
2366 return;
2367 }
2368
Nick Lewycky0be7f472007-01-13 02:05:28 +00002369#ifndef NDEBUG
Nick Lewycky565706b2006-11-22 23:49:16 +00002370 // Try to replace the whole instruction.
Nick Lewycky29a05b62007-07-05 03:15:00 +00002371 Value *V = VN->canonicalize(I, DT);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002372 assert(V == I && "Late instruction canonicalization.");
Nick Lewycky565706b2006-11-22 23:49:16 +00002373 if (V != I) {
2374 modified = true;
2375 ++NumInstruction;
Bill Wendling832171c2006-12-07 20:04:42 +00002376 DOUT << "Removing " << *I << ", replacing with " << *V << "\n";
Nick Lewycky29a05b62007-07-05 03:15:00 +00002377 if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode()))
2378 if (VN->value(n) == I) IG->remove(n);
2379 VN->remove(I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002380 I->replaceAllUsesWith(V);
2381 I->eraseFromParent();
2382 return;
2383 }
2384
2385 // Try to substitute operands.
2386 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
2387 Value *Oper = I->getOperand(i);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002388 Value *V = VN->canonicalize(Oper, DT);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002389 assert(V == Oper && "Late operand canonicalization.");
Nick Lewycky565706b2006-11-22 23:49:16 +00002390 if (V != Oper) {
2391 modified = true;
2392 ++NumVarsReplaced;
Bill Wendling832171c2006-12-07 20:04:42 +00002393 DOUT << "Resolving " << *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00002394 I->setOperand(i, V);
Bill Wendling832171c2006-12-07 20:04:42 +00002395 DOUT << " into " << *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00002396 }
2397 }
Nick Lewycky0be7f472007-01-13 02:05:28 +00002398#endif
Nick Lewycky565706b2006-11-22 23:49:16 +00002399
Nick Lewycky4c708752007-03-16 02:37:39 +00002400 std::string name = I->getParent()->getName();
2401 DOUT << "push (%" << name << ")\n";
Owen Andersonab0e4d32007-04-25 04:18:54 +00002402 Forwards visit(this, DT);
Nick Lewycky565706b2006-11-22 23:49:16 +00002403 visit.visit(*I);
Nick Lewycky4c708752007-03-16 02:37:39 +00002404 DOUT << "pop (%" << name << ")\n";
Nick Lewycky565706b2006-11-22 23:49:16 +00002405 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002406 };
2407
Nick Lewycky565706b2006-11-22 23:49:16 +00002408 bool PredicateSimplifier::runOnFunction(Function &F) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002409 DominatorTree *DT = &getAnalysis<DominatorTree>();
2410 DTDFS = new DomTreeDFS(DT);
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002411 TargetData *TD = &getAnalysis<TargetData>();
Owen Andersone922c022009-07-22 00:24:57 +00002412 Context = &F.getContext();
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002413
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002414 DEBUG(errs() << "Entering Function: " << F.getName() << "\n");
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002415
Nick Lewycky565706b2006-11-22 23:49:16 +00002416 modified = false;
Nick Lewycky984504b2007-06-24 04:36:20 +00002417 DomTreeDFS::Node *Root = DTDFS->getRootNode();
Nick Lewycky29a05b62007-07-05 03:15:00 +00002418 VN = new ValueNumbering(DTDFS);
2419 IG = new InequalityGraph(*VN, Root);
Owen Anderson001dbfe2009-07-16 18:04:31 +00002420 VR = new ValueRanges(*VN, TD, Context);
Nick Lewycky984504b2007-06-24 04:36:20 +00002421 WorkList.push_back(Root);
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002422
Nick Lewycky565706b2006-11-22 23:49:16 +00002423 do {
Nick Lewycky984504b2007-06-24 04:36:20 +00002424 DomTreeDFS::Node *DTNode = WorkList.back();
Nick Lewycky565706b2006-11-22 23:49:16 +00002425 WorkList.pop_back();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002426 if (!UB.isDead(DTNode->getBlock())) visitBasicBlock(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002427 } while (!WorkList.empty());
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002428
Nick Lewycky984504b2007-06-24 04:36:20 +00002429 delete DTDFS;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002430 delete VR;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002431 delete IG;
Nuno Lopesea736ce2008-11-09 12:45:23 +00002432 delete VN;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002433
2434 modified |= UB.kill();
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002435
Nick Lewycky565706b2006-11-22 23:49:16 +00002436 return modified;
Nick Lewyckya3a68bd2006-09-02 19:40:38 +00002437 }
2438
Nick Lewycky565706b2006-11-22 23:49:16 +00002439 void PredicateSimplifier::Forwards::visitTerminatorInst(TerminatorInst &TI) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002440 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002441 }
2442
2443 void PredicateSimplifier::Forwards::visitBranchInst(BranchInst &BI) {
Nick Lewycky565706b2006-11-22 23:49:16 +00002444 if (BI.isUnconditional()) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002445 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002446 return;
2447 }
2448
2449 Value *Condition = BI.getCondition();
Nick Lewycky419c6f52007-01-11 02:32:38 +00002450 BasicBlock *TrueDest = BI.getSuccessor(0);
2451 BasicBlock *FalseDest = BI.getSuccessor(1);
Nick Lewycky565706b2006-11-22 23:49:16 +00002452
Nick Lewycky419c6f52007-01-11 02:32:38 +00002453 if (isa<Constant>(Condition) || TrueDest == FalseDest) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002454 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002455 return;
2456 }
2457
Owen Andersone922c022009-07-22 00:24:57 +00002458 LLVMContext *Context = &BI.getContext();
Owen Andersonf53c3712009-07-21 02:47:59 +00002459
Nick Lewycky984504b2007-06-24 04:36:20 +00002460 for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002461 I != E; ++I) {
2462 BasicBlock *Dest = (*I)->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002463 DEBUG(errs() << "Branch thinking about %" << Dest->getName()
2464 << "(" << PS->DTDFS->getNodeForBlock(Dest)->getDFSNumIn() << ")\n");
Nick Lewycky565706b2006-11-22 23:49:16 +00002465
2466 if (Dest == TrueDest) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002467 DEBUG(errs() << "(" << DTNode->getBlock()->getName()
2468 << ") true set:\n");
Nick Lewycky29a05b62007-07-05 03:15:00 +00002469 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest);
Owen Andersonb3056fa2009-07-21 18:03:38 +00002470 VRP.add(Context->getTrue(), Condition, ICmpInst::ICMP_EQ);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002471 VRP.solve();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002472 DEBUG(VN.dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002473 DEBUG(IG.dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002474 DEBUG(VR.dump());
Nick Lewycky565706b2006-11-22 23:49:16 +00002475 } else if (Dest == FalseDest) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002476 DEBUG(errs() << "(" << DTNode->getBlock()->getName()
2477 << ") false set:\n");
Nick Lewycky29a05b62007-07-05 03:15:00 +00002478 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest);
Owen Andersonb3056fa2009-07-21 18:03:38 +00002479 VRP.add(Context->getFalse(), Condition, ICmpInst::ICMP_EQ);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002480 VRP.solve();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002481 DEBUG(VN.dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002482 DEBUG(IG.dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002483 DEBUG(VR.dump());
Nick Lewycky565706b2006-11-22 23:49:16 +00002484 }
2485
Nick Lewycky419c6f52007-01-11 02:32:38 +00002486 PS->proceedToSuccessor(*I);
Nick Lewycky05450ae2006-08-28 22:44:55 +00002487 }
2488 }
2489
Nick Lewycky565706b2006-11-22 23:49:16 +00002490 void PredicateSimplifier::Forwards::visitSwitchInst(SwitchInst &SI) {
2491 Value *Condition = SI.getCondition();
Nick Lewycky05450ae2006-08-28 22:44:55 +00002492
Nick Lewycky565706b2006-11-22 23:49:16 +00002493 // Set the EQProperty in each of the cases BBs, and the NEProperties
2494 // in the default BB.
Owen Andersonab0e4d32007-04-25 04:18:54 +00002495
Nick Lewycky984504b2007-06-24 04:36:20 +00002496 for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002497 I != E; ++I) {
2498 BasicBlock *BB = (*I)->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002499 DEBUG(errs() << "Switch thinking about BB %" << BB->getName()
2500 << "(" << PS->DTDFS->getNodeForBlock(BB)->getDFSNumIn() << ")\n");
Nick Lewycky05450ae2006-08-28 22:44:55 +00002501
Nick Lewycky29a05b62007-07-05 03:15:00 +00002502 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, BB);
Nick Lewycky565706b2006-11-22 23:49:16 +00002503 if (BB == SI.getDefaultDest()) {
2504 for (unsigned i = 1, e = SI.getNumCases(); i < e; ++i)
2505 if (SI.getSuccessor(i) != BB)
Nick Lewycky419c6f52007-01-11 02:32:38 +00002506 VRP.add(Condition, SI.getCaseValue(i), ICmpInst::ICMP_NE);
2507 VRP.solve();
Nick Lewycky565706b2006-11-22 23:49:16 +00002508 } else if (ConstantInt *CI = SI.findCaseDest(BB)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002509 VRP.add(Condition, CI, ICmpInst::ICMP_EQ);
2510 VRP.solve();
Nick Lewycky565706b2006-11-22 23:49:16 +00002511 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002512 PS->proceedToSuccessor(*I);
Nick Lewyckya73a6542006-10-03 15:19:11 +00002513 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002514 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002515
Nick Lewycky565706b2006-11-22 23:49:16 +00002516 void PredicateSimplifier::Forwards::visitAllocaInst(AllocaInst &AI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002517 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &AI);
Owen Andersone922c022009-07-22 00:24:57 +00002518 VRP.add(AI.getContext().getNullValue(AI.getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002519 &AI, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002520 VRP.solve();
2521 }
Nick Lewycky802fe272006-10-22 19:53:27 +00002522
Nick Lewycky565706b2006-11-22 23:49:16 +00002523 void PredicateSimplifier::Forwards::visitLoadInst(LoadInst &LI) {
2524 Value *Ptr = LI.getPointerOperand();
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002525 // avoid "load i8* null" -> null NE null.
Nick Lewycky565706b2006-11-22 23:49:16 +00002526 if (isa<Constant>(Ptr)) return;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002527
Nick Lewycky29a05b62007-07-05 03:15:00 +00002528 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &LI);
Owen Andersone922c022009-07-22 00:24:57 +00002529 VRP.add(LI.getContext().getNullValue(Ptr->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002530 Ptr, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002531 VRP.solve();
2532 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002533
Nick Lewycky565706b2006-11-22 23:49:16 +00002534 void PredicateSimplifier::Forwards::visitStoreInst(StoreInst &SI) {
2535 Value *Ptr = SI.getPointerOperand();
2536 if (isa<Constant>(Ptr)) return;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002537
Nick Lewycky29a05b62007-07-05 03:15:00 +00002538 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI);
Owen Andersone922c022009-07-22 00:24:57 +00002539 VRP.add(SI.getContext().getNullValue(Ptr->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002540 Ptr, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002541 VRP.solve();
2542 }
2543
Nick Lewycky45351752007-02-04 23:43:05 +00002544 void PredicateSimplifier::Forwards::visitSExtInst(SExtInst &SI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002545 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI);
Owen Andersoneed707b2009-07-24 23:12:02 +00002546 LLVMContext &Context = SI.getContext();
Reid Spenceraf3e9462007-03-03 00:48:31 +00002547 uint32_t SrcBitWidth = cast<IntegerType>(SI.getSrcTy())->getBitWidth();
2548 uint32_t DstBitWidth = cast<IntegerType>(SI.getDestTy())->getBitWidth();
Zhou Sheng223d65b2007-04-19 05:35:00 +00002549 APInt Min(APInt::getHighBitsSet(DstBitWidth, DstBitWidth-SrcBitWidth+1));
2550 APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth-1));
Owen Andersoneed707b2009-07-24 23:12:02 +00002551 VRP.add(ConstantInt::get(Context, Min), &SI, ICmpInst::ICMP_SLE);
2552 VRP.add(ConstantInt::get(Context, Max), &SI, ICmpInst::ICMP_SGE);
Nick Lewycky45351752007-02-04 23:43:05 +00002553 VRP.solve();
2554 }
2555
2556 void PredicateSimplifier::Forwards::visitZExtInst(ZExtInst &ZI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002557 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &ZI);
Owen Andersoneed707b2009-07-24 23:12:02 +00002558 LLVMContext &Context = ZI.getContext();
Reid Spenceraf3e9462007-03-03 00:48:31 +00002559 uint32_t SrcBitWidth = cast<IntegerType>(ZI.getSrcTy())->getBitWidth();
2560 uint32_t DstBitWidth = cast<IntegerType>(ZI.getDestTy())->getBitWidth();
Zhou Sheng223d65b2007-04-19 05:35:00 +00002561 APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth));
Owen Andersoneed707b2009-07-24 23:12:02 +00002562 VRP.add(ConstantInt::get(Context, Max), &ZI, ICmpInst::ICMP_UGE);
Nick Lewycky45351752007-02-04 23:43:05 +00002563 VRP.solve();
2564 }
2565
Nick Lewycky565706b2006-11-22 23:49:16 +00002566 void PredicateSimplifier::Forwards::visitBinaryOperator(BinaryOperator &BO) {
2567 Instruction::BinaryOps ops = BO.getOpcode();
2568
2569 switch (ops) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002570 default: break;
Nick Lewycky45351752007-02-04 23:43:05 +00002571 case Instruction::URem:
2572 case Instruction::SRem:
2573 case Instruction::UDiv:
2574 case Instruction::SDiv: {
2575 Value *Divisor = BO.getOperand(1);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002576 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Owen Andersone922c022009-07-22 00:24:57 +00002577 VRP.add(BO.getContext().getNullValue(Divisor->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002578 Divisor, ICmpInst::ICMP_NE);
Nick Lewycky45351752007-02-04 23:43:05 +00002579 VRP.solve();
2580 break;
2581 }
Nick Lewycky4c708752007-03-16 02:37:39 +00002582 }
2583
2584 switch (ops) {
2585 default: break;
2586 case Instruction::Shl: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002587 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002588 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE);
2589 VRP.solve();
2590 } break;
2591 case Instruction::AShr: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002592 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002593 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_SLE);
2594 VRP.solve();
2595 } break;
2596 case Instruction::LShr:
2597 case Instruction::UDiv: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002598 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002599 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE);
2600 VRP.solve();
2601 } break;
2602 case Instruction::URem: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002603 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002604 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE);
2605 VRP.solve();
2606 } break;
2607 case Instruction::And: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002608 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002609 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE);
2610 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE);
2611 VRP.solve();
2612 } break;
2613 case Instruction::Or: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002614 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002615 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE);
2616 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_UGE);
2617 VRP.solve();
2618 } break;
2619 }
2620 }
2621
2622 void PredicateSimplifier::Forwards::visitICmpInst(ICmpInst &IC) {
2623 // If possible, squeeze the ICmp predicate into something simpler.
2624 // Eg., if x = [0, 4) and we're being asked icmp uge %x, 3 then change
2625 // the predicate to eq.
2626
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002627 // XXX: once we do full PHI handling, modifying the instruction in the
2628 // Forwards visitor will cause missed optimizations.
2629
Nick Lewycky4c708752007-03-16 02:37:39 +00002630 ICmpInst::Predicate Pred = IC.getPredicate();
2631
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002632 switch (Pred) {
2633 default: break;
2634 case ICmpInst::ICMP_ULE: Pred = ICmpInst::ICMP_ULT; break;
2635 case ICmpInst::ICMP_UGE: Pred = ICmpInst::ICMP_UGT; break;
2636 case ICmpInst::ICMP_SLE: Pred = ICmpInst::ICMP_SLT; break;
2637 case ICmpInst::ICMP_SGE: Pred = ICmpInst::ICMP_SGT; break;
2638 }
2639 if (Pred != IC.getPredicate()) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002640 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC);
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002641 if (VRP.isRelatedBy(IC.getOperand(1), IC.getOperand(0),
2642 ICmpInst::ICMP_NE)) {
2643 ++NumSnuggle;
2644 PS->modified = true;
2645 IC.setPredicate(Pred);
2646 }
2647 }
2648
2649 Pred = IC.getPredicate();
2650
Owen Andersoneed707b2009-07-24 23:12:02 +00002651 LLVMContext &Context = IC.getContext();
Owen Anderson001dbfe2009-07-16 18:04:31 +00002652
Nick Lewycky4c708752007-03-16 02:37:39 +00002653 if (ConstantInt *Op1 = dyn_cast<ConstantInt>(IC.getOperand(1))) {
2654 ConstantInt *NextVal = 0;
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002655 switch (Pred) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002656 default: break;
2657 case ICmpInst::ICMP_SLT:
2658 case ICmpInst::ICMP_ULT:
2659 if (Op1->getValue() != 0)
Owen Andersoneed707b2009-07-24 23:12:02 +00002660 NextVal = ConstantInt::get(Context, Op1->getValue()-1);
Nick Lewycky4c708752007-03-16 02:37:39 +00002661 break;
2662 case ICmpInst::ICMP_SGT:
2663 case ICmpInst::ICMP_UGT:
2664 if (!Op1->getValue().isAllOnesValue())
Owen Andersoneed707b2009-07-24 23:12:02 +00002665 NextVal = ConstantInt::get(Context, Op1->getValue()+1);
Nick Lewycky4c708752007-03-16 02:37:39 +00002666 break;
Nick Lewycky4c708752007-03-16 02:37:39 +00002667 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002668
Nick Lewycky4c708752007-03-16 02:37:39 +00002669 if (NextVal) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002670 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC);
Nick Lewycky4c708752007-03-16 02:37:39 +00002671 if (VRP.isRelatedBy(IC.getOperand(0), NextVal,
2672 ICmpInst::getInversePredicate(Pred))) {
Owen Anderson333c4002009-07-09 23:48:35 +00002673 ICmpInst *NewIC = new ICmpInst(&IC, ICmpInst::ICMP_EQ,
2674 IC.getOperand(0), NextVal, "");
Nick Lewycky4c708752007-03-16 02:37:39 +00002675 NewIC->takeName(&IC);
2676 IC.replaceAllUsesWith(NewIC);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002677
2678 // XXX: prove this isn't necessary
2679 if (unsigned n = VN.valueNumber(&IC, PS->DTDFS->getRootNode()))
2680 if (VN.value(n) == &IC) IG.remove(n);
2681 VN.remove(&IC);
2682
Nick Lewycky4c708752007-03-16 02:37:39 +00002683 IC.eraseFromParent();
2684 ++NumSnuggle;
2685 PS->modified = true;
Nick Lewycky4c708752007-03-16 02:37:39 +00002686 }
2687 }
2688 }
Nick Lewycky3947a762006-08-30 02:46:48 +00002689 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002690}
2691
Dan Gohman844731a2008-05-13 00:00:25 +00002692char PredicateSimplifier::ID = 0;
2693static RegisterPass<PredicateSimplifier>
2694X("predsimplify", "Predicate Simplifier");
2695
Nick Lewycky565706b2006-11-22 23:49:16 +00002696FunctionPass *llvm::createPredicateSimplifierPass() {
2697 return new PredicateSimplifier();
Nick Lewycky05450ae2006-08-28 22:44:55 +00002698}