blob: 83786dd88b96ab040c763e134390ba86a6d4daa0 [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"
Dan Gohman5034dd32010-12-15 20:02:24 +000017#include "llvm/Analysis/ValueTracking.h"
Chris Lattnercc4d3b22009-11-11 02:08:33 +000018#include "llvm/Constants.h"
19#include "llvm/Instructions.h"
Nick Lewycky786c7cd2011-01-15 09:16:12 +000020#include "llvm/IntrinsicInst.h"
Chris Lattnercc4d3b22009-11-11 02:08:33 +000021#include "llvm/Analysis/ConstantFolding.h"
22#include "llvm/Target/TargetData.h"
Chad Rosieraab8e282011-12-02 01:26:24 +000023#include "llvm/Target/TargetLibraryInfo.h"
Chris Lattner16976522009-11-11 22:48:44 +000024#include "llvm/Support/CFG.h"
Owen Anderson5be2e782010-08-05 22:59:19 +000025#include "llvm/Support/ConstantRange.h"
Chris Lattnerb8c124c2009-11-12 01:22:16 +000026#include "llvm/Support/Debug.h"
Benjamin Kramer8979e5f2012-03-02 15:34:43 +000027#include "llvm/Support/PatternMatch.h"
Chris Lattner16976522009-11-11 22:48:44 +000028#include "llvm/Support/raw_ostream.h"
Owen Anderson7f9cb742010-07-30 23:59:40 +000029#include "llvm/Support/ValueHandle.h"
Owen Anderson9a65dc92010-07-27 23:58:11 +000030#include "llvm/ADT/DenseSet.h"
Chris Lattnere5642812009-11-15 20:00:52 +000031#include "llvm/ADT/STLExtras.h"
Bill Wendlingaa8b9942012-01-11 23:43:34 +000032#include <map>
Nick Lewycky90862ee2010-12-18 01:00:40 +000033#include <stack>
Chris Lattner10f2d132009-11-11 00:22:30 +000034using namespace llvm;
Benjamin Kramer8979e5f2012-03-02 15:34:43 +000035using namespace PatternMatch;
Chris Lattner10f2d132009-11-11 00:22:30 +000036
37char LazyValueInfo::ID = 0;
Chad Rosieraab8e282011-12-02 01:26:24 +000038INITIALIZE_PASS_BEGIN(LazyValueInfo, "lazy-value-info",
39 "Lazy Value Information Analysis", false, true)
40INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
41INITIALIZE_PASS_END(LazyValueInfo, "lazy-value-info",
Owen Andersonce665bd2010-10-07 22:25:06 +000042 "Lazy Value Information Analysis", false, true)
Chris Lattner10f2d132009-11-11 00:22:30 +000043
44namespace llvm {
45 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
46}
47
Chris Lattnercc4d3b22009-11-11 02:08:33 +000048
49//===----------------------------------------------------------------------===//
50// LVILatticeVal
51//===----------------------------------------------------------------------===//
52
53/// LVILatticeVal - This is the information tracked by LazyValueInfo for each
54/// value.
55///
56/// FIXME: This is basically just for bringup, this can be made a lot more rich
57/// in the future.
58///
59namespace {
60class LVILatticeVal {
61 enum LatticeValueTy {
Nick Lewycky69bfdf52010-12-15 18:57:18 +000062 /// undefined - This Value has no known value yet.
Chris Lattnercc4d3b22009-11-11 02:08:33 +000063 undefined,
Owen Anderson5be2e782010-08-05 22:59:19 +000064
Nick Lewycky69bfdf52010-12-15 18:57:18 +000065 /// constant - This Value has a specific constant value.
Chris Lattnercc4d3b22009-11-11 02:08:33 +000066 constant,
Nick Lewycky69bfdf52010-12-15 18:57:18 +000067 /// notconstant - This Value is known to not have the specified value.
Chris Lattnerb52675b2009-11-12 04:36:58 +000068 notconstant,
Chad Rosieraab8e282011-12-02 01:26:24 +000069
Nick Lewycky69bfdf52010-12-15 18:57:18 +000070 /// constantrange - The Value falls within this range.
Owen Anderson5be2e782010-08-05 22:59:19 +000071 constantrange,
Chad Rosieraab8e282011-12-02 01:26:24 +000072
Nick Lewycky69bfdf52010-12-15 18:57:18 +000073 /// overdefined - This value is not known to be constant, and we know that
Chris Lattnercc4d3b22009-11-11 02:08:33 +000074 /// it has a value.
75 overdefined
76 };
77
78 /// Val: This stores the current lattice value along with the Constant* for
Chris Lattnerb52675b2009-11-12 04:36:58 +000079 /// the constant if this is a 'constant' or 'notconstant' value.
Owen Andersondb78d732010-08-05 22:10:46 +000080 LatticeValueTy Tag;
81 Constant *Val;
Owen Anderson5be2e782010-08-05 22:59:19 +000082 ConstantRange Range;
Chris Lattnercc4d3b22009-11-11 02:08:33 +000083
84public:
Owen Anderson5be2e782010-08-05 22:59:19 +000085 LVILatticeVal() : Tag(undefined), Val(0), Range(1, true) {}
Chris Lattnercc4d3b22009-11-11 02:08:33 +000086
Chris Lattner16976522009-11-11 22:48:44 +000087 static LVILatticeVal get(Constant *C) {
88 LVILatticeVal Res;
Nick Lewycky69bfdf52010-12-15 18:57:18 +000089 if (!isa<UndefValue>(C))
Owen Anderson9f014062010-08-10 20:03:09 +000090 Res.markConstant(C);
Chris Lattner16976522009-11-11 22:48:44 +000091 return Res;
92 }
Chris Lattnerb52675b2009-11-12 04:36:58 +000093 static LVILatticeVal getNot(Constant *C) {
94 LVILatticeVal Res;
Nick Lewycky69bfdf52010-12-15 18:57:18 +000095 if (!isa<UndefValue>(C))
Owen Anderson9f014062010-08-10 20:03:09 +000096 Res.markNotConstant(C);
Chris Lattnerb52675b2009-11-12 04:36:58 +000097 return Res;
98 }
Owen Anderson625051b2010-08-10 23:20:01 +000099 static LVILatticeVal getRange(ConstantRange CR) {
100 LVILatticeVal Res;
101 Res.markConstantRange(CR);
102 return Res;
103 }
Chris Lattner16976522009-11-11 22:48:44 +0000104
Owen Anderson5be2e782010-08-05 22:59:19 +0000105 bool isUndefined() const { return Tag == undefined; }
106 bool isConstant() const { return Tag == constant; }
107 bool isNotConstant() const { return Tag == notconstant; }
108 bool isConstantRange() const { return Tag == constantrange; }
109 bool isOverdefined() const { return Tag == overdefined; }
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000110
111 Constant *getConstant() const {
112 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersondb78d732010-08-05 22:10:46 +0000113 return Val;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000114 }
115
Chris Lattnerb52675b2009-11-12 04:36:58 +0000116 Constant *getNotConstant() const {
117 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersondb78d732010-08-05 22:10:46 +0000118 return Val;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000119 }
120
Owen Anderson5be2e782010-08-05 22:59:19 +0000121 ConstantRange getConstantRange() const {
122 assert(isConstantRange() &&
123 "Cannot get the constant-range of a non-constant-range!");
124 return Range;
125 }
126
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000127 /// markOverdefined - Return true if this is a change in status.
128 bool markOverdefined() {
129 if (isOverdefined())
130 return false;
Owen Andersondb78d732010-08-05 22:10:46 +0000131 Tag = overdefined;
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000132 return true;
133 }
134
135 /// markConstant - Return true if this is a change in status.
136 bool markConstant(Constant *V) {
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000137 assert(V && "Marking constant with NULL");
138 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
139 return markConstantRange(ConstantRange(CI->getValue()));
140 if (isa<UndefValue>(V))
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000141 return false;
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000142
143 assert((!isConstant() || getConstant() == V) &&
144 "Marking constant with different value");
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000145 assert(isUndefined());
Owen Andersondb78d732010-08-05 22:10:46 +0000146 Tag = constant;
Owen Andersondb78d732010-08-05 22:10:46 +0000147 Val = V;
Chris Lattner16976522009-11-11 22:48:44 +0000148 return true;
149 }
150
Chris Lattnerb52675b2009-11-12 04:36:58 +0000151 /// markNotConstant - Return true if this is a change in status.
152 bool markNotConstant(Constant *V) {
Chris Lattnerb52675b2009-11-12 04:36:58 +0000153 assert(V && "Marking constant with NULL");
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000154 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
155 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
156 if (isa<UndefValue>(V))
157 return false;
158
159 assert((!isConstant() || getConstant() != V) &&
160 "Marking constant !constant with same value");
161 assert((!isNotConstant() || getNotConstant() == V) &&
162 "Marking !constant with different value");
163 assert(isUndefined() || isConstant());
164 Tag = notconstant;
Owen Andersondb78d732010-08-05 22:10:46 +0000165 Val = V;
Chris Lattnerb52675b2009-11-12 04:36:58 +0000166 return true;
167 }
168
Owen Anderson5be2e782010-08-05 22:59:19 +0000169 /// markConstantRange - Return true if this is a change in status.
170 bool markConstantRange(const ConstantRange NewR) {
171 if (isConstantRange()) {
172 if (NewR.isEmptySet())
173 return markOverdefined();
174
Nuno Lopese4413942012-06-28 01:16:18 +0000175 bool changed = Range != NewR;
Owen Anderson5be2e782010-08-05 22:59:19 +0000176 Range = NewR;
177 return changed;
178 }
179
180 assert(isUndefined());
181 if (NewR.isEmptySet())
182 return markOverdefined();
Owen Anderson5be2e782010-08-05 22:59:19 +0000183
184 Tag = constantrange;
185 Range = NewR;
186 return true;
187 }
188
Chris Lattner16976522009-11-11 22:48:44 +0000189 /// mergeIn - Merge the specified lattice value into this one, updating this
190 /// one and returning true if anything changed.
191 bool mergeIn(const LVILatticeVal &RHS) {
192 if (RHS.isUndefined() || isOverdefined()) return false;
193 if (RHS.isOverdefined()) return markOverdefined();
194
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000195 if (isUndefined()) {
196 Tag = RHS.Tag;
197 Val = RHS.Val;
198 Range = RHS.Range;
199 return true;
Chris Lattnerf496e792009-11-12 04:57:13 +0000200 }
201
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000202 if (isConstant()) {
203 if (RHS.isConstant()) {
204 if (Val == RHS.Val)
205 return false;
206 return markOverdefined();
207 }
208
209 if (RHS.isNotConstant()) {
210 if (Val == RHS.Val)
211 return markOverdefined();
212
213 // Unless we can prove that the two Constants are different, we must
214 // move to overdefined.
Chad Rosieraab8e282011-12-02 01:26:24 +0000215 // FIXME: use TargetData/TargetLibraryInfo for smarter constant folding.
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000216 if (ConstantInt *Res = dyn_cast<ConstantInt>(
217 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
218 getConstant(),
219 RHS.getNotConstant())))
220 if (Res->isOne())
221 return markNotConstant(RHS.getNotConstant());
222
223 return markOverdefined();
224 }
225
226 // RHS is a ConstantRange, LHS is a non-integer Constant.
227
228 // FIXME: consider the case where RHS is a range [1, 0) and LHS is
229 // a function. The correct result is to pick up RHS.
230
Chris Lattner16976522009-11-11 22:48:44 +0000231 return markOverdefined();
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000232 }
233
234 if (isNotConstant()) {
235 if (RHS.isConstant()) {
236 if (Val == RHS.Val)
237 return markOverdefined();
238
239 // Unless we can prove that the two Constants are different, we must
240 // move to overdefined.
Chad Rosieraab8e282011-12-02 01:26:24 +0000241 // FIXME: use TargetData/TargetLibraryInfo for smarter constant folding.
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000242 if (ConstantInt *Res = dyn_cast<ConstantInt>(
243 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
244 getNotConstant(),
245 RHS.getConstant())))
246 if (Res->isOne())
247 return false;
248
249 return markOverdefined();
250 }
251
252 if (RHS.isNotConstant()) {
253 if (Val == RHS.Val)
254 return false;
255 return markOverdefined();
256 }
257
258 return markOverdefined();
259 }
260
261 assert(isConstantRange() && "New LVILattice type?");
262 if (!RHS.isConstantRange())
263 return markOverdefined();
264
265 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
266 if (NewR.isFullSet())
267 return markOverdefined();
268 return markConstantRange(NewR);
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000269 }
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000270};
271
272} // end anonymous namespace.
273
Chris Lattner16976522009-11-11 22:48:44 +0000274namespace llvm {
Chandler Carruth3b55a372011-04-18 18:49:44 +0000275raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
276 LLVM_ATTRIBUTE_USED;
Chris Lattner16976522009-11-11 22:48:44 +0000277raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
278 if (Val.isUndefined())
279 return OS << "undefined";
280 if (Val.isOverdefined())
281 return OS << "overdefined";
Chris Lattnerb52675b2009-11-12 04:36:58 +0000282
283 if (Val.isNotConstant())
284 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson2f3ffb82010-08-09 20:50:46 +0000285 else if (Val.isConstantRange())
286 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
287 << Val.getConstantRange().getUpper() << '>';
Chris Lattner16976522009-11-11 22:48:44 +0000288 return OS << "constant<" << *Val.getConstant() << '>';
289}
290}
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000291
292//===----------------------------------------------------------------------===//
Chris Lattner2c5adf82009-11-15 19:59:49 +0000293// LazyValueInfoCache Decl
Chris Lattnercc4d3b22009-11-11 02:08:33 +0000294//===----------------------------------------------------------------------===//
295
Chris Lattner2c5adf82009-11-15 19:59:49 +0000296namespace {
Owen Anderson89778462011-01-05 21:15:29 +0000297 /// LVIValueHandle - A callback value handle update the cache when
298 /// values are erased.
299 class LazyValueInfoCache;
300 struct LVIValueHandle : public CallbackVH {
301 LazyValueInfoCache *Parent;
302
303 LVIValueHandle(Value *V, LazyValueInfoCache *P)
304 : CallbackVH(V), Parent(P) { }
305
306 void deleted();
307 void allUsesReplacedWith(Value *V) {
308 deleted();
309 }
310 };
311}
312
Owen Anderson89778462011-01-05 21:15:29 +0000313namespace {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000314 /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
315 /// maintains information about queries across the clients' queries.
316 class LazyValueInfoCache {
Chris Lattner2c5adf82009-11-15 19:59:49 +0000317 /// ValueCacheEntryTy - This is all of the cached block information for
318 /// exactly one Value*. The entries are sorted by the BasicBlock* of the
319 /// entries, allowing us to do a lookup with a binary search.
Bill Wendlingaa8b9942012-01-11 23:43:34 +0000320 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
Chris Lattner2c5adf82009-11-15 19:59:49 +0000321
Owen Andersone68713a2011-01-05 23:26:22 +0000322 /// ValueCache - This is all of the cached information for all values,
323 /// mapped from Value* to key information.
Bill Wendling805e2242012-01-12 01:41:03 +0000324 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Andersone68713a2011-01-05 23:26:22 +0000325
326 /// OverDefinedCache - This tracks, on a per-block basis, the set of
327 /// values that are over-defined at the end of that block. This is required
328 /// for cache updating.
329 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
330 DenseSet<OverDefinedPairTy> OverDefinedCache;
Benjamin Kramerfeb9b4b2011-12-03 15:16:45 +0000331
332 /// SeenBlocks - Keep track of all blocks that we have ever seen, so we
333 /// don't spend time removing unused blocks from our caches.
334 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
335
Owen Andersone68713a2011-01-05 23:26:22 +0000336 /// BlockValueStack - This stack holds the state of the value solver
337 /// during a query. It basically emulates the callstack of the naive
338 /// recursive value lookup process.
339 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack;
340
Owen Anderson89778462011-01-05 21:15:29 +0000341 friend struct LVIValueHandle;
Owen Anderson87790ab2010-12-20 19:33:41 +0000342
343 /// OverDefinedCacheUpdater - A helper object that ensures that the
344 /// OverDefinedCache is updated whenever solveBlockValue returns.
345 struct OverDefinedCacheUpdater {
346 LazyValueInfoCache *Parent;
347 Value *Val;
348 BasicBlock *BB;
349 LVILatticeVal &BBLV;
350
351 OverDefinedCacheUpdater(Value *V, BasicBlock *B, LVILatticeVal &LV,
352 LazyValueInfoCache *P)
353 : Parent(P), Val(V), BB(B), BBLV(LV) { }
354
355 bool markResult(bool changed) {
356 if (changed && BBLV.isOverdefined())
357 Parent->OverDefinedCache.insert(std::make_pair(BB, Val));
358 return changed;
359 }
360 };
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000361
Owen Andersone68713a2011-01-05 23:26:22 +0000362
Owen Anderson7f9cb742010-07-30 23:59:40 +0000363
Owen Andersonf33b3022010-12-09 06:14:58 +0000364 LVILatticeVal getBlockValue(Value *Val, BasicBlock *BB);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000365 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
366 LVILatticeVal &Result);
367 bool hasBlockValue(Value *Val, BasicBlock *BB);
368
369 // These methods process one work item and may add more. A false value
370 // returned means that the work item was not completely processed and must
371 // be revisited after going through the new items.
372 bool solveBlockValue(Value *Val, BasicBlock *BB);
Owen Anderson61863942010-12-20 18:18:16 +0000373 bool solveBlockValueNonLocal(LVILatticeVal &BBLV,
374 Value *Val, BasicBlock *BB);
375 bool solveBlockValuePHINode(LVILatticeVal &BBLV,
376 PHINode *PN, BasicBlock *BB);
377 bool solveBlockValueConstantRange(LVILatticeVal &BBLV,
378 Instruction *BBI, BasicBlock *BB);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000379
380 void solve();
Owen Andersonf33b3022010-12-09 06:14:58 +0000381
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000382 ValueCacheEntryTy &lookup(Value *V) {
Owen Andersonf33b3022010-12-09 06:14:58 +0000383 return ValueCache[LVIValueHandle(V, this)];
384 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000385
Chris Lattner2c5adf82009-11-15 19:59:49 +0000386 public:
Chris Lattner2c5adf82009-11-15 19:59:49 +0000387 /// getValueInBlock - This is the query interface to determine the lattice
388 /// value for the specified Value* at the end of the specified block.
389 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB);
390
391 /// getValueOnEdge - This is the query interface to determine the lattice
392 /// value for the specified Value* that is true on the specified edge.
393 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000394
395 /// threadEdge - This is the update interface to inform the cache that an
396 /// edge from PredBB to OldSucc has been threaded to be from PredBB to
397 /// NewSucc.
398 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Owen Anderson00ac77e2010-08-18 18:39:01 +0000399
400 /// eraseBlock - This is part of the update interface to inform the cache
401 /// that a block has been deleted.
402 void eraseBlock(BasicBlock *BB);
403
404 /// clear - Empty the cache.
405 void clear() {
Benjamin Kramerc00c05f2011-12-03 15:19:55 +0000406 SeenBlocks.clear();
Owen Anderson00ac77e2010-08-18 18:39:01 +0000407 ValueCache.clear();
408 OverDefinedCache.clear();
409 }
Chris Lattner2c5adf82009-11-15 19:59:49 +0000410 };
411} // end anonymous namespace
412
Owen Anderson89778462011-01-05 21:15:29 +0000413void LVIValueHandle::deleted() {
414 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
415
416 SmallVector<OverDefinedPairTy, 4> ToErase;
417 for (DenseSet<OverDefinedPairTy>::iterator
Owen Anderson7f9cb742010-07-30 23:59:40 +0000418 I = Parent->OverDefinedCache.begin(),
419 E = Parent->OverDefinedCache.end();
Owen Anderson89778462011-01-05 21:15:29 +0000420 I != E; ++I) {
421 if (I->second == getValPtr())
422 ToErase.push_back(*I);
Owen Anderson7f9cb742010-07-30 23:59:40 +0000423 }
Owen Andersoncf6abd22010-08-11 22:36:04 +0000424
Owen Anderson89778462011-01-05 21:15:29 +0000425 for (SmallVector<OverDefinedPairTy, 4>::iterator I = ToErase.begin(),
426 E = ToErase.end(); I != E; ++I)
427 Parent->OverDefinedCache.erase(*I);
428
Owen Andersoncf6abd22010-08-11 22:36:04 +0000429 // This erasure deallocates *this, so it MUST happen after we're done
430 // using any and all members of *this.
431 Parent->ValueCache.erase(*this);
Owen Anderson7f9cb742010-07-30 23:59:40 +0000432}
433
Owen Anderson00ac77e2010-08-18 18:39:01 +0000434void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Benjamin Kramerfeb9b4b2011-12-03 15:16:45 +0000435 // Shortcut if we have never seen this block.
436 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
437 if (I == SeenBlocks.end())
438 return;
439 SeenBlocks.erase(I);
440
Owen Anderson89778462011-01-05 21:15:29 +0000441 SmallVector<OverDefinedPairTy, 4> ToErase;
442 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
443 E = OverDefinedCache.end(); I != E; ++I) {
444 if (I->first == BB)
445 ToErase.push_back(*I);
Owen Anderson00ac77e2010-08-18 18:39:01 +0000446 }
Owen Anderson89778462011-01-05 21:15:29 +0000447
448 for (SmallVector<OverDefinedPairTy, 4>::iterator I = ToErase.begin(),
449 E = ToErase.end(); I != E; ++I)
450 OverDefinedCache.erase(*I);
Owen Anderson00ac77e2010-08-18 18:39:01 +0000451
Bill Wendling805e2242012-01-12 01:41:03 +0000452 for (std::map<LVIValueHandle, ValueCacheEntryTy>::iterator
Owen Anderson00ac77e2010-08-18 18:39:01 +0000453 I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
454 I->second.erase(BB);
455}
Owen Anderson7f9cb742010-07-30 23:59:40 +0000456
Nick Lewycky90862ee2010-12-18 01:00:40 +0000457void LazyValueInfoCache::solve() {
Owen Andersone68713a2011-01-05 23:26:22 +0000458 while (!BlockValueStack.empty()) {
459 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top();
Nuno Lopese4413942012-06-28 01:16:18 +0000460 if (solveBlockValue(e.second, e.first)) {
461 assert(BlockValueStack.top() == e);
Owen Andersone68713a2011-01-05 23:26:22 +0000462 BlockValueStack.pop();
Nuno Lopese4413942012-06-28 01:16:18 +0000463 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000464 }
465}
466
467bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) {
468 // If already a constant, there is nothing to compute.
469 if (isa<Constant>(Val))
470 return true;
471
Owen Anderson89778462011-01-05 21:15:29 +0000472 LVIValueHandle ValHandle(Val, this);
473 if (!ValueCache.count(ValHandle)) return false;
474 return ValueCache[ValHandle].count(BB);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000475}
476
Owen Andersonf33b3022010-12-09 06:14:58 +0000477LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky90862ee2010-12-18 01:00:40 +0000478 // If already a constant, there is nothing to compute.
479 if (Constant *VC = dyn_cast<Constant>(Val))
480 return LVILatticeVal::get(VC);
481
Benjamin Kramerfeb9b4b2011-12-03 15:16:45 +0000482 SeenBlocks.insert(BB);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000483 return lookup(Val)[BB];
484}
485
486bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) {
487 if (isa<Constant>(Val))
488 return true;
489
Owen Andersonf33b3022010-12-09 06:14:58 +0000490 ValueCacheEntryTy &Cache = lookup(Val);
Benjamin Kramerfeb9b4b2011-12-03 15:16:45 +0000491 SeenBlocks.insert(BB);
Owen Andersonf33b3022010-12-09 06:14:58 +0000492 LVILatticeVal &BBLV = Cache[BB];
Owen Anderson87790ab2010-12-20 19:33:41 +0000493
494 // OverDefinedCacheUpdater is a helper object that will update
495 // the OverDefinedCache for us when this method exits. Make sure to
496 // call markResult on it as we exist, passing a bool to indicate if the
497 // cache needs updating, i.e. if we have solve a new value or not.
498 OverDefinedCacheUpdater ODCacheUpdater(Val, BB, BBLV, this);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000499
Chris Lattner2c5adf82009-11-15 19:59:49 +0000500 // If we've already computed this block's value, return it.
Chris Lattnere5642812009-11-15 20:00:52 +0000501 if (!BBLV.isUndefined()) {
David Greene5d93a1f2009-12-23 20:43:58 +0000502 DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
Owen Anderson87790ab2010-12-20 19:33:41 +0000503
504 // Since we're reusing a cached value here, we don't need to update the
505 // OverDefinedCahce. The cache will have been properly updated
506 // whenever the cached value was inserted.
507 ODCacheUpdater.markResult(false);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000508 return true;
Chris Lattnere5642812009-11-15 20:00:52 +0000509 }
510
Chris Lattner2c5adf82009-11-15 19:59:49 +0000511 // Otherwise, this is the first time we're seeing this block. Reset the
512 // lattice value to overdefined, so that cycles will terminate and be
513 // conservatively correct.
514 BBLV.markOverdefined();
515
Chris Lattner2c5adf82009-11-15 19:59:49 +0000516 Instruction *BBI = dyn_cast<Instruction>(Val);
517 if (BBI == 0 || BBI->getParent() != BB) {
Owen Anderson87790ab2010-12-20 19:33:41 +0000518 return ODCacheUpdater.markResult(solveBlockValueNonLocal(BBLV, Val, BB));
Chris Lattner2c5adf82009-11-15 19:59:49 +0000519 }
Chris Lattnere5642812009-11-15 20:00:52 +0000520
Nick Lewycky90862ee2010-12-18 01:00:40 +0000521 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Owen Anderson87790ab2010-12-20 19:33:41 +0000522 return ODCacheUpdater.markResult(solveBlockValuePHINode(BBLV, PN, BB));
Nick Lewycky90862ee2010-12-18 01:00:40 +0000523 }
Owen Andersonb81fd622010-08-18 21:11:37 +0000524
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000525 if (AllocaInst *AI = dyn_cast<AllocaInst>(BBI)) {
526 BBLV = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType()));
527 return ODCacheUpdater.markResult(true);
528 }
529
Owen Andersonb81fd622010-08-18 21:11:37 +0000530 // We can only analyze the definitions of certain classes of instructions
531 // (integral binops and casts at the moment), so bail if this isn't one.
Chris Lattner2c5adf82009-11-15 19:59:49 +0000532 LVILatticeVal Result;
Owen Andersonb81fd622010-08-18 21:11:37 +0000533 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
534 !BBI->getType()->isIntegerTy()) {
535 DEBUG(dbgs() << " compute BB '" << BB->getName()
536 << "' - overdefined because inst def found.\n");
Owen Anderson61863942010-12-20 18:18:16 +0000537 BBLV.markOverdefined();
Owen Anderson87790ab2010-12-20 19:33:41 +0000538 return ODCacheUpdater.markResult(true);
Owen Andersonb81fd622010-08-18 21:11:37 +0000539 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000540
Owen Andersonb81fd622010-08-18 21:11:37 +0000541 // FIXME: We're currently limited to binops with a constant RHS. This should
542 // be improved.
543 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
544 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
545 DEBUG(dbgs() << " compute BB '" << BB->getName()
546 << "' - overdefined because inst def found.\n");
547
Owen Anderson61863942010-12-20 18:18:16 +0000548 BBLV.markOverdefined();
Owen Anderson87790ab2010-12-20 19:33:41 +0000549 return ODCacheUpdater.markResult(true);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000550 }
Owen Andersonb81fd622010-08-18 21:11:37 +0000551
Owen Anderson87790ab2010-12-20 19:33:41 +0000552 return ODCacheUpdater.markResult(solveBlockValueConstantRange(BBLV, BBI, BB));
Nick Lewycky90862ee2010-12-18 01:00:40 +0000553}
554
555static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
556 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
557 return L->getPointerAddressSpace() == 0 &&
558 GetUnderlyingObject(L->getPointerOperand()) ==
559 GetUnderlyingObject(Ptr);
560 }
561 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
562 return S->getPointerAddressSpace() == 0 &&
563 GetUnderlyingObject(S->getPointerOperand()) ==
564 GetUnderlyingObject(Ptr);
565 }
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000566 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
567 if (MI->isVolatile()) return false;
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000568
569 // FIXME: check whether it has a valuerange that excludes zero?
570 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
571 if (!Len || Len->isZero()) return false;
572
Eli Friedman69388e52011-05-31 20:40:16 +0000573 if (MI->getDestAddressSpace() == 0)
574 if (MI->getRawDest() == Ptr || MI->getDest() == Ptr)
575 return true;
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000576 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Eli Friedman69388e52011-05-31 20:40:16 +0000577 if (MTI->getSourceAddressSpace() == 0)
578 if (MTI->getRawSource() == Ptr || MTI->getSource() == Ptr)
579 return true;
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000580 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000581 return false;
582}
583
Owen Anderson61863942010-12-20 18:18:16 +0000584bool LazyValueInfoCache::solveBlockValueNonLocal(LVILatticeVal &BBLV,
585 Value *Val, BasicBlock *BB) {
Nick Lewycky90862ee2010-12-18 01:00:40 +0000586 LVILatticeVal Result; // Start Undefined.
587
588 // If this is a pointer, and there's a load from that pointer in this BB,
589 // then we know that the pointer can't be NULL.
590 bool NotNull = false;
591 if (Val->getType()->isPointerTy()) {
Nick Lewycky786c7cd2011-01-15 09:16:12 +0000592 if (isa<AllocaInst>(Val)) {
593 NotNull = true;
594 } else {
595 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();BI != BE;++BI){
596 if (InstructionDereferencesPointer(BI, Val)) {
597 NotNull = true;
598 break;
599 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000600 }
601 }
602 }
603
604 // If this is the entry block, we must be asking about an argument. The
605 // value is overdefined.
606 if (BB == &BB->getParent()->getEntryBlock()) {
607 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
608 if (NotNull) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000609 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky90862ee2010-12-18 01:00:40 +0000610 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
611 } else {
612 Result.markOverdefined();
613 }
Owen Anderson61863942010-12-20 18:18:16 +0000614 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000615 return true;
616 }
617
618 // Loop over all of our predecessors, merging what we know from them into
619 // result.
620 bool EdgesMissing = false;
621 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
622 LVILatticeVal EdgeResult;
623 EdgesMissing |= !getEdgeValue(Val, *PI, BB, EdgeResult);
624 if (EdgesMissing)
625 continue;
626
627 Result.mergeIn(EdgeResult);
628
629 // If we hit overdefined, exit early. The BlockVals entry is already set
630 // to overdefined.
631 if (Result.isOverdefined()) {
632 DEBUG(dbgs() << " compute BB '" << BB->getName()
633 << "' - overdefined because of pred.\n");
634 // If we previously determined that this is a pointer that can't be null
635 // then return that rather than giving up entirely.
636 if (NotNull) {
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000637 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky90862ee2010-12-18 01:00:40 +0000638 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
639 }
Owen Anderson61863942010-12-20 18:18:16 +0000640
641 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000642 return true;
643 }
644 }
645 if (EdgesMissing)
646 return false;
647
648 // Return the merged value, which is more precise than 'overdefined'.
649 assert(!Result.isOverdefined());
Owen Anderson61863942010-12-20 18:18:16 +0000650 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000651 return true;
652}
653
Owen Anderson61863942010-12-20 18:18:16 +0000654bool LazyValueInfoCache::solveBlockValuePHINode(LVILatticeVal &BBLV,
655 PHINode *PN, BasicBlock *BB) {
Nick Lewycky90862ee2010-12-18 01:00:40 +0000656 LVILatticeVal Result; // Start Undefined.
657
658 // Loop over all of our predecessors, merging what we know from them into
659 // result.
660 bool EdgesMissing = false;
661 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
662 BasicBlock *PhiBB = PN->getIncomingBlock(i);
663 Value *PhiVal = PN->getIncomingValue(i);
664 LVILatticeVal EdgeResult;
665 EdgesMissing |= !getEdgeValue(PhiVal, PhiBB, BB, EdgeResult);
666 if (EdgesMissing)
667 continue;
668
669 Result.mergeIn(EdgeResult);
670
671 // If we hit overdefined, exit early. The BlockVals entry is already set
672 // to overdefined.
673 if (Result.isOverdefined()) {
674 DEBUG(dbgs() << " compute BB '" << BB->getName()
675 << "' - overdefined because of pred.\n");
Owen Anderson61863942010-12-20 18:18:16 +0000676
677 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000678 return true;
679 }
680 }
681 if (EdgesMissing)
682 return false;
683
684 // Return the merged value, which is more precise than 'overdefined'.
685 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson61863942010-12-20 18:18:16 +0000686 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000687 return true;
688}
689
Owen Anderson61863942010-12-20 18:18:16 +0000690bool LazyValueInfoCache::solveBlockValueConstantRange(LVILatticeVal &BBLV,
691 Instruction *BBI,
Nick Lewycky90862ee2010-12-18 01:00:40 +0000692 BasicBlock *BB) {
Owen Andersonb81fd622010-08-18 21:11:37 +0000693 // Figure out the range of the LHS. If that fails, bail.
Nick Lewycky90862ee2010-12-18 01:00:40 +0000694 if (!hasBlockValue(BBI->getOperand(0), BB)) {
Owen Andersone68713a2011-01-05 23:26:22 +0000695 BlockValueStack.push(std::make_pair(BB, BBI->getOperand(0)));
Nick Lewycky90862ee2010-12-18 01:00:40 +0000696 return false;
697 }
698
Nick Lewycky90862ee2010-12-18 01:00:40 +0000699 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
Owen Andersonb81fd622010-08-18 21:11:37 +0000700 if (!LHSVal.isConstantRange()) {
Owen Anderson61863942010-12-20 18:18:16 +0000701 BBLV.markOverdefined();
Nick Lewycky90862ee2010-12-18 01:00:40 +0000702 return true;
Owen Andersonb81fd622010-08-18 21:11:37 +0000703 }
704
Owen Andersonb81fd622010-08-18 21:11:37 +0000705 ConstantRange LHSRange = LHSVal.getConstantRange();
706 ConstantRange RHSRange(1);
Chris Lattnerdb125cf2011-07-18 04:54:35 +0000707 IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
Owen Andersonb81fd622010-08-18 21:11:37 +0000708 if (isa<BinaryOperator>(BBI)) {
Nick Lewycky90862ee2010-12-18 01:00:40 +0000709 if (ConstantInt *RHS = dyn_cast<ConstantInt>(BBI->getOperand(1))) {
710 RHSRange = ConstantRange(RHS->getValue());
711 } else {
Owen Anderson61863942010-12-20 18:18:16 +0000712 BBLV.markOverdefined();
Nick Lewycky90862ee2010-12-18 01:00:40 +0000713 return true;
Owen Anderson59b06dc2010-08-24 07:55:44 +0000714 }
Owen Andersonb81fd622010-08-18 21:11:37 +0000715 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000716
Owen Andersonb81fd622010-08-18 21:11:37 +0000717 // NOTE: We're currently limited by the set of operations that ConstantRange
718 // can evaluate symbolically. Enhancing that set will allows us to analyze
719 // more definitions.
Owen Anderson61863942010-12-20 18:18:16 +0000720 LVILatticeVal Result;
Owen Andersonb81fd622010-08-18 21:11:37 +0000721 switch (BBI->getOpcode()) {
722 case Instruction::Add:
723 Result.markConstantRange(LHSRange.add(RHSRange));
724 break;
725 case Instruction::Sub:
726 Result.markConstantRange(LHSRange.sub(RHSRange));
727 break;
728 case Instruction::Mul:
729 Result.markConstantRange(LHSRange.multiply(RHSRange));
730 break;
731 case Instruction::UDiv:
732 Result.markConstantRange(LHSRange.udiv(RHSRange));
733 break;
734 case Instruction::Shl:
735 Result.markConstantRange(LHSRange.shl(RHSRange));
736 break;
737 case Instruction::LShr:
738 Result.markConstantRange(LHSRange.lshr(RHSRange));
739 break;
740 case Instruction::Trunc:
741 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
742 break;
743 case Instruction::SExt:
744 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
745 break;
746 case Instruction::ZExt:
747 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
748 break;
749 case Instruction::BitCast:
750 Result.markConstantRange(LHSRange);
751 break;
Nick Lewycky198381e2010-09-07 05:39:02 +0000752 case Instruction::And:
753 Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
754 break;
755 case Instruction::Or:
756 Result.markConstantRange(LHSRange.binaryOr(RHSRange));
757 break;
Owen Andersonb81fd622010-08-18 21:11:37 +0000758
759 // Unhandled instructions are overdefined.
760 default:
761 DEBUG(dbgs() << " compute BB '" << BB->getName()
762 << "' - overdefined because inst def found.\n");
763 Result.markOverdefined();
764 break;
765 }
766
Owen Anderson61863942010-12-20 18:18:16 +0000767 BBLV = Result;
Nick Lewycky90862ee2010-12-18 01:00:40 +0000768 return true;
Chris Lattner10f2d132009-11-11 00:22:30 +0000769}
770
Nuno Lopese4413942012-06-28 01:16:18 +0000771/// \brief Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
772/// Val is not constrained on the edge.
773static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
774 BasicBlock *BBTo, LVILatticeVal &Result) {
Chris Lattner800c47e2009-11-15 20:02:12 +0000775 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
776 // know that v != 0.
Chris Lattner16976522009-11-11 22:48:44 +0000777 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
778 // If this is a conditional branch and only one successor goes to BBTo, then
779 // we maybe able to infer something from the condition.
780 if (BI->isConditional() &&
781 BI->getSuccessor(0) != BI->getSuccessor(1)) {
782 bool isTrueDest = BI->getSuccessor(0) == BBTo;
783 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
784 "BBTo isn't a successor of BBFrom");
785
786 // If V is the condition of the branch itself, then we know exactly what
787 // it is.
Nick Lewycky90862ee2010-12-18 01:00:40 +0000788 if (BI->getCondition() == Val) {
789 Result = LVILatticeVal::get(ConstantInt::get(
Owen Anderson9f014062010-08-10 20:03:09 +0000790 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky90862ee2010-12-18 01:00:40 +0000791 return true;
792 }
Chris Lattner16976522009-11-11 22:48:44 +0000793
794 // If the condition of the branch is an equality comparison, we may be
795 // able to infer the value.
Owen Anderson2d0f2472010-08-11 04:24:25 +0000796 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
Benjamin Kramer8979e5f2012-03-02 15:34:43 +0000797 if (ICI && isa<Constant>(ICI->getOperand(1))) {
798 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
Owen Anderson2d0f2472010-08-11 04:24:25 +0000799 // We know that V has the RHS constant if this is a true SETEQ or
800 // false SETNE.
801 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
Nick Lewycky90862ee2010-12-18 01:00:40 +0000802 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
803 else
804 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
805 return true;
Chris Lattner16976522009-11-11 22:48:44 +0000806 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000807
Benjamin Kramer8979e5f2012-03-02 15:34:43 +0000808 // Recognize the range checking idiom that InstCombine produces.
809 // (X-C1) u< C2 --> [C1, C1+C2)
810 ConstantInt *NegOffset = 0;
811 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
812 match(ICI->getOperand(0), m_Add(m_Specific(Val),
813 m_ConstantInt(NegOffset)));
814
815 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
816 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
Owen Anderson2d0f2472010-08-11 04:24:25 +0000817 // Calculate the range of values that would satisfy the comparison.
Nuno Lopes97f87ab2012-05-17 23:04:08 +0000818 ConstantRange CmpRange(CI->getValue());
Owen Anderson2d0f2472010-08-11 04:24:25 +0000819 ConstantRange TrueValues =
820 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000821
Benjamin Kramer8979e5f2012-03-02 15:34:43 +0000822 if (NegOffset) // Apply the offset from above.
823 TrueValues = TrueValues.subtract(NegOffset->getValue());
824
Owen Anderson2d0f2472010-08-11 04:24:25 +0000825 // If we're interested in the false dest, invert the condition.
826 if (!isTrueDest) TrueValues = TrueValues.inverse();
Nick Lewycky90862ee2010-12-18 01:00:40 +0000827
Nuno Lopese4413942012-06-28 01:16:18 +0000828 Result = LVILatticeVal::getRange(TrueValues);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000829 return true;
Owen Anderson2d0f2472010-08-11 04:24:25 +0000830 }
831 }
Chris Lattner16976522009-11-11 22:48:44 +0000832 }
833 }
Chris Lattner800c47e2009-11-15 20:02:12 +0000834
835 // If the edge was formed by a switch on the value, then we may know exactly
836 // what it is.
837 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Owen Andersondae90c62010-08-24 21:59:42 +0000838 if (SI->getCondition() == Val) {
Owen Anderson4caef602010-09-02 22:16:52 +0000839 // We don't know anything in the default case.
Owen Andersondae90c62010-08-24 21:59:42 +0000840 if (SI->getDefaultDest() == BBTo) {
Owen Anderson4caef602010-09-02 22:16:52 +0000841 Result.markOverdefined();
Nick Lewycky90862ee2010-12-18 01:00:40 +0000842 return true;
Owen Andersondae90c62010-08-24 21:59:42 +0000843 }
844
Nuno Lopes90255a82012-05-18 21:02:10 +0000845 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
846 ConstantRange EdgesVals(BitWidth, false/*isFullSet*/);
Stepan Dyatkovskiy3d3abe02012-03-11 06:09:17 +0000847 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
Stepan Dyatkovskiyc10fa6c2012-03-08 07:06:20 +0000848 i != e; ++i) {
849 if (i.getCaseSuccessor() != BBTo) continue;
Nuno Lopes90255a82012-05-18 21:02:10 +0000850 ConstantRange EdgeVal(i.getCaseValue()->getValue());
851 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner800c47e2009-11-15 20:02:12 +0000852 }
Nuno Lopes90255a82012-05-18 21:02:10 +0000853 Result = LVILatticeVal::getRange(EdgesVals);
854 return true;
Chris Lattner800c47e2009-11-15 20:02:12 +0000855 }
856 }
Nuno Lopese4413942012-06-28 01:16:18 +0000857 return false;
858}
859
860/// \brief Compute the value of Val on the edge BBFrom -> BBTo, or the value at
861/// the basic block if the edge does not constraint Val.
862bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom,
863 BasicBlock *BBTo, LVILatticeVal &Result) {
864 // If already a constant, there is nothing to compute.
865 if (Constant *VC = dyn_cast<Constant>(Val)) {
866 Result = LVILatticeVal::get(VC);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000867 return true;
868 }
Nuno Lopese4413942012-06-28 01:16:18 +0000869
870 if (getEdgeValueLocal(Val, BBFrom, BBTo, Result)) {
871 if (!Result.isConstantRange() ||
872 Result.getConstantRange().getSingleElement())
873 return true;
874
875 // FIXME: this check should be moved to the beginning of the function when
876 // LVI better supports recursive values. Even for the single value case, we
877 // can intersect to detect dead code (an empty range).
878 if (!hasBlockValue(Val, BBFrom)) {
879 BlockValueStack.push(std::make_pair(BBFrom, Val));
880 return false;
881 }
882
883 // Try to intersect ranges of the BB and the constraint on the edge.
884 LVILatticeVal InBlock = getBlockValue(Val, BBFrom);
885 if (!InBlock.isConstantRange())
886 return true;
887
888 ConstantRange Range =
889 Result.getConstantRange().intersectWith(InBlock.getConstantRange());
890 Result = LVILatticeVal::getRange(Range);
891 return true;
892 }
893
894 if (!hasBlockValue(Val, BBFrom)) {
895 BlockValueStack.push(std::make_pair(BBFrom, Val));
896 return false;
897 }
898
899 // if we couldn't compute the value on the edge, use the value from the BB
900 Result = getBlockValue(Val, BBFrom);
901 return true;
Chris Lattner16976522009-11-11 22:48:44 +0000902}
903
Chris Lattner2c5adf82009-11-15 19:59:49 +0000904LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB) {
David Greene5d93a1f2009-12-23 20:43:58 +0000905 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000906 << BB->getName() << "'\n");
907
Owen Andersone68713a2011-01-05 23:26:22 +0000908 BlockValueStack.push(std::make_pair(BB, V));
Nick Lewycky90862ee2010-12-18 01:00:40 +0000909 solve();
Owen Andersonf33b3022010-12-09 06:14:58 +0000910 LVILatticeVal Result = getBlockValue(V, BB);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000911
David Greene5d93a1f2009-12-23 20:43:58 +0000912 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000913 return Result;
914}
Chris Lattner16976522009-11-11 22:48:44 +0000915
Chris Lattner2c5adf82009-11-15 19:59:49 +0000916LVILatticeVal LazyValueInfoCache::
917getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB) {
David Greene5d93a1f2009-12-23 20:43:58 +0000918 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattner2c5adf82009-11-15 19:59:49 +0000919 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000920
Nick Lewycky90862ee2010-12-18 01:00:40 +0000921 LVILatticeVal Result;
922 if (!getEdgeValue(V, FromBB, ToBB, Result)) {
923 solve();
924 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result);
925 (void)WasFastQuery;
926 assert(WasFastQuery && "More work to do after problem solved?");
927 }
928
David Greene5d93a1f2009-12-23 20:43:58 +0000929 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattner2c5adf82009-11-15 19:59:49 +0000930 return Result;
931}
932
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000933void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
934 BasicBlock *NewSucc) {
935 // When an edge in the graph has been threaded, values that we could not
936 // determine a value for before (i.e. were marked overdefined) may be possible
937 // to solve now. We do NOT try to proactively update these values. Instead,
938 // we clear their entries from the cache, and allow lazy updating to recompute
939 // them when needed.
940
941 // The updating process is fairly simple: we need to dropped cached info
942 // for all values that were marked overdefined in OldSucc, and for those same
943 // values in any successor of OldSucc (except NewSucc) in which they were
944 // also marked overdefined.
945 std::vector<BasicBlock*> worklist;
946 worklist.push_back(OldSucc);
947
Owen Anderson9a65dc92010-07-27 23:58:11 +0000948 DenseSet<Value*> ClearSet;
Owen Anderson89778462011-01-05 21:15:29 +0000949 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
950 E = OverDefinedCache.end(); I != E; ++I) {
Owen Anderson9a65dc92010-07-27 23:58:11 +0000951 if (I->first == OldSucc)
952 ClearSet.insert(I->second);
953 }
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000954
955 // Use a worklist to perform a depth-first search of OldSucc's successors.
956 // NOTE: We do not need a visited list since any blocks we have already
957 // visited will have had their overdefined markers cleared already, and we
958 // thus won't loop to their successors.
959 while (!worklist.empty()) {
960 BasicBlock *ToUpdate = worklist.back();
961 worklist.pop_back();
962
963 // Skip blocks only accessible through NewSucc.
964 if (ToUpdate == NewSucc) continue;
965
966 bool changed = false;
Nick Lewycky69bfdf52010-12-15 18:57:18 +0000967 for (DenseSet<Value*>::iterator I = ClearSet.begin(), E = ClearSet.end();
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000968 I != E; ++I) {
969 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson89778462011-01-05 21:15:29 +0000970 DenseSet<OverDefinedPairTy>::iterator OI =
Owen Anderson9a65dc92010-07-27 23:58:11 +0000971 OverDefinedCache.find(std::make_pair(ToUpdate, *I));
972 if (OI == OverDefinedCache.end()) continue;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000973
Owen Anderson9a65dc92010-07-27 23:58:11 +0000974 // Remove it from the caches.
Owen Anderson7f9cb742010-07-30 23:59:40 +0000975 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)];
Owen Anderson9a65dc92010-07-27 23:58:11 +0000976 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
Nick Lewycky90862ee2010-12-18 01:00:40 +0000977
Owen Anderson9a65dc92010-07-27 23:58:11 +0000978 assert(CI != Entry.end() && "Couldn't find entry to update?");
979 Entry.erase(CI);
980 OverDefinedCache.erase(OI);
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000981
Owen Anderson9a65dc92010-07-27 23:58:11 +0000982 // If we removed anything, then we potentially need to update
983 // blocks successors too.
984 changed = true;
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000985 }
Nick Lewycky90862ee2010-12-18 01:00:40 +0000986
Owen Andersoncfa7fb62010-07-26 18:48:03 +0000987 if (!changed) continue;
988
989 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
990 }
991}
992
Chris Lattner2c5adf82009-11-15 19:59:49 +0000993//===----------------------------------------------------------------------===//
994// LazyValueInfo Impl
995//===----------------------------------------------------------------------===//
996
Chris Lattner2c5adf82009-11-15 19:59:49 +0000997/// getCache - This lazily constructs the LazyValueInfoCache.
998static LazyValueInfoCache &getCache(void *&PImpl) {
999 if (!PImpl)
1000 PImpl = new LazyValueInfoCache();
1001 return *static_cast<LazyValueInfoCache*>(PImpl);
1002}
1003
Owen Anderson00ac77e2010-08-18 18:39:01 +00001004bool LazyValueInfo::runOnFunction(Function &F) {
1005 if (PImpl)
1006 getCache(PImpl).clear();
Chad Rosieraab8e282011-12-02 01:26:24 +00001007
Owen Anderson00ac77e2010-08-18 18:39:01 +00001008 TD = getAnalysisIfAvailable<TargetData>();
Chad Rosieraab8e282011-12-02 01:26:24 +00001009 TLI = &getAnalysis<TargetLibraryInfo>();
1010
Owen Anderson00ac77e2010-08-18 18:39:01 +00001011 // Fully lazy.
1012 return false;
1013}
1014
Chad Rosieraab8e282011-12-02 01:26:24 +00001015void LazyValueInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1016 AU.setPreservesAll();
1017 AU.addRequired<TargetLibraryInfo>();
1018}
1019
Chris Lattner2c5adf82009-11-15 19:59:49 +00001020void LazyValueInfo::releaseMemory() {
1021 // If the cache was allocated, free it.
1022 if (PImpl) {
1023 delete &getCache(PImpl);
1024 PImpl = 0;
1025 }
1026}
1027
1028Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB) {
1029 LVILatticeVal Result = getCache(PImpl).getValueInBlock(V, BB);
1030
Chris Lattner16976522009-11-11 22:48:44 +00001031 if (Result.isConstant())
1032 return Result.getConstant();
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001033 if (Result.isConstantRange()) {
Owen Andersonee61fcf2010-08-27 23:29:38 +00001034 ConstantRange CR = Result.getConstantRange();
1035 if (const APInt *SingleVal = CR.getSingleElement())
1036 return ConstantInt::get(V->getContext(), *SingleVal);
1037 }
Chris Lattner16976522009-11-11 22:48:44 +00001038 return 0;
1039}
Chris Lattnercc4d3b22009-11-11 02:08:33 +00001040
Chris Lattner38392bb2009-11-12 01:29:10 +00001041/// getConstantOnEdge - Determine whether the specified value is known to be a
1042/// constant on the specified edge. Return null if not.
1043Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
1044 BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +00001045 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattner38392bb2009-11-12 01:29:10 +00001046
1047 if (Result.isConstant())
1048 return Result.getConstant();
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001049 if (Result.isConstantRange()) {
Owen Anderson9f014062010-08-10 20:03:09 +00001050 ConstantRange CR = Result.getConstantRange();
1051 if (const APInt *SingleVal = CR.getSingleElement())
1052 return ConstantInt::get(V->getContext(), *SingleVal);
1053 }
Chris Lattner38392bb2009-11-12 01:29:10 +00001054 return 0;
1055}
1056
Chris Lattnerb52675b2009-11-12 04:36:58 +00001057/// getPredicateOnEdge - Determine whether the specified value comparison
1058/// with a constant is known to be true or false on the specified CFG edge.
1059/// Pred is a CmpInst predicate.
Chris Lattnercc4d3b22009-11-11 02:08:33 +00001060LazyValueInfo::Tristate
Chris Lattnerb52675b2009-11-12 04:36:58 +00001061LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1062 BasicBlock *FromBB, BasicBlock *ToBB) {
Chris Lattner2c5adf82009-11-15 19:59:49 +00001063 LVILatticeVal Result = getCache(PImpl).getValueOnEdge(V, FromBB, ToBB);
Chris Lattnercc4d3b22009-11-11 02:08:33 +00001064
Chris Lattnerb52675b2009-11-12 04:36:58 +00001065 // If we know the value is a constant, evaluate the conditional.
1066 Constant *Res = 0;
1067 if (Result.isConstant()) {
Chad Rosieraab8e282011-12-02 01:26:24 +00001068 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, TD,
1069 TLI);
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001070 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Chris Lattnerb52675b2009-11-12 04:36:58 +00001071 return ResCI->isZero() ? False : True;
Chris Lattner2c5adf82009-11-15 19:59:49 +00001072 return Unknown;
1073 }
1074
Owen Anderson9f014062010-08-10 20:03:09 +00001075 if (Result.isConstantRange()) {
Owen Anderson59b06dc2010-08-24 07:55:44 +00001076 ConstantInt *CI = dyn_cast<ConstantInt>(C);
1077 if (!CI) return Unknown;
1078
Owen Anderson9f014062010-08-10 20:03:09 +00001079 ConstantRange CR = Result.getConstantRange();
1080 if (Pred == ICmpInst::ICMP_EQ) {
1081 if (!CR.contains(CI->getValue()))
1082 return False;
1083
1084 if (CR.isSingleElement() && CR.contains(CI->getValue()))
1085 return True;
1086 } else if (Pred == ICmpInst::ICMP_NE) {
1087 if (!CR.contains(CI->getValue()))
1088 return True;
1089
1090 if (CR.isSingleElement() && CR.contains(CI->getValue()))
1091 return False;
1092 }
1093
1094 // Handle more complex predicates.
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001095 ConstantRange TrueValues =
1096 ICmpInst::makeConstantRange((ICmpInst::Predicate)Pred, CI->getValue());
1097 if (TrueValues.contains(CR))
Owen Anderson9f014062010-08-10 20:03:09 +00001098 return True;
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001099 if (TrueValues.inverse().contains(CR))
1100 return False;
Owen Anderson9f014062010-08-10 20:03:09 +00001101 return Unknown;
1102 }
1103
Chris Lattner2c5adf82009-11-15 19:59:49 +00001104 if (Result.isNotConstant()) {
Chris Lattnerb52675b2009-11-12 04:36:58 +00001105 // If this is an equality comparison, we can try to fold it knowing that
1106 // "V != C1".
1107 if (Pred == ICmpInst::ICMP_EQ) {
1108 // !C1 == C -> false iff C1 == C.
1109 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Chad Rosieraab8e282011-12-02 01:26:24 +00001110 Result.getNotConstant(), C, TD,
1111 TLI);
Chris Lattnerb52675b2009-11-12 04:36:58 +00001112 if (Res->isNullValue())
1113 return False;
1114 } else if (Pred == ICmpInst::ICMP_NE) {
1115 // !C1 != C -> true iff C1 == C.
Chris Lattner5553a3a2009-11-15 20:01:24 +00001116 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Chad Rosieraab8e282011-12-02 01:26:24 +00001117 Result.getNotConstant(), C, TD,
1118 TLI);
Chris Lattnerb52675b2009-11-12 04:36:58 +00001119 if (Res->isNullValue())
1120 return True;
1121 }
Chris Lattner2c5adf82009-11-15 19:59:49 +00001122 return Unknown;
Chris Lattnerb52675b2009-11-12 04:36:58 +00001123 }
1124
Chris Lattnercc4d3b22009-11-11 02:08:33 +00001125 return Unknown;
1126}
1127
Owen Andersoncfa7fb62010-07-26 18:48:03 +00001128void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky69bfdf52010-12-15 18:57:18 +00001129 BasicBlock *NewSucc) {
Owen Anderson00ac77e2010-08-18 18:39:01 +00001130 if (PImpl) getCache(PImpl).threadEdge(PredBB, OldSucc, NewSucc);
1131}
1132
1133void LazyValueInfo::eraseBlock(BasicBlock *BB) {
1134 if (PImpl) getCache(PImpl).eraseBlock(BB);
Owen Andersoncfa7fb62010-07-26 18:48:03 +00001135}