blob: e4cd867743a37731362a4df559f36103157555e1 [file] [log] [blame]
Chris Lattner10f2d132009-11-11 00:22:30 +00001//===- LazyValueInfo.cpp - Value constraint analysis ----------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interface for lazy computation of value constraint
11// information.
12//
13//===----------------------------------------------------------------------===//
14
Chris Lattnerb8c124c2009-11-12 01:22:16 +000015#define DEBUG_TYPE "lazy-value-info"
Chris Lattner10f2d132009-11-11 00:22:30 +000016#include "llvm/Analysis/LazyValueInfo.h"
Chris Lattnercc4d3b22009-11-11 02:08:33 +000017#include "llvm/Constants.h"
18#include "llvm/Instructions.h"
19#include "llvm/Analysis/ConstantFolding.h"
20#include "llvm/Target/TargetData.h"
Chris Lattner16976522009-11-11 22:48:44 +000021#include "llvm/Support/CFG.h"
Owen Anderson5be2e782010-08-05 22:59:19 +000022#include "llvm/Support/ConstantRange.h"
Chris Lattnerb8c124c2009-11-12 01:22:16 +000023#include "llvm/Support/Debug.h"
Chris Lattner16976522009-11-11 22:48:44 +000024#include "llvm/Support/raw_ostream.h"
Owen Anderson7f9cb742010-07-30 23:59:40 +000025#include "llvm/Support/ValueHandle.h"
Chris Lattner16976522009-11-11 22:48:44 +000026#include "llvm/ADT/DenseMap.h"
Owen Anderson9a65dc92010-07-27 23:58:11 +000027#include "llvm/ADT/DenseSet.h"
Chris Lattnere5642812009-11-15 20:00:52 +000028#include "llvm/ADT/STLExtras.h"
Chris Lattner10f2d132009-11-11 00:22:30 +000029using namespace llvm;
30
31char LazyValueInfo::ID = 0;
Owen Andersond13db2c2010-07-21 22:09:45 +000032INITIALIZE_PASS(LazyValueInfo, "lazy-value-info",
33 "Lazy Value Information Analysis", false, true);
Chris Lattner10f2d132009-11-11 00:22:30 +000034
35namespace llvm {
36 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
37}
38
Chris Lattnercc4d3b22009-11-11 02:08:33 +000039
40//===----------------------------------------------------------------------===//
41// LVILatticeVal
42//===----------------------------------------------------------------------===//
43
44/// LVILatticeVal - This is the information tracked by LazyValueInfo for each
45/// value.
46///
47/// FIXME: This is basically just for bringup, this can be made a lot more rich
48/// in the future.
49///
50namespace {
51class LVILatticeVal {
52 enum LatticeValueTy {
53 /// undefined - This LLVM Value has no known value yet.
54 undefined,
Owen Anderson5be2e782010-08-05 22:59:19 +000055
Chris Lattnercc4d3b22009-11-11 02:08:33 +000056 /// constant - This LLVM Value has a specific constant value.
57 constant,
Chris Lattnerb52675b2009-11-12 04:36:58 +000058 /// notconstant - This LLVM value is known to not have the specified value.
59 notconstant,
60
Owen Anderson5be2e782010-08-05 22:59:19 +000061 /// constantrange
62 constantrange,
63
Chris Lattnercc4d3b22009-11-11 02:08:33 +000064 /// overdefined - This instruction is not known to be constant, and we know
65 /// it has a value.
66 overdefined
67 };
68
69 /// Val: This stores the current lattice value along with the Constant* for
Chris Lattnerb52675b2009-11-12 04:36:58 +000070 /// the constant if this is a 'constant' or 'notconstant' value.
Owen Andersondb78d732010-08-05 22:10:46 +000071 LatticeValueTy Tag;
72 Constant *Val;
Owen Anderson5be2e782010-08-05 22:59:19 +000073 ConstantRange Range;
Chris Lattnercc4d3b22009-11-11 02:08:33 +000074
75public:
Owen Anderson5be2e782010-08-05 22:59:19 +000076 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
Chris Lattnercc4d3b22009-11-11 02:08:33 +000077
Chris Lattner16976522009-11-11 22:48:44 +000078 static LVILatticeVal get(Constant *C) {
79 LVILatticeVal Res;
Owen Anderson9f014062010-08-10 20:03:09 +000080 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
81 Res.markConstantRange(ConstantRange(CI->getValue(), CI->getValue()+1));
82 else if (!isa<UndefValue>(C))
83 Res.markConstant(C);
Chris Lattner16976522009-11-11 22:48:44 +000084 return Res;
85 }
Chris Lattnerb52675b2009-11-12 04:36:58 +000086 static LVILatticeVal getNot(Constant *C) {
87 LVILatticeVal Res;
Owen Anderson9f014062010-08-10 20:03:09 +000088 if (ConstantInt *CI = dyn_cast<ConstantInt>(C))
89 Res.markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
90 else
91 Res.markNotConstant(C);
Chris Lattnerb52675b2009-11-12 04:36:58 +000092 return Res;
93 }
Owen Anderson625051b2010-08-10 23:20:01 +000094 static LVILatticeVal getRange(ConstantRange CR) {
95 LVILatticeVal Res;
96 Res.markConstantRange(CR);
97 return Res;
98 }
Chris Lattner16976522009-11-11 22:48:44 +000099
Owen Anderson5be2e782010-08-05 22:59:19 +0000100 bool isUndefined() const { return Tag == undefined; }
101 bool isConstant() const { return Tag == constant; }
102 bool isNotConstant() const { return Tag == notconstant; }
103 bool isConstantRange() const { return Tag == constantrange; }
104 bool isOverdefined() const { return Tag == overdefined; }
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000105
106 Constant *getConstant() const {
107 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersondb78d732010-08-05 22:10:46 +0000108 return Val;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000109 }
110
Chris Lattnerb52675b2009-11-12 04:36:58 +0000111 Constant *getNotConstant() const {
112 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersondb78d732010-08-05 22:10:46 +0000113 return Val;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000114 }
115
Owen Anderson5be2e782010-08-05 22:59:19 +0000116 ConstantRange getConstantRange() const {
117 assert(isConstantRange() &&
118 "Cannot get the constant-range of a non-constant-range!");
119 return Range;
120 }
121
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000122 /// markOverdefined - Return true if this is a change in status.
123 bool markOverdefined() {
124 if (isOverdefined())
125 return false;
Owen Andersondb78d732010-08-05 22:10:46 +0000126 Tag = overdefined;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000127 return true;
128 }
129
130 /// markConstant - Return true if this is a change in status.
131 bool markConstant(Constant *V) {
132 if (isConstant()) {
133 assert(getConstant() == V && "Marking constant with different value");
134 return false;
135 }
136
137 assert(isUndefined());
Owen Andersondb78d732010-08-05 22:10:46 +0000138 Tag = constant;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000139 assert(V && "Marking constant with NULL");
Owen Andersondb78d732010-08-05 22:10:46 +0000140 Val = V;
Chris Lattner16976522009-11-11 22:48:44 +0000141 return true;
142 }
143
Chris Lattnerb52675b2009-11-12 04:36:58 +0000144 /// markNotConstant - Return true if this is a change in status.
145 bool markNotConstant(Constant *V) {
146 if (isNotConstant()) {
147 assert(getNotConstant() == V && "Marking !constant with different value");
148 return false;
149 }
150
151 if (isConstant())
152 assert(getConstant() != V && "Marking not constant with different value");
153 else
154 assert(isUndefined());
155
Owen Andersondb78d732010-08-05 22:10:46 +0000156 Tag = notconstant;
Chris Lattnerb52675b2009-11-12 04:36:58 +0000157 assert(V && "Marking constant with NULL");
Owen Andersondb78d732010-08-05 22:10:46 +0000158 Val = V;
Chris Lattnerb52675b2009-11-12 04:36:58 +0000159 return true;
160 }
161
Owen Anderson5be2e782010-08-05 22:59:19 +0000162 /// markConstantRange - Return true if this is a change in status.
163 bool markConstantRange(const ConstantRange NewR) {
164 if (isConstantRange()) {
165 if (NewR.isEmptySet())
166 return markOverdefined();
167
Owen Anderson5be2e782010-08-05 22:59:19 +0000168 bool changed = Range == NewR;
169 Range = NewR;
170 return changed;
171 }
172
173 assert(isUndefined());
174 if (NewR.isEmptySet())
175 return markOverdefined();
176 else if (NewR.isFullSet()) {
177 Tag = undefined;
178 return true;
179 }
180
181 Tag = constantrange;
182 Range = NewR;
183 return true;
184 }
185
Chris Lattner16976522009-11-11 22:48:44 +0000186 /// mergeIn - Merge the specified lattice value into this one, updating this
187 /// one and returning true if anything changed.
188 bool mergeIn(const LVILatticeVal &RHS) {
189 if (RHS.isUndefined() || isOverdefined()) return false;
190 if (RHS.isOverdefined()) return markOverdefined();
191
Chris Lattnerb52675b2009-11-12 04:36:58 +0000192 if (RHS.isNotConstant()) {
193 if (isNotConstant()) {
Chris Lattnerf496e792009-11-12 04:57:13 +0000194 if (getNotConstant() != RHS.getNotConstant() ||
195 isa<ConstantExpr>(getNotConstant()) ||
196 isa<ConstantExpr>(RHS.getNotConstant()))
Chris Lattnerb52675b2009-11-12 04:36:58 +0000197 return markOverdefined();
198 return false;
199 }
Chris Lattnerf496e792009-11-12 04:57:13 +0000200 if (isConstant()) {
201 if (getConstant() == RHS.getNotConstant() ||
202 isa<ConstantExpr>(RHS.getNotConstant()) ||
203 isa<ConstantExpr>(getConstant()))
204 return markOverdefined();
205 return markNotConstant(RHS.getNotConstant());
206 }
207
208 assert(isUndefined() && "Unexpected lattice");
Chris Lattnerb52675b2009-11-12 04:36:58 +0000209 return markNotConstant(RHS.getNotConstant());
210 }
211
Owen Anderson5be2e782010-08-05 22:59:19 +0000212 if (RHS.isConstantRange()) {
213 if (isConstantRange()) {
Owen Anderson9f014062010-08-10 20:03:09 +0000214 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
215 if (NewR.isFullSet())
Owen Anderson5be2e782010-08-05 22:59:19 +0000216 return markOverdefined();
217 else
218 return markConstantRange(NewR);
Owen Anderson59b06dc2010-08-24 07:55:44 +0000219 } else if (!isUndefined()) {
220 return markOverdefined();
Owen Anderson5be2e782010-08-05 22:59:19 +0000221 }
222
223 assert(isUndefined() && "Unexpected lattice");
224 return markConstantRange(RHS.getConstantRange());
225 }
226
Chris Lattnerf496e792009-11-12 04:57:13 +0000227 // RHS must be a constant, we must be undef, constant, or notconstant.
Owen Anderson5be2e782010-08-05 22:59:19 +0000228 assert(!isConstantRange() &&
229 "Constant and ConstantRange cannot be merged.");
230
Chris Lattnerf496e792009-11-12 04:57:13 +0000231 if (isUndefined())
232 return markConstant(RHS.getConstant());
233
234 if (isConstant()) {
235 if (getConstant() != RHS.getConstant())
236 return markOverdefined();
237 return false;
238 }
239
240 // If we are known "!=4" and RHS is "==5", stay at "!=4".
241 if (getNotConstant() == RHS.getConstant() ||
242 isa<ConstantExpr>(getNotConstant()) ||
243 isa<ConstantExpr>(RHS.getConstant()))
Chris Lattner16976522009-11-11 22:48:44 +0000244 return markOverdefined();
Chris Lattnerf496e792009-11-12 04:57:13 +0000245 return false;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000246 }
247
248};
249
250} // end anonymous namespace.
251
Chris Lattner16976522009-11-11 22:48:44 +0000252namespace llvm {
253raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
254 if (Val.isUndefined())
255 return OS << "undefined";
256 if (Val.isOverdefined())
257 return OS << "overdefined";
Chris Lattnerb52675b2009-11-12 04:36:58 +0000258
259 if (Val.isNotConstant())
260 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson2f3ffb82010-08-09 20:50:46 +0000261 else if (Val.isConstantRange())
262 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
263 << Val.getConstantRange().getUpper() << '>';
Chris Lattner16976522009-11-11 22:48:44 +0000264 return OS << "constant<" << *Val.getConstant() << '>';
265}
266}
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000267
268//===----------------------------------------------------------------------===//
Chris Lattner2c5adf82009-11-15 19:59:49 +0000269// LazyValueInfoCache Decl
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000270//===----------------------------------------------------------------------===//
271
Chris Lattner2c5adf82009-11-15 19:59:49 +0000272namespace {
273 /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
274 /// maintains information about queries across the clients' queries.
275 class LazyValueInfoCache {
Owen Anderson81881bc2010-07-30 20:56:07 +0000276 public:
Chris Lattner2c5adf82009-11-15 19:59:49 +0000277 /// BlockCacheEntryTy - This is a computed lattice value at the end of the
278 /// specified basic block for a Value* that depends on context.
Owen Anderson00ac77e2010-08-18 18:39:01 +0000279 typedef std::pair<AssertingVH<BasicBlock>, LVILatticeVal> BlockCacheEntryTy;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000280
281 /// ValueCacheEntryTy - This is all of the cached block information for
282 /// exactly one Value*. The entries are sorted by the BasicBlock* of the
283 /// entries, allowing us to do a lookup with a binary search.
Owen Anderson00ac77e2010-08-18 18:39:01 +0000284 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000285
Owen Anderson81881bc2010-07-30 20:56:07 +0000286 private:
Owen Anderson7f9cb742010-07-30 23:59:40 +0000287 /// LVIValueHandle - A callback value handle update the cache when
288 /// values are erased.
289 struct LVIValueHandle : public CallbackVH {
290 LazyValueInfoCache *Parent;
291
292 LVIValueHandle(Value *V, LazyValueInfoCache *P)
293 : CallbackVH(V), Parent(P) { }
294
295 void deleted();
296 void allUsesReplacedWith(Value* V) {
297 deleted();
298 }
299
300 LVIValueHandle &operator=(Value *V) {
301 return *this = LVIValueHandle(V, Parent);
302 }
303 };
304
Chris Lattner2c5adf82009-11-15 19:59:49 +0000305 /// ValueCache - This is all of the cached information for all values,
306 /// mapped from Value* to key information.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000307 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000308
309 /// OverDefinedCache - This tracks, on a per-block basis, the set of
310 /// values that are over-defined at the end of that block. This is required
311 /// for cache updating.
Owen Anderson00ac77e2010-08-18 18:39:01 +0000312 std::set<std::pair<AssertingVH<BasicBlock>, Value*> > OverDefinedCache;
Owen Anderson7f9cb742010-07-30 23:59:40 +0000313
Chris Lattner2c5adf82009-11-15 19:59:49 +0000314 public:
315
316 /// getValueInBlock - This is the query interface to determine the lattice
317 /// value for the specified Value* at the end of the specified block.
318 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB);
319
320 /// getValueOnEdge - This is the query interface to determine the lattice
321 /// value for the specified Value* that is true on the specified edge.
322 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000323
324 /// threadEdge - This is the update interface to inform the cache that an
325 /// edge from PredBB to OldSucc has been threaded to be from PredBB to
326 /// NewSucc.
327 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Owen Anderson00ac77e2010-08-18 18:39:01 +0000328
329 /// eraseBlock - This is part of the update interface to inform the cache
330 /// that a block has been deleted.
331 void eraseBlock(BasicBlock *BB);
332
333 /// clear - Empty the cache.
334 void clear() {
335 ValueCache.clear();
336 OverDefinedCache.clear();
337 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000338 };
339} // end anonymous namespace
340
Owen Anderson81881bc2010-07-30 20:56:07 +0000341//===----------------------------------------------------------------------===//
342// LVIQuery Impl
343//===----------------------------------------------------------------------===//
344
345namespace {
346 /// LVIQuery - This is a transient object that exists while a query is
347 /// being performed.
348 ///
349 /// TODO: Reuse LVIQuery instead of recreating it for every query, this avoids
350 /// reallocation of the densemap on every query.
351 class LVIQuery {
352 typedef LazyValueInfoCache::BlockCacheEntryTy BlockCacheEntryTy;
353 typedef LazyValueInfoCache::ValueCacheEntryTy ValueCacheEntryTy;
354
355 /// This is the current value being queried for.
356 Value *Val;
357
Owen Anderson7f9cb742010-07-30 23:59:40 +0000358 /// This is a pointer to the owning cache, for recursive queries.
359 LazyValueInfoCache &Parent;
360
Owen Anderson81881bc2010-07-30 20:56:07 +0000361 /// This is all of the cached information about this value.
362 ValueCacheEntryTy &Cache;
363
364 /// This tracks, for each block, what values are overdefined.
Owen Anderson00ac77e2010-08-18 18:39:01 +0000365 std::set<std::pair<AssertingVH<BasicBlock>, Value*> > &OverDefinedCache;
Owen Anderson81881bc2010-07-30 20:56:07 +0000366
367 /// NewBlocks - This is a mapping of the new BasicBlocks which have been
368 /// added to cache but that are not in sorted order.
369 DenseSet<BasicBlock*> NewBlockInfo;
Owen Andersonc8ef7502010-08-24 20:47:29 +0000370
Owen Anderson81881bc2010-07-30 20:56:07 +0000371 public:
372
Owen Anderson7f9cb742010-07-30 23:59:40 +0000373 LVIQuery(Value *V, LazyValueInfoCache &P,
374 ValueCacheEntryTy &VC,
Owen Anderson00ac77e2010-08-18 18:39:01 +0000375 std::set<std::pair<AssertingVH<BasicBlock>, Value*> > &ODC)
Owen Anderson7f9cb742010-07-30 23:59:40 +0000376 : Val(V), Parent(P), Cache(VC), OverDefinedCache(ODC) {
Owen Anderson81881bc2010-07-30 20:56:07 +0000377 }
378
379 ~LVIQuery() {
380 // When the query is done, insert the newly discovered facts into the
381 // cache in sorted order.
382 if (NewBlockInfo.empty()) return;
383
384 for (DenseSet<BasicBlock*>::iterator I = NewBlockInfo.begin(),
385 E = NewBlockInfo.end(); I != E; ++I) {
386 if (Cache[*I].isOverdefined())
387 OverDefinedCache.insert(std::make_pair(*I, Val));
388 }
389 }
390
391 LVILatticeVal getBlockValue(BasicBlock *BB);
392 LVILatticeVal getEdgeValue(BasicBlock *FromBB, BasicBlock *ToBB);
393
394 private:
Owen Anderson4bb3eaf2010-08-16 23:42:33 +0000395 LVILatticeVal getCachedEntryForBlock(BasicBlock *BB);
Owen Anderson81881bc2010-07-30 20:56:07 +0000396 };
397} // end anonymous namespace
Chris Lattner2c5adf82009-11-15 19:59:49 +0000398
Owen Anderson7f9cb742010-07-30 23:59:40 +0000399void LazyValueInfoCache::LVIValueHandle::deleted() {
Owen Anderson00ac77e2010-08-18 18:39:01 +0000400 for (std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator
Owen Anderson7f9cb742010-07-30 23:59:40 +0000401 I = Parent->OverDefinedCache.begin(),
402 E = Parent->OverDefinedCache.end();
403 I != E; ) {
Owen Anderson00ac77e2010-08-18 18:39:01 +0000404 std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator tmp = I;
Owen Anderson7f9cb742010-07-30 23:59:40 +0000405 ++I;
406 if (tmp->second == getValPtr())
407 Parent->OverDefinedCache.erase(tmp);
408 }
Owen Andersoncf6abd22010-08-11 22:36:04 +0000409
410 // This erasure deallocates *this, so it MUST happen after we're done
411 // using any and all members of *this.
412 Parent->ValueCache.erase(*this);
Owen Anderson7f9cb742010-07-30 23:59:40 +0000413}
414
Owen Anderson00ac77e2010-08-18 18:39:01 +0000415void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
416 for (std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator
417 I = OverDefinedCache.begin(), E = OverDefinedCache.end(); I != E; ) {
418 std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator tmp = I;
419 ++I;
420 if (tmp->first == BB)
421 OverDefinedCache.erase(tmp);
422 }
423
424 for (std::map<LVIValueHandle, ValueCacheEntryTy>::iterator
425 I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
426 I->second.erase(BB);
427}
Owen Anderson7f9cb742010-07-30 23:59:40 +0000428
Chris Lattnere5642812009-11-15 20:00:52 +0000429/// getCachedEntryForBlock - See if we already have a value for this block. If
Owen Anderson9a65dc92010-07-27 23:58:11 +0000430/// so, return it, otherwise create a new entry in the Cache map to use.
Owen Anderson4bb3eaf2010-08-16 23:42:33 +0000431LVILatticeVal LVIQuery::getCachedEntryForBlock(BasicBlock *BB) {
Owen Anderson81881bc2010-07-30 20:56:07 +0000432 NewBlockInfo.insert(BB);
Owen Anderson9a65dc92010-07-27 23:58:11 +0000433 return Cache[BB];
Chris Lattnere5642812009-11-15 20:00:52 +0000434}
Chris Lattner2c5adf82009-11-15 19:59:49 +0000435
Owen Anderson81881bc2010-07-30 20:56:07 +0000436LVILatticeVal LVIQuery::getBlockValue(BasicBlock *BB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000437 // See if we already have a value for this block.
Owen Anderson4bb3eaf2010-08-16 23:42:33 +0000438 LVILatticeVal BBLV = getCachedEntryForBlock(BB);
Chris Lattner2c5adf82009-11-15 19:59:49 +0000439
440 // If we've already computed this block's value, return it.
Chris Lattnere5642812009-11-15 20:00:52 +0000441 if (!BBLV.isUndefined()) {
David Greene5d93a1f2009-12-23 20:43:58 +0000442 DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
Chris Lattner2c5adf82009-11-15 19:59:49 +0000443 return BBLV;
Chris Lattnere5642812009-11-15 20:00:52 +0000444 }
445
Chris Lattner2c5adf82009-11-15 19:59:49 +0000446 // Otherwise, this is the first time we're seeing this block. Reset the
447 // lattice value to overdefined, so that cycles will terminate and be
448 // conservatively correct.
449 BBLV.markOverdefined();
Owen Anderson4bb3eaf2010-08-16 23:42:33 +0000450 Cache[BB] = BBLV;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000451
Chris Lattner2c5adf82009-11-15 19:59:49 +0000452 Instruction *BBI = dyn_cast<Instruction>(Val);
453 if (BBI == 0 || BBI->getParent() != BB) {
454 LVILatticeVal Result; // Start Undefined.
Chris Lattner2c5adf82009-11-15 19:59:49 +0000455
Owen Andersonc8ef7502010-08-24 20:47:29 +0000456 // If this is a pointer, and there's a load from that pointer in this BB,
457 // then we know that the pointer can't be NULL.
458 if (Val->getType()->isPointerTy()) {
459 const PointerType *PTy = cast<PointerType>(Val->getType());
460 for (Value::use_iterator UI = Val->use_begin(), UE = Val->use_end();
461 UI != UE; ++UI) {
462 LoadInst *L = dyn_cast<LoadInst>(*UI);
Owen Anderson7bef92a2010-08-24 22:00:55 +0000463 if (L && L->getParent() == BB && L->getPointerAddressSpace() == 0) {
Owen Andersonc8ef7502010-08-24 20:47:29 +0000464 return LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
465 }
466 }
467 }
468
469 unsigned NumPreds = 0;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000470 // Loop over all of our predecessors, merging what we know from them into
471 // result.
472 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Owen Anderson81881bc2010-07-30 20:56:07 +0000473 Result.mergeIn(getEdgeValue(*PI, BB));
Chris Lattner2c5adf82009-11-15 19:59:49 +0000474
475 // If we hit overdefined, exit early. The BlockVals entry is already set
476 // to overdefined.
Chris Lattnere5642812009-11-15 20:00:52 +0000477 if (Result.isOverdefined()) {
David Greene5d93a1f2009-12-23 20:43:58 +0000478 DEBUG(dbgs() << " compute BB '" << BB->getName()
Chris Lattnere5642812009-11-15 20:00:52 +0000479 << "' - overdefined because of pred.\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000480 return Result;
Chris Lattnere5642812009-11-15 20:00:52 +0000481 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000482 ++NumPreds;
483 }
484
485 // If this is the entry block, we must be asking about an argument. The
486 // value is overdefined.
487 if (NumPreds == 0 && BB == &BB->getParent()->front()) {
488 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
489 Result.markOverdefined();
490 return Result;
491 }
492
493 // Return the merged value, which is more precise than 'overdefined'.
494 assert(!Result.isOverdefined());
Owen Anderson4bb3eaf2010-08-16 23:42:33 +0000495 return Cache[BB] = Result;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000496 }
497
498 // If this value is defined by an instruction in this block, we have to
499 // process it here somehow or return overdefined.
500 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Owen Anderson7f9cb742010-07-30 23:59:40 +0000501 LVILatticeVal Result; // Start Undefined.
502
503 // Loop over all of our predecessors, merging what we know from them into
504 // result.
505 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
506 Value* PhiVal = PN->getIncomingValueForBlock(*PI);
507 Result.mergeIn(Parent.getValueOnEdge(PhiVal, *PI, BB));
508
509 // If we hit overdefined, exit early. The BlockVals entry is already set
510 // to overdefined.
511 if (Result.isOverdefined()) {
512 DEBUG(dbgs() << " compute BB '" << BB->getName()
513 << "' - overdefined because of pred.\n");
514 return Result;
515 }
516 }
517
518 // Return the merged value, which is more precise than 'overdefined'.
519 assert(!Result.isOverdefined());
Owen Anderson00ac77e2010-08-18 18:39:01 +0000520 return Cache[BB] = Result;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000521 }
Chris Lattnere5642812009-11-15 20:00:52 +0000522
Owen Andersonb81fd622010-08-18 21:11:37 +0000523 assert(Cache[BB].isOverdefined() && "Recursive query changed our cache?");
524
525 // We can only analyze the definitions of certain classes of instructions
526 // (integral binops and casts at the moment), so bail if this isn't one.
Chris Lattner2c5adf82009-11-15 19:59:49 +0000527 LVILatticeVal Result;
Owen Andersonb81fd622010-08-18 21:11:37 +0000528 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
529 !BBI->getType()->isIntegerTy()) {
530 DEBUG(dbgs() << " compute BB '" << BB->getName()
531 << "' - overdefined because inst def found.\n");
532 Result.markOverdefined();
533 return Result;
534 }
535
536 // FIXME: We're currently limited to binops with a constant RHS. This should
537 // be improved.
538 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
539 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
540 DEBUG(dbgs() << " compute BB '" << BB->getName()
541 << "' - overdefined because inst def found.\n");
542
543 Result.markOverdefined();
544 return Result;
545 }
546
547 // Figure out the range of the LHS. If that fails, bail.
548 LVILatticeVal LHSVal = Parent.getValueInBlock(BBI->getOperand(0), BB);
549 if (!LHSVal.isConstantRange()) {
550 Result.markOverdefined();
551 return Result;
552 }
553
554 ConstantInt *RHS = 0;
555 ConstantRange LHSRange = LHSVal.getConstantRange();
556 ConstantRange RHSRange(1);
557 const IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
558 if (isa<BinaryOperator>(BBI)) {
Owen Anderson59b06dc2010-08-24 07:55:44 +0000559 RHS = dyn_cast<ConstantInt>(BBI->getOperand(1));
560 if (!RHS) {
561 Result.markOverdefined();
562 return Result;
563 }
564
Owen Andersonb81fd622010-08-18 21:11:37 +0000565 RHSRange = ConstantRange(RHS->getValue(), RHS->getValue()+1);
566 }
567
568 // NOTE: We're currently limited by the set of operations that ConstantRange
569 // can evaluate symbolically. Enhancing that set will allows us to analyze
570 // more definitions.
571 switch (BBI->getOpcode()) {
572 case Instruction::Add:
573 Result.markConstantRange(LHSRange.add(RHSRange));
574 break;
575 case Instruction::Sub:
576 Result.markConstantRange(LHSRange.sub(RHSRange));
577 break;
578 case Instruction::Mul:
579 Result.markConstantRange(LHSRange.multiply(RHSRange));
580 break;
581 case Instruction::UDiv:
582 Result.markConstantRange(LHSRange.udiv(RHSRange));
583 break;
584 case Instruction::Shl:
585 Result.markConstantRange(LHSRange.shl(RHSRange));
586 break;
587 case Instruction::LShr:
588 Result.markConstantRange(LHSRange.lshr(RHSRange));
589 break;
590 case Instruction::Trunc:
591 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
592 break;
593 case Instruction::SExt:
594 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
595 break;
596 case Instruction::ZExt:
597 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
598 break;
599 case Instruction::BitCast:
600 Result.markConstantRange(LHSRange);
601 break;
602
603 // Unhandled instructions are overdefined.
604 default:
605 DEBUG(dbgs() << " compute BB '" << BB->getName()
606 << "' - overdefined because inst def found.\n");
607 Result.markOverdefined();
608 break;
609 }
610
611 return Cache[BB] = Result;
Chris Lattner10f2d132009-11-11 00:22:30 +0000612}
613
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000614
Chris Lattner800c47e2009-11-15 20:02:12 +0000615/// getEdgeValue - This method attempts to infer more complex
Owen Anderson81881bc2010-07-30 20:56:07 +0000616LVILatticeVal LVIQuery::getEdgeValue(BasicBlock *BBFrom, BasicBlock *BBTo) {
Chris Lattner800c47e2009-11-15 20:02:12 +0000617 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
618 // know that v != 0.
Chris Lattner16976522009-11-11 22:48:44 +0000619 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
620 // If this is a conditional branch and only one successor goes to BBTo, then
621 // we maybe able to infer something from the condition.
622 if (BI->isConditional() &&
623 BI->getSuccessor(0) != BI->getSuccessor(1)) {
624 bool isTrueDest = BI->getSuccessor(0) == BBTo;
625 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
626 "BBTo isn't a successor of BBFrom");
627
628 // If V is the condition of the branch itself, then we know exactly what
629 // it is.
Chris Lattner2c5adf82009-11-15 19:59:49 +0000630 if (BI->getCondition() == Val)
Chris Lattner16976522009-11-11 22:48:44 +0000631 return LVILatticeVal::get(ConstantInt::get(
Owen Anderson9f014062010-08-10 20:03:09 +0000632 Type::getInt1Ty(Val->getContext()), isTrueDest));
Chris Lattner16976522009-11-11 22:48:44 +0000633
634 // If the condition of the branch is an equality comparison, we may be
635 // able to infer the value.
Owen Anderson2d0f2472010-08-11 04:24:25 +0000636 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
637 if (ICI && ICI->getOperand(0) == Val &&
638 isa<Constant>(ICI->getOperand(1))) {
639 if (ICI->isEquality()) {
640 // We know that V has the RHS constant if this is a true SETEQ or
641 // false SETNE.
642 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
643 return LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
644 return LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
Chris Lattner16976522009-11-11 22:48:44 +0000645 }
Owen Anderson2d0f2472010-08-11 04:24:25 +0000646
647 if (ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
648 // Calculate the range of values that would satisfy the comparison.
649 ConstantRange CmpRange(CI->getValue(), CI->getValue()+1);
650 ConstantRange TrueValues =
651 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
652
653 // If we're interested in the false dest, invert the condition.
654 if (!isTrueDest) TrueValues = TrueValues.inverse();
655
656 // Figure out the possible values of the query BEFORE this branch.
657 LVILatticeVal InBlock = getBlockValue(BBFrom);
658 if (!InBlock.isConstantRange()) return InBlock;
659
660 // Find all potential values that satisfy both the input and output
661 // conditions.
662 ConstantRange PossibleValues =
663 TrueValues.intersectWith(InBlock.getConstantRange());
664
665 return LVILatticeVal::getRange(PossibleValues);
666 }
667 }
Chris Lattner16976522009-11-11 22:48:44 +0000668 }
669 }
Chris Lattner800c47e2009-11-15 20:02:12 +0000670
671 // If the edge was formed by a switch on the value, then we may know exactly
672 // what it is.
673 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Owen Andersondae90c62010-08-24 21:59:42 +0000674 // If BBTo is the default destination of the switch, we know that it
675 // doesn't have the same value as any of the cases.
676 if (SI->getCondition() == Val) {
677 if (SI->getDefaultDest() == BBTo) {
678 const IntegerType *IT = cast<IntegerType>(Val->getType());
679 ConstantRange CR(IT->getBitWidth());
680
681 for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) {
682 const APInt CaseVal = SI->getCaseValue(i)->getValue();
683 ConstantRange CaseRange(CaseVal, CaseVal+1);
684 CaseRange = CaseRange.inverse();
685 CR = CR.intersectWith(CaseRange);
686 }
687
688 LVILatticeVal Result;
689 if (CR.isFullSet() || CR.isEmptySet())
690 Result.markOverdefined();
691 else
692 Result.markConstantRange(CR);
693 return Result;
694 }
695
Chris Lattner800c47e2009-11-15 20:02:12 +0000696 // We only know something if there is exactly one value that goes from
697 // BBFrom to BBTo.
698 unsigned NumEdges = 0;
699 ConstantInt *EdgeVal = 0;
700 for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) {
701 if (SI->getSuccessor(i) != BBTo) continue;
702 if (NumEdges++) break;
703 EdgeVal = SI->getCaseValue(i);
704 }
705 assert(EdgeVal && "Missing successor?");
706 if (NumEdges == 1)
707 return LVILatticeVal::get(EdgeVal);
708 }
709 }
Chris Lattner16976522009-11-11 22:48:44 +0000710
711 // Otherwise see if the value is known in the block.
Owen Anderson81881bc2010-07-30 20:56:07 +0000712 return getBlockValue(BBFrom);
Chris Lattner16976522009-11-11 22:48:44 +0000713}
714
Owen Anderson81881bc2010-07-30 20:56:07 +0000715
716//===----------------------------------------------------------------------===//
717// LazyValueInfoCache Impl
718//===----------------------------------------------------------------------===//
719
Chris Lattner2c5adf82009-11-15 19:59:49 +0000720LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB) {
721 // If already a constant, there is nothing to compute.
Chris Lattner16976522009-11-11 22:48:44 +0000722 if (Constant *VC = dyn_cast<Constant>(V))
Chris Lattner2c5adf82009-11-15 19:59:49 +0000723 return LVILatticeVal::get(VC);
Chris Lattner16976522009-11-11 22:48:44 +0000724
David Greene5d93a1f2009-12-23 20:43:58 +0000725 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000726 << BB->getName() << "'\n");
727
Owen Anderson7f9cb742010-07-30 23:59:40 +0000728 LVILatticeVal Result = LVIQuery(V, *this,
Owen Andersonc8ef7502010-08-24 20:47:29 +0000729 ValueCache[LVIValueHandle(V, this)],
730 OverDefinedCache).getBlockValue(BB);
Chris Lattner16976522009-11-11 22:48:44 +0000731
David Greene5d93a1f2009-12-23 20:43:58 +0000732 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000733 return Result;
734}
Chris Lattner16976522009-11-11 22:48:44 +0000735
Chris Lattner2c5adf82009-11-15 19:59:49 +0000736LVILatticeVal LazyValueInfoCache::
737getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB) {
738 // If already a constant, there is nothing to compute.
739 if (Constant *VC = dyn_cast<Constant>(V))
740 return LVILatticeVal::get(VC);
741
David Greene5d93a1f2009-12-23 20:43:58 +0000742 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000743 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000744
Owen Anderson81881bc2010-07-30 20:56:07 +0000745 LVILatticeVal Result =
Owen Anderson7f9cb742010-07-30 23:59:40 +0000746 LVIQuery(V, *this, ValueCache[LVIValueHandle(V, this)],
Owen Anderson81881bc2010-07-30 20:56:07 +0000747 OverDefinedCache).getEdgeValue(FromBB, ToBB);
Chris Lattner2c5adf82009-11-15 19:59:49 +0000748
David Greene5d93a1f2009-12-23 20:43:58 +0000749 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000750
751 return Result;
752}
753
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000754void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
755 BasicBlock *NewSucc) {
756 // When an edge in the graph has been threaded, values that we could not
757 // determine a value for before (i.e. were marked overdefined) may be possible
758 // to solve now. We do NOT try to proactively update these values. Instead,
759 // we clear their entries from the cache, and allow lazy updating to recompute
760 // them when needed.
761
762 // The updating process is fairly simple: we need to dropped cached info
763 // for all values that were marked overdefined in OldSucc, and for those same
764 // values in any successor of OldSucc (except NewSucc) in which they were
765 // also marked overdefined.
766 std::vector<BasicBlock*> worklist;
767 worklist.push_back(OldSucc);
768
Owen Anderson9a65dc92010-07-27 23:58:11 +0000769 DenseSet<Value*> ClearSet;
Owen Anderson00ac77e2010-08-18 18:39:01 +0000770 for (std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator
Owen Anderson9a65dc92010-07-27 23:58:11 +0000771 I = OverDefinedCache.begin(), E = OverDefinedCache.end(); I != E; ++I) {
772 if (I->first == OldSucc)
773 ClearSet.insert(I->second);
774 }
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000775
776 // Use a worklist to perform a depth-first search of OldSucc's successors.
777 // NOTE: We do not need a visited list since any blocks we have already
778 // visited will have had their overdefined markers cleared already, and we
779 // thus won't loop to their successors.
780 while (!worklist.empty()) {
781 BasicBlock *ToUpdate = worklist.back();
782 worklist.pop_back();
783
784 // Skip blocks only accessible through NewSucc.
785 if (ToUpdate == NewSucc) continue;
786
787 bool changed = false;
Owen Anderson9a65dc92010-07-27 23:58:11 +0000788 for (DenseSet<Value*>::iterator I = ClearSet.begin(),E = ClearSet.end();
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000789 I != E; ++I) {
790 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson00ac77e2010-08-18 18:39:01 +0000791 std::set<std::pair<AssertingVH<BasicBlock>, Value*> >::iterator OI =
Owen Anderson9a65dc92010-07-27 23:58:11 +0000792 OverDefinedCache.find(std::make_pair(ToUpdate, *I));
793 if (OI == OverDefinedCache.end()) continue;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000794
Owen Anderson9a65dc92010-07-27 23:58:11 +0000795 // Remove it from the caches.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000796 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)];
Owen Anderson9a65dc92010-07-27 23:58:11 +0000797 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
798
799 assert(CI != Entry.end() && "Couldn't find entry to update?");
800 Entry.erase(CI);
801 OverDefinedCache.erase(OI);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000802
Owen Anderson9a65dc92010-07-27 23:58:11 +0000803 // If we removed anything, then we potentially need to update
804 // blocks successors too.
805 changed = true;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000806 }
807
808 if (!changed) continue;
809
810 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
811 }
812}
813
Chris Lattner2c5adf82009-11-15 19:59:49 +0000814//===----------------------------------------------------------------------===//
815// LazyValueInfo Impl
816//===----------------------------------------------------------------------===//
817
Chris Lattner2c5adf82009-11-15 19:59:49 +0000818/// getCache - This lazily constructs the LazyValueInfoCache.
819static LazyValueInfoCache &getCache(void *&PImpl) {
820 if (!PImpl)
821 PImpl = new LazyValueInfoCache();
822 return *static_cast<LazyValueInfoCache*>(PImpl);
823}
824
Owen Anderson00ac77e2010-08-18 18:39:01 +0000825bool LazyValueInfo::runOnFunction(Function &F) {
826 if (PImpl)
827 getCache(PImpl).clear();
828
829 TD = getAnalysisIfAvailable<TargetData>();
830 // Fully lazy.
831 return false;
832}
833
Chris Lattner2c5adf82009-11-15 19:59:49 +0000834void LazyValueInfo::releaseMemory() {
835 // If the cache was allocated, free it.
836 if (PImpl) {
837 delete &getCache(PImpl);
838 PImpl = 0;
839 }
840}
841
842Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
843 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB);
844
Chris Lattner16976522009-11-11 22:48:44 +0000845 if (Result.isConstant())
846 return Result.getConstant();
847 return 0;
848}
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000849
Chris Lattner38392bb2009-11-12 01:29:10 +0000850/// getConstantOnEdge - Determine whether the specified value is known to be a
851/// constant on the specified edge. Return null if not.
852Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
853 BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000854 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattner38392bb2009-11-12 01:29:10 +0000855
856 if (Result.isConstant())
857 return Result.getConstant();
Owen Anderson9f014062010-08-10 20:03:09 +0000858 else if (Result.isConstantRange()) {
859 ConstantRange CR = Result.getConstantRange();
860 if (const APInt *SingleVal = CR.getSingleElement())
861 return ConstantInt::get(V->getContext(), *SingleVal);
862 }
Chris Lattner38392bb2009-11-12 01:29:10 +0000863 return 0;
864}
865
Chris Lattnerb52675b2009-11-12 04:36:58 +0000866/// getPredicateOnEdge - Determine whether the specified value comparison
867/// with a constant is known to be true or false on the specified CFG edge.
868/// Pred is a CmpInst predicate.
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000869LazyValueInfo::Tristate
Chris Lattnerb52675b2009-11-12 04:36:58 +0000870LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
871 BasicBlock *FromBB, BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000872 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000873
Chris Lattnerb52675b2009-11-12 04:36:58 +0000874 // If we know the value is a constant, evaluate the conditional.
875 Constant *Res = 0;
876 if (Result.isConstant()) {
877 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, TD);
878 if (ConstantInt *ResCI = dyn_cast_or_null<ConstantInt>(Res))
879 return ResCI->isZero() ? False : True;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000880 return Unknown;
881 }
882
Owen Anderson9f014062010-08-10 20:03:09 +0000883 if (Result.isConstantRange()) {
Owen Anderson59b06dc2010-08-24 07:55:44 +0000884 ConstantInt *CI = dyn_cast<ConstantInt>(C);
885 if (!CI) return Unknown;
886
Owen Anderson9f014062010-08-10 20:03:09 +0000887 ConstantRange CR = Result.getConstantRange();
888 if (Pred == ICmpInst::ICMP_EQ) {
889 if (!CR.contains(CI->getValue()))
890 return False;
891
892 if (CR.isSingleElement() && CR.contains(CI->getValue()))
893 return True;
894 } else if (Pred == ICmpInst::ICMP_NE) {
895 if (!CR.contains(CI->getValue()))
896 return True;
897
898 if (CR.isSingleElement() && CR.contains(CI->getValue()))
899 return False;
900 }
901
902 // Handle more complex predicates.
903 ConstantRange RHS(CI->getValue(), CI->getValue()+1);
904 ConstantRange TrueValues = ConstantRange::makeICmpRegion(Pred, RHS);
905 if (CR.intersectWith(TrueValues).isEmptySet())
906 return False;
Owen Anderson625051b2010-08-10 23:20:01 +0000907 else if (TrueValues.contains(CR))
Owen Anderson9f014062010-08-10 20:03:09 +0000908 return True;
909
910 return Unknown;
911 }
912
Chris Lattner2c5adf82009-11-15 19:59:49 +0000913 if (Result.isNotConstant()) {
Chris Lattnerb52675b2009-11-12 04:36:58 +0000914 // If this is an equality comparison, we can try to fold it knowing that
915 // "V != C1".
916 if (Pred == ICmpInst::ICMP_EQ) {
917 // !C1 == C -> false iff C1 == C.
918 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
919 Result.getNotConstant(), C, TD);
920 if (Res->isNullValue())
921 return False;
922 } else if (Pred == ICmpInst::ICMP_NE) {
923 // !C1 != C -> true iff C1 == C.
Chris Lattner5553a3a2009-11-15 20:01:24 +0000924 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Chris Lattnerb52675b2009-11-12 04:36:58 +0000925 Result.getNotConstant(), C, TD);
926 if (Res->isNullValue())
927 return True;
928 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000929 return Unknown;
Chris Lattnerb52675b2009-11-12 04:36:58 +0000930 }
931
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000932 return Unknown;
933}
934
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000935void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
936 BasicBlock* NewSucc) {
Owen Anderson00ac77e2010-08-18 18:39:01 +0000937 if (PImpl) getCache(PImpl).threadEdge(PredBB, OldSucc, NewSucc);
938}
939
940void LazyValueInfo::eraseBlock(BasicBlock *BB) {
941 if (PImpl) getCache(PImpl).eraseBlock(BB);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000942}