blob: 4bcc339464a5f6063fa1e353faeef51a0e814719 [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) {
Owen Anderson1d0be152009-08-13 21:58:54 +0000472 if (!(isa<Constant>(V) || isa<Argument>(V) || isa<Instruction>(V)) ||
473 V->getType() == Type::getVoidTy(V->getContext())) return 0;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000474
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.");
Owen Anderson1d0be152009-08-13 21:58:54 +0000499 assert(V->getType() != Type::getVoidTy(V->getContext()) &&
500 "Won't value number a void value");
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000501
Nick Lewycky29a05b62007-07-05 03:15:00 +0000502 Values.push_back(V);
503
504 VNPair pair = VNPair(V, Values.size(), DTDFS->getRootNode());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000505 VNMapType::iterator I = std::lower_bound(VNMap.begin(), VNMap.end(), pair);
506 assert((I == VNMap.end() || value(I->index) != V) &&
Nick Lewycky29a05b62007-07-05 03:15:00 +0000507 "Attempt to create a duplicate value number.");
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000508 VNMap.insert(I, pair);
Nick Lewycky29a05b62007-07-05 03:15:00 +0000509
510 return Values.size();
511 }
512
513 /// value - returns the Value associated with a value number.
514 Value *value(unsigned index) const {
515 assert(index != 0 && "Zero index is reserved for not found.");
516 assert(index <= Values.size() && "Index out of range.");
517 return Values[index-1];
518 }
519
520 /// canonicalize - return a Value that is equal to V under Subtree.
521 Value *canonicalize(Value *V, DomTreeDFS::Node *Subtree) {
522 if (isa<Constant>(V)) return V;
523
524 if (unsigned n = valueNumber(V, Subtree))
525 return value(n);
526 else
527 return V;
528 }
529
530 /// addEquality - adds that value V belongs to the set of equivalent
531 /// values defined by value number n under Subtree.
532 void addEquality(unsigned n, Value *V, DomTreeDFS::Node *Subtree) {
533 assert(canonicalize(value(n), Subtree) == value(n) &&
534 "Node's 'canonical' choice isn't best within this subtree.");
535
536 // Suppose that we are given "%x -> node #1 (%y)". The problem is that
537 // we may already have "%z -> node #2 (%x)" somewhere above us in the
538 // graph. We need to find those edges and add "%z -> node #1 (%y)"
539 // to keep the lookups canonical.
540
541 std::vector<Value *> ToRepoint(1, V);
542
543 if (unsigned Conflict = valueNumber(V, Subtree)) {
544 for (VNMapType::iterator I = VNMap.begin(), E = VNMap.end();
545 I != E; ++I) {
546 if (I->index == Conflict && I->Subtree->dominates(Subtree))
547 ToRepoint.push_back(I->V);
548 }
549 }
550
551 for (std::vector<Value *>::iterator VI = ToRepoint.begin(),
552 VE = ToRepoint.end(); VI != VE; ++VI) {
553 Value *V = *VI;
554
555 VNPair pair(V, n, Subtree);
556 VNMapType::iterator B = VNMap.begin(), E = VNMap.end();
557 VNMapType::iterator I = std::lower_bound(B, E, pair);
558 if (I != E && I->V == V && I->Subtree == Subtree)
559 I->index = n; // Update best choice
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000560 else
Nick Lewycky29a05b62007-07-05 03:15:00 +0000561 VNMap.insert(I, pair); // New Value
562
563 // XXX: we currently don't have to worry about updating values with
564 // more specific Subtrees, but we will need to for PHI node support.
565
566#ifndef NDEBUG
567 Value *V_n = value(n);
568 if (isa<Constant>(V) && isa<Constant>(V_n)) {
569 assert(V == V_n && "Constant equals different constant?");
570 }
571#endif
572 }
573 }
574
575 /// remove - removes all references to value V.
576 void remove(Value *V) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000577 VNMapType::iterator B = VNMap.begin(), E = VNMap.end();
Nick Lewycky29a05b62007-07-05 03:15:00 +0000578 VNPair pair(V, 0, DTDFS->getRootNode());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000579 VNMapType::iterator J = std::upper_bound(B, E, pair);
Nick Lewycky29a05b62007-07-05 03:15:00 +0000580 VNMapType::iterator I = J;
581
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000582 while (I != B && (I == E || I->V == V)) --I;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000583
584 VNMap.erase(I, J);
585 }
586 };
587
Nick Lewycky565706b2006-11-22 23:49:16 +0000588 /// The InequalityGraph stores the relationships between values.
589 /// Each Value in the graph is assigned to a Node. Nodes are pointer
590 /// comparable for equality. The caller is expected to maintain the logical
591 /// consistency of the system.
592 ///
593 /// The InequalityGraph class may invalidate Node*s after any mutator call.
594 /// @brief The InequalityGraph stores the relationships between values.
595 class VISIBILITY_HIDDEN InequalityGraph {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000596 ValueNumbering &VN;
Nick Lewycky984504b2007-06-24 04:36:20 +0000597 DomTreeDFS::Node *TreeRoot;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000598
599 InequalityGraph(); // DO NOT IMPLEMENT
600 InequalityGraph(InequalityGraph &); // DO NOT IMPLEMENT
Nick Lewycky565706b2006-11-22 23:49:16 +0000601 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +0000602 InequalityGraph(ValueNumbering &VN, DomTreeDFS::Node *TreeRoot)
603 : VN(VN), TreeRoot(TreeRoot) {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000604
Nick Lewycky565706b2006-11-22 23:49:16 +0000605 class Node;
Nick Lewycky05450ae2006-08-28 22:44:55 +0000606
Nick Lewycky419c6f52007-01-11 02:32:38 +0000607 /// An Edge is contained inside a Node making one end of the edge implicit
608 /// and contains a pointer to the other end. The edge contains a lattice
Nick Lewycky984504b2007-06-24 04:36:20 +0000609 /// value specifying the relationship and an DomTreeDFS::Node specifying
610 /// the root in the dominator tree to which this edge applies.
Nick Lewycky419c6f52007-01-11 02:32:38 +0000611 class VISIBILITY_HIDDEN Edge {
612 public:
Nick Lewycky984504b2007-06-24 04:36:20 +0000613 Edge(unsigned T, LatticeVal V, DomTreeDFS::Node *ST)
Nick Lewycky419c6f52007-01-11 02:32:38 +0000614 : To(T), LV(V), Subtree(ST) {}
Nick Lewycky565706b2006-11-22 23:49:16 +0000615
Nick Lewycky419c6f52007-01-11 02:32:38 +0000616 unsigned To;
617 LatticeVal LV;
Nick Lewycky984504b2007-06-24 04:36:20 +0000618 DomTreeDFS::Node *Subtree;
Nick Lewycky565706b2006-11-22 23:49:16 +0000619
Nick Lewycky419c6f52007-01-11 02:32:38 +0000620 bool operator<(const Edge &edge) const {
621 if (To != edge.To) return To < edge.To;
Nick Lewycky29a05b62007-07-05 03:15:00 +0000622 return *Subtree < *edge.Subtree;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000623 }
Nick Lewycky984504b2007-06-24 04:36:20 +0000624
Nick Lewycky419c6f52007-01-11 02:32:38 +0000625 bool operator<(unsigned to) const {
626 return To < to;
627 }
Nick Lewycky984504b2007-06-24 04:36:20 +0000628
Bill Wendling851879c2007-06-04 23:52:59 +0000629 bool operator>(unsigned to) const {
630 return To > to;
631 }
632
633 friend bool operator<(unsigned to, const Edge &edge) {
634 return edge.operator>(to);
635 }
Nick Lewycky419c6f52007-01-11 02:32:38 +0000636 };
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000637
Nick Lewycky565706b2006-11-22 23:49:16 +0000638 /// A single node in the InequalityGraph. This stores the canonical Value
639 /// for the node, as well as the relationships with the neighbours.
640 ///
Nick Lewycky565706b2006-11-22 23:49:16 +0000641 /// @brief A single node in the InequalityGraph.
642 class VISIBILITY_HIDDEN Node {
643 friend class InequalityGraph;
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000644
Nick Lewycky419c6f52007-01-11 02:32:38 +0000645 typedef SmallVector<Edge, 4> RelationsType;
646 RelationsType Relations;
647
Nick Lewycky419c6f52007-01-11 02:32:38 +0000648 // TODO: can this idea improve performance?
649 //friend class std::vector<Node>;
650 //Node(Node &N) { RelationsType.swap(N.RelationsType); }
651
Nick Lewycky565706b2006-11-22 23:49:16 +0000652 public:
653 typedef RelationsType::iterator iterator;
654 typedef RelationsType::const_iterator const_iterator;
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000655
Nick Lewycky419c6f52007-01-11 02:32:38 +0000656#ifndef NDEBUG
Nick Lewyckybc00fec2007-01-11 02:38:21 +0000657 virtual ~Node() {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000658 virtual void dump() const {
659 dump(*cerr.stream());
660 }
661 private:
Nick Lewycky29a05b62007-07-05 03:15:00 +0000662 void dump(std::ostream &os) const {
663 static const std::string names[32] =
664 { "000000", "000001", "000002", "000003", "000004", "000005",
665 "000006", "000007", "000008", "000009", " >", " >=",
666 " s>u<", "s>=u<=", " s>", " s>=", "000016", "000017",
667 " s<u>", "s<=u>=", " <", " <=", " s<", " s<=",
668 "000024", "000025", " u>", " u>=", " u<", " u<=",
669 " !=", "000031" };
Nick Lewycky419c6f52007-01-11 02:32:38 +0000670 for (Node::const_iterator NI = begin(), NE = end(); NI != NE; ++NI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000671 os << names[NI->LV] << " " << NI->To
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000672 << " (" << NI->Subtree->getDFSNumIn() << "), ";
Nick Lewycky419c6f52007-01-11 02:32:38 +0000673 }
674 }
Nick Lewycky29a05b62007-07-05 03:15:00 +0000675 public:
Nick Lewycky419c6f52007-01-11 02:32:38 +0000676#endif
677
Nick Lewycky419c6f52007-01-11 02:32:38 +0000678 iterator begin() { return Relations.begin(); }
679 iterator end() { return Relations.end(); }
680 const_iterator begin() const { return Relations.begin(); }
681 const_iterator end() const { return Relations.end(); }
682
Nick Lewycky984504b2007-06-24 04:36:20 +0000683 iterator find(unsigned n, DomTreeDFS::Node *Subtree) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000684 iterator E = end();
685 for (iterator I = std::lower_bound(begin(), E, n);
686 I != E && I->To == n; ++I) {
687 if (Subtree->DominatedBy(I->Subtree))
688 return I;
689 }
690 return E;
691 }
692
Nick Lewycky984504b2007-06-24 04:36:20 +0000693 const_iterator find(unsigned n, DomTreeDFS::Node *Subtree) const {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000694 const_iterator E = end();
695 for (const_iterator I = std::lower_bound(begin(), E, n);
696 I != E && I->To == n; ++I) {
697 if (Subtree->DominatedBy(I->Subtree))
698 return I;
699 }
700 return E;
701 }
702
Nick Lewycky7956dae2007-08-04 18:45:32 +0000703 /// update - updates the lattice value for a given node, creating a new
704 /// entry if one doesn't exist. The new lattice value must not be
705 /// inconsistent with any previously existing value.
Nick Lewycky984504b2007-06-24 04:36:20 +0000706 void update(unsigned n, LatticeVal R, DomTreeDFS::Node *Subtree) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000707 assert(validPredicate(R) && "Invalid predicate.");
Nick Lewycky419c6f52007-01-11 02:32:38 +0000708
Nick Lewycky7956dae2007-08-04 18:45:32 +0000709 Edge edge(n, R, Subtree);
710 iterator B = begin(), E = end();
711 iterator I = std::lower_bound(B, E, edge);
Nick Lewyckydd402582007-01-15 14:30:07 +0000712
Nick Lewycky7956dae2007-08-04 18:45:32 +0000713 iterator J = I;
714 while (J != E && J->To == n) {
715 if (Subtree->DominatedBy(J->Subtree))
716 break;
717 ++J;
718 }
719
Nick Lewyckyc7212232007-08-18 23:18:03 +0000720 if (J != E && J->To == n) {
Nick Lewycky7956dae2007-08-04 18:45:32 +0000721 edge.LV = static_cast<LatticeVal>(J->LV & R);
722 assert(validPredicate(edge.LV) && "Invalid union of lattice values.");
Nick Lewycky7956dae2007-08-04 18:45:32 +0000723
Nick Lewyckyc7212232007-08-18 23:18:03 +0000724 if (edge.LV == J->LV)
725 return; // This update adds nothing new.
Bill Wendling587c01d2008-02-26 10:53:30 +0000726 }
Nick Lewyckyc7212232007-08-18 23:18:03 +0000727
728 if (I != B) {
729 // We also have to tighten any edge beneath our update.
730 for (iterator K = I - 1; K->To == n; --K) {
731 if (K->Subtree->DominatedBy(Subtree)) {
732 LatticeVal LV = static_cast<LatticeVal>(K->LV & edge.LV);
733 assert(validPredicate(LV) && "Invalid union of lattice values");
734 K->LV = LV;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000735 }
Nick Lewyckyc7212232007-08-18 23:18:03 +0000736 if (K == B) break;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000737 }
Bill Wendling587c01d2008-02-26 10:53:30 +0000738 }
Nick Lewycky7956dae2007-08-04 18:45:32 +0000739
740 // Insert new edge at Subtree if it isn't already there.
741 if (I == E || I->To != n || Subtree != I->Subtree)
742 Relations.insert(I, edge);
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000743 }
Nick Lewycky565706b2006-11-22 23:49:16 +0000744 };
745
Nick Lewycky565706b2006-11-22 23:49:16 +0000746 private:
Nick Lewycky419c6f52007-01-11 02:32:38 +0000747
748 std::vector<Node> Nodes;
749
Nick Lewycky565706b2006-11-22 23:49:16 +0000750 public:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000751 /// node - returns the node object at a given value number. The pointer
752 /// returned may be invalidated on the next call to node().
Nick Lewycky419c6f52007-01-11 02:32:38 +0000753 Node *node(unsigned index) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000754 assert(VN.value(index)); // This triggers the necessary checks.
755 if (Nodes.size() < index) Nodes.resize(index);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000756 return &Nodes[index-1];
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000757 }
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000758
Nick Lewycky419c6f52007-01-11 02:32:38 +0000759 /// isRelatedBy - true iff n1 op n2
Nick Lewycky984504b2007-06-24 04:36:20 +0000760 bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
761 LatticeVal LV) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000762 if (n1 == n2) return LV & EQ_BIT;
763
764 Node *N1 = node(n1);
765 Node::iterator I = N1->find(n2, Subtree), E = N1->end();
766 if (I != E) return (I->LV & LV) == I->LV;
767
Nick Lewycky406fc0c2006-09-20 17:04:01 +0000768 return false;
769 }
770
Nick Lewycky565706b2006-11-22 23:49:16 +0000771 // The add* methods assume that your input is logically valid and may
772 // assertion-fail or infinitely loop if you attempt a contradiction.
Nick Lewyckye63bf952006-10-25 23:48:24 +0000773
Nick Lewycky419c6f52007-01-11 02:32:38 +0000774 /// addInequality - Sets n1 op n2.
775 /// It is also an error to call this on an inequality that is already true.
Nick Lewycky984504b2007-06-24 04:36:20 +0000776 void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky419c6f52007-01-11 02:32:38 +0000777 LatticeVal LV1) {
778 assert(n1 != n2 && "A node can't be inequal to itself.");
779
780 if (LV1 != NE)
781 assert(!isRelatedBy(n1, n2, Subtree, reversePredicate(LV1)) &&
782 "Contradictory inequality.");
783
Nick Lewycky419c6f52007-01-11 02:32:38 +0000784 // Suppose we're adding %n1 < %n2. Find all the %a < %n1 and
785 // add %a < %n2 too. This keeps the graph fully connected.
786 if (LV1 != NE) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000787 // Break up the relationship into signed and unsigned comparison parts.
788 // If the signed parts of %a op1 %n1 match that of %n1 op2 %n2, and
789 // op1 and op2 aren't NE, then add %a op3 %n2. The new relationship
790 // should have the EQ_BIT iff it's set for both op1 and op2.
Nick Lewycky419c6f52007-01-11 02:32:38 +0000791
792 unsigned LV1_s = LV1 & (SLT_BIT|SGT_BIT);
793 unsigned LV1_u = LV1 & (ULT_BIT|UGT_BIT);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000794
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000795 for (Node::iterator I = node(n1)->begin(), E = node(n1)->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000796 if (I->LV != NE && I->To != n2) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +0000797
Nick Lewycky984504b2007-06-24 04:36:20 +0000798 DomTreeDFS::Node *Local_Subtree = NULL;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000799 if (Subtree->DominatedBy(I->Subtree))
800 Local_Subtree = Subtree;
801 else if (I->Subtree->DominatedBy(Subtree))
802 Local_Subtree = I->Subtree;
803
804 if (Local_Subtree) {
805 unsigned new_relationship = 0;
806 LatticeVal ILV = reversePredicate(I->LV);
807 unsigned ILV_s = ILV & (SLT_BIT|SGT_BIT);
808 unsigned ILV_u = ILV & (ULT_BIT|UGT_BIT);
809
810 if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s)
811 new_relationship |= ILV_s;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000812 if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u)
813 new_relationship |= ILV_u;
814
815 if (new_relationship) {
816 if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0)
817 new_relationship |= (SLT_BIT|SGT_BIT);
818 if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0)
819 new_relationship |= (ULT_BIT|UGT_BIT);
820 if ((LV1 & EQ_BIT) && (ILV & EQ_BIT))
821 new_relationship |= EQ_BIT;
822
823 LatticeVal NewLV = static_cast<LatticeVal>(new_relationship);
824
825 node(I->To)->update(n2, NewLV, Local_Subtree);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000826 node(n2)->update(I->To, reversePredicate(NewLV), Local_Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000827 }
828 }
829 }
830 }
831
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000832 for (Node::iterator I = node(n2)->begin(), E = node(n2)->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +0000833 if (I->LV != NE && I->To != n1) {
Nick Lewycky984504b2007-06-24 04:36:20 +0000834 DomTreeDFS::Node *Local_Subtree = NULL;
Nick Lewycky419c6f52007-01-11 02:32:38 +0000835 if (Subtree->DominatedBy(I->Subtree))
836 Local_Subtree = Subtree;
837 else if (I->Subtree->DominatedBy(Subtree))
838 Local_Subtree = I->Subtree;
839
840 if (Local_Subtree) {
841 unsigned new_relationship = 0;
842 unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT);
843 unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT);
844
845 if (LV1_s != (SLT_BIT|SGT_BIT) && ILV_s == LV1_s)
846 new_relationship |= ILV_s;
847
848 if (LV1_u != (ULT_BIT|UGT_BIT) && ILV_u == LV1_u)
849 new_relationship |= ILV_u;
850
851 if (new_relationship) {
852 if ((new_relationship & (SLT_BIT|SGT_BIT)) == 0)
853 new_relationship |= (SLT_BIT|SGT_BIT);
854 if ((new_relationship & (ULT_BIT|UGT_BIT)) == 0)
855 new_relationship |= (ULT_BIT|UGT_BIT);
856 if ((LV1 & EQ_BIT) && (I->LV & EQ_BIT))
857 new_relationship |= EQ_BIT;
858
859 LatticeVal NewLV = static_cast<LatticeVal>(new_relationship);
860
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000861 node(n1)->update(I->To, NewLV, Local_Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000862 node(I->To)->update(n1, reversePredicate(NewLV), Local_Subtree);
863 }
864 }
865 }
866 }
867 }
868
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000869 node(n1)->update(n2, LV1, Subtree);
870 node(n2)->update(n1, reversePredicate(LV1), Subtree);
Nick Lewycky419c6f52007-01-11 02:32:38 +0000871 }
Nick Lewycky977be252006-09-13 19:24:01 +0000872
Nick Lewycky29a05b62007-07-05 03:15:00 +0000873 /// remove - removes a node from the graph by removing all references to
874 /// and from it.
875 void remove(unsigned n) {
876 Node *N = node(n);
877 for (Node::iterator NI = N->begin(), NE = N->end(); NI != NE; ++NI) {
878 Node::iterator Iter = node(NI->To)->find(n, TreeRoot);
879 do {
880 node(NI->To)->Relations.erase(Iter);
881 Iter = node(NI->To)->find(n, TreeRoot);
882 } while (Iter != node(NI->To)->end());
Nick Lewyckydc08cd52006-09-10 02:27:07 +0000883 }
Nick Lewycky29a05b62007-07-05 03:15:00 +0000884 N->Relations.clear();
Nick Lewycky565706b2006-11-22 23:49:16 +0000885 }
Nick Lewycky05450ae2006-08-28 22:44:55 +0000886
Nick Lewycky565706b2006-11-22 23:49:16 +0000887#ifndef NDEBUG
Nick Lewyckybc00fec2007-01-11 02:38:21 +0000888 virtual ~InequalityGraph() {}
Nick Lewycky419c6f52007-01-11 02:32:38 +0000889 virtual void dump() {
890 dump(*cerr.stream());
891 }
892
893 void dump(std::ostream &os) {
Nick Lewycky29a05b62007-07-05 03:15:00 +0000894 for (unsigned i = 1; i <= Nodes.size(); ++i) {
895 os << i << " = {";
896 node(i)->dump(os);
897 os << "}\n";
Nick Lewycky565706b2006-11-22 23:49:16 +0000898 }
899 }
Nick Lewycky565706b2006-11-22 23:49:16 +0000900#endif
901 };
Nick Lewycky05450ae2006-08-28 22:44:55 +0000902
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000903 class VRPSolver;
904
905 /// ValueRanges tracks the known integer ranges and anti-ranges of the nodes
906 /// in the InequalityGraph.
907 class VISIBILITY_HIDDEN ValueRanges {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000908 ValueNumbering &VN;
909 TargetData *TD;
Owen Anderson001dbfe2009-07-16 18:04:31 +0000910 LLVMContext *Context;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000911
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000912 class VISIBILITY_HIDDEN ScopedRange {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000913 typedef std::vector<std::pair<DomTreeDFS::Node *, ConstantRange> >
914 RangeListType;
915 RangeListType RangeList;
916
917 static bool swo(const std::pair<DomTreeDFS::Node *, ConstantRange> &LHS,
918 const std::pair<DomTreeDFS::Node *, ConstantRange> &RHS) {
919 return *LHS.first < *RHS.first;
920 }
921
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000922 public:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000923#ifndef NDEBUG
924 virtual ~ScopedRange() {}
925 virtual void dump() const {
926 dump(*cerr.stream());
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000927 }
928
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000929 void dump(std::ostream &os) const {
930 os << "{";
931 for (const_iterator I = begin(), E = end(); I != E; ++I) {
Chris Lattner944fac72008-08-23 22:23:09 +0000932 os << &I->second << " (" << I->first->getDFSNumIn() << "), ";
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000933 }
934 os << "}";
935 }
936#endif
937
938 typedef RangeListType::iterator iterator;
939 typedef RangeListType::const_iterator const_iterator;
940
941 iterator begin() { return RangeList.begin(); }
942 iterator end() { return RangeList.end(); }
943 const_iterator begin() const { return RangeList.begin(); }
944 const_iterator end() const { return RangeList.end(); }
945
946 iterator find(DomTreeDFS::Node *Subtree) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000947 iterator E = end();
948 iterator I = std::lower_bound(begin(), E,
949 std::make_pair(Subtree, empty), swo);
950
951 while (I != E && !I->first->dominates(Subtree)) ++I;
952 return I;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000953 }
Bill Wendling851879c2007-06-04 23:52:59 +0000954
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000955 const_iterator find(DomTreeDFS::Node *Subtree) const {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000956 const_iterator E = end();
957 const_iterator I = std::lower_bound(begin(), E,
958 std::make_pair(Subtree, empty), swo);
959
960 while (I != E && !I->first->dominates(Subtree)) ++I;
961 return I;
Bill Wendling851879c2007-06-04 23:52:59 +0000962 }
963
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000964 void update(const ConstantRange &CR, DomTreeDFS::Node *Subtree) {
965 assert(!CR.isEmptySet() && "Empty ConstantRange.");
Nick Lewycky7956dae2007-08-04 18:45:32 +0000966 assert(!CR.isSingleElement() && "Refusing to store single element.");
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000967
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000968 iterator E = end();
969 iterator I =
970 std::lower_bound(begin(), E, std::make_pair(Subtree, empty), swo);
971
972 if (I != end() && I->first == Subtree) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +0000973 ConstantRange CR2 = I->second.intersectWith(CR);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000974 assert(!CR2.isEmptySet() && !CR2.isSingleElement() &&
975 "Invalid union of ranges.");
976 I->second = CR2;
977 } else
978 RangeList.insert(I, std::make_pair(Subtree, CR));
Bill Wendling851879c2007-06-04 23:52:59 +0000979 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000980 };
981
982 std::vector<ScopedRange> Ranges;
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000983
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000984 void update(unsigned n, const ConstantRange &CR, DomTreeDFS::Node *Subtree){
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000985 if (CR.isFullSet()) return;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000986 if (Ranges.size() < n) Ranges.resize(n);
987 Ranges[n-1].update(CR, Subtree);
Nick Lewyckye677a0b2007-03-10 18:12:48 +0000988 }
989
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000990 /// create - Creates a ConstantRange that matches the given LatticeVal
991 /// relation with a given integer.
992 ConstantRange create(LatticeVal LV, const ConstantRange &CR) {
993 assert(!CR.isEmptySet() && "Can't deal with empty set.");
994
995 if (LV == NE)
Nick Lewyckybf8c7f02009-07-11 06:15:39 +0000996 return ConstantRange::makeICmpRegion(ICmpInst::ICMP_NE, CR);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +0000997
998 unsigned LV_s = LV & (SGT_BIT|SLT_BIT);
999 unsigned LV_u = LV & (UGT_BIT|ULT_BIT);
1000 bool hasEQ = LV & EQ_BIT;
1001
1002 ConstantRange Range(CR.getBitWidth());
1003
1004 if (LV_s == SGT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001005 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001006 hasEQ ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_SGT, CR));
1007 } else if (LV_s == SLT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001008 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001009 hasEQ ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_SLT, CR));
1010 }
1011
1012 if (LV_u == UGT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001013 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001014 hasEQ ? ICmpInst::ICMP_UGE : ICmpInst::ICMP_UGT, CR));
1015 } else if (LV_u == ULT_BIT) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001016 Range = Range.intersectWith(ConstantRange::makeICmpRegion(
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001017 hasEQ ? ICmpInst::ICMP_ULE : ICmpInst::ICMP_ULT, CR));
1018 }
1019
1020 return Range;
1021 }
1022
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001023#ifndef NDEBUG
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001024 bool isCanonical(Value *V, DomTreeDFS::Node *Subtree) {
1025 return V == VN.canonicalize(V, Subtree);
1026 }
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001027#endif
1028
1029 public:
1030
Owen Anderson001dbfe2009-07-16 18:04:31 +00001031 ValueRanges(ValueNumbering &VN, TargetData *TD, LLVMContext *C) :
1032 VN(VN), TD(TD), Context(C) {}
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001033
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001034#ifndef NDEBUG
1035 virtual ~ValueRanges() {}
1036
1037 virtual void dump() const {
1038 dump(*cerr.stream());
1039 }
1040
1041 void dump(std::ostream &os) const {
1042 for (unsigned i = 0, e = Ranges.size(); i != e; ++i) {
1043 os << (i+1) << " = ";
1044 Ranges[i].dump(os);
1045 os << "\n";
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001046 }
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001047 }
1048#endif
1049
1050 /// range - looks up the ConstantRange associated with a value number.
1051 ConstantRange range(unsigned n, DomTreeDFS::Node *Subtree) {
1052 assert(VN.value(n)); // performs range checks
1053
1054 if (n <= Ranges.size()) {
1055 ScopedRange::iterator I = Ranges[n-1].find(Subtree);
1056 if (I != Ranges[n-1].end()) return I->second;
1057 }
1058
1059 Value *V = VN.value(n);
1060 ConstantRange CR = range(V);
1061 return CR;
1062 }
1063
1064 /// range - determine a range from a Value without performing any lookups.
1065 ConstantRange range(Value *V) const {
1066 if (ConstantInt *C = dyn_cast<ConstantInt>(V))
1067 return ConstantRange(C->getValue());
1068 else if (isa<ConstantPointerNull>(V))
1069 return ConstantRange(APInt::getNullValue(typeToWidth(V->getType())));
1070 else
Dan Gohmanb5660dc2008-02-20 16:44:09 +00001071 return ConstantRange(typeToWidth(V->getType()));
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001072 }
1073
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001074 // typeToWidth - returns the number of bits necessary to store a value of
1075 // this type, or zero if unknown.
1076 uint32_t typeToWidth(const Type *Ty) const {
1077 if (TD)
1078 return TD->getTypeSizeInBits(Ty);
Duncan Sands514ab342007-11-01 20:53:16 +00001079 else
1080 return Ty->getPrimitiveSizeInBits();
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001081 }
1082
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001083 static bool isRelatedBy(const ConstantRange &CR1, const ConstantRange &CR2,
1084 LatticeVal LV) {
Nick Lewycky4c708752007-03-16 02:37:39 +00001085 switch (LV) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001086 default: assert(!"Impossible lattice value!");
1087 case NE:
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001088 return CR1.intersectWith(CR2).isEmptySet();
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001089 case ULT:
1090 return CR1.getUnsignedMax().ult(CR2.getUnsignedMin());
1091 case ULE:
1092 return CR1.getUnsignedMax().ule(CR2.getUnsignedMin());
1093 case UGT:
1094 return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax());
1095 case UGE:
1096 return CR1.getUnsignedMin().uge(CR2.getUnsignedMax());
1097 case SLT:
1098 return CR1.getSignedMax().slt(CR2.getSignedMin());
1099 case SLE:
1100 return CR1.getSignedMax().sle(CR2.getSignedMin());
1101 case SGT:
1102 return CR1.getSignedMin().sgt(CR2.getSignedMax());
1103 case SGE:
1104 return CR1.getSignedMin().sge(CR2.getSignedMax());
1105 case LT:
1106 return CR1.getUnsignedMax().ult(CR2.getUnsignedMin()) &&
1107 CR1.getSignedMax().slt(CR2.getUnsignedMin());
1108 case LE:
1109 return CR1.getUnsignedMax().ule(CR2.getUnsignedMin()) &&
1110 CR1.getSignedMax().sle(CR2.getUnsignedMin());
1111 case GT:
1112 return CR1.getUnsignedMin().ugt(CR2.getUnsignedMax()) &&
1113 CR1.getSignedMin().sgt(CR2.getSignedMax());
1114 case GE:
1115 return CR1.getUnsignedMin().uge(CR2.getUnsignedMax()) &&
1116 CR1.getSignedMin().sge(CR2.getSignedMax());
1117 case SLTUGT:
1118 return CR1.getSignedMax().slt(CR2.getSignedMin()) &&
1119 CR1.getUnsignedMin().ugt(CR2.getUnsignedMax());
1120 case SLEUGE:
1121 return CR1.getSignedMax().sle(CR2.getSignedMin()) &&
1122 CR1.getUnsignedMin().uge(CR2.getUnsignedMax());
1123 case SGTULT:
1124 return CR1.getSignedMin().sgt(CR2.getSignedMax()) &&
1125 CR1.getUnsignedMax().ult(CR2.getUnsignedMin());
1126 case SGEULE:
1127 return CR1.getSignedMin().sge(CR2.getSignedMax()) &&
1128 CR1.getUnsignedMax().ule(CR2.getUnsignedMin());
1129 }
1130 }
1131
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001132 bool isRelatedBy(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
1133 LatticeVal LV) {
1134 ConstantRange CR1 = range(n1, Subtree);
1135 ConstantRange CR2 = range(n2, Subtree);
1136
1137 // True iff all values in CR1 are LV to all values in CR2.
1138 return isRelatedBy(CR1, CR2, LV);
1139 }
1140
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001141 void addToWorklist(Value *V, Constant *C, ICmpInst::Predicate Pred,
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001142 VRPSolver *VRP);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001143 void markBlock(VRPSolver *VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001144
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001145 void mergeInto(Value **I, unsigned n, unsigned New,
Nick Lewycky984504b2007-06-24 04:36:20 +00001146 DomTreeDFS::Node *Subtree, VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001147 ConstantRange CR_New = range(New, Subtree);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001148 ConstantRange Merged = CR_New;
1149
1150 for (; n != 0; ++I, --n) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001151 unsigned i = VN.valueNumber(*I, Subtree);
1152 ConstantRange CR_Kill = i ? range(i, Subtree) : range(*I);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001153 if (CR_Kill.isFullSet()) continue;
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001154 Merged = Merged.intersectWith(CR_Kill);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001155 }
1156
1157 if (Merged.isFullSet() || Merged == CR_New) return;
1158
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001159 applyRange(New, Merged, Subtree, VRP);
1160 }
1161
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001162 void applyRange(unsigned n, const ConstantRange &CR,
Nick Lewycky984504b2007-06-24 04:36:20 +00001163 DomTreeDFS::Node *Subtree, VRPSolver *VRP) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001164 ConstantRange Merged = CR.intersectWith(range(n, Subtree));
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001165 if (Merged.isEmptySet()) {
1166 markBlock(VRP);
1167 return;
1168 }
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001169
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001170 if (const APInt *I = Merged.getSingleElement()) {
1171 Value *V = VN.value(n); // XXX: redesign worklist.
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001172 const Type *Ty = V->getType();
1173 if (Ty->isInteger()) {
Owen Andersoneed707b2009-07-24 23:12:02 +00001174 addToWorklist(V, ConstantInt::get(*Context, *I),
1175 ICmpInst::ICMP_EQ, VRP);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001176 return;
1177 } else if (const PointerType *PTy = dyn_cast<PointerType>(Ty)) {
1178 assert(*I == 0 && "Pointer is null but not zero?");
1179 addToWorklist(V, ConstantPointerNull::get(PTy),
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001180 ICmpInst::ICMP_EQ, VRP);
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001181 return;
1182 }
1183 }
1184
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001185 update(n, Merged, Subtree);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001186 }
1187
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001188 void addNotEquals(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky984504b2007-06-24 04:36:20 +00001189 VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001190 ConstantRange CR1 = range(n1, Subtree);
1191 ConstantRange CR2 = range(n2, Subtree);
Nick Lewyckya995d922007-04-07 04:49:12 +00001192
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001193 uint32_t W = CR1.getBitWidth();
Nick Lewyckya995d922007-04-07 04:49:12 +00001194
1195 if (const APInt *I = CR1.getSingleElement()) {
1196 if (CR2.isFullSet()) {
1197 ConstantRange NewCR2(CR1.getUpper(), CR1.getLower());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001198 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001199 } else if (*I == CR2.getLower()) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001200 APInt NewLower(CR2.getLower() + 1),
1201 NewUpper(CR2.getUpper());
Nick Lewyckya995d922007-04-07 04:49:12 +00001202 if (NewLower == NewUpper)
1203 NewLower = NewUpper = APInt::getMinValue(W);
1204
1205 ConstantRange NewCR2(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001206 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001207 } else if (*I == CR2.getUpper() - 1) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001208 APInt NewLower(CR2.getLower()),
1209 NewUpper(CR2.getUpper() - 1);
Nick Lewyckya995d922007-04-07 04:49:12 +00001210 if (NewLower == NewUpper)
1211 NewLower = NewUpper = APInt::getMinValue(W);
1212
1213 ConstantRange NewCR2(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001214 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001215 }
1216 }
1217
1218 if (const APInt *I = CR2.getSingleElement()) {
1219 if (CR1.isFullSet()) {
1220 ConstantRange NewCR1(CR2.getUpper(), CR2.getLower());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001221 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001222 } else if (*I == CR1.getLower()) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001223 APInt NewLower(CR1.getLower() + 1),
1224 NewUpper(CR1.getUpper());
Nick Lewyckya995d922007-04-07 04:49:12 +00001225 if (NewLower == NewUpper)
1226 NewLower = NewUpper = APInt::getMinValue(W);
1227
1228 ConstantRange NewCR1(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001229 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001230 } else if (*I == CR1.getUpper() - 1) {
Zhou Sheng223d65b2007-04-19 05:35:00 +00001231 APInt NewLower(CR1.getLower()),
1232 NewUpper(CR1.getUpper() - 1);
Nick Lewyckya995d922007-04-07 04:49:12 +00001233 if (NewLower == NewUpper)
1234 NewLower = NewUpper = APInt::getMinValue(W);
1235
1236 ConstantRange NewCR1(NewLower, NewUpper);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001237 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001238 }
1239 }
1240 }
1241
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001242 void addInequality(unsigned n1, unsigned n2, DomTreeDFS::Node *Subtree,
Nick Lewycky984504b2007-06-24 04:36:20 +00001243 LatticeVal LV, VRPSolver *VRP) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001244 assert(!isRelatedBy(n1, n2, Subtree, LV) && "Asked to do useless work.");
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001245
Nick Lewyckya995d922007-04-07 04:49:12 +00001246 if (LV == NE) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001247 addNotEquals(n1, n2, Subtree, VRP);
Nick Lewyckya995d922007-04-07 04:49:12 +00001248 return;
1249 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001250
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001251 ConstantRange CR1 = range(n1, Subtree);
1252 ConstantRange CR2 = range(n2, Subtree);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001253
1254 if (!CR1.isSingleElement()) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001255 ConstantRange NewCR1 = CR1.intersectWith(create(LV, CR2));
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001256 if (NewCR1 != CR1)
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001257 applyRange(n1, NewCR1, Subtree, VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001258 }
1259
1260 if (!CR2.isSingleElement()) {
Nick Lewycky3a4a8842009-07-18 06:34:42 +00001261 ConstantRange NewCR2 = CR2.intersectWith(
Nick Lewyckya73d11e2007-07-14 04:28:04 +00001262 create(reversePredicate(LV), CR1));
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00001263 if (NewCR2 != CR2)
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001264 applyRange(n2, NewCR2, Subtree, VRP);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001265 }
1266 }
1267 };
1268
Nick Lewycky419c6f52007-01-11 02:32:38 +00001269 /// UnreachableBlocks keeps tracks of blocks that are for one reason or
1270 /// another discovered to be unreachable. This is used to cull the graph when
1271 /// analyzing instructions, and to mark blocks with the "unreachable"
1272 /// terminator instruction after the function has executed.
1273 class VISIBILITY_HIDDEN UnreachableBlocks {
1274 private:
1275 std::vector<BasicBlock *> DeadBlocks;
Nick Lewycky565706b2006-11-22 23:49:16 +00001276
Nick Lewycky419c6f52007-01-11 02:32:38 +00001277 public:
1278 /// mark - mark a block as dead
1279 void mark(BasicBlock *BB) {
1280 std::vector<BasicBlock *>::iterator E = DeadBlocks.end();
1281 std::vector<BasicBlock *>::iterator I =
1282 std::lower_bound(DeadBlocks.begin(), E, BB);
1283
1284 if (I == E || *I != BB) DeadBlocks.insert(I, BB);
Nick Lewycky565706b2006-11-22 23:49:16 +00001285 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001286
1287 /// isDead - returns whether a block is known to be dead already
1288 bool isDead(BasicBlock *BB) {
1289 std::vector<BasicBlock *>::iterator E = DeadBlocks.end();
1290 std::vector<BasicBlock *>::iterator I =
1291 std::lower_bound(DeadBlocks.begin(), E, BB);
1292
1293 return I != E && *I == BB;
Nick Lewycky565706b2006-11-22 23:49:16 +00001294 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001295
Nick Lewycky419c6f52007-01-11 02:32:38 +00001296 /// kill - replace the dead blocks' terminator with an UnreachableInst.
1297 bool kill() {
1298 bool modified = false;
1299 for (std::vector<BasicBlock *>::iterator I = DeadBlocks.begin(),
1300 E = DeadBlocks.end(); I != E; ++I) {
1301 BasicBlock *BB = *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00001302
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001303 DEBUG(errs() << "unreachable block: " << BB->getName() << "\n");
Nick Lewycky565706b2006-11-22 23:49:16 +00001304
Nick Lewycky419c6f52007-01-11 02:32:38 +00001305 for (succ_iterator SI = succ_begin(BB), SE = succ_end(BB);
1306 SI != SE; ++SI) {
1307 BasicBlock *Succ = *SI;
1308 Succ->removePredecessor(BB);
Nick Lewyckye63bf952006-10-25 23:48:24 +00001309 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001310
Nick Lewycky419c6f52007-01-11 02:32:38 +00001311 TerminatorInst *TI = BB->getTerminator();
1312 TI->replaceAllUsesWith(UndefValue::get(TI->getType()));
1313 TI->eraseFromParent();
Benjamin Kramera130a512009-08-15 21:07:49 +00001314 new UnreachableInst(BB->getContext(), BB);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001315 ++NumBlocks;
1316 modified = true;
Nick Lewycky565706b2006-11-22 23:49:16 +00001317 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001318 DeadBlocks.clear();
1319 return modified;
Nick Lewyckye63bf952006-10-25 23:48:24 +00001320 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001321 };
Nick Lewycky565706b2006-11-22 23:49:16 +00001322
1323 /// VRPSolver keeps track of how changes to one variable affect other
1324 /// variables, and forwards changes along to the InequalityGraph. It
1325 /// also maintains the correct choice for "canonical" in the IG.
1326 /// @brief VRPSolver calculates inferences from a new relationship.
1327 class VISIBILITY_HIDDEN VRPSolver {
1328 private:
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001329 friend class ValueRanges;
1330
Nick Lewycky419c6f52007-01-11 02:32:38 +00001331 struct Operation {
1332 Value *LHS, *RHS;
1333 ICmpInst::Predicate Op;
1334
Nick Lewycky984504b2007-06-24 04:36:20 +00001335 BasicBlock *ContextBB; // XXX use a DomTreeDFS::Node instead
Nick Lewycky0be7f472007-01-13 02:05:28 +00001336 Instruction *ContextInst;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001337 };
1338 std::deque<Operation> WorkList;
Nick Lewycky565706b2006-11-22 23:49:16 +00001339
Nick Lewycky29a05b62007-07-05 03:15:00 +00001340 ValueNumbering &VN;
Nick Lewycky565706b2006-11-22 23:49:16 +00001341 InequalityGraph &IG;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001342 UnreachableBlocks &UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001343 ValueRanges &VR;
Nick Lewycky984504b2007-06-24 04:36:20 +00001344 DomTreeDFS *DTDFS;
1345 DomTreeDFS::Node *Top;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001346 BasicBlock *TopBB;
1347 Instruction *TopInst;
1348 bool &modified;
Owen Anderson0a5372e2009-07-13 04:09:18 +00001349 LLVMContext *Context;
Nick Lewycky565706b2006-11-22 23:49:16 +00001350
1351 typedef InequalityGraph::Node Node;
1352
Nick Lewycky419c6f52007-01-11 02:32:38 +00001353 // below - true if the Instruction is dominated by the current context
1354 // block or instruction
1355 bool below(Instruction *I) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001356 BasicBlock *BB = I->getParent();
1357 if (TopInst && TopInst->getParent() == BB) {
1358 if (isa<TerminatorInst>(TopInst)) return false;
1359 if (isa<TerminatorInst>(I)) return true;
1360 if ( isa<PHINode>(TopInst) && !isa<PHINode>(I)) return true;
1361 if (!isa<PHINode>(TopInst) && isa<PHINode>(I)) return false;
1362
1363 for (BasicBlock::const_iterator Iter = BB->begin(), E = BB->end();
1364 Iter != E; ++Iter) {
1365 if (&*Iter == TopInst) return true;
1366 else if (&*Iter == I) return false;
1367 }
1368 assert(!"Instructions not found in parent BasicBlock?");
1369 } else {
Nick Lewyckydea25262007-06-24 04:40:16 +00001370 DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB);
Nick Lewycky984504b2007-06-24 04:36:20 +00001371 if (!Node) return false;
1372 return Top->dominates(Node);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001373 }
Chris Lattnerd27c9912008-03-30 18:22:13 +00001374 return false; // Not reached
Nick Lewycky565706b2006-11-22 23:49:16 +00001375 }
1376
Nick Lewycky984504b2007-06-24 04:36:20 +00001377 // aboveOrBelow - true if the Instruction either dominates or is dominated
1378 // by the current context block or instruction
1379 bool aboveOrBelow(Instruction *I) {
1380 BasicBlock *BB = I->getParent();
1381 DomTreeDFS::Node *Node = DTDFS->getNodeForBlock(BB);
1382 if (!Node) return false;
1383
1384 return Top == Node || Top->dominates(Node) || Node->dominates(Top);
1385 }
1386
Nick Lewycky419c6f52007-01-11 02:32:38 +00001387 bool makeEqual(Value *V1, Value *V2) {
1388 DOUT << "makeEqual(" << *V1 << ", " << *V2 << ")\n";
Nick Lewycky984504b2007-06-24 04:36:20 +00001389 DOUT << "context is ";
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00001390 DEBUG(if (TopInst)
1391 errs() << "I: " << *TopInst << "\n";
1392 else
1393 errs() << "BB: " << TopBB->getName()
1394 << "(" << Top->getDFSNumIn() << ")\n");
Nick Lewyckye63bf952006-10-25 23:48:24 +00001395
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001396 assert(V1->getType() == V2->getType() &&
1397 "Can't make two values with different types equal.");
1398
Nick Lewycky419c6f52007-01-11 02:32:38 +00001399 if (V1 == V2) return true;
Nick Lewyckye63bf952006-10-25 23:48:24 +00001400
Nick Lewycky419c6f52007-01-11 02:32:38 +00001401 if (isa<Constant>(V1) && isa<Constant>(V2))
1402 return false;
1403
Nick Lewycky29a05b62007-07-05 03:15:00 +00001404 unsigned n1 = VN.valueNumber(V1, Top), n2 = VN.valueNumber(V2, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001405
1406 if (n1 && n2) {
1407 if (n1 == n2) return true;
1408 if (IG.isRelatedBy(n1, n2, Top, NE)) return false;
1409 }
1410
Nick Lewycky29a05b62007-07-05 03:15:00 +00001411 if (n1) assert(V1 == VN.value(n1) && "Value isn't canonical.");
1412 if (n2) assert(V2 == VN.value(n2) && "Value isn't canonical.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001413
Nick Lewycky29a05b62007-07-05 03:15:00 +00001414 assert(!VN.compare(V2, V1) && "Please order parameters to makeEqual.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001415
1416 assert(!isa<Constant>(V2) && "Tried to remove a constant.");
1417
1418 SetVector<unsigned> Remove;
1419 if (n2) Remove.insert(n2);
1420
1421 if (n1 && n2) {
1422 // Suppose we're being told that %x == %y, and %x <= %z and %y >= %z.
1423 // We can't just merge %x and %y because the relationship with %z would
1424 // be EQ and that's invalid. What we're doing is looking for any nodes
1425 // %z such that %x <= %z and %y >= %z, and vice versa.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001426
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001427 Node::iterator end = IG.node(n2)->end();
Nick Lewyckydd402582007-01-15 14:30:07 +00001428
1429 // Find the intersection between N1 and N2 which is dominated by
1430 // Top. If we find %x where N1 <= %x <= N2 (or >=) then add %x to
1431 // Remove.
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001432 for (Node::iterator I = IG.node(n1)->begin(), E = IG.node(n1)->end();
1433 I != E; ++I) {
Nick Lewyckydd402582007-01-15 14:30:07 +00001434 if (!(I->LV & EQ_BIT) || !Top->DominatedBy(I->Subtree)) continue;
1435
1436 unsigned ILV_s = I->LV & (SLT_BIT|SGT_BIT);
1437 unsigned ILV_u = I->LV & (ULT_BIT|UGT_BIT);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001438 Node::iterator NI = IG.node(n2)->find(I->To, Top);
Nick Lewyckydd402582007-01-15 14:30:07 +00001439 if (NI != end) {
1440 LatticeVal NILV = reversePredicate(NI->LV);
1441 unsigned NILV_s = NILV & (SLT_BIT|SGT_BIT);
1442 unsigned NILV_u = NILV & (ULT_BIT|UGT_BIT);
1443
1444 if ((ILV_s != (SLT_BIT|SGT_BIT) && ILV_s == NILV_s) ||
1445 (ILV_u != (ULT_BIT|UGT_BIT) && ILV_u == NILV_u))
1446 Remove.insert(I->To);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001447 }
1448 }
1449
1450 // See if one of the nodes about to be removed is actually a better
1451 // canonical choice than n1.
1452 unsigned orig_n1 = n1;
Reid Spencer7af9a132007-01-17 02:23:37 +00001453 SetVector<unsigned>::iterator DontRemove = Remove.end();
1454 for (SetVector<unsigned>::iterator I = Remove.begin()+1 /* skip n2 */,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001455 E = Remove.end(); I != E; ++I) {
1456 unsigned n = *I;
Nick Lewycky29a05b62007-07-05 03:15:00 +00001457 Value *V = VN.value(n);
1458 if (VN.compare(V, V1)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001459 V1 = V;
1460 n1 = n;
1461 DontRemove = I;
1462 }
1463 }
1464 if (DontRemove != Remove.end()) {
1465 unsigned n = *DontRemove;
1466 Remove.remove(n);
1467 Remove.insert(orig_n1);
Nick Lewycky565706b2006-11-22 23:49:16 +00001468 }
1469 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001470
Nick Lewycky419c6f52007-01-11 02:32:38 +00001471 // We'd like to allow makeEqual on two values to perform a simple
Nick Lewycky70ef6292008-05-26 22:49:36 +00001472 // substitution without creating nodes in the IG whenever possible.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001473 //
1474 // The first iteration through this loop operates on V2 before going
1475 // through the Remove list and operating on those too. If all of the
1476 // iterations performed simple replacements then we exit early.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001477 bool mergeIGNode = false;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001478 unsigned i = 0;
1479 for (Value *R = V2; i == 0 || i < Remove.size(); ++i) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001480 if (i) R = VN.value(Remove[i]); // skip n2.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001481
1482 // Try to replace the whole instruction. If we can, we're done.
1483 Instruction *I2 = dyn_cast<Instruction>(R);
1484 if (I2 && below(I2)) {
1485 std::vector<Instruction *> ToNotify;
Jay Foad0906b1b2009-06-06 17:49:35 +00001486 for (Value::use_iterator UI = I2->use_begin(), UE = I2->use_end();
Nick Lewycky419c6f52007-01-11 02:32:38 +00001487 UI != UE;) {
1488 Use &TheUse = UI.getUse();
1489 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00001490 Instruction *I = cast<Instruction>(TheUse.getUser());
1491 ToNotify.push_back(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001492 }
1493
1494 DOUT << "Simply removing " << *I2
1495 << ", replacing with " << *V1 << "\n";
1496 I2->replaceAllUsesWith(V1);
1497 // leave it dead; it'll get erased later.
1498 ++NumInstruction;
1499 modified = true;
1500
1501 for (std::vector<Instruction *>::iterator II = ToNotify.begin(),
1502 IE = ToNotify.end(); II != IE; ++II) {
1503 opsToDef(*II);
1504 }
1505
1506 continue;
1507 }
1508
1509 // Otherwise, replace all dominated uses.
1510 for (Value::use_iterator UI = R->use_begin(), UE = R->use_end();
1511 UI != UE;) {
1512 Use &TheUse = UI.getUse();
1513 ++UI;
1514 if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) {
1515 if (below(I)) {
1516 TheUse.set(V1);
1517 modified = true;
1518 ++NumVarsReplaced;
1519 opsToDef(I);
1520 }
1521 }
1522 }
1523
1524 // If that killed the instruction, stop here.
1525 if (I2 && isInstructionTriviallyDead(I2)) {
1526 DOUT << "Killed all uses of " << *I2
1527 << ", replacing with " << *V1 << "\n";
1528 continue;
1529 }
1530
1531 // If we make it to here, then we will need to create a node for N1.
1532 // Otherwise, we can skip out early!
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001533 mergeIGNode = true;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001534 }
1535
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001536 if (!isa<Constant>(V1)) {
1537 if (Remove.empty()) {
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001538 VR.mergeInto(&V2, 1, VN.getOrInsertVN(V1, Top), Top, this);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001539 } else {
1540 std::vector<Value*> RemoveVals;
1541 RemoveVals.reserve(Remove.size());
Nick Lewycky419c6f52007-01-11 02:32:38 +00001542
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001543 for (SetVector<unsigned>::iterator I = Remove.begin(),
1544 E = Remove.end(); I != E; ++I) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001545 Value *V = VN.value(*I);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001546 if (!V->use_empty())
1547 RemoveVals.push_back(V);
1548 }
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001549 VR.mergeInto(&RemoveVals[0], RemoveVals.size(),
1550 VN.getOrInsertVN(V1, Top), Top, this);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001551 }
1552 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001553
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001554 if (mergeIGNode) {
1555 // Create N1.
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001556 if (!n1) n1 = VN.getOrInsertVN(V1, Top);
Nick Lewycky6918a912008-05-27 00:59:05 +00001557 IG.node(n1); // Ensure that IG.Nodes won't get resized
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001558
1559 // Migrate relationships from removed nodes to N1.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001560 for (SetVector<unsigned>::iterator I = Remove.begin(), E = Remove.end();
1561 I != E; ++I) {
1562 unsigned n = *I;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001563 for (Node::iterator NI = IG.node(n)->begin(), NE = IG.node(n)->end();
1564 NI != NE; ++NI) {
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001565 if (NI->Subtree->DominatedBy(Top)) {
1566 if (NI->To == n1) {
1567 assert((NI->LV & EQ_BIT) && "Node inequal to itself.");
1568 continue;
1569 }
1570 if (Remove.count(NI->To))
1571 continue;
1572
1573 IG.node(NI->To)->update(n1, reversePredicate(NI->LV), Top);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001574 IG.node(n1)->update(NI->To, NI->LV, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001575 }
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001576 }
1577 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001578
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001579 // Point V2 (and all items in Remove) to N1.
1580 if (!n2)
Nick Lewycky29a05b62007-07-05 03:15:00 +00001581 VN.addEquality(n1, V2, Top);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001582 else {
1583 for (SetVector<unsigned>::iterator I = Remove.begin(),
1584 E = Remove.end(); I != E; ++I) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001585 VN.addEquality(n1, VN.value(*I), Top);
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001586 }
1587 }
1588
1589 // If !Remove.empty() then V2 = Remove[0]->getValue().
1590 // Even when Remove is empty, we still want to process V2.
1591 i = 0;
1592 for (Value *R = V2; i == 0 || i < Remove.size(); ++i) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001593 if (i) R = VN.value(Remove[i]); // skip n2.
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001594
1595 if (Instruction *I2 = dyn_cast<Instruction>(R)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001596 if (aboveOrBelow(I2))
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001597 defToOps(I2);
1598 }
1599 for (Value::use_iterator UI = V2->use_begin(), UE = V2->use_end();
1600 UI != UE;) {
1601 Use &TheUse = UI.getUse();
1602 ++UI;
1603 if (Instruction *I = dyn_cast<Instruction>(TheUse.getUser())) {
Nick Lewycky984504b2007-06-24 04:36:20 +00001604 if (aboveOrBelow(I))
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001605 opsToDef(I);
1606 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001607 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001608 }
1609 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001610
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001611 // re-opsToDef all dominated users of V1.
1612 if (Instruction *I = dyn_cast<Instruction>(V1)) {
1613 for (Value::use_iterator UI = I->use_begin(), UE = I->use_end();
Nick Lewycky419c6f52007-01-11 02:32:38 +00001614 UI != UE;) {
1615 Use &TheUse = UI.getUse();
1616 ++UI;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001617 Value *V = TheUse.getUser();
1618 if (!V->use_empty()) {
Jay Foad0906b1b2009-06-06 17:49:35 +00001619 Instruction *Inst = cast<Instruction>(V);
1620 if (aboveOrBelow(Inst))
1621 opsToDef(Inst);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001622 }
1623 }
1624 }
1625
1626 return true;
1627 }
1628
1629 /// cmpInstToLattice - converts an CmpInst::Predicate to lattice value
1630 /// Requires that the lattice value be valid; does not accept ICMP_EQ.
1631 static LatticeVal cmpInstToLattice(ICmpInst::Predicate Pred) {
1632 switch (Pred) {
1633 case ICmpInst::ICMP_EQ:
1634 assert(!"No matching lattice value.");
1635 return static_cast<LatticeVal>(EQ_BIT);
1636 default:
1637 assert(!"Invalid 'icmp' predicate.");
1638 case ICmpInst::ICMP_NE:
1639 return NE;
1640 case ICmpInst::ICMP_UGT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001641 return UGT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001642 case ICmpInst::ICMP_UGE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001643 return UGE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001644 case ICmpInst::ICMP_ULT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001645 return ULT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001646 case ICmpInst::ICMP_ULE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001647 return ULE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001648 case ICmpInst::ICMP_SGT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001649 return SGT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001650 case ICmpInst::ICMP_SGE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001651 return SGE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001652 case ICmpInst::ICMP_SLT:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001653 return SLT;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001654 case ICmpInst::ICMP_SLE:
Nick Lewycky6a08f912007-01-29 02:56:54 +00001655 return SLE;
Nick Lewycky419c6f52007-01-11 02:32:38 +00001656 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001657 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001658
Nick Lewycky565706b2006-11-22 23:49:16 +00001659 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +00001660 VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB,
1661 ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified,
1662 BasicBlock *TopBB)
1663 : VN(VN),
1664 IG(IG),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001665 UB(UB),
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001666 VR(VR),
Nick Lewycky984504b2007-06-24 04:36:20 +00001667 DTDFS(DTDFS),
1668 Top(DTDFS->getNodeForBlock(TopBB)),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001669 TopBB(TopBB),
1670 TopInst(NULL),
Owen Anderson0a5372e2009-07-13 04:09:18 +00001671 modified(modified),
Owen Andersone922c022009-07-22 00:24:57 +00001672 Context(&TopBB->getContext())
Nick Lewycky984504b2007-06-24 04:36:20 +00001673 {
1674 assert(Top && "VRPSolver created for unreachable basic block.");
1675 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00001676
Nick Lewycky29a05b62007-07-05 03:15:00 +00001677 VRPSolver(ValueNumbering &VN, InequalityGraph &IG, UnreachableBlocks &UB,
1678 ValueRanges &VR, DomTreeDFS *DTDFS, bool &modified,
1679 Instruction *TopInst)
1680 : VN(VN),
1681 IG(IG),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001682 UB(UB),
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001683 VR(VR),
Nick Lewycky984504b2007-06-24 04:36:20 +00001684 DTDFS(DTDFS),
1685 Top(DTDFS->getNodeForBlock(TopInst->getParent())),
1686 TopBB(TopInst->getParent()),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001687 TopInst(TopInst),
Owen Anderson001dbfe2009-07-16 18:04:31 +00001688 modified(modified),
Owen Andersone922c022009-07-22 00:24:57 +00001689 Context(&TopInst->getContext())
Nick Lewycky419c6f52007-01-11 02:32:38 +00001690 {
Nick Lewycky984504b2007-06-24 04:36:20 +00001691 assert(Top && "VRPSolver created for unreachable basic block.");
1692 assert(Top->getBlock() == TopInst->getParent() && "Context mismatch.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00001693 }
1694
1695 bool isRelatedBy(Value *V1, Value *V2, ICmpInst::Predicate Pred) const {
1696 if (Constant *C1 = dyn_cast<Constant>(V1))
1697 if (Constant *C2 = dyn_cast<Constant>(V2))
Owen Andersonbaf3c402009-07-29 18:55:55 +00001698 return ConstantExpr::getCompare(Pred, C1, C2) ==
Owen Anderson5defacc2009-07-31 17:39:07 +00001699 ConstantInt::getTrue(*Context);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001700
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001701 unsigned n1 = VN.valueNumber(V1, Top);
1702 unsigned n2 = VN.valueNumber(V2, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001703
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001704 if (n1 && n2) {
1705 if (n1 == n2) return Pred == ICmpInst::ICMP_EQ ||
1706 Pred == ICmpInst::ICMP_ULE ||
1707 Pred == ICmpInst::ICMP_UGE ||
1708 Pred == ICmpInst::ICMP_SLE ||
1709 Pred == ICmpInst::ICMP_SGE;
1710 if (Pred == ICmpInst::ICMP_EQ) return false;
1711 if (IG.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true;
1712 if (VR.isRelatedBy(n1, n2, Top, cmpInstToLattice(Pred))) return true;
1713 }
1714
1715 if ((n1 && !n2 && isa<Constant>(V2)) ||
1716 (n2 && !n1 && isa<Constant>(V1))) {
1717 ConstantRange CR1 = n1 ? VR.range(n1, Top) : VR.range(V1);
1718 ConstantRange CR2 = n2 ? VR.range(n2, Top) : VR.range(V2);
1719
1720 if (Pred == ICmpInst::ICMP_EQ)
1721 return CR1.isSingleElement() &&
1722 CR1.getSingleElement() == CR2.getSingleElement();
1723
1724 return VR.isRelatedBy(CR1, CR2, cmpInstToLattice(Pred));
1725 }
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001726 if (Pred == ICmpInst::ICMP_EQ) return V1 == V2;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001727 return false;
Nick Lewycky565706b2006-11-22 23:49:16 +00001728 }
1729
Nick Lewycky419c6f52007-01-11 02:32:38 +00001730 /// add - adds a new property to the work queue
1731 void add(Value *V1, Value *V2, ICmpInst::Predicate Pred,
1732 Instruction *I = NULL) {
1733 DOUT << "adding " << *V1 << " " << Pred << " " << *V2;
1734 if (I) DOUT << " context: " << *I;
Nick Lewycky984504b2007-06-24 04:36:20 +00001735 else DOUT << " default context (" << Top->getDFSNumIn() << ")";
Nick Lewycky419c6f52007-01-11 02:32:38 +00001736 DOUT << "\n";
1737
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00001738 assert(V1->getType() == V2->getType() &&
1739 "Can't relate two values with different types.");
1740
Nick Lewycky419c6f52007-01-11 02:32:38 +00001741 WorkList.push_back(Operation());
1742 Operation &O = WorkList.back();
Nick Lewycky0be7f472007-01-13 02:05:28 +00001743 O.LHS = V1, O.RHS = V2, O.Op = Pred, O.ContextInst = I;
1744 O.ContextBB = I ? I->getParent() : TopBB;
Nick Lewycky565706b2006-11-22 23:49:16 +00001745 }
1746
Nick Lewycky419c6f52007-01-11 02:32:38 +00001747 /// defToOps - Given an instruction definition that we've learned something
1748 /// new about, find any new relationships between its operands.
1749 void defToOps(Instruction *I) {
1750 Instruction *NewContext = below(I) ? I : TopInst;
Nick Lewycky29a05b62007-07-05 03:15:00 +00001751 Value *Canonical = VN.canonicalize(I, Top);
Nick Lewycky565706b2006-11-22 23:49:16 +00001752
Nick Lewycky419c6f52007-01-11 02:32:38 +00001753 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
1754 const Type *Ty = BO->getType();
1755 assert(!Ty->isFPOrFPVector() && "Float in work queue!");
Nick Lewycky565706b2006-11-22 23:49:16 +00001756
Nick Lewycky29a05b62007-07-05 03:15:00 +00001757 Value *Op0 = VN.canonicalize(BO->getOperand(0), Top);
1758 Value *Op1 = VN.canonicalize(BO->getOperand(1), Top);
Nick Lewycky565706b2006-11-22 23:49:16 +00001759
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001760 // TODO: "and i32 -1, %x" EQ %y then %x EQ %y.
Nick Lewycky565706b2006-11-22 23:49:16 +00001761
Nick Lewycky419c6f52007-01-11 02:32:38 +00001762 switch (BO->getOpcode()) {
1763 case Instruction::And: {
Nick Lewycky4c708752007-03-16 02:37:39 +00001764 // "and i32 %a, %b" EQ -1 then %a EQ -1 and %b EQ -1
Owen Andersona7235ea2009-07-31 20:28:14 +00001765 ConstantInt *CI = cast<ConstantInt>(Constant::getAllOnesValue(Ty));
Nick Lewycky419c6f52007-01-11 02:32:38 +00001766 if (Canonical == CI) {
1767 add(CI, Op0, ICmpInst::ICMP_EQ, NewContext);
1768 add(CI, Op1, ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky565706b2006-11-22 23:49:16 +00001769 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001770 } break;
1771 case Instruction::Or: {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001772 // "or i32 %a, %b" EQ 0 then %a EQ 0 and %b EQ 0
Owen Andersona7235ea2009-07-31 20:28:14 +00001773 Constant *Zero = Constant::getNullValue(Ty);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001774 if (Canonical == Zero) {
1775 add(Zero, Op0, ICmpInst::ICMP_EQ, NewContext);
1776 add(Zero, Op1, ICmpInst::ICMP_EQ, NewContext);
1777 }
1778 } break;
1779 case Instruction::Xor: {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001780 // "xor i32 %c, %a" EQ %b then %a EQ %c ^ %b
1781 // "xor i32 %c, %a" EQ %c then %a EQ 0
1782 // "xor i32 %c, %a" NE %c then %a NE 0
1783 // Repeat the above, with order of operands reversed.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001784 Value *LHS = Op0;
1785 Value *RHS = Op1;
1786 if (!isa<Constant>(LHS)) std::swap(LHS, RHS);
1787
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00001788 if (ConstantInt *CI = dyn_cast<ConstantInt>(Canonical)) {
1789 if (ConstantInt *Arg = dyn_cast<ConstantInt>(LHS)) {
Owen Anderson001dbfe2009-07-16 18:04:31 +00001790 add(RHS,
Owen Andersoneed707b2009-07-24 23:12:02 +00001791 ConstantInt::get(*Context, CI->getValue() ^ Arg->getValue()),
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00001792 ICmpInst::ICMP_EQ, NewContext);
1793 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001794 }
1795 if (Canonical == LHS) {
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001796 if (isa<ConstantInt>(Canonical))
Owen Andersona7235ea2009-07-31 20:28:14 +00001797 add(RHS, Constant::getNullValue(Ty), ICmpInst::ICMP_EQ,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001798 NewContext);
1799 } else if (isRelatedBy(LHS, Canonical, ICmpInst::ICMP_NE)) {
Owen Andersona7235ea2009-07-31 20:28:14 +00001800 add(RHS, Constant::getNullValue(Ty), ICmpInst::ICMP_NE,
Nick Lewycky419c6f52007-01-11 02:32:38 +00001801 NewContext);
1802 }
1803 } break;
1804 default:
1805 break;
1806 }
1807 } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001808 // "icmp ult i32 %a, %y" EQ true then %a u< y
Nick Lewycky419c6f52007-01-11 02:32:38 +00001809 // etc.
1810
Owen Anderson5defacc2009-07-31 17:39:07 +00001811 if (Canonical == ConstantInt::getTrue(*Context)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001812 add(IC->getOperand(0), IC->getOperand(1), IC->getPredicate(),
1813 NewContext);
Owen Anderson5defacc2009-07-31 17:39:07 +00001814 } else if (Canonical == ConstantInt::getFalse(*Context)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001815 add(IC->getOperand(0), IC->getOperand(1),
1816 ICmpInst::getInversePredicate(IC->getPredicate()), NewContext);
1817 }
1818 } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
1819 if (I->getType()->isFPOrFPVector()) return;
1820
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001821 // Given: "%a = select i1 %x, i32 %b, i32 %c"
Nick Lewycky419c6f52007-01-11 02:32:38 +00001822 // %a EQ %b and %b NE %c then %x EQ true
1823 // %a EQ %c and %b NE %c then %x EQ false
1824
1825 Value *True = SI->getTrueValue();
1826 Value *False = SI->getFalseValue();
1827 if (isRelatedBy(True, False, ICmpInst::ICMP_NE)) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001828 if (Canonical == VN.canonicalize(True, Top) ||
Nick Lewycky419c6f52007-01-11 02:32:38 +00001829 isRelatedBy(Canonical, False, ICmpInst::ICMP_NE))
Owen Anderson5defacc2009-07-31 17:39:07 +00001830 add(SI->getCondition(), ConstantInt::getTrue(*Context),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001831 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky29a05b62007-07-05 03:15:00 +00001832 else if (Canonical == VN.canonicalize(False, Top) ||
Nick Lewyckye677a0b2007-03-10 18:12:48 +00001833 isRelatedBy(Canonical, True, ICmpInst::ICMP_NE))
Owen Anderson5defacc2009-07-31 17:39:07 +00001834 add(SI->getCondition(), ConstantInt::getFalse(*Context),
Nick Lewycky419c6f52007-01-11 02:32:38 +00001835 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky565706b2006-11-22 23:49:16 +00001836 }
Nick Lewycky27e4da92007-03-22 02:02:51 +00001837 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
1838 for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(),
1839 OE = GEPI->idx_end(); OI != OE; ++OI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001840 ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top));
Nick Lewycky27e4da92007-03-22 02:02:51 +00001841 if (!Op || !Op->isZero()) return;
1842 }
1843 // TODO: The GEPI indices are all zero. Copy from definition to operand,
1844 // jumping the type plane as needed.
Owen Andersona7235ea2009-07-31 20:28:14 +00001845 if (isRelatedBy(GEPI, Constant::getNullValue(GEPI->getType()),
Nick Lewycky27e4da92007-03-22 02:02:51 +00001846 ICmpInst::ICMP_NE)) {
1847 Value *Ptr = GEPI->getPointerOperand();
Owen Andersona7235ea2009-07-31 20:28:14 +00001848 add(Ptr, Constant::getNullValue(Ptr->getType()), ICmpInst::ICMP_NE,
Nick Lewycky27e4da92007-03-22 02:02:51 +00001849 NewContext);
1850 }
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001851 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
1852 const Type *SrcTy = CI->getSrcTy();
1853
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001854 unsigned ci = VN.getOrInsertVN(CI, Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001855 uint32_t W = VR.typeToWidth(SrcTy);
1856 if (!W) return;
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001857 ConstantRange CR = VR.range(ci, Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001858
1859 if (CR.isFullSet()) return;
1860
1861 switch (CI->getOpcode()) {
1862 default: break;
1863 case Instruction::ZExt:
1864 case Instruction::SExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001865 VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top),
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001866 CR.truncate(W), Top, this);
1867 break;
1868 case Instruction::BitCast:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00001869 VR.applyRange(VN.getOrInsertVN(CI->getOperand(0), Top),
Nick Lewyckyac4d6642007-04-07 15:48:32 +00001870 CR, Top, this);
1871 break;
1872 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001873 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00001874 }
Nick Lewycky565706b2006-11-22 23:49:16 +00001875
Nick Lewycky419c6f52007-01-11 02:32:38 +00001876 /// opsToDef - A new relationship was discovered involving one of this
1877 /// instruction's operands. Find any new relationship involving the
Nick Lewycky27e4da92007-03-22 02:02:51 +00001878 /// definition, or another operand.
Nick Lewycky419c6f52007-01-11 02:32:38 +00001879 void opsToDef(Instruction *I) {
1880 Instruction *NewContext = below(I) ? I : TopInst;
1881
1882 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(I)) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00001883 Value *Op0 = VN.canonicalize(BO->getOperand(0), Top);
1884 Value *Op1 = VN.canonicalize(BO->getOperand(1), Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00001885
Zhou Sheng6b6b6ef2007-01-11 12:24:14 +00001886 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0))
1887 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00001888 add(BO, ConstantExpr::get(BO->getOpcode(), CI0, CI1),
1889 ICmpInst::ICMP_EQ, NewContext);
1890 return;
1891 }
1892
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001893 // "%y = and i1 true, %x" then %x EQ %y
1894 // "%y = or i1 false, %x" then %x EQ %y
1895 // "%x = add i32 %y, 0" then %x EQ %y
1896 // "%x = mul i32 %y, 0" then %x EQ 0
1897
1898 Instruction::BinaryOps Opcode = BO->getOpcode();
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001899 const Type *Ty = BO->getType();
1900 assert(!Ty->isFPOrFPVector() && "Float in work queue!");
1901
Owen Andersona7235ea2009-07-31 20:28:14 +00001902 Constant *Zero = Constant::getNullValue(Ty);
Owen Andersoneed707b2009-07-24 23:12:02 +00001903 Constant *One = ConstantInt::get(Ty, 1);
Owen Andersona7235ea2009-07-31 20:28:14 +00001904 ConstantInt *AllOnes = cast<ConstantInt>(Constant::getAllOnesValue(Ty));
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001905
1906 switch (Opcode) {
1907 default: break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00001908 case Instruction::LShr:
1909 case Instruction::AShr:
1910 case Instruction::Shl:
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001911 if (Op1 == Zero) {
1912 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1913 return;
1914 }
1915 break;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001916 case Instruction::Sub:
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001917 if (Op1 == Zero) {
1918 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1919 return;
1920 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001921 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) {
1922 unsigned n_ci0 = VN.getOrInsertVN(Op1, Top);
1923 ConstantRange CR = VR.range(n_ci0, Top);
1924 if (!CR.isFullSet()) {
1925 CR.subtract(CI0->getValue());
1926 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1927 VR.applyRange(n_bo, CR, Top, this);
1928 return;
1929 }
1930 }
1931 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
1932 unsigned n_ci1 = VN.getOrInsertVN(Op0, Top);
1933 ConstantRange CR = VR.range(n_ci1, Top);
1934 if (!CR.isFullSet()) {
1935 CR.subtract(CI1->getValue());
1936 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1937 VR.applyRange(n_bo, CR, Top, this);
1938 return;
1939 }
1940 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001941 break;
1942 case Instruction::Or:
1943 if (Op0 == AllOnes || Op1 == AllOnes) {
1944 add(BO, AllOnes, ICmpInst::ICMP_EQ, NewContext);
1945 return;
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001946 }
1947 if (Op0 == Zero) {
1948 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1949 return;
1950 } else if (Op1 == Zero) {
1951 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1952 return;
1953 }
1954 break;
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001955 case Instruction::Add:
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001956 if (ConstantInt *CI0 = dyn_cast<ConstantInt>(Op0)) {
1957 unsigned n_ci0 = VN.getOrInsertVN(Op1, Top);
1958 ConstantRange CR = VR.range(n_ci0, Top);
1959 if (!CR.isFullSet()) {
1960 CR.subtract(-CI0->getValue());
1961 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1962 VR.applyRange(n_bo, CR, Top, this);
1963 return;
1964 }
1965 }
1966 if (ConstantInt *CI1 = dyn_cast<ConstantInt>(Op1)) {
1967 unsigned n_ci1 = VN.getOrInsertVN(Op0, Top);
1968 ConstantRange CR = VR.range(n_ci1, Top);
1969 if (!CR.isFullSet()) {
1970 CR.subtract(-CI1->getValue());
1971 unsigned n_bo = VN.getOrInsertVN(BO, Top);
1972 VR.applyRange(n_bo, CR, Top, this);
1973 return;
1974 }
1975 }
1976 // fall-through
1977 case Instruction::Xor:
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001978 if (Op0 == Zero) {
1979 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1980 return;
1981 } else if (Op1 == Zero) {
1982 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1983 return;
1984 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001985 break;
1986 case Instruction::And:
Nick Lewycky1eda0f62007-03-18 01:09:32 +00001987 if (Op0 == AllOnes) {
1988 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
1989 return;
1990 } else if (Op1 == AllOnes) {
1991 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
1992 return;
1993 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00001994 if (Op0 == Zero || Op1 == Zero) {
1995 add(BO, Zero, ICmpInst::ICMP_EQ, NewContext);
1996 return;
1997 }
1998 break;
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00001999 case Instruction::Mul:
2000 if (Op0 == Zero || Op1 == Zero) {
Nick Lewycky1eda0f62007-03-18 01:09:32 +00002001 add(BO, Zero, ICmpInst::ICMP_EQ, NewContext);
2002 return;
2003 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002004 if (Op0 == One) {
2005 add(BO, Op1, ICmpInst::ICMP_EQ, NewContext);
2006 return;
2007 } else if (Op1 == One) {
2008 add(BO, Op0, ICmpInst::ICMP_EQ, NewContext);
2009 return;
2010 }
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00002011 break;
Nick Lewycky565706b2006-11-22 23:49:16 +00002012 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002013
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002014 // "%x = add i32 %y, %z" and %x EQ %y then %z EQ 0
Nick Lewycky27e4da92007-03-22 02:02:51 +00002015 // "%x = add i32 %y, %z" and %x EQ %z then %y EQ 0
2016 // "%x = shl i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 0
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002017 // "%x = udiv i32 %y, %z" and %x EQ %y and %y NE 0 then %z EQ 1
Nick Lewycky565706b2006-11-22 23:49:16 +00002018
Nick Lewycky27e4da92007-03-22 02:02:51 +00002019 Value *Known = Op0, *Unknown = Op1,
Nick Lewycky29a05b62007-07-05 03:15:00 +00002020 *TheBO = VN.canonicalize(BO, Top);
Nick Lewycky27e4da92007-03-22 02:02:51 +00002021 if (Known != TheBO) std::swap(Known, Unknown);
2022 if (Known == TheBO) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002023 switch (Opcode) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002024 default: break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00002025 case Instruction::LShr:
2026 case Instruction::AShr:
2027 case Instruction::Shl:
2028 if (!isRelatedBy(Known, Zero, ICmpInst::ICMP_NE)) break;
2029 // otherwise, fall-through.
2030 case Instruction::Sub:
Nick Lewyckye29578a2007-09-20 00:48:36 +00002031 if (Unknown == Op0) break;
Nick Lewycky27e4da92007-03-22 02:02:51 +00002032 // otherwise, fall-through.
Nick Lewycky419c6f52007-01-11 02:32:38 +00002033 case Instruction::Xor:
Nick Lewycky419c6f52007-01-11 02:32:38 +00002034 case Instruction::Add:
Nick Lewycky3f64b1a2007-03-18 22:58:46 +00002035 add(Unknown, Zero, ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002036 break;
2037 case Instruction::UDiv:
2038 case Instruction::SDiv:
Nick Lewycky27e4da92007-03-22 02:02:51 +00002039 if (Unknown == Op1) break;
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002040 if (isRelatedBy(Known, Zero, ICmpInst::ICMP_NE))
Nick Lewyckyc2a7d092007-01-12 00:02:12 +00002041 add(Unknown, One, ICmpInst::ICMP_EQ, NewContext);
Nick Lewyckye63bf952006-10-25 23:48:24 +00002042 break;
Nick Lewycky565706b2006-11-22 23:49:16 +00002043 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002044 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002045
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002046 // TODO: "%a = add i32 %b, 1" and %b > %z then %a >= %z.
Nick Lewycky565706b2006-11-22 23:49:16 +00002047
Nick Lewycky419c6f52007-01-11 02:32:38 +00002048 } else if (ICmpInst *IC = dyn_cast<ICmpInst>(I)) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002049 // "%a = icmp ult i32 %b, %c" and %b u< %c then %a EQ true
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002050 // "%a = icmp ult i32 %b, %c" and %b u>= %c then %a EQ false
Nick Lewycky419c6f52007-01-11 02:32:38 +00002051 // etc.
2052
Nick Lewycky29a05b62007-07-05 03:15:00 +00002053 Value *Op0 = VN.canonicalize(IC->getOperand(0), Top);
2054 Value *Op1 = VN.canonicalize(IC->getOperand(1), Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002055
2056 ICmpInst::Predicate Pred = IC->getPredicate();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002057 if (isRelatedBy(Op0, Op1, Pred))
Owen Anderson5defacc2009-07-31 17:39:07 +00002058 add(IC, ConstantInt::getTrue(*Context), ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002059 else if (isRelatedBy(Op0, Op1, ICmpInst::getInversePredicate(Pred)))
Owen Anderson5defacc2009-07-31 17:39:07 +00002060 add(IC, ConstantInt::getFalse(*Context),
Owen Andersonf53c3712009-07-21 02:47:59 +00002061 ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002062
Nick Lewycky419c6f52007-01-11 02:32:38 +00002063 } else if (SelectInst *SI = dyn_cast<SelectInst>(I)) {
Nick Lewycky27e4da92007-03-22 02:02:51 +00002064 if (I->getType()->isFPOrFPVector()) return;
2065
Nick Lewycky4c708752007-03-16 02:37:39 +00002066 // Given: "%a = select i1 %x, i32 %b, i32 %c"
Nick Lewycky419c6f52007-01-11 02:32:38 +00002067 // %x EQ true then %a EQ %b
2068 // %x EQ false then %a EQ %c
2069 // %b EQ %c then %a EQ %b
2070
Nick Lewycky29a05b62007-07-05 03:15:00 +00002071 Value *Canonical = VN.canonicalize(SI->getCondition(), Top);
Owen Anderson5defacc2009-07-31 17:39:07 +00002072 if (Canonical == ConstantInt::getTrue(*Context)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002073 add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext);
Owen Anderson5defacc2009-07-31 17:39:07 +00002074 } else if (Canonical == ConstantInt::getFalse(*Context)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002075 add(SI, SI->getFalseValue(), ICmpInst::ICMP_EQ, NewContext);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002076 } else if (VN.canonicalize(SI->getTrueValue(), Top) ==
2077 VN.canonicalize(SI->getFalseValue(), Top)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002078 add(SI, SI->getTrueValue(), ICmpInst::ICMP_EQ, NewContext);
2079 }
Nick Lewycky28c5b152007-01-12 01:23:53 +00002080 } else if (CastInst *CI = dyn_cast<CastInst>(I)) {
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002081 const Type *DestTy = CI->getDestTy();
2082 if (DestTy->isFPOrFPVector()) return;
Nick Lewycky28c5b152007-01-12 01:23:53 +00002083
Nick Lewycky29a05b62007-07-05 03:15:00 +00002084 Value *Op = VN.canonicalize(CI->getOperand(0), Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002085 Instruction::CastOps Opcode = CI->getOpcode();
2086
2087 if (Constant *C = dyn_cast<Constant>(Op)) {
2088 add(CI, ConstantExpr::getCast(Opcode, C, DestTy),
Nick Lewycky28c5b152007-01-12 01:23:53 +00002089 ICmpInst::ICMP_EQ, NewContext);
2090 }
2091
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002092 uint32_t W = VR.typeToWidth(DestTy);
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002093 unsigned ci = VN.getOrInsertVN(CI, Top);
2094 ConstantRange CR = VR.range(VN.getOrInsertVN(Op, Top), Top);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002095
2096 if (!CR.isFullSet()) {
2097 switch (Opcode) {
2098 default: break;
2099 case Instruction::ZExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002100 VR.applyRange(ci, CR.zeroExtend(W), Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002101 break;
2102 case Instruction::SExt:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002103 VR.applyRange(ci, CR.signExtend(W), Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002104 break;
2105 case Instruction::Trunc: {
2106 ConstantRange Result = CR.truncate(W);
2107 if (!Result.isFullSet())
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002108 VR.applyRange(ci, Result, Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002109 } break;
2110 case Instruction::BitCast:
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002111 VR.applyRange(ci, CR, Top, this);
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002112 break;
2113 // TODO: other casts?
2114 }
2115 }
Nick Lewycky27e4da92007-03-22 02:02:51 +00002116 } else if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(I)) {
2117 for (GetElementPtrInst::op_iterator OI = GEPI->idx_begin(),
2118 OE = GEPI->idx_end(); OI != OE; ++OI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002119 ConstantInt *Op = dyn_cast<ConstantInt>(VN.canonicalize(*OI, Top));
Nick Lewycky27e4da92007-03-22 02:02:51 +00002120 if (!Op || !Op->isZero()) return;
2121 }
2122 // TODO: The GEPI indices are all zero. Copy from operand to definition,
2123 // jumping the type plane as needed.
2124 Value *Ptr = GEPI->getPointerOperand();
Owen Andersona7235ea2009-07-31 20:28:14 +00002125 if (isRelatedBy(Ptr, Constant::getNullValue(Ptr->getType()),
Nick Lewycky27e4da92007-03-22 02:02:51 +00002126 ICmpInst::ICMP_NE)) {
Owen Andersona7235ea2009-07-31 20:28:14 +00002127 add(GEPI, Constant::getNullValue(GEPI->getType()), ICmpInst::ICMP_NE,
Nick Lewycky27e4da92007-03-22 02:02:51 +00002128 NewContext);
2129 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002130 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002131 }
2132
2133 /// solve - process the work queue
Nick Lewycky419c6f52007-01-11 02:32:38 +00002134 void solve() {
2135 //DOUT << "WorkList entry, size: " << WorkList.size() << "\n";
2136 while (!WorkList.empty()) {
2137 //DOUT << "WorkList size: " << WorkList.size() << "\n";
2138
2139 Operation &O = WorkList.front();
Nick Lewycky0be7f472007-01-13 02:05:28 +00002140 TopInst = O.ContextInst;
2141 TopBB = O.ContextBB;
Nick Lewycky984504b2007-06-24 04:36:20 +00002142 Top = DTDFS->getNodeForBlock(TopBB); // XXX move this into Context
Nick Lewycky0be7f472007-01-13 02:05:28 +00002143
Nick Lewycky29a05b62007-07-05 03:15:00 +00002144 O.LHS = VN.canonicalize(O.LHS, Top);
2145 O.RHS = VN.canonicalize(O.RHS, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002146
Nick Lewycky29a05b62007-07-05 03:15:00 +00002147 assert(O.LHS == VN.canonicalize(O.LHS, Top) && "Canonicalize isn't.");
2148 assert(O.RHS == VN.canonicalize(O.RHS, Top) && "Canonicalize isn't.");
Nick Lewycky419c6f52007-01-11 02:32:38 +00002149
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002150 DEBUG(errs() << "solving " << *O.LHS << " " << O.Op << " " << *O.RHS;
2151 if (O.ContextInst)
2152 errs() << " context inst: " << *O.ContextInst;
2153 else
2154 errs() << " context block: " << O.ContextBB->getName();
2155 errs() << "\n";
Nick Lewycky419c6f52007-01-11 02:32:38 +00002156
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002157 VN.dump();
2158 IG.dump();
2159 VR.dump(););
Nick Lewycky419c6f52007-01-11 02:32:38 +00002160
Nick Lewycky45351752007-02-04 23:43:05 +00002161 // If they're both Constant, skip it. Check for contradiction and mark
2162 // the BB as unreachable if so.
2163 if (Constant *CI_L = dyn_cast<Constant>(O.LHS)) {
2164 if (Constant *CI_R = dyn_cast<Constant>(O.RHS)) {
Owen Andersonbaf3c402009-07-29 18:55:55 +00002165 if (ConstantExpr::getCompare(O.Op, CI_L, CI_R) ==
Owen Anderson5defacc2009-07-31 17:39:07 +00002166 ConstantInt::getFalse(*Context))
Nick Lewycky45351752007-02-04 23:43:05 +00002167 UB.mark(TopBB);
2168
2169 WorkList.pop_front();
2170 continue;
2171 }
2172 }
2173
Nick Lewycky29a05b62007-07-05 03:15:00 +00002174 if (VN.compare(O.LHS, O.RHS)) {
Nick Lewycky45351752007-02-04 23:43:05 +00002175 std::swap(O.LHS, O.RHS);
2176 O.Op = ICmpInst::getSwappedPredicate(O.Op);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002177 }
2178
2179 if (O.Op == ICmpInst::ICMP_EQ) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002180 if (!makeEqual(O.RHS, O.LHS))
Nick Lewycky419c6f52007-01-11 02:32:38 +00002181 UB.mark(TopBB);
2182 } else {
2183 LatticeVal LV = cmpInstToLattice(O.Op);
2184
2185 if ((LV & EQ_BIT) &&
2186 isRelatedBy(O.LHS, O.RHS, ICmpInst::getSwappedPredicate(O.Op))) {
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002187 if (!makeEqual(O.RHS, O.LHS))
Nick Lewycky419c6f52007-01-11 02:32:38 +00002188 UB.mark(TopBB);
2189 } else {
2190 if (isRelatedBy(O.LHS, O.RHS, ICmpInst::getInversePredicate(O.Op))){
Nick Lewycky45351752007-02-04 23:43:05 +00002191 UB.mark(TopBB);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002192 WorkList.pop_front();
2193 continue;
2194 }
2195
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002196 unsigned n1 = VN.getOrInsertVN(O.LHS, Top);
2197 unsigned n2 = VN.getOrInsertVN(O.RHS, Top);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002198
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002199 if (n1 == n2) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002200 if (O.Op != ICmpInst::ICMP_UGE && O.Op != ICmpInst::ICMP_ULE &&
2201 O.Op != ICmpInst::ICMP_SGE && O.Op != ICmpInst::ICMP_SLE)
2202 UB.mark(TopBB);
2203
2204 WorkList.pop_front();
2205 continue;
2206 }
2207
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002208 if (VR.isRelatedBy(n1, n2, Top, LV) ||
2209 IG.isRelatedBy(n1, n2, Top, LV)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002210 WorkList.pop_front();
2211 continue;
2212 }
2213
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002214 VR.addInequality(n1, n2, Top, LV, this);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002215 if ((!isa<ConstantInt>(O.RHS) && !isa<ConstantInt>(O.LHS)) ||
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002216 LV == NE)
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002217 IG.addInequality(n1, n2, Top, LV);
Nick Lewycky45351752007-02-04 23:43:05 +00002218
Nick Lewyckydd402582007-01-15 14:30:07 +00002219 if (Instruction *I1 = dyn_cast<Instruction>(O.LHS)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002220 if (aboveOrBelow(I1))
Nick Lewyckydd402582007-01-15 14:30:07 +00002221 defToOps(I1);
2222 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002223 if (isa<Instruction>(O.LHS) || isa<Argument>(O.LHS)) {
2224 for (Value::use_iterator UI = O.LHS->use_begin(),
2225 UE = O.LHS->use_end(); UI != UE;) {
2226 Use &TheUse = UI.getUse();
2227 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00002228 Instruction *I = cast<Instruction>(TheUse.getUser());
2229 if (aboveOrBelow(I))
2230 opsToDef(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002231 }
2232 }
Nick Lewyckydd402582007-01-15 14:30:07 +00002233 if (Instruction *I2 = dyn_cast<Instruction>(O.RHS)) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002234 if (aboveOrBelow(I2))
Nick Lewyckydd402582007-01-15 14:30:07 +00002235 defToOps(I2);
2236 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002237 if (isa<Instruction>(O.RHS) || isa<Argument>(O.RHS)) {
2238 for (Value::use_iterator UI = O.RHS->use_begin(),
2239 UE = O.RHS->use_end(); UI != UE;) {
2240 Use &TheUse = UI.getUse();
2241 ++UI;
Jay Foad0906b1b2009-06-06 17:49:35 +00002242 Instruction *I = cast<Instruction>(TheUse.getUser());
2243 if (aboveOrBelow(I))
2244 opsToDef(I);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002245 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002246 }
2247 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002248 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002249 WorkList.pop_front();
Nick Lewyckye63bf952006-10-25 23:48:24 +00002250 }
Nick Lewyckye63bf952006-10-25 23:48:24 +00002251 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002252 };
2253
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00002254 void ValueRanges::addToWorklist(Value *V, Constant *C,
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002255 ICmpInst::Predicate Pred, VRPSolver *VRP) {
Nick Lewyckyf3a9e362007-04-07 03:36:51 +00002256 VRP->add(V, C, Pred, VRP->TopInst);
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002257 }
2258
Nick Lewyckyac4d6642007-04-07 15:48:32 +00002259 void ValueRanges::markBlock(VRPSolver *VRP) {
2260 VRP->UB.mark(VRP->TopBB);
2261 }
2262
Nick Lewycky05450ae2006-08-28 22:44:55 +00002263 /// PredicateSimplifier - This class is a simplifier that replaces
2264 /// one equivalent variable with another. It also tracks what
2265 /// can't be equal and will solve setcc instructions when possible.
Nick Lewycky565706b2006-11-22 23:49:16 +00002266 /// @brief Root of the predicate simplifier optimization.
2267 class VISIBILITY_HIDDEN PredicateSimplifier : public FunctionPass {
Nick Lewycky984504b2007-06-24 04:36:20 +00002268 DomTreeDFS *DTDFS;
Nick Lewycky565706b2006-11-22 23:49:16 +00002269 bool modified;
Nick Lewycky29a05b62007-07-05 03:15:00 +00002270 ValueNumbering *VN;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002271 InequalityGraph *IG;
2272 UnreachableBlocks UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002273 ValueRanges *VR;
Nick Lewycky565706b2006-11-22 23:49:16 +00002274
Nick Lewycky984504b2007-06-24 04:36:20 +00002275 std::vector<DomTreeDFS::Node *> WorkList;
Nick Lewycky565706b2006-11-22 23:49:16 +00002276
Owen Andersone922c022009-07-22 00:24:57 +00002277 LLVMContext *Context;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002278 public:
Nick Lewyckyecd94c82007-05-06 13:37:16 +00002279 static char ID; // Pass identification, replacement for typeid
Dan Gohmanae73dc12008-09-04 17:05:41 +00002280 PredicateSimplifier() : FunctionPass(&ID) {}
Devang Patel794fd752007-05-01 21:15:47 +00002281
Nick Lewycky05450ae2006-08-28 22:44:55 +00002282 bool runOnFunction(Function &F);
Nick Lewycky565706b2006-11-22 23:49:16 +00002283
2284 virtual void getAnalysisUsage(AnalysisUsage &AU) const {
2285 AU.addRequiredID(BreakCriticalEdgesID);
Owen Andersonab0e4d32007-04-25 04:18:54 +00002286 AU.addRequired<DominatorTree>();
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002287 AU.addRequired<TargetData>();
2288 AU.addPreserved<TargetData>();
Nick Lewycky565706b2006-11-22 23:49:16 +00002289 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002290
2291 private:
Nick Lewycky5380e942007-07-16 02:58:37 +00002292 /// Forwards - Adds new properties to VRPSolver and uses them to
Nick Lewycky078ff412006-10-12 02:02:44 +00002293 /// simplify instructions. Because new properties sometimes apply to
2294 /// a transition from one BasicBlock to another, this will use the
2295 /// PredicateSimplifier::proceedToSuccessor(s) interface to enter the
Nick Lewycky5380e942007-07-16 02:58:37 +00002296 /// basic block.
Nick Lewycky565706b2006-11-22 23:49:16 +00002297 /// @brief Performs abstract execution of the program.
2298 class VISIBILITY_HIDDEN Forwards : public InstVisitor<Forwards> {
Nick Lewycky078ff412006-10-12 02:02:44 +00002299 friend class InstVisitor<Forwards>;
2300 PredicateSimplifier *PS;
Nick Lewycky984504b2007-06-24 04:36:20 +00002301 DomTreeDFS::Node *DTNode;
Nick Lewycky565706b2006-11-22 23:49:16 +00002302
Nick Lewycky078ff412006-10-12 02:02:44 +00002303 public:
Nick Lewycky29a05b62007-07-05 03:15:00 +00002304 ValueNumbering &VN;
Nick Lewycky565706b2006-11-22 23:49:16 +00002305 InequalityGraph &IG;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002306 UnreachableBlocks &UB;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002307 ValueRanges &VR;
Nick Lewycky078ff412006-10-12 02:02:44 +00002308
Nick Lewycky984504b2007-06-24 04:36:20 +00002309 Forwards(PredicateSimplifier *PS, DomTreeDFS::Node *DTNode)
Nick Lewycky29a05b62007-07-05 03:15:00 +00002310 : PS(PS), DTNode(DTNode), VN(*PS->VN), IG(*PS->IG), UB(PS->UB),
2311 VR(*PS->VR) {}
Nick Lewycky078ff412006-10-12 02:02:44 +00002312
2313 void visitTerminatorInst(TerminatorInst &TI);
2314 void visitBranchInst(BranchInst &BI);
2315 void visitSwitchInst(SwitchInst &SI);
2316
Nick Lewycky802fe272006-10-22 19:53:27 +00002317 void visitAllocaInst(AllocaInst &AI);
Nick Lewycky078ff412006-10-12 02:02:44 +00002318 void visitLoadInst(LoadInst &LI);
2319 void visitStoreInst(StoreInst &SI);
Nick Lewycky565706b2006-11-22 23:49:16 +00002320
Nick Lewycky45351752007-02-04 23:43:05 +00002321 void visitSExtInst(SExtInst &SI);
2322 void visitZExtInst(ZExtInst &ZI);
2323
Nick Lewycky078ff412006-10-12 02:02:44 +00002324 void visitBinaryOperator(BinaryOperator &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002325 void visitICmpInst(ICmpInst &IC);
Nick Lewycky078ff412006-10-12 02:02:44 +00002326 };
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002327
Nick Lewycky05450ae2006-08-28 22:44:55 +00002328 // Used by terminator instructions to proceed from the current basic
2329 // block to the next. Verifies that "current" dominates "next",
2330 // then calls visitBasicBlock.
Nick Lewycky984504b2007-06-24 04:36:20 +00002331 void proceedToSuccessors(DomTreeDFS::Node *Current) {
2332 for (DomTreeDFS::Node::iterator I = Current->begin(),
Owen Andersonab0e4d32007-04-25 04:18:54 +00002333 E = Current->end(); I != E; ++I) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002334 WorkList.push_back(*I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002335 }
2336 }
2337
Nick Lewycky984504b2007-06-24 04:36:20 +00002338 void proceedToSuccessor(DomTreeDFS::Node *Next) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002339 WorkList.push_back(Next);
Nick Lewycky565706b2006-11-22 23:49:16 +00002340 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002341
2342 // Visits each instruction in the basic block.
Nick Lewycky984504b2007-06-24 04:36:20 +00002343 void visitBasicBlock(DomTreeDFS::Node *Node) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002344 BasicBlock *BB = Node->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002345 DEBUG(errs() << "Entering Basic Block: " << BB->getName()
2346 << " (" << Node->getDFSNumIn() << ")\n");
Bill Wendling832171c2006-12-07 20:04:42 +00002347 for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E;) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002348 visitInstruction(I++, Node);
Nick Lewycky565706b2006-11-22 23:49:16 +00002349 }
2350 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002351
Nick Lewycky5380e942007-07-16 02:58:37 +00002352 // Tries to simplify each Instruction and add new properties.
Nick Lewycky984504b2007-06-24 04:36:20 +00002353 void visitInstruction(Instruction *I, DomTreeDFS::Node *DT) {
Bill Wendling832171c2006-12-07 20:04:42 +00002354 DOUT << "Considering instruction " << *I << "\n";
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002355 DEBUG(VN->dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002356 DEBUG(IG->dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002357 DEBUG(VR->dump());
Nick Lewycky05450ae2006-08-28 22:44:55 +00002358
Nick Lewycky419c6f52007-01-11 02:32:38 +00002359 // Sometimes instructions are killed in earlier analysis.
Nick Lewycky565706b2006-11-22 23:49:16 +00002360 if (isInstructionTriviallyDead(I)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002361 ++NumSimple;
2362 modified = true;
Nick Lewycky29a05b62007-07-05 03:15:00 +00002363 if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode()))
2364 if (VN->value(n) == I) IG->remove(n);
2365 VN->remove(I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002366 I->eraseFromParent();
2367 return;
2368 }
2369
Nick Lewycky0be7f472007-01-13 02:05:28 +00002370#ifndef NDEBUG
Nick Lewycky565706b2006-11-22 23:49:16 +00002371 // Try to replace the whole instruction.
Nick Lewycky29a05b62007-07-05 03:15:00 +00002372 Value *V = VN->canonicalize(I, DT);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002373 assert(V == I && "Late instruction canonicalization.");
Nick Lewycky565706b2006-11-22 23:49:16 +00002374 if (V != I) {
2375 modified = true;
2376 ++NumInstruction;
Bill Wendling832171c2006-12-07 20:04:42 +00002377 DOUT << "Removing " << *I << ", replacing with " << *V << "\n";
Nick Lewycky29a05b62007-07-05 03:15:00 +00002378 if (unsigned n = VN->valueNumber(I, DTDFS->getRootNode()))
2379 if (VN->value(n) == I) IG->remove(n);
2380 VN->remove(I);
Nick Lewycky565706b2006-11-22 23:49:16 +00002381 I->replaceAllUsesWith(V);
2382 I->eraseFromParent();
2383 return;
2384 }
2385
2386 // Try to substitute operands.
2387 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
2388 Value *Oper = I->getOperand(i);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002389 Value *V = VN->canonicalize(Oper, DT);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002390 assert(V == Oper && "Late operand canonicalization.");
Nick Lewycky565706b2006-11-22 23:49:16 +00002391 if (V != Oper) {
2392 modified = true;
2393 ++NumVarsReplaced;
Bill Wendling832171c2006-12-07 20:04:42 +00002394 DOUT << "Resolving " << *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00002395 I->setOperand(i, V);
Bill Wendling832171c2006-12-07 20:04:42 +00002396 DOUT << " into " << *I;
Nick Lewycky565706b2006-11-22 23:49:16 +00002397 }
2398 }
Nick Lewycky0be7f472007-01-13 02:05:28 +00002399#endif
Nick Lewycky565706b2006-11-22 23:49:16 +00002400
Nick Lewycky4c708752007-03-16 02:37:39 +00002401 std::string name = I->getParent()->getName();
2402 DOUT << "push (%" << name << ")\n";
Owen Andersonab0e4d32007-04-25 04:18:54 +00002403 Forwards visit(this, DT);
Nick Lewycky565706b2006-11-22 23:49:16 +00002404 visit.visit(*I);
Nick Lewycky4c708752007-03-16 02:37:39 +00002405 DOUT << "pop (%" << name << ")\n";
Nick Lewycky565706b2006-11-22 23:49:16 +00002406 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002407 };
2408
Nick Lewycky565706b2006-11-22 23:49:16 +00002409 bool PredicateSimplifier::runOnFunction(Function &F) {
Nick Lewycky984504b2007-06-24 04:36:20 +00002410 DominatorTree *DT = &getAnalysis<DominatorTree>();
2411 DTDFS = new DomTreeDFS(DT);
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002412 TargetData *TD = &getAnalysis<TargetData>();
Owen Andersone922c022009-07-22 00:24:57 +00002413 Context = &F.getContext();
Nick Lewyckyb01c77e2007-04-07 03:16:12 +00002414
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002415 DEBUG(errs() << "Entering Function: " << F.getName() << "\n");
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002416
Nick Lewycky565706b2006-11-22 23:49:16 +00002417 modified = false;
Nick Lewycky984504b2007-06-24 04:36:20 +00002418 DomTreeDFS::Node *Root = DTDFS->getRootNode();
Nick Lewycky29a05b62007-07-05 03:15:00 +00002419 VN = new ValueNumbering(DTDFS);
2420 IG = new InequalityGraph(*VN, Root);
Owen Anderson001dbfe2009-07-16 18:04:31 +00002421 VR = new ValueRanges(*VN, TD, Context);
Nick Lewycky984504b2007-06-24 04:36:20 +00002422 WorkList.push_back(Root);
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002423
Nick Lewycky565706b2006-11-22 23:49:16 +00002424 do {
Nick Lewycky984504b2007-06-24 04:36:20 +00002425 DomTreeDFS::Node *DTNode = WorkList.back();
Nick Lewycky565706b2006-11-22 23:49:16 +00002426 WorkList.pop_back();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002427 if (!UB.isDead(DTNode->getBlock())) visitBasicBlock(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002428 } while (!WorkList.empty());
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002429
Nick Lewycky984504b2007-06-24 04:36:20 +00002430 delete DTDFS;
Nick Lewyckye677a0b2007-03-10 18:12:48 +00002431 delete VR;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002432 delete IG;
Nuno Lopesea736ce2008-11-09 12:45:23 +00002433 delete VN;
Nick Lewycky419c6f52007-01-11 02:32:38 +00002434
2435 modified |= UB.kill();
Nick Lewycky406fc0c2006-09-20 17:04:01 +00002436
Nick Lewycky565706b2006-11-22 23:49:16 +00002437 return modified;
Nick Lewyckya3a68bd2006-09-02 19:40:38 +00002438 }
2439
Nick Lewycky565706b2006-11-22 23:49:16 +00002440 void PredicateSimplifier::Forwards::visitTerminatorInst(TerminatorInst &TI) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002441 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002442 }
2443
2444 void PredicateSimplifier::Forwards::visitBranchInst(BranchInst &BI) {
Nick Lewycky565706b2006-11-22 23:49:16 +00002445 if (BI.isUnconditional()) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002446 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002447 return;
2448 }
2449
2450 Value *Condition = BI.getCondition();
Nick Lewycky419c6f52007-01-11 02:32:38 +00002451 BasicBlock *TrueDest = BI.getSuccessor(0);
2452 BasicBlock *FalseDest = BI.getSuccessor(1);
Nick Lewycky565706b2006-11-22 23:49:16 +00002453
Nick Lewycky419c6f52007-01-11 02:32:38 +00002454 if (isa<Constant>(Condition) || TrueDest == FalseDest) {
Owen Andersonab0e4d32007-04-25 04:18:54 +00002455 PS->proceedToSuccessors(DTNode);
Nick Lewycky565706b2006-11-22 23:49:16 +00002456 return;
2457 }
2458
Owen Andersone922c022009-07-22 00:24:57 +00002459 LLVMContext *Context = &BI.getContext();
Owen Andersonf53c3712009-07-21 02:47:59 +00002460
Nick Lewycky984504b2007-06-24 04:36:20 +00002461 for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002462 I != E; ++I) {
2463 BasicBlock *Dest = (*I)->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002464 DEBUG(errs() << "Branch thinking about %" << Dest->getName()
2465 << "(" << PS->DTDFS->getNodeForBlock(Dest)->getDFSNumIn() << ")\n");
Nick Lewycky565706b2006-11-22 23:49:16 +00002466
2467 if (Dest == TrueDest) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002468 DEBUG(errs() << "(" << DTNode->getBlock()->getName()
2469 << ") true set:\n");
Nick Lewycky29a05b62007-07-05 03:15:00 +00002470 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest);
Owen Anderson5defacc2009-07-31 17:39:07 +00002471 VRP.add(ConstantInt::getTrue(*Context), Condition, ICmpInst::ICMP_EQ);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002472 VRP.solve();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002473 DEBUG(VN.dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002474 DEBUG(IG.dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002475 DEBUG(VR.dump());
Nick Lewycky565706b2006-11-22 23:49:16 +00002476 } else if (Dest == FalseDest) {
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002477 DEBUG(errs() << "(" << DTNode->getBlock()->getName()
2478 << ") false set:\n");
Nick Lewycky29a05b62007-07-05 03:15:00 +00002479 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, Dest);
Owen Anderson5defacc2009-07-31 17:39:07 +00002480 VRP.add(ConstantInt::getFalse(*Context), Condition, ICmpInst::ICMP_EQ);
Nick Lewycky419c6f52007-01-11 02:32:38 +00002481 VRP.solve();
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002482 DEBUG(VN.dump());
Nick Lewycky419c6f52007-01-11 02:32:38 +00002483 DEBUG(IG.dump());
Nick Lewycky6e8eb7f2007-07-10 03:28:21 +00002484 DEBUG(VR.dump());
Nick Lewycky565706b2006-11-22 23:49:16 +00002485 }
2486
Nick Lewycky419c6f52007-01-11 02:32:38 +00002487 PS->proceedToSuccessor(*I);
Nick Lewycky05450ae2006-08-28 22:44:55 +00002488 }
2489 }
2490
Nick Lewycky565706b2006-11-22 23:49:16 +00002491 void PredicateSimplifier::Forwards::visitSwitchInst(SwitchInst &SI) {
2492 Value *Condition = SI.getCondition();
Nick Lewycky05450ae2006-08-28 22:44:55 +00002493
Nick Lewycky565706b2006-11-22 23:49:16 +00002494 // Set the EQProperty in each of the cases BBs, and the NEProperties
2495 // in the default BB.
Owen Andersonab0e4d32007-04-25 04:18:54 +00002496
Nick Lewycky984504b2007-06-24 04:36:20 +00002497 for (DomTreeDFS::Node::iterator I = DTNode->begin(), E = DTNode->end();
Owen Andersonab0e4d32007-04-25 04:18:54 +00002498 I != E; ++I) {
2499 BasicBlock *BB = (*I)->getBlock();
Daniel Dunbarce63ffb2009-07-25 00:23:56 +00002500 DEBUG(errs() << "Switch thinking about BB %" << BB->getName()
2501 << "(" << PS->DTDFS->getNodeForBlock(BB)->getDFSNumIn() << ")\n");
Nick Lewycky05450ae2006-08-28 22:44:55 +00002502
Nick Lewycky29a05b62007-07-05 03:15:00 +00002503 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, BB);
Nick Lewycky565706b2006-11-22 23:49:16 +00002504 if (BB == SI.getDefaultDest()) {
2505 for (unsigned i = 1, e = SI.getNumCases(); i < e; ++i)
2506 if (SI.getSuccessor(i) != BB)
Nick Lewycky419c6f52007-01-11 02:32:38 +00002507 VRP.add(Condition, SI.getCaseValue(i), ICmpInst::ICMP_NE);
2508 VRP.solve();
Nick Lewycky565706b2006-11-22 23:49:16 +00002509 } else if (ConstantInt *CI = SI.findCaseDest(BB)) {
Nick Lewycky419c6f52007-01-11 02:32:38 +00002510 VRP.add(Condition, CI, ICmpInst::ICMP_EQ);
2511 VRP.solve();
Nick Lewycky565706b2006-11-22 23:49:16 +00002512 }
Nick Lewycky419c6f52007-01-11 02:32:38 +00002513 PS->proceedToSuccessor(*I);
Nick Lewyckya73a6542006-10-03 15:19:11 +00002514 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002515 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002516
Nick Lewycky565706b2006-11-22 23:49:16 +00002517 void PredicateSimplifier::Forwards::visitAllocaInst(AllocaInst &AI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002518 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &AI);
Owen Andersona7235ea2009-07-31 20:28:14 +00002519 VRP.add(Constant::getNullValue(AI.getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002520 &AI, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002521 VRP.solve();
2522 }
Nick Lewycky802fe272006-10-22 19:53:27 +00002523
Nick Lewycky565706b2006-11-22 23:49:16 +00002524 void PredicateSimplifier::Forwards::visitLoadInst(LoadInst &LI) {
2525 Value *Ptr = LI.getPointerOperand();
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002526 // avoid "load i8* null" -> null NE null.
Nick Lewycky565706b2006-11-22 23:49:16 +00002527 if (isa<Constant>(Ptr)) return;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002528
Nick Lewycky29a05b62007-07-05 03:15:00 +00002529 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &LI);
Owen Andersona7235ea2009-07-31 20:28:14 +00002530 VRP.add(Constant::getNullValue(Ptr->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002531 Ptr, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002532 VRP.solve();
2533 }
Nick Lewycky05450ae2006-08-28 22:44:55 +00002534
Nick Lewycky565706b2006-11-22 23:49:16 +00002535 void PredicateSimplifier::Forwards::visitStoreInst(StoreInst &SI) {
2536 Value *Ptr = SI.getPointerOperand();
2537 if (isa<Constant>(Ptr)) return;
Nick Lewycky05450ae2006-08-28 22:44:55 +00002538
Nick Lewycky29a05b62007-07-05 03:15:00 +00002539 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI);
Owen Andersona7235ea2009-07-31 20:28:14 +00002540 VRP.add(Constant::getNullValue(Ptr->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002541 Ptr, ICmpInst::ICMP_NE);
Nick Lewycky565706b2006-11-22 23:49:16 +00002542 VRP.solve();
2543 }
2544
Nick Lewycky45351752007-02-04 23:43:05 +00002545 void PredicateSimplifier::Forwards::visitSExtInst(SExtInst &SI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002546 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &SI);
Owen Andersoneed707b2009-07-24 23:12:02 +00002547 LLVMContext &Context = SI.getContext();
Reid Spenceraf3e9462007-03-03 00:48:31 +00002548 uint32_t SrcBitWidth = cast<IntegerType>(SI.getSrcTy())->getBitWidth();
2549 uint32_t DstBitWidth = cast<IntegerType>(SI.getDestTy())->getBitWidth();
Zhou Sheng223d65b2007-04-19 05:35:00 +00002550 APInt Min(APInt::getHighBitsSet(DstBitWidth, DstBitWidth-SrcBitWidth+1));
2551 APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth-1));
Owen Andersoneed707b2009-07-24 23:12:02 +00002552 VRP.add(ConstantInt::get(Context, Min), &SI, ICmpInst::ICMP_SLE);
2553 VRP.add(ConstantInt::get(Context, Max), &SI, ICmpInst::ICMP_SGE);
Nick Lewycky45351752007-02-04 23:43:05 +00002554 VRP.solve();
2555 }
2556
2557 void PredicateSimplifier::Forwards::visitZExtInst(ZExtInst &ZI) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002558 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &ZI);
Owen Andersoneed707b2009-07-24 23:12:02 +00002559 LLVMContext &Context = ZI.getContext();
Reid Spenceraf3e9462007-03-03 00:48:31 +00002560 uint32_t SrcBitWidth = cast<IntegerType>(ZI.getSrcTy())->getBitWidth();
2561 uint32_t DstBitWidth = cast<IntegerType>(ZI.getDestTy())->getBitWidth();
Zhou Sheng223d65b2007-04-19 05:35:00 +00002562 APInt Max(APInt::getLowBitsSet(DstBitWidth, SrcBitWidth));
Owen Andersoneed707b2009-07-24 23:12:02 +00002563 VRP.add(ConstantInt::get(Context, Max), &ZI, ICmpInst::ICMP_UGE);
Nick Lewycky45351752007-02-04 23:43:05 +00002564 VRP.solve();
2565 }
2566
Nick Lewycky565706b2006-11-22 23:49:16 +00002567 void PredicateSimplifier::Forwards::visitBinaryOperator(BinaryOperator &BO) {
2568 Instruction::BinaryOps ops = BO.getOpcode();
2569
2570 switch (ops) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002571 default: break;
Nick Lewycky45351752007-02-04 23:43:05 +00002572 case Instruction::URem:
2573 case Instruction::SRem:
2574 case Instruction::UDiv:
2575 case Instruction::SDiv: {
2576 Value *Divisor = BO.getOperand(1);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002577 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Owen Andersona7235ea2009-07-31 20:28:14 +00002578 VRP.add(Constant::getNullValue(Divisor->getType()),
Owen Anderson0a5372e2009-07-13 04:09:18 +00002579 Divisor, ICmpInst::ICMP_NE);
Nick Lewycky45351752007-02-04 23:43:05 +00002580 VRP.solve();
2581 break;
2582 }
Nick Lewycky4c708752007-03-16 02:37:39 +00002583 }
2584
2585 switch (ops) {
2586 default: break;
2587 case Instruction::Shl: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002588 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002589 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE);
2590 VRP.solve();
2591 } break;
2592 case Instruction::AShr: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002593 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002594 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_SLE);
2595 VRP.solve();
2596 } break;
2597 case Instruction::LShr:
2598 case Instruction::UDiv: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002599 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002600 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE);
2601 VRP.solve();
2602 } break;
2603 case Instruction::URem: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002604 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002605 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE);
2606 VRP.solve();
2607 } break;
2608 case Instruction::And: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002609 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002610 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_ULE);
2611 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_ULE);
2612 VRP.solve();
2613 } break;
2614 case Instruction::Or: {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002615 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &BO);
Nick Lewycky4c708752007-03-16 02:37:39 +00002616 VRP.add(&BO, BO.getOperand(0), ICmpInst::ICMP_UGE);
2617 VRP.add(&BO, BO.getOperand(1), ICmpInst::ICMP_UGE);
2618 VRP.solve();
2619 } break;
2620 }
2621 }
2622
2623 void PredicateSimplifier::Forwards::visitICmpInst(ICmpInst &IC) {
2624 // If possible, squeeze the ICmp predicate into something simpler.
2625 // Eg., if x = [0, 4) and we're being asked icmp uge %x, 3 then change
2626 // the predicate to eq.
2627
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002628 // XXX: once we do full PHI handling, modifying the instruction in the
2629 // Forwards visitor will cause missed optimizations.
2630
Nick Lewycky4c708752007-03-16 02:37:39 +00002631 ICmpInst::Predicate Pred = IC.getPredicate();
2632
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002633 switch (Pred) {
2634 default: break;
2635 case ICmpInst::ICMP_ULE: Pred = ICmpInst::ICMP_ULT; break;
2636 case ICmpInst::ICMP_UGE: Pred = ICmpInst::ICMP_UGT; break;
2637 case ICmpInst::ICMP_SLE: Pred = ICmpInst::ICMP_SLT; break;
2638 case ICmpInst::ICMP_SGE: Pred = ICmpInst::ICMP_SGT; break;
2639 }
2640 if (Pred != IC.getPredicate()) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002641 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC);
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002642 if (VRP.isRelatedBy(IC.getOperand(1), IC.getOperand(0),
2643 ICmpInst::ICMP_NE)) {
2644 ++NumSnuggle;
2645 PS->modified = true;
2646 IC.setPredicate(Pred);
2647 }
2648 }
2649
2650 Pred = IC.getPredicate();
2651
Owen Andersoneed707b2009-07-24 23:12:02 +00002652 LLVMContext &Context = IC.getContext();
Owen Anderson001dbfe2009-07-16 18:04:31 +00002653
Nick Lewycky4c708752007-03-16 02:37:39 +00002654 if (ConstantInt *Op1 = dyn_cast<ConstantInt>(IC.getOperand(1))) {
2655 ConstantInt *NextVal = 0;
Nick Lewycky8ac40dd2007-04-07 02:30:14 +00002656 switch (Pred) {
Nick Lewycky4c708752007-03-16 02:37:39 +00002657 default: break;
2658 case ICmpInst::ICMP_SLT:
2659 case ICmpInst::ICMP_ULT:
2660 if (Op1->getValue() != 0)
Owen Andersoneed707b2009-07-24 23:12:02 +00002661 NextVal = ConstantInt::get(Context, Op1->getValue()-1);
Nick Lewycky4c708752007-03-16 02:37:39 +00002662 break;
2663 case ICmpInst::ICMP_SGT:
2664 case ICmpInst::ICMP_UGT:
2665 if (!Op1->getValue().isAllOnesValue())
Owen Andersoneed707b2009-07-24 23:12:02 +00002666 NextVal = ConstantInt::get(Context, Op1->getValue()+1);
Nick Lewycky4c708752007-03-16 02:37:39 +00002667 break;
Nick Lewycky4c708752007-03-16 02:37:39 +00002668 }
Nick Lewycky79cce5c2008-10-24 04:00:26 +00002669
Nick Lewycky4c708752007-03-16 02:37:39 +00002670 if (NextVal) {
Nick Lewycky29a05b62007-07-05 03:15:00 +00002671 VRPSolver VRP(VN, IG, UB, VR, PS->DTDFS, PS->modified, &IC);
Nick Lewycky4c708752007-03-16 02:37:39 +00002672 if (VRP.isRelatedBy(IC.getOperand(0), NextVal,
2673 ICmpInst::getInversePredicate(Pred))) {
Owen Anderson333c4002009-07-09 23:48:35 +00002674 ICmpInst *NewIC = new ICmpInst(&IC, ICmpInst::ICMP_EQ,
2675 IC.getOperand(0), NextVal, "");
Nick Lewycky4c708752007-03-16 02:37:39 +00002676 NewIC->takeName(&IC);
2677 IC.replaceAllUsesWith(NewIC);
Nick Lewycky29a05b62007-07-05 03:15:00 +00002678
2679 // XXX: prove this isn't necessary
2680 if (unsigned n = VN.valueNumber(&IC, PS->DTDFS->getRootNode()))
2681 if (VN.value(n) == &IC) IG.remove(n);
2682 VN.remove(&IC);
2683
Nick Lewycky4c708752007-03-16 02:37:39 +00002684 IC.eraseFromParent();
2685 ++NumSnuggle;
2686 PS->modified = true;
Nick Lewycky4c708752007-03-16 02:37:39 +00002687 }
2688 }
2689 }
Nick Lewycky3947a762006-08-30 02:46:48 +00002690 }
Nick Lewycky565706b2006-11-22 23:49:16 +00002691}
2692
Dan Gohman844731a2008-05-13 00:00:25 +00002693char PredicateSimplifier::ID = 0;
2694static RegisterPass<PredicateSimplifier>
2695X("predsimplify", "Predicate Simplifier");
2696
Nick Lewycky565706b2006-11-22 23:49:16 +00002697FunctionPass *llvm::createPredicateSimplifierPass() {
2698 return new PredicateSimplifier();
Nick Lewycky05450ae2006-08-28 22:44:55 +00002699}