blob: d3a437f9405057ea4b8af7545c86756fd533f30e [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);
219 }
220
221 assert(isUndefined() && "Unexpected lattice");
222 return markConstantRange(RHS.getConstantRange());
223 }
224
Chris Lattnerf496e792009-11-12 04:57:13 +0000225 // RHS must be a constant, we must be undef, constant, or notconstant.
Owen Anderson5be2e782010-08-05 22:59:19 +0000226 assert(!isConstantRange() &&
227 "Constant and ConstantRange cannot be merged.");
228
Chris Lattnerf496e792009-11-12 04:57:13 +0000229 if (isUndefined())
230 return markConstant(RHS.getConstant());
231
232 if (isConstant()) {
233 if (getConstant() != RHS.getConstant())
234 return markOverdefined();
235 return false;
236 }
237
238 // If we are known "!=4" and RHS is "==5", stay at "!=4".
239 if (getNotConstant() == RHS.getConstant() ||
240 isa<ConstantExpr>(getNotConstant()) ||
241 isa<ConstantExpr>(RHS.getConstant()))
Chris Lattner16976522009-11-11 22:48:44 +0000242 return markOverdefined();
Chris Lattnerf496e792009-11-12 04:57:13 +0000243 return false;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000244 }
245
246};
247
248} // end anonymous namespace.
249
Chris Lattner16976522009-11-11 22:48:44 +0000250namespace llvm {
251raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
252 if (Val.isUndefined())
253 return OS << "undefined";
254 if (Val.isOverdefined())
255 return OS << "overdefined";
Chris Lattnerb52675b2009-11-12 04:36:58 +0000256
257 if (Val.isNotConstant())
258 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson2f3ffb82010-08-09 20:50:46 +0000259 else if (Val.isConstantRange())
260 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
261 << Val.getConstantRange().getUpper() << '>';
Chris Lattner16976522009-11-11 22:48:44 +0000262 return OS << "constant<" << *Val.getConstant() << '>';
263}
264}
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000265
266//===----------------------------------------------------------------------===//
Chris Lattner2c5adf82009-11-15 19:59:49 +0000267// LazyValueInfoCache Decl
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000268//===----------------------------------------------------------------------===//
269
Chris Lattner2c5adf82009-11-15 19:59:49 +0000270namespace {
271 /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
272 /// maintains information about queries across the clients' queries.
273 class LazyValueInfoCache {
Owen Anderson81881bc2010-07-30 20:56:07 +0000274 public:
Chris Lattner2c5adf82009-11-15 19:59:49 +0000275 /// BlockCacheEntryTy - This is a computed lattice value at the end of the
276 /// specified basic block for a Value* that depends on context.
277 typedef std::pair<BasicBlock*, LVILatticeVal> BlockCacheEntryTy;
278
279 /// ValueCacheEntryTy - This is all of the cached block information for
280 /// exactly one Value*. The entries are sorted by the BasicBlock* of the
281 /// entries, allowing us to do a lookup with a binary search.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000282 typedef std::map<BasicBlock*, LVILatticeVal> ValueCacheEntryTy;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000283
Owen Anderson81881bc2010-07-30 20:56:07 +0000284 private:
Owen Anderson7f9cb742010-07-30 23:59:40 +0000285 /// LVIValueHandle - A callback value handle update the cache when
286 /// values are erased.
287 struct LVIValueHandle : public CallbackVH {
288 LazyValueInfoCache *Parent;
289
290 LVIValueHandle(Value *V, LazyValueInfoCache *P)
291 : CallbackVH(V), Parent(P) { }
292
293 void deleted();
294 void allUsesReplacedWith(Value* V) {
295 deleted();
296 }
297
298 LVIValueHandle &operator=(Value *V) {
299 return *this = LVIValueHandle(V, Parent);
300 }
301 };
302
Chris Lattner2c5adf82009-11-15 19:59:49 +0000303 /// ValueCache - This is all of the cached information for all values,
304 /// mapped from Value* to key information.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000305 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000306
307 /// OverDefinedCache - This tracks, on a per-block basis, the set of
308 /// values that are over-defined at the end of that block. This is required
309 /// for cache updating.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000310 std::set<std::pair<BasicBlock*, Value*> > OverDefinedCache;
311
Chris Lattner2c5adf82009-11-15 19:59:49 +0000312 public:
313
314 /// getValueInBlock - This is the query interface to determine the lattice
315 /// value for the specified Value* at the end of the specified block.
316 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB);
317
318 /// getValueOnEdge - This is the query interface to determine the lattice
319 /// value for the specified Value* that is true on the specified edge.
320 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000321
322 /// threadEdge - This is the update interface to inform the cache that an
323 /// edge from PredBB to OldSucc has been threaded to be from PredBB to
324 /// NewSucc.
325 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Chris Lattner2c5adf82009-11-15 19:59:49 +0000326 };
327} // end anonymous namespace
328
Owen Anderson81881bc2010-07-30 20:56:07 +0000329//===----------------------------------------------------------------------===//
330// LVIQuery Impl
331//===----------------------------------------------------------------------===//
332
333namespace {
334 /// LVIQuery - This is a transient object that exists while a query is
335 /// being performed.
336 ///
337 /// TODO: Reuse LVIQuery instead of recreating it for every query, this avoids
338 /// reallocation of the densemap on every query.
339 class LVIQuery {
340 typedef LazyValueInfoCache::BlockCacheEntryTy BlockCacheEntryTy;
341 typedef LazyValueInfoCache::ValueCacheEntryTy ValueCacheEntryTy;
342
343 /// This is the current value being queried for.
344 Value *Val;
345
Owen Anderson7f9cb742010-07-30 23:59:40 +0000346 /// This is a pointer to the owning cache, for recursive queries.
347 LazyValueInfoCache &Parent;
348
Owen Anderson81881bc2010-07-30 20:56:07 +0000349 /// This is all of the cached information about this value.
350 ValueCacheEntryTy &Cache;
351
352 /// This tracks, for each block, what values are overdefined.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000353 std::set<std::pair<BasicBlock*, Value*> > &OverDefinedCache;
Owen Anderson81881bc2010-07-30 20:56:07 +0000354
355 /// NewBlocks - This is a mapping of the new BasicBlocks which have been
356 /// added to cache but that are not in sorted order.
357 DenseSet<BasicBlock*> NewBlockInfo;
358 public:
359
Owen Anderson7f9cb742010-07-30 23:59:40 +0000360 LVIQuery(Value *V, LazyValueInfoCache &P,
361 ValueCacheEntryTy &VC,
362 std::set<std::pair<BasicBlock*, Value*> > &ODC)
363 : Val(V), Parent(P), Cache(VC), OverDefinedCache(ODC) {
Owen Anderson81881bc2010-07-30 20:56:07 +0000364 }
365
366 ~LVIQuery() {
367 // When the query is done, insert the newly discovered facts into the
368 // cache in sorted order.
369 if (NewBlockInfo.empty()) return;
370
371 for (DenseSet<BasicBlock*>::iterator I = NewBlockInfo.begin(),
372 E = NewBlockInfo.end(); I != E; ++I) {
373 if (Cache[*I].isOverdefined())
374 OverDefinedCache.insert(std::make_pair(*I, Val));
375 }
376 }
377
378 LVILatticeVal getBlockValue(BasicBlock *BB);
379 LVILatticeVal getEdgeValue(BasicBlock *FromBB, BasicBlock *ToBB);
380
381 private:
382 LVILatticeVal &getCachedEntryForBlock(BasicBlock *BB);
383 };
384} // end anonymous namespace
Chris Lattner2c5adf82009-11-15 19:59:49 +0000385
Owen Anderson7f9cb742010-07-30 23:59:40 +0000386void LazyValueInfoCache::LVIValueHandle::deleted() {
Owen Anderson7f9cb742010-07-30 23:59:40 +0000387 for (std::set<std::pair<BasicBlock*, Value*> >::iterator
388 I = Parent->OverDefinedCache.begin(),
389 E = Parent->OverDefinedCache.end();
390 I != E; ) {
391 std::set<std::pair<BasicBlock*, Value*> >::iterator tmp = I;
392 ++I;
393 if (tmp->second == getValPtr())
394 Parent->OverDefinedCache.erase(tmp);
395 }
Owen Andersoncf6abd22010-08-11 22:36:04 +0000396
397 // This erasure deallocates *this, so it MUST happen after we're done
398 // using any and all members of *this.
399 Parent->ValueCache.erase(*this);
Owen Anderson7f9cb742010-07-30 23:59:40 +0000400}
401
402
Chris Lattnere5642812009-11-15 20:00:52 +0000403/// getCachedEntryForBlock - See if we already have a value for this block. If
Owen Anderson9a65dc92010-07-27 23:58:11 +0000404/// so, return it, otherwise create a new entry in the Cache map to use.
Owen Anderson81881bc2010-07-30 20:56:07 +0000405LVILatticeVal &LVIQuery::getCachedEntryForBlock(BasicBlock *BB) {
406 NewBlockInfo.insert(BB);
Owen Anderson9a65dc92010-07-27 23:58:11 +0000407 return Cache[BB];
Chris Lattnere5642812009-11-15 20:00:52 +0000408}
Chris Lattner2c5adf82009-11-15 19:59:49 +0000409
Owen Anderson81881bc2010-07-30 20:56:07 +0000410LVILatticeVal LVIQuery::getBlockValue(BasicBlock *BB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000411 // See if we already have a value for this block.
Owen Anderson81881bc2010-07-30 20:56:07 +0000412 LVILatticeVal &BBLV = getCachedEntryForBlock(BB);
Chris Lattner2c5adf82009-11-15 19:59:49 +0000413
414 // If we've already computed this block's value, return it.
Chris Lattnere5642812009-11-15 20:00:52 +0000415 if (!BBLV.isUndefined()) {
David Greene5d93a1f2009-12-23 20:43:58 +0000416 DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
Chris Lattner2c5adf82009-11-15 19:59:49 +0000417 return BBLV;
Chris Lattnere5642812009-11-15 20:00:52 +0000418 }
419
Chris Lattner2c5adf82009-11-15 19:59:49 +0000420 // Otherwise, this is the first time we're seeing this block. Reset the
421 // lattice value to overdefined, so that cycles will terminate and be
422 // conservatively correct.
423 BBLV.markOverdefined();
424
425 // If V is live into BB, see if our predecessors know anything about it.
426 Instruction *BBI = dyn_cast<Instruction>(Val);
427 if (BBI == 0 || BBI->getParent() != BB) {
428 LVILatticeVal Result; // Start Undefined.
429 unsigned NumPreds = 0;
430
431 // Loop over all of our predecessors, merging what we know from them into
432 // result.
433 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Owen Anderson81881bc2010-07-30 20:56:07 +0000434 Result.mergeIn(getEdgeValue(*PI, BB));
Chris Lattner2c5adf82009-11-15 19:59:49 +0000435
436 // If we hit overdefined, exit early. The BlockVals entry is already set
437 // to overdefined.
Chris Lattnere5642812009-11-15 20:00:52 +0000438 if (Result.isOverdefined()) {
David Greene5d93a1f2009-12-23 20:43:58 +0000439 DEBUG(dbgs() << " compute BB '" << BB->getName()
Chris Lattnere5642812009-11-15 20:00:52 +0000440 << "' - overdefined because of pred.\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000441 return Result;
Chris Lattnere5642812009-11-15 20:00:52 +0000442 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000443 ++NumPreds;
444 }
445
446 // If this is the entry block, we must be asking about an argument. The
447 // value is overdefined.
448 if (NumPreds == 0 && BB == &BB->getParent()->front()) {
449 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
450 Result.markOverdefined();
451 return Result;
452 }
453
454 // Return the merged value, which is more precise than 'overdefined'.
455 assert(!Result.isOverdefined());
Owen Anderson81881bc2010-07-30 20:56:07 +0000456 return getCachedEntryForBlock(BB) = Result;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000457 }
458
459 // If this value is defined by an instruction in this block, we have to
460 // process it here somehow or return overdefined.
461 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Owen Anderson7f9cb742010-07-30 23:59:40 +0000462 LVILatticeVal Result; // Start Undefined.
463
464 // Loop over all of our predecessors, merging what we know from them into
465 // result.
466 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
467 Value* PhiVal = PN->getIncomingValueForBlock(*PI);
468 Result.mergeIn(Parent.getValueOnEdge(PhiVal, *PI, BB));
469
470 // If we hit overdefined, exit early. The BlockVals entry is already set
471 // to overdefined.
472 if (Result.isOverdefined()) {
473 DEBUG(dbgs() << " compute BB '" << BB->getName()
474 << "' - overdefined because of pred.\n");
475 return Result;
476 }
477 }
478
479 // Return the merged value, which is more precise than 'overdefined'.
480 assert(!Result.isOverdefined());
481 return getCachedEntryForBlock(BB) = Result;
482
Chris Lattner2c5adf82009-11-15 19:59:49 +0000483 } else {
484
485 }
486
David Greene5d93a1f2009-12-23 20:43:58 +0000487 DEBUG(dbgs() << " compute BB '" << BB->getName()
Chris Lattnere5642812009-11-15 20:00:52 +0000488 << "' - overdefined because inst def found.\n");
489
Chris Lattner2c5adf82009-11-15 19:59:49 +0000490 LVILatticeVal Result;
491 Result.markOverdefined();
Owen Anderson81881bc2010-07-30 20:56:07 +0000492 return getCachedEntryForBlock(BB) = Result;
Chris Lattner10f2d132009-11-11 00:22:30 +0000493}
494
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000495
Chris Lattner800c47e2009-11-15 20:02:12 +0000496/// getEdgeValue - This method attempts to infer more complex
Owen Anderson81881bc2010-07-30 20:56:07 +0000497LVILatticeVal LVIQuery::getEdgeValue(BasicBlock *BBFrom, BasicBlock *BBTo) {
Chris Lattner800c47e2009-11-15 20:02:12 +0000498 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
499 // know that v != 0.
Chris Lattner16976522009-11-11 22:48:44 +0000500 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
501 // If this is a conditional branch and only one successor goes to BBTo, then
502 // we maybe able to infer something from the condition.
503 if (BI->isConditional() &&
504 BI->getSuccessor(0) != BI->getSuccessor(1)) {
505 bool isTrueDest = BI->getSuccessor(0) == BBTo;
506 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
507 "BBTo isn't a successor of BBFrom");
508
509 // If V is the condition of the branch itself, then we know exactly what
510 // it is.
Chris Lattner2c5adf82009-11-15 19:59:49 +0000511 if (BI->getCondition() == Val)
Chris Lattner16976522009-11-11 22:48:44 +0000512 return LVILatticeVal::get(ConstantInt::get(
Owen Anderson9f014062010-08-10 20:03:09 +0000513 Type::getInt1Ty(Val->getContext()), isTrueDest));
Chris Lattner16976522009-11-11 22:48:44 +0000514
515 // If the condition of the branch is an equality comparison, we may be
516 // able to infer the value.
Owen Anderson2d0f2472010-08-11 04:24:25 +0000517 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
518 if (ICI && ICI->getOperand(0) == Val &&
519 isa<Constant>(ICI->getOperand(1))) {
520 if (ICI->isEquality()) {
521 // We know that V has the RHS constant if this is a true SETEQ or
522 // false SETNE.
523 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
524 return LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
525 return LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
Chris Lattner16976522009-11-11 22:48:44 +0000526 }
Owen Anderson2d0f2472010-08-11 04:24:25 +0000527
528 if (ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
529 // Calculate the range of values that would satisfy the comparison.
530 ConstantRange CmpRange(CI->getValue(), CI->getValue()+1);
531 ConstantRange TrueValues =
532 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
533
534 // If we're interested in the false dest, invert the condition.
535 if (!isTrueDest) TrueValues = TrueValues.inverse();
536
537 // Figure out the possible values of the query BEFORE this branch.
538 LVILatticeVal InBlock = getBlockValue(BBFrom);
539 if (!InBlock.isConstantRange()) return InBlock;
540
541 // Find all potential values that satisfy both the input and output
542 // conditions.
543 ConstantRange PossibleValues =
544 TrueValues.intersectWith(InBlock.getConstantRange());
545
546 return LVILatticeVal::getRange(PossibleValues);
547 }
548 }
Chris Lattner16976522009-11-11 22:48:44 +0000549 }
550 }
Chris Lattner800c47e2009-11-15 20:02:12 +0000551
552 // If the edge was formed by a switch on the value, then we may know exactly
553 // what it is.
554 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
555 // If BBTo is the default destination of the switch, we don't know anything.
556 // Given a more powerful range analysis we could know stuff.
557 if (SI->getCondition() == Val && SI->getDefaultDest() != BBTo) {
558 // We only know something if there is exactly one value that goes from
559 // BBFrom to BBTo.
560 unsigned NumEdges = 0;
561 ConstantInt *EdgeVal = 0;
562 for (unsigned i = 1, e = SI->getNumSuccessors(); i != e; ++i) {
563 if (SI->getSuccessor(i) != BBTo) continue;
564 if (NumEdges++) break;
565 EdgeVal = SI->getCaseValue(i);
566 }
567 assert(EdgeVal && "Missing successor?");
568 if (NumEdges == 1)
569 return LVILatticeVal::get(EdgeVal);
570 }
571 }
Chris Lattner16976522009-11-11 22:48:44 +0000572
573 // Otherwise see if the value is known in the block.
Owen Anderson81881bc2010-07-30 20:56:07 +0000574 return getBlockValue(BBFrom);
Chris Lattner16976522009-11-11 22:48:44 +0000575}
576
Owen Anderson81881bc2010-07-30 20:56:07 +0000577
578//===----------------------------------------------------------------------===//
579// LazyValueInfoCache Impl
580//===----------------------------------------------------------------------===//
581
Chris Lattner2c5adf82009-11-15 19:59:49 +0000582LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB) {
583 // If already a constant, there is nothing to compute.
Chris Lattner16976522009-11-11 22:48:44 +0000584 if (Constant *VC = dyn_cast<Constant>(V))
Chris Lattner2c5adf82009-11-15 19:59:49 +0000585 return LVILatticeVal::get(VC);
Chris Lattner16976522009-11-11 22:48:44 +0000586
David Greene5d93a1f2009-12-23 20:43:58 +0000587 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000588 << BB->getName() << "'\n");
589
Owen Anderson7f9cb742010-07-30 23:59:40 +0000590 LVILatticeVal Result = LVIQuery(V, *this,
591 ValueCache[LVIValueHandle(V, this)],
Owen Anderson81881bc2010-07-30 20:56:07 +0000592 OverDefinedCache).getBlockValue(BB);
Chris Lattner16976522009-11-11 22:48:44 +0000593
David Greene5d93a1f2009-12-23 20:43:58 +0000594 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000595 return Result;
596}
Chris Lattner16976522009-11-11 22:48:44 +0000597
Chris Lattner2c5adf82009-11-15 19:59:49 +0000598LVILatticeVal LazyValueInfoCache::
599getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB) {
600 // If already a constant, there is nothing to compute.
601 if (Constant *VC = dyn_cast<Constant>(V))
602 return LVILatticeVal::get(VC);
603
David Greene5d93a1f2009-12-23 20:43:58 +0000604 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000605 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000606
Owen Anderson81881bc2010-07-30 20:56:07 +0000607 LVILatticeVal Result =
Owen Anderson7f9cb742010-07-30 23:59:40 +0000608 LVIQuery(V, *this, ValueCache[LVIValueHandle(V, this)],
Owen Anderson81881bc2010-07-30 20:56:07 +0000609 OverDefinedCache).getEdgeValue(FromBB, ToBB);
Chris Lattner2c5adf82009-11-15 19:59:49 +0000610
David Greene5d93a1f2009-12-23 20:43:58 +0000611 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000612
613 return Result;
614}
615
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000616void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
617 BasicBlock *NewSucc) {
618 // When an edge in the graph has been threaded, values that we could not
619 // determine a value for before (i.e. were marked overdefined) may be possible
620 // to solve now. We do NOT try to proactively update these values. Instead,
621 // we clear their entries from the cache, and allow lazy updating to recompute
622 // them when needed.
623
624 // The updating process is fairly simple: we need to dropped cached info
625 // for all values that were marked overdefined in OldSucc, and for those same
626 // values in any successor of OldSucc (except NewSucc) in which they were
627 // also marked overdefined.
628 std::vector<BasicBlock*> worklist;
629 worklist.push_back(OldSucc);
630
Owen Anderson9a65dc92010-07-27 23:58:11 +0000631 DenseSet<Value*> ClearSet;
Owen Anderson7f9cb742010-07-30 23:59:40 +0000632 for (std::set<std::pair<BasicBlock*, Value*> >::iterator
Owen Anderson9a65dc92010-07-27 23:58:11 +0000633 I = OverDefinedCache.begin(), E = OverDefinedCache.end(); I != E; ++I) {
634 if (I->first == OldSucc)
635 ClearSet.insert(I->second);
636 }
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000637
638 // Use a worklist to perform a depth-first search of OldSucc's successors.
639 // NOTE: We do not need a visited list since any blocks we have already
640 // visited will have had their overdefined markers cleared already, and we
641 // thus won't loop to their successors.
642 while (!worklist.empty()) {
643 BasicBlock *ToUpdate = worklist.back();
644 worklist.pop_back();
645
646 // Skip blocks only accessible through NewSucc.
647 if (ToUpdate == NewSucc) continue;
648
649 bool changed = false;
Owen Anderson9a65dc92010-07-27 23:58:11 +0000650 for (DenseSet<Value*>::iterator I = ClearSet.begin(),E = ClearSet.end();
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000651 I != E; ++I) {
652 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson7f9cb742010-07-30 23:59:40 +0000653 std::set<std::pair<BasicBlock*, Value*> >::iterator OI =
Owen Anderson9a65dc92010-07-27 23:58:11 +0000654 OverDefinedCache.find(std::make_pair(ToUpdate, *I));
655 if (OI == OverDefinedCache.end()) continue;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000656
Owen Anderson9a65dc92010-07-27 23:58:11 +0000657 // Remove it from the caches.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000658 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)];
Owen Anderson9a65dc92010-07-27 23:58:11 +0000659 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
660
661 assert(CI != Entry.end() && "Couldn't find entry to update?");
662 Entry.erase(CI);
663 OverDefinedCache.erase(OI);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000664
Owen Anderson9a65dc92010-07-27 23:58:11 +0000665 // If we removed anything, then we potentially need to update
666 // blocks successors too.
667 changed = true;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000668 }
669
670 if (!changed) continue;
671
672 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
673 }
674}
675
Chris Lattner2c5adf82009-11-15 19:59:49 +0000676//===----------------------------------------------------------------------===//
677// LazyValueInfo Impl
678//===----------------------------------------------------------------------===//
679
680bool LazyValueInfo::runOnFunction(Function &F) {
681 TD = getAnalysisIfAvailable<TargetData>();
682 // Fully lazy.
683 return false;
684}
685
686/// getCache - This lazily constructs the LazyValueInfoCache.
687static LazyValueInfoCache &getCache(void *&PImpl) {
688 if (!PImpl)
689 PImpl = new LazyValueInfoCache();
690 return *static_cast<LazyValueInfoCache*>(PImpl);
691}
692
693void LazyValueInfo::releaseMemory() {
694 // If the cache was allocated, free it.
695 if (PImpl) {
696 delete &getCache(PImpl);
697 PImpl = 0;
698 }
699}
700
701Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
702 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB);
703
Chris Lattner16976522009-11-11 22:48:44 +0000704 if (Result.isConstant())
705 return Result.getConstant();
706 return 0;
707}
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000708
Chris Lattner38392bb2009-11-12 01:29:10 +0000709/// getConstantOnEdge - Determine whether the specified value is known to be a
710/// constant on the specified edge. Return null if not.
711Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
712 BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000713 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattner38392bb2009-11-12 01:29:10 +0000714
715 if (Result.isConstant())
716 return Result.getConstant();
Owen Anderson9f014062010-08-10 20:03:09 +0000717 else if (Result.isConstantRange()) {
718 ConstantRange CR = Result.getConstantRange();
719 if (const APInt *SingleVal = CR.getSingleElement())
720 return ConstantInt::get(V->getContext(), *SingleVal);
721 }
Chris Lattner38392bb2009-11-12 01:29:10 +0000722 return 0;
723}
724
Chris Lattnerb52675b2009-11-12 04:36:58 +0000725/// getPredicateOnEdge - Determine whether the specified value comparison
726/// with a constant is known to be true or false on the specified CFG edge.
727/// Pred is a CmpInst predicate.
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000728LazyValueInfo::Tristate
Chris Lattnerb52675b2009-11-12 04:36:58 +0000729LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
730 BasicBlock *FromBB, BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000731 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000732
Chris Lattnerb52675b2009-11-12 04:36:58 +0000733 // If we know the value is a constant, evaluate the conditional.
734 Constant *Res = 0;
735 if (Result.isConstant()) {
736 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, TD);
737 if (ConstantInt *ResCI = dyn_cast_or_null<ConstantInt>(Res))
738 return ResCI->isZero() ? False : True;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000739 return Unknown;
740 }
741
Owen Anderson9f014062010-08-10 20:03:09 +0000742 if (Result.isConstantRange()) {
743 ConstantInt *CI = cast<ConstantInt>(C);
744 ConstantRange CR = Result.getConstantRange();
745 if (Pred == ICmpInst::ICMP_EQ) {
746 if (!CR.contains(CI->getValue()))
747 return False;
748
749 if (CR.isSingleElement() && CR.contains(CI->getValue()))
750 return True;
751 } else if (Pred == ICmpInst::ICMP_NE) {
752 if (!CR.contains(CI->getValue()))
753 return True;
754
755 if (CR.isSingleElement() && CR.contains(CI->getValue()))
756 return False;
757 }
758
759 // Handle more complex predicates.
760 ConstantRange RHS(CI->getValue(), CI->getValue()+1);
761 ConstantRange TrueValues = ConstantRange::makeICmpRegion(Pred, RHS);
762 if (CR.intersectWith(TrueValues).isEmptySet())
763 return False;
Owen Anderson625051b2010-08-10 23:20:01 +0000764 else if (TrueValues.contains(CR))
Owen Anderson9f014062010-08-10 20:03:09 +0000765 return True;
766
767 return Unknown;
768 }
769
Chris Lattner2c5adf82009-11-15 19:59:49 +0000770 if (Result.isNotConstant()) {
Chris Lattnerb52675b2009-11-12 04:36:58 +0000771 // If this is an equality comparison, we can try to fold it knowing that
772 // "V != C1".
773 if (Pred == ICmpInst::ICMP_EQ) {
774 // !C1 == C -> false iff C1 == C.
775 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
776 Result.getNotConstant(), C, TD);
777 if (Res->isNullValue())
778 return False;
779 } else if (Pred == ICmpInst::ICMP_NE) {
780 // !C1 != C -> true iff C1 == C.
Chris Lattner5553a3a2009-11-15 20:01:24 +0000781 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Chris Lattnerb52675b2009-11-12 04:36:58 +0000782 Result.getNotConstant(), C, TD);
783 if (Res->isNullValue())
784 return True;
785 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000786 return Unknown;
Chris Lattnerb52675b2009-11-12 04:36:58 +0000787 }
788
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000789 return Unknown;
790}
791
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000792void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
793 BasicBlock* NewSucc) {
794 getCache(PImpl).threadEdge(PredBB, OldSucc, NewSucc);
795}