blob: 414aaab265a3c708e3e7c2d1b25220a4c26cb059 [file] [log] [blame]
Chris Lattner741c94c2009-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
15#include "llvm/Analysis/LazyValueInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000016#include "llvm/ADT/DenseSet.h"
17#include "llvm/ADT/STLExtras.h"
Hal Finkel7e184492014-09-07 20:29:59 +000018#include "llvm/Analysis/AssumptionTracker.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Analysis/ConstantFolding.h"
Dan Gohmana4fcd242010-12-15 20:02:24 +000020#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000021#include "llvm/IR/CFG.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000022#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000023#include "llvm/IR/Constants.h"
24#include "llvm/IR/DataLayout.h"
Hal Finkel7e184492014-09-07 20:29:59 +000025#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000026#include "llvm/IR/Instructions.h"
27#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000028#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000029#include "llvm/IR/ValueHandle.h"
Jiangning Liucd1d79e2014-09-22 02:23:05 +000030#include "llvm/Support/CommandLine.h"
Chris Lattnerb584d1e2009-11-12 01:22:16 +000031#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000032#include "llvm/Support/raw_ostream.h"
33#include "llvm/Target/TargetLibraryInfo.h"
Bill Wendling4ec081a2012-01-11 23:43:34 +000034#include <map>
Nick Lewycky55a700b2010-12-18 01:00:40 +000035#include <stack>
Chris Lattner741c94c2009-11-11 00:22:30 +000036using namespace llvm;
Benjamin Kramerd9d80b12012-03-02 15:34:43 +000037using namespace PatternMatch;
Chris Lattner741c94c2009-11-11 00:22:30 +000038
Chandler Carruthf1221bd2014-04-22 02:48:03 +000039#define DEBUG_TYPE "lazy-value-info"
40
Jiangning Liucd1d79e2014-09-22 02:23:05 +000041// Experimentally derived threshold for the number of basic blocks lowered for
42// lattice value overdefined.
43static cl::opt<unsigned>
44OverdefinedBBThreshold("lvi-overdefined-BB-threshold",
45 cl::init(1500), cl::Hidden,
46 cl::desc("Threshold of the number of basic blocks lowered for lattice value"
47 "'overdefined'."));
48
49// Experimentally derived threshold for additional lowering lattice values
50// overdefined per block.
51static cl::opt<unsigned>
52OverdefinedThreshold("lvi-overdefined-threshold", cl::init(10), cl::Hidden,
53 cl::desc("Threshold of lowering lattice value 'overdefined'."));
54
Chris Lattner741c94c2009-11-11 00:22:30 +000055char LazyValueInfo::ID = 0;
Chad Rosier43a33062011-12-02 01:26:24 +000056INITIALIZE_PASS_BEGIN(LazyValueInfo, "lazy-value-info",
57 "Lazy Value Information Analysis", false, true)
Hal Finkel7e184492014-09-07 20:29:59 +000058INITIALIZE_PASS_DEPENDENCY(AssumptionTracker)
Chad Rosier43a33062011-12-02 01:26:24 +000059INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
60INITIALIZE_PASS_END(LazyValueInfo, "lazy-value-info",
Owen Andersondf7a4f22010-10-07 22:25:06 +000061 "Lazy Value Information Analysis", false, true)
Chris Lattner741c94c2009-11-11 00:22:30 +000062
63namespace llvm {
64 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
65}
66
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000067
68//===----------------------------------------------------------------------===//
69// LVILatticeVal
70//===----------------------------------------------------------------------===//
71
72/// LVILatticeVal - This is the information tracked by LazyValueInfo for each
73/// value.
74///
75/// FIXME: This is basically just for bringup, this can be made a lot more rich
76/// in the future.
77///
78namespace {
79class LVILatticeVal {
80 enum LatticeValueTy {
Nick Lewycky11678bd2010-12-15 18:57:18 +000081 /// undefined - This Value has no known value yet.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000082 undefined,
Owen Anderson0f306a42010-08-05 22:59:19 +000083
Nick Lewycky11678bd2010-12-15 18:57:18 +000084 /// constant - This Value has a specific constant value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000085 constant,
Nick Lewycky11678bd2010-12-15 18:57:18 +000086 /// notconstant - This Value is known to not have the specified value.
Chris Lattner565ee2f2009-11-12 04:36:58 +000087 notconstant,
Chad Rosier43a33062011-12-02 01:26:24 +000088
Nick Lewycky11678bd2010-12-15 18:57:18 +000089 /// constantrange - The Value falls within this range.
Owen Anderson0f306a42010-08-05 22:59:19 +000090 constantrange,
Chad Rosier43a33062011-12-02 01:26:24 +000091
Nick Lewycky11678bd2010-12-15 18:57:18 +000092 /// overdefined - This value is not known to be constant, and we know that
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000093 /// it has a value.
94 overdefined
95 };
96
97 /// Val: This stores the current lattice value along with the Constant* for
Chris Lattner565ee2f2009-11-12 04:36:58 +000098 /// the constant if this is a 'constant' or 'notconstant' value.
Owen Andersonc3a14132010-08-05 22:10:46 +000099 LatticeValueTy Tag;
100 Constant *Val;
Owen Anderson0f306a42010-08-05 22:59:19 +0000101 ConstantRange Range;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000102
103public:
Craig Topper9f008862014-04-15 04:59:12 +0000104 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000105
Chris Lattner19019ea2009-11-11 22:48:44 +0000106 static LVILatticeVal get(Constant *C) {
107 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000108 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +0000109 Res.markConstant(C);
Chris Lattner19019ea2009-11-11 22:48:44 +0000110 return Res;
111 }
Chris Lattner565ee2f2009-11-12 04:36:58 +0000112 static LVILatticeVal getNot(Constant *C) {
113 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000114 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +0000115 Res.markNotConstant(C);
Chris Lattner565ee2f2009-11-12 04:36:58 +0000116 return Res;
117 }
Owen Anderson5f1dd092010-08-10 23:20:01 +0000118 static LVILatticeVal getRange(ConstantRange CR) {
119 LVILatticeVal Res;
120 Res.markConstantRange(CR);
121 return Res;
122 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000123
Owen Anderson0f306a42010-08-05 22:59:19 +0000124 bool isUndefined() const { return Tag == undefined; }
125 bool isConstant() const { return Tag == constant; }
126 bool isNotConstant() const { return Tag == notconstant; }
127 bool isConstantRange() const { return Tag == constantrange; }
128 bool isOverdefined() const { return Tag == overdefined; }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000129
130 Constant *getConstant() const {
131 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000132 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000133 }
134
Chris Lattner565ee2f2009-11-12 04:36:58 +0000135 Constant *getNotConstant() const {
136 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000137 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000138 }
139
Owen Anderson0f306a42010-08-05 22:59:19 +0000140 ConstantRange getConstantRange() const {
141 assert(isConstantRange() &&
142 "Cannot get the constant-range of a non-constant-range!");
143 return Range;
144 }
145
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000146 /// markOverdefined - Return true if this is a change in status.
147 bool markOverdefined() {
148 if (isOverdefined())
149 return false;
Owen Andersonc3a14132010-08-05 22:10:46 +0000150 Tag = overdefined;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000151 return true;
152 }
153
154 /// markConstant - Return true if this is a change in status.
155 bool markConstant(Constant *V) {
Nick Lewycky11678bd2010-12-15 18:57:18 +0000156 assert(V && "Marking constant with NULL");
157 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
158 return markConstantRange(ConstantRange(CI->getValue()));
159 if (isa<UndefValue>(V))
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000160 return false;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000161
162 assert((!isConstant() || getConstant() == V) &&
163 "Marking constant with different value");
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000164 assert(isUndefined());
Owen Andersonc3a14132010-08-05 22:10:46 +0000165 Tag = constant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000166 Val = V;
Chris Lattner19019ea2009-11-11 22:48:44 +0000167 return true;
168 }
169
Chris Lattner565ee2f2009-11-12 04:36:58 +0000170 /// markNotConstant - Return true if this is a change in status.
171 bool markNotConstant(Constant *V) {
Chris Lattner565ee2f2009-11-12 04:36:58 +0000172 assert(V && "Marking constant with NULL");
Nick Lewycky11678bd2010-12-15 18:57:18 +0000173 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
174 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
175 if (isa<UndefValue>(V))
176 return false;
177
178 assert((!isConstant() || getConstant() != V) &&
179 "Marking constant !constant with same value");
180 assert((!isNotConstant() || getNotConstant() == V) &&
181 "Marking !constant with different value");
182 assert(isUndefined() || isConstant());
183 Tag = notconstant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000184 Val = V;
Chris Lattner565ee2f2009-11-12 04:36:58 +0000185 return true;
186 }
187
Owen Anderson0f306a42010-08-05 22:59:19 +0000188 /// markConstantRange - Return true if this is a change in status.
189 bool markConstantRange(const ConstantRange NewR) {
190 if (isConstantRange()) {
191 if (NewR.isEmptySet())
192 return markOverdefined();
193
Nuno Lopese6e04902012-06-28 01:16:18 +0000194 bool changed = Range != NewR;
Owen Anderson0f306a42010-08-05 22:59:19 +0000195 Range = NewR;
196 return changed;
197 }
198
199 assert(isUndefined());
200 if (NewR.isEmptySet())
201 return markOverdefined();
Owen Anderson0f306a42010-08-05 22:59:19 +0000202
203 Tag = constantrange;
204 Range = NewR;
205 return true;
206 }
207
Chris Lattner19019ea2009-11-11 22:48:44 +0000208 /// mergeIn - Merge the specified lattice value into this one, updating this
209 /// one and returning true if anything changed.
210 bool mergeIn(const LVILatticeVal &RHS) {
211 if (RHS.isUndefined() || isOverdefined()) return false;
212 if (RHS.isOverdefined()) return markOverdefined();
213
Nick Lewycky11678bd2010-12-15 18:57:18 +0000214 if (isUndefined()) {
215 Tag = RHS.Tag;
216 Val = RHS.Val;
217 Range = RHS.Range;
218 return true;
Chris Lattner22db4b52009-11-12 04:57:13 +0000219 }
220
Nick Lewycky11678bd2010-12-15 18:57:18 +0000221 if (isConstant()) {
222 if (RHS.isConstant()) {
223 if (Val == RHS.Val)
224 return false;
225 return markOverdefined();
226 }
227
228 if (RHS.isNotConstant()) {
229 if (Val == RHS.Val)
230 return markOverdefined();
231
232 // Unless we can prove that the two Constants are different, we must
233 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000234 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000235 if (ConstantInt *Res = dyn_cast<ConstantInt>(
236 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
237 getConstant(),
238 RHS.getNotConstant())))
239 if (Res->isOne())
240 return markNotConstant(RHS.getNotConstant());
241
242 return markOverdefined();
243 }
244
245 // RHS is a ConstantRange, LHS is a non-integer Constant.
246
247 // FIXME: consider the case where RHS is a range [1, 0) and LHS is
248 // a function. The correct result is to pick up RHS.
249
Chris Lattner19019ea2009-11-11 22:48:44 +0000250 return markOverdefined();
Nick Lewycky11678bd2010-12-15 18:57:18 +0000251 }
252
253 if (isNotConstant()) {
254 if (RHS.isConstant()) {
255 if (Val == RHS.Val)
256 return markOverdefined();
257
258 // Unless we can prove that the two Constants are different, we must
259 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000260 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000261 if (ConstantInt *Res = dyn_cast<ConstantInt>(
262 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
263 getNotConstant(),
264 RHS.getConstant())))
265 if (Res->isOne())
266 return false;
267
268 return markOverdefined();
269 }
270
271 if (RHS.isNotConstant()) {
272 if (Val == RHS.Val)
273 return false;
274 return markOverdefined();
275 }
276
277 return markOverdefined();
278 }
279
280 assert(isConstantRange() && "New LVILattice type?");
281 if (!RHS.isConstantRange())
282 return markOverdefined();
283
284 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
285 if (NewR.isFullSet())
286 return markOverdefined();
287 return markConstantRange(NewR);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000288 }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000289};
290
291} // end anonymous namespace.
292
Chris Lattner19019ea2009-11-11 22:48:44 +0000293namespace llvm {
Chandler Carruth2b1ba482011-04-18 18:49:44 +0000294raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
295 LLVM_ATTRIBUTE_USED;
Chris Lattner19019ea2009-11-11 22:48:44 +0000296raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
297 if (Val.isUndefined())
298 return OS << "undefined";
299 if (Val.isOverdefined())
300 return OS << "overdefined";
Chris Lattner565ee2f2009-11-12 04:36:58 +0000301
302 if (Val.isNotConstant())
303 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson8afac042010-08-09 20:50:46 +0000304 else if (Val.isConstantRange())
305 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
306 << Val.getConstantRange().getUpper() << '>';
Chris Lattner19019ea2009-11-11 22:48:44 +0000307 return OS << "constant<" << *Val.getConstant() << '>';
308}
309}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000310
311//===----------------------------------------------------------------------===//
Chris Lattneraf025d32009-11-15 19:59:49 +0000312// LazyValueInfoCache Decl
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000313//===----------------------------------------------------------------------===//
314
Chris Lattneraf025d32009-11-15 19:59:49 +0000315namespace {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000316 /// LVIValueHandle - A callback value handle updates the cache when
Owen Anderson118ac802011-01-05 21:15:29 +0000317 /// values are erased.
318 class LazyValueInfoCache;
319 struct LVIValueHandle : public CallbackVH {
320 LazyValueInfoCache *Parent;
321
322 LVIValueHandle(Value *V, LazyValueInfoCache *P)
323 : CallbackVH(V), Parent(P) { }
Craig Toppere9ba7592014-03-05 07:30:04 +0000324
325 void deleted() override;
326 void allUsesReplacedWith(Value *V) override {
Owen Anderson118ac802011-01-05 21:15:29 +0000327 deleted();
328 }
329 };
330}
331
Owen Anderson118ac802011-01-05 21:15:29 +0000332namespace {
Chris Lattneraf025d32009-11-15 19:59:49 +0000333 /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
334 /// maintains information about queries across the clients' queries.
335 class LazyValueInfoCache {
Chris Lattneraf025d32009-11-15 19:59:49 +0000336 /// ValueCacheEntryTy - This is all of the cached block information for
337 /// exactly one Value*. The entries are sorted by the BasicBlock* of the
338 /// entries, allowing us to do a lookup with a binary search.
Bill Wendling4ec081a2012-01-11 23:43:34 +0000339 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
Chris Lattneraf025d32009-11-15 19:59:49 +0000340
Owen Anderson6f060af2011-01-05 23:26:22 +0000341 /// ValueCache - This is all of the cached information for all values,
342 /// mapped from Value* to key information.
Bill Wendling58c75692012-01-12 01:41:03 +0000343 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Anderson6f060af2011-01-05 23:26:22 +0000344
345 /// OverDefinedCache - This tracks, on a per-block basis, the set of
346 /// values that are over-defined at the end of that block. This is required
347 /// for cache updating.
348 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
349 DenseSet<OverDefinedPairTy> OverDefinedCache;
Benjamin Kramer36647082011-12-03 15:16:45 +0000350
351 /// SeenBlocks - Keep track of all blocks that we have ever seen, so we
352 /// don't spend time removing unused blocks from our caches.
353 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
354
Owen Anderson6f060af2011-01-05 23:26:22 +0000355 /// BlockValueStack - This stack holds the state of the value solver
356 /// during a query. It basically emulates the callstack of the naive
357 /// recursive value lookup process.
358 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack;
Hal Finkel7e184492014-09-07 20:29:59 +0000359
360 /// A pointer to the cache of @llvm.assume calls.
361 AssumptionTracker *AT;
362 /// An optional DL pointer.
363 const DataLayout *DL;
364 /// An optional DT pointer.
365 DominatorTree *DT;
Jiangning Liucd1d79e2014-09-22 02:23:05 +0000366 /// A counter to record how many times Overdefined has been tried to be
367 /// lowered.
368 DenseMap<BasicBlock *, unsigned> LoweringOverdefinedTimes;
Owen Anderson6f060af2011-01-05 23:26:22 +0000369
Owen Anderson118ac802011-01-05 21:15:29 +0000370 friend struct LVIValueHandle;
Owen Andersond83f98a2010-12-20 19:33:41 +0000371
372 /// OverDefinedCacheUpdater - A helper object that ensures that the
373 /// OverDefinedCache is updated whenever solveBlockValue returns.
374 struct OverDefinedCacheUpdater {
375 LazyValueInfoCache *Parent;
376 Value *Val;
377 BasicBlock *BB;
378 LVILatticeVal &BBLV;
379
380 OverDefinedCacheUpdater(Value *V, BasicBlock *B, LVILatticeVal &LV,
381 LazyValueInfoCache *P)
382 : Parent(P), Val(V), BB(B), BBLV(LV) { }
383
384 bool markResult(bool changed) {
385 if (changed && BBLV.isOverdefined())
386 Parent->OverDefinedCache.insert(std::make_pair(BB, Val));
387 return changed;
388 }
389 };
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000390
Owen Anderson6f060af2011-01-05 23:26:22 +0000391
Owen Andersonc1561b82010-07-30 23:59:40 +0000392
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000393 LVILatticeVal getBlockValue(Value *Val, BasicBlock *BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000394 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
Hal Finkel7e184492014-09-07 20:29:59 +0000395 LVILatticeVal &Result,
396 Instruction *CxtI = nullptr);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000397 bool hasBlockValue(Value *Val, BasicBlock *BB);
398
399 // These methods process one work item and may add more. A false value
400 // returned means that the work item was not completely processed and must
401 // be revisited after going through the new items.
402 bool solveBlockValue(Value *Val, BasicBlock *BB);
Owen Anderson64c2c572010-12-20 18:18:16 +0000403 bool solveBlockValueNonLocal(LVILatticeVal &BBLV,
404 Value *Val, BasicBlock *BB);
405 bool solveBlockValuePHINode(LVILatticeVal &BBLV,
406 PHINode *PN, BasicBlock *BB);
407 bool solveBlockValueConstantRange(LVILatticeVal &BBLV,
408 Instruction *BBI, BasicBlock *BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000409 void mergeAssumeBlockValueConstantRange(Value *Val, LVILatticeVal &BBLV,
410 Instruction *BBI);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000411
412 void solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000413
Nick Lewycky11678bd2010-12-15 18:57:18 +0000414 ValueCacheEntryTy &lookup(Value *V) {
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000415 return ValueCache[LVIValueHandle(V, this)];
416 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000417
Chris Lattneraf025d32009-11-15 19:59:49 +0000418 public:
Chris Lattneraf025d32009-11-15 19:59:49 +0000419 /// getValueInBlock - This is the query interface to determine the lattice
420 /// value for the specified Value* at the end of the specified block.
Hal Finkel7e184492014-09-07 20:29:59 +0000421 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB,
422 Instruction *CxtI = nullptr);
423
424 /// getValueAt - This is the query interface to determine the lattice
425 /// value for the specified Value* at the specified instruction (generally
426 /// from an assume intrinsic).
427 LVILatticeVal getValueAt(Value *V, Instruction *CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +0000428
429 /// getValueOnEdge - This is the query interface to determine the lattice
430 /// value for the specified Value* that is true on the specified edge.
Hal Finkel7e184492014-09-07 20:29:59 +0000431 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB,
432 Instruction *CxtI = nullptr);
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000433
434 /// threadEdge - This is the update interface to inform the cache that an
435 /// edge from PredBB to OldSucc has been threaded to be from PredBB to
436 /// NewSucc.
437 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +0000438
439 /// eraseBlock - This is part of the update interface to inform the cache
440 /// that a block has been deleted.
441 void eraseBlock(BasicBlock *BB);
442
443 /// clear - Empty the cache.
444 void clear() {
Benjamin Kramerbbf3c602011-12-03 15:19:55 +0000445 SeenBlocks.clear();
Owen Anderson208636f2010-08-18 18:39:01 +0000446 ValueCache.clear();
447 OverDefinedCache.clear();
448 }
Hal Finkel7e184492014-09-07 20:29:59 +0000449
450 LazyValueInfoCache(AssumptionTracker *AT,
451 const DataLayout *DL = nullptr,
452 DominatorTree *DT = nullptr) : AT(AT), DL(DL), DT(DT) {}
Chris Lattneraf025d32009-11-15 19:59:49 +0000453 };
454} // end anonymous namespace
455
Owen Anderson118ac802011-01-05 21:15:29 +0000456void LVIValueHandle::deleted() {
457 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
458
459 SmallVector<OverDefinedPairTy, 4> ToErase;
460 for (DenseSet<OverDefinedPairTy>::iterator
Owen Andersonc1561b82010-07-30 23:59:40 +0000461 I = Parent->OverDefinedCache.begin(),
462 E = Parent->OverDefinedCache.end();
Owen Anderson118ac802011-01-05 21:15:29 +0000463 I != E; ++I) {
464 if (I->second == getValPtr())
465 ToErase.push_back(*I);
Owen Andersonc1561b82010-07-30 23:59:40 +0000466 }
Craig Topperaf0dea12013-07-04 01:31:24 +0000467
468 for (SmallVectorImpl<OverDefinedPairTy>::iterator I = ToErase.begin(),
Owen Anderson118ac802011-01-05 21:15:29 +0000469 E = ToErase.end(); I != E; ++I)
470 Parent->OverDefinedCache.erase(*I);
471
Owen Anderson7b974a42010-08-11 22:36:04 +0000472 // This erasure deallocates *this, so it MUST happen after we're done
473 // using any and all members of *this.
474 Parent->ValueCache.erase(*this);
Owen Andersonc1561b82010-07-30 23:59:40 +0000475}
476
Owen Anderson208636f2010-08-18 18:39:01 +0000477void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Benjamin Kramer36647082011-12-03 15:16:45 +0000478 // Shortcut if we have never seen this block.
479 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
480 if (I == SeenBlocks.end())
481 return;
482 SeenBlocks.erase(I);
483
Owen Anderson118ac802011-01-05 21:15:29 +0000484 SmallVector<OverDefinedPairTy, 4> ToErase;
485 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
486 E = OverDefinedCache.end(); I != E; ++I) {
487 if (I->first == BB)
488 ToErase.push_back(*I);
Owen Anderson208636f2010-08-18 18:39:01 +0000489 }
Craig Topperaf0dea12013-07-04 01:31:24 +0000490
491 for (SmallVectorImpl<OverDefinedPairTy>::iterator I = ToErase.begin(),
Owen Anderson118ac802011-01-05 21:15:29 +0000492 E = ToErase.end(); I != E; ++I)
493 OverDefinedCache.erase(*I);
Owen Anderson208636f2010-08-18 18:39:01 +0000494
Bill Wendling58c75692012-01-12 01:41:03 +0000495 for (std::map<LVIValueHandle, ValueCacheEntryTy>::iterator
Owen Anderson208636f2010-08-18 18:39:01 +0000496 I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
497 I->second.erase(BB);
498}
Owen Andersonc1561b82010-07-30 23:59:40 +0000499
Nick Lewycky55a700b2010-12-18 01:00:40 +0000500void LazyValueInfoCache::solve() {
Jiangning Liucd1d79e2014-09-22 02:23:05 +0000501 // Reset the counter of lowering overdefined value.
502 LoweringOverdefinedTimes.clear();
503
Owen Anderson6f060af2011-01-05 23:26:22 +0000504 while (!BlockValueStack.empty()) {
505 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top();
Nuno Lopese6e04902012-06-28 01:16:18 +0000506 if (solveBlockValue(e.second, e.first)) {
507 assert(BlockValueStack.top() == e);
Owen Anderson6f060af2011-01-05 23:26:22 +0000508 BlockValueStack.pop();
Nuno Lopese6e04902012-06-28 01:16:18 +0000509 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000510 }
511}
512
513bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) {
514 // If already a constant, there is nothing to compute.
515 if (isa<Constant>(Val))
516 return true;
517
Owen Anderson118ac802011-01-05 21:15:29 +0000518 LVIValueHandle ValHandle(Val, this);
Benjamin Kramerf29db272012-08-22 15:37:57 +0000519 std::map<LVIValueHandle, ValueCacheEntryTy>::iterator I =
520 ValueCache.find(ValHandle);
521 if (I == ValueCache.end()) return false;
522 return I->second.count(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000523}
524
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000525LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000526 // If already a constant, there is nothing to compute.
527 if (Constant *VC = dyn_cast<Constant>(Val))
528 return LVILatticeVal::get(VC);
529
Benjamin Kramer36647082011-12-03 15:16:45 +0000530 SeenBlocks.insert(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000531 return lookup(Val)[BB];
532}
533
534bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) {
535 if (isa<Constant>(Val))
536 return true;
537
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000538 ValueCacheEntryTy &Cache = lookup(Val);
Benjamin Kramer36647082011-12-03 15:16:45 +0000539 SeenBlocks.insert(BB);
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000540 LVILatticeVal &BBLV = Cache[BB];
Owen Andersond83f98a2010-12-20 19:33:41 +0000541
542 // OverDefinedCacheUpdater is a helper object that will update
543 // the OverDefinedCache for us when this method exits. Make sure to
544 // call markResult on it as we exist, passing a bool to indicate if the
545 // cache needs updating, i.e. if we have solve a new value or not.
546 OverDefinedCacheUpdater ODCacheUpdater(Val, BB, BBLV, this);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000547
James Molloycb7449d2014-10-03 09:29:24 +0000548 if (!BBLV.isUndefined()) {
David Greene37e98092009-12-23 20:43:58 +0000549 DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
Owen Andersond83f98a2010-12-20 19:33:41 +0000550
551 // Since we're reusing a cached value here, we don't need to update the
552 // OverDefinedCahce. The cache will have been properly updated
553 // whenever the cached value was inserted.
554 ODCacheUpdater.markResult(false);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000555 return true;
Chris Lattner2c708562009-11-15 20:00:52 +0000556 }
557
Chris Lattneraf025d32009-11-15 19:59:49 +0000558 // Otherwise, this is the first time we're seeing this block. Reset the
559 // lattice value to overdefined, so that cycles will terminate and be
560 // conservatively correct.
561 BBLV.markOverdefined();
Jiangning Liucd1d79e2014-09-22 02:23:05 +0000562 ++LoweringOverdefinedTimes[BB];
Chris Lattneraf025d32009-11-15 19:59:49 +0000563
Chris Lattneraf025d32009-11-15 19:59:49 +0000564 Instruction *BBI = dyn_cast<Instruction>(Val);
Craig Topper9f008862014-04-15 04:59:12 +0000565 if (!BBI || BBI->getParent() != BB) {
Owen Andersond83f98a2010-12-20 19:33:41 +0000566 return ODCacheUpdater.markResult(solveBlockValueNonLocal(BBLV, Val, BB));
Chris Lattneraf025d32009-11-15 19:59:49 +0000567 }
Chris Lattner2c708562009-11-15 20:00:52 +0000568
Nick Lewycky55a700b2010-12-18 01:00:40 +0000569 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Owen Andersond83f98a2010-12-20 19:33:41 +0000570 return ODCacheUpdater.markResult(solveBlockValuePHINode(BBLV, PN, BB));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000571 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000572
Nick Lewycky367f98f2011-01-15 09:16:12 +0000573 if (AllocaInst *AI = dyn_cast<AllocaInst>(BBI)) {
574 BBLV = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType()));
575 return ODCacheUpdater.markResult(true);
576 }
577
Owen Anderson80d19f02010-08-18 21:11:37 +0000578 // We can only analyze the definitions of certain classes of instructions
579 // (integral binops and casts at the moment), so bail if this isn't one.
Chris Lattneraf025d32009-11-15 19:59:49 +0000580 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000581 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
582 !BBI->getType()->isIntegerTy()) {
583 DEBUG(dbgs() << " compute BB '" << BB->getName()
584 << "' - overdefined because inst def found.\n");
Owen Anderson64c2c572010-12-20 18:18:16 +0000585 BBLV.markOverdefined();
Owen Andersond83f98a2010-12-20 19:33:41 +0000586 return ODCacheUpdater.markResult(true);
Owen Anderson80d19f02010-08-18 21:11:37 +0000587 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000588
Owen Anderson80d19f02010-08-18 21:11:37 +0000589 // FIXME: We're currently limited to binops with a constant RHS. This should
590 // be improved.
591 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
592 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
593 DEBUG(dbgs() << " compute BB '" << BB->getName()
594 << "' - overdefined because inst def found.\n");
595
Owen Anderson64c2c572010-12-20 18:18:16 +0000596 BBLV.markOverdefined();
Owen Andersond83f98a2010-12-20 19:33:41 +0000597 return ODCacheUpdater.markResult(true);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000598 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000599
Owen Andersond83f98a2010-12-20 19:33:41 +0000600 return ODCacheUpdater.markResult(solveBlockValueConstantRange(BBLV, BBI, BB));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000601}
602
603static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
604 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
605 return L->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000606 GetUnderlyingObject(L->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000607 }
608 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
609 return S->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000610 GetUnderlyingObject(S->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000611 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000612 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
613 if (MI->isVolatile()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000614
615 // FIXME: check whether it has a valuerange that excludes zero?
616 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
617 if (!Len || Len->isZero()) return false;
618
Eli Friedman7a5fc692011-05-31 20:40:16 +0000619 if (MI->getDestAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000620 if (GetUnderlyingObject(MI->getRawDest()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000621 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000622 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Eli Friedman7a5fc692011-05-31 20:40:16 +0000623 if (MTI->getSourceAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000624 if (GetUnderlyingObject(MTI->getRawSource()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000625 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000626 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000627 return false;
628}
629
Owen Anderson64c2c572010-12-20 18:18:16 +0000630bool LazyValueInfoCache::solveBlockValueNonLocal(LVILatticeVal &BBLV,
631 Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000632 LVILatticeVal Result; // Start Undefined.
633
634 // If this is a pointer, and there's a load from that pointer in this BB,
635 // then we know that the pointer can't be NULL.
636 bool NotNull = false;
637 if (Val->getType()->isPointerTy()) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000638 if (isKnownNonNull(Val)) {
Nick Lewycky367f98f2011-01-15 09:16:12 +0000639 NotNull = true;
640 } else {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000641 Value *UnderlyingVal = GetUnderlyingObject(Val);
642 // If 'GetUnderlyingObject' didn't converge, skip it. It won't converge
643 // inside InstructionDereferencesPointer either.
Craig Topper9f008862014-04-15 04:59:12 +0000644 if (UnderlyingVal == GetUnderlyingObject(UnderlyingVal, nullptr, 1)) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000645 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
646 BI != BE; ++BI) {
647 if (InstructionDereferencesPointer(BI, UnderlyingVal)) {
648 NotNull = true;
649 break;
650 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000651 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000652 }
653 }
654 }
655
656 // If this is the entry block, we must be asking about an argument. The
657 // value is overdefined.
658 if (BB == &BB->getParent()->getEntryBlock()) {
659 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
660 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000661 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000662 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
663 } else {
664 Result.markOverdefined();
665 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000666 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000667 return true;
668 }
669
670 // Loop over all of our predecessors, merging what we know from them into
671 // result.
672 bool EdgesMissing = false;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000673 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000674 LVILatticeVal EdgeResult;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000675 EdgesMissing |= !getEdgeValue(Val, *PI, BB, EdgeResult);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000676 if (EdgesMissing)
677 continue;
678
679 Result.mergeIn(EdgeResult);
680
681 // If we hit overdefined, exit early. The BlockVals entry is already set
682 // to overdefined.
683 if (Result.isOverdefined()) {
684 DEBUG(dbgs() << " compute BB '" << BB->getName()
685 << "' - overdefined because of pred.\n");
686 // If we previously determined that this is a pointer that can't be null
687 // then return that rather than giving up entirely.
688 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000689 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000690 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
691 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000692
693 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000694 return true;
695 }
696 }
697 if (EdgesMissing)
698 return false;
699
700 // Return the merged value, which is more precise than 'overdefined'.
701 assert(!Result.isOverdefined());
Owen Anderson64c2c572010-12-20 18:18:16 +0000702 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000703 return true;
704}
705
Owen Anderson64c2c572010-12-20 18:18:16 +0000706bool LazyValueInfoCache::solveBlockValuePHINode(LVILatticeVal &BBLV,
707 PHINode *PN, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000708 LVILatticeVal Result; // Start Undefined.
709
710 // Loop over all of our predecessors, merging what we know from them into
711 // result.
712 bool EdgesMissing = false;
713 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
714 BasicBlock *PhiBB = PN->getIncomingBlock(i);
715 Value *PhiVal = PN->getIncomingValue(i);
716 LVILatticeVal EdgeResult;
Hal Finkel7e184492014-09-07 20:29:59 +0000717 EdgesMissing |= !getEdgeValue(PhiVal, PhiBB, BB, EdgeResult, PN);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000718 if (EdgesMissing)
719 continue;
720
721 Result.mergeIn(EdgeResult);
722
723 // If we hit overdefined, exit early. The BlockVals entry is already set
724 // to overdefined.
725 if (Result.isOverdefined()) {
726 DEBUG(dbgs() << " compute BB '" << BB->getName()
727 << "' - overdefined because of pred.\n");
Owen Anderson64c2c572010-12-20 18:18:16 +0000728
729 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000730 return true;
731 }
732 }
733 if (EdgesMissing)
734 return false;
735
736 // Return the merged value, which is more precise than 'overdefined'.
737 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson64c2c572010-12-20 18:18:16 +0000738 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000739 return true;
740}
741
Hal Finkel7e184492014-09-07 20:29:59 +0000742static bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
743 LVILatticeVal &Result,
744 bool isTrueDest = true);
745
746// If we can determine a constant range for the value Val at the context
747// provided by the instruction BBI, then merge it into BBLV. If we did find a
748// constant range, return true.
749void LazyValueInfoCache::mergeAssumeBlockValueConstantRange(
750 Value *Val, LVILatticeVal &BBLV, Instruction *BBI) {
751 BBI = BBI ? BBI : dyn_cast<Instruction>(Val);
752 if (!BBI)
753 return;
754
755 for (auto &I : AT->assumptions(BBI->getParent()->getParent())) {
756 if (!isValidAssumeForContext(I, BBI, DL, DT))
757 continue;
758
759 Value *C = I->getArgOperand(0);
760 if (ICmpInst *ICI = dyn_cast<ICmpInst>(C)) {
761 LVILatticeVal Result;
762 if (getValueFromFromCondition(Val, ICI, Result)) {
763 if (BBLV.isOverdefined())
764 BBLV = Result;
765 else
766 BBLV.mergeIn(Result);
767 }
768 }
769 }
770}
771
Owen Anderson64c2c572010-12-20 18:18:16 +0000772bool LazyValueInfoCache::solveBlockValueConstantRange(LVILatticeVal &BBLV,
773 Instruction *BBI,
Nick Lewycky55a700b2010-12-18 01:00:40 +0000774 BasicBlock *BB) {
Owen Anderson80d19f02010-08-18 21:11:37 +0000775 // Figure out the range of the LHS. If that fails, bail.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000776 if (!hasBlockValue(BBI->getOperand(0), BB)) {
Owen Anderson6f060af2011-01-05 23:26:22 +0000777 BlockValueStack.push(std::make_pair(BB, BBI->getOperand(0)));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000778 return false;
779 }
780
Nick Lewycky55a700b2010-12-18 01:00:40 +0000781 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000782 mergeAssumeBlockValueConstantRange(BBI->getOperand(0), LHSVal, BBI);
Owen Anderson80d19f02010-08-18 21:11:37 +0000783 if (!LHSVal.isConstantRange()) {
Owen Anderson64c2c572010-12-20 18:18:16 +0000784 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000785 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +0000786 }
787
Owen Anderson80d19f02010-08-18 21:11:37 +0000788 ConstantRange LHSRange = LHSVal.getConstantRange();
789 ConstantRange RHSRange(1);
Chris Lattner229907c2011-07-18 04:54:35 +0000790 IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
Owen Anderson80d19f02010-08-18 21:11:37 +0000791 if (isa<BinaryOperator>(BBI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000792 if (ConstantInt *RHS = dyn_cast<ConstantInt>(BBI->getOperand(1))) {
793 RHSRange = ConstantRange(RHS->getValue());
794 } else {
Owen Anderson64c2c572010-12-20 18:18:16 +0000795 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000796 return true;
Owen Andersonc62f7042010-08-24 07:55:44 +0000797 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000798 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000799
Owen Anderson80d19f02010-08-18 21:11:37 +0000800 // NOTE: We're currently limited by the set of operations that ConstantRange
801 // can evaluate symbolically. Enhancing that set will allows us to analyze
802 // more definitions.
Owen Anderson64c2c572010-12-20 18:18:16 +0000803 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000804 switch (BBI->getOpcode()) {
805 case Instruction::Add:
806 Result.markConstantRange(LHSRange.add(RHSRange));
807 break;
808 case Instruction::Sub:
809 Result.markConstantRange(LHSRange.sub(RHSRange));
810 break;
811 case Instruction::Mul:
812 Result.markConstantRange(LHSRange.multiply(RHSRange));
813 break;
814 case Instruction::UDiv:
815 Result.markConstantRange(LHSRange.udiv(RHSRange));
816 break;
817 case Instruction::Shl:
818 Result.markConstantRange(LHSRange.shl(RHSRange));
819 break;
820 case Instruction::LShr:
821 Result.markConstantRange(LHSRange.lshr(RHSRange));
822 break;
823 case Instruction::Trunc:
824 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
825 break;
826 case Instruction::SExt:
827 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
828 break;
829 case Instruction::ZExt:
830 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
831 break;
832 case Instruction::BitCast:
833 Result.markConstantRange(LHSRange);
834 break;
Nick Lewyckyad48e012010-09-07 05:39:02 +0000835 case Instruction::And:
836 Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
837 break;
838 case Instruction::Or:
839 Result.markConstantRange(LHSRange.binaryOr(RHSRange));
840 break;
Owen Anderson80d19f02010-08-18 21:11:37 +0000841
842 // Unhandled instructions are overdefined.
843 default:
844 DEBUG(dbgs() << " compute BB '" << BB->getName()
845 << "' - overdefined because inst def found.\n");
846 Result.markOverdefined();
847 break;
848 }
849
Owen Anderson64c2c572010-12-20 18:18:16 +0000850 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000851 return true;
Chris Lattner741c94c2009-11-11 00:22:30 +0000852}
853
Hal Finkel7e184492014-09-07 20:29:59 +0000854bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
855 LVILatticeVal &Result, bool isTrueDest) {
856 if (ICI && isa<Constant>(ICI->getOperand(1))) {
857 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
858 // We know that V has the RHS constant if this is a true SETEQ or
859 // false SETNE.
860 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
861 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
862 else
863 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
864 return true;
865 }
866
867 // Recognize the range checking idiom that InstCombine produces.
868 // (X-C1) u< C2 --> [C1, C1+C2)
869 ConstantInt *NegOffset = nullptr;
870 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
871 match(ICI->getOperand(0), m_Add(m_Specific(Val),
872 m_ConstantInt(NegOffset)));
873
874 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
875 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
876 // Calculate the range of values that would satisfy the comparison.
877 ConstantRange CmpRange(CI->getValue());
878 ConstantRange TrueValues =
879 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
880
881 if (NegOffset) // Apply the offset from above.
882 TrueValues = TrueValues.subtract(NegOffset->getValue());
883
884 // If we're interested in the false dest, invert the condition.
885 if (!isTrueDest) TrueValues = TrueValues.inverse();
886
887 Result = LVILatticeVal::getRange(TrueValues);
888 return true;
889 }
890 }
891
892 return false;
893}
894
Nuno Lopese6e04902012-06-28 01:16:18 +0000895/// \brief Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
896/// Val is not constrained on the edge.
897static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
898 BasicBlock *BBTo, LVILatticeVal &Result) {
Chris Lattner77358782009-11-15 20:02:12 +0000899 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
900 // know that v != 0.
Chris Lattner19019ea2009-11-11 22:48:44 +0000901 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
902 // If this is a conditional branch and only one successor goes to BBTo, then
903 // we maybe able to infer something from the condition.
904 if (BI->isConditional() &&
905 BI->getSuccessor(0) != BI->getSuccessor(1)) {
906 bool isTrueDest = BI->getSuccessor(0) == BBTo;
907 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
908 "BBTo isn't a successor of BBFrom");
909
910 // If V is the condition of the branch itself, then we know exactly what
911 // it is.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000912 if (BI->getCondition() == Val) {
913 Result = LVILatticeVal::get(ConstantInt::get(
Owen Anderson185fe002010-08-10 20:03:09 +0000914 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000915 return true;
916 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000917
918 // If the condition of the branch is an equality comparison, we may be
919 // able to infer the value.
Owen Anderson0bd61242010-08-11 04:24:25 +0000920 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
Hal Finkel7e184492014-09-07 20:29:59 +0000921 if (getValueFromFromCondition(Val, ICI, Result, isTrueDest))
922 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000923 }
924 }
Chris Lattner77358782009-11-15 20:02:12 +0000925
926 // If the edge was formed by a switch on the value, then we may know exactly
927 // what it is.
928 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Nuno Lopes8650fb82012-06-28 16:13:37 +0000929 if (SI->getCondition() != Val)
930 return false;
931
932 bool DefaultCase = SI->getDefaultDest() == BBTo;
933 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
934 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
935
936 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
937 i != e; ++i) {
938 ConstantRange EdgeVal(i.getCaseValue()->getValue());
Manman Renf3fedb62012-09-05 23:45:58 +0000939 if (DefaultCase) {
940 // It is possible that the default destination is the destination of
941 // some cases. There is no need to perform difference for those cases.
942 if (i.getCaseSuccessor() != BBTo)
943 EdgesVals = EdgesVals.difference(EdgeVal);
944 } else if (i.getCaseSuccessor() == BBTo)
Nuno Lopesac593802012-05-18 21:02:10 +0000945 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner77358782009-11-15 20:02:12 +0000946 }
Nuno Lopes8650fb82012-06-28 16:13:37 +0000947 Result = LVILatticeVal::getRange(EdgesVals);
948 return true;
Chris Lattner77358782009-11-15 20:02:12 +0000949 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000950 return false;
951}
952
953/// \brief Compute the value of Val on the edge BBFrom -> BBTo, or the value at
954/// the basic block if the edge does not constraint Val.
955bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom,
Hal Finkel7e184492014-09-07 20:29:59 +0000956 BasicBlock *BBTo, LVILatticeVal &Result,
957 Instruction *CxtI) {
Nuno Lopese6e04902012-06-28 01:16:18 +0000958 // If already a constant, there is nothing to compute.
959 if (Constant *VC = dyn_cast<Constant>(Val)) {
960 Result = LVILatticeVal::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000961 return true;
962 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000963
964 if (getEdgeValueLocal(Val, BBFrom, BBTo, Result)) {
965 if (!Result.isConstantRange() ||
966 Result.getConstantRange().getSingleElement())
967 return true;
968
969 // FIXME: this check should be moved to the beginning of the function when
970 // LVI better supports recursive values. Even for the single value case, we
971 // can intersect to detect dead code (an empty range).
972 if (!hasBlockValue(Val, BBFrom)) {
973 BlockValueStack.push(std::make_pair(BBFrom, Val));
974 return false;
975 }
976
977 // Try to intersect ranges of the BB and the constraint on the edge.
978 LVILatticeVal InBlock = getBlockValue(Val, BBFrom);
Hal Finkel7e184492014-09-07 20:29:59 +0000979 mergeAssumeBlockValueConstantRange(Val, InBlock, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000980 if (!InBlock.isConstantRange())
981 return true;
982
983 ConstantRange Range =
984 Result.getConstantRange().intersectWith(InBlock.getConstantRange());
985 Result = LVILatticeVal::getRange(Range);
986 return true;
987 }
988
989 if (!hasBlockValue(Val, BBFrom)) {
990 BlockValueStack.push(std::make_pair(BBFrom, Val));
991 return false;
992 }
993
994 // if we couldn't compute the value on the edge, use the value from the BB
995 Result = getBlockValue(Val, BBFrom);
Hal Finkel7e184492014-09-07 20:29:59 +0000996 mergeAssumeBlockValueConstantRange(Val, Result, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000997 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000998}
999
Hal Finkel7e184492014-09-07 20:29:59 +00001000LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB,
1001 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001002 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001003 << BB->getName() << "'\n");
1004
Owen Anderson6f060af2011-01-05 23:26:22 +00001005 BlockValueStack.push(std::make_pair(BB, V));
Nick Lewycky55a700b2010-12-18 01:00:40 +00001006 solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +00001007 LVILatticeVal Result = getBlockValue(V, BB);
Hal Finkel7e184492014-09-07 20:29:59 +00001008 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
1009
1010 DEBUG(dbgs() << " Result = " << Result << "\n");
1011 return Result;
1012}
1013
1014LVILatticeVal LazyValueInfoCache::getValueAt(Value *V, Instruction *CxtI) {
1015 DEBUG(dbgs() << "LVI Getting value " << *V << " at '"
1016 << CxtI->getName() << "'\n");
1017
1018 LVILatticeVal Result;
1019 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001020
David Greene37e98092009-12-23 20:43:58 +00001021 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001022 return Result;
1023}
Chris Lattner19019ea2009-11-11 22:48:44 +00001024
Chris Lattneraf025d32009-11-15 19:59:49 +00001025LVILatticeVal LazyValueInfoCache::
Hal Finkel7e184492014-09-07 20:29:59 +00001026getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
1027 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001028 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001029 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001030
Nick Lewycky55a700b2010-12-18 01:00:40 +00001031 LVILatticeVal Result;
Hal Finkel7e184492014-09-07 20:29:59 +00001032 if (!getEdgeValue(V, FromBB, ToBB, Result, CxtI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001033 solve();
Hal Finkel7e184492014-09-07 20:29:59 +00001034 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001035 (void)WasFastQuery;
1036 assert(WasFastQuery && "More work to do after problem solved?");
1037 }
1038
David Greene37e98092009-12-23 20:43:58 +00001039 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001040 return Result;
1041}
1042
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001043void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
1044 BasicBlock *NewSucc) {
1045 // When an edge in the graph has been threaded, values that we could not
1046 // determine a value for before (i.e. were marked overdefined) may be possible
1047 // to solve now. We do NOT try to proactively update these values. Instead,
1048 // we clear their entries from the cache, and allow lazy updating to recompute
1049 // them when needed.
1050
1051 // The updating process is fairly simple: we need to dropped cached info
1052 // for all values that were marked overdefined in OldSucc, and for those same
1053 // values in any successor of OldSucc (except NewSucc) in which they were
1054 // also marked overdefined.
1055 std::vector<BasicBlock*> worklist;
1056 worklist.push_back(OldSucc);
1057
Owen Andersonaac5a722010-07-27 23:58:11 +00001058 DenseSet<Value*> ClearSet;
Owen Anderson118ac802011-01-05 21:15:29 +00001059 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
1060 E = OverDefinedCache.end(); I != E; ++I) {
Owen Andersonaac5a722010-07-27 23:58:11 +00001061 if (I->first == OldSucc)
1062 ClearSet.insert(I->second);
1063 }
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001064
1065 // Use a worklist to perform a depth-first search of OldSucc's successors.
1066 // NOTE: We do not need a visited list since any blocks we have already
1067 // visited will have had their overdefined markers cleared already, and we
1068 // thus won't loop to their successors.
1069 while (!worklist.empty()) {
1070 BasicBlock *ToUpdate = worklist.back();
1071 worklist.pop_back();
1072
1073 // Skip blocks only accessible through NewSucc.
1074 if (ToUpdate == NewSucc) continue;
1075
1076 bool changed = false;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001077 for (DenseSet<Value*>::iterator I = ClearSet.begin(), E = ClearSet.end();
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001078 I != E; ++I) {
1079 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson118ac802011-01-05 21:15:29 +00001080 DenseSet<OverDefinedPairTy>::iterator OI =
Owen Andersonaac5a722010-07-27 23:58:11 +00001081 OverDefinedCache.find(std::make_pair(ToUpdate, *I));
1082 if (OI == OverDefinedCache.end()) continue;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001083
Owen Andersonaac5a722010-07-27 23:58:11 +00001084 // Remove it from the caches.
Owen Andersonc1561b82010-07-30 23:59:40 +00001085 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)];
Owen Andersonaac5a722010-07-27 23:58:11 +00001086 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001087
Owen Andersonaac5a722010-07-27 23:58:11 +00001088 assert(CI != Entry.end() && "Couldn't find entry to update?");
1089 Entry.erase(CI);
1090 OverDefinedCache.erase(OI);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001091
Owen Andersonaac5a722010-07-27 23:58:11 +00001092 // If we removed anything, then we potentially need to update
1093 // blocks successors too.
1094 changed = true;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001095 }
Nick Lewycky55a700b2010-12-18 01:00:40 +00001096
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001097 if (!changed) continue;
1098
1099 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
1100 }
1101}
1102
Chris Lattneraf025d32009-11-15 19:59:49 +00001103//===----------------------------------------------------------------------===//
1104// LazyValueInfo Impl
1105//===----------------------------------------------------------------------===//
1106
Chris Lattneraf025d32009-11-15 19:59:49 +00001107/// getCache - This lazily constructs the LazyValueInfoCache.
Hal Finkel7e184492014-09-07 20:29:59 +00001108static LazyValueInfoCache &getCache(void *&PImpl,
1109 AssumptionTracker *AT,
1110 const DataLayout *DL = nullptr,
1111 DominatorTree *DT = nullptr) {
Chris Lattneraf025d32009-11-15 19:59:49 +00001112 if (!PImpl)
Hal Finkel7e184492014-09-07 20:29:59 +00001113 PImpl = new LazyValueInfoCache(AT, DL, DT);
Chris Lattneraf025d32009-11-15 19:59:49 +00001114 return *static_cast<LazyValueInfoCache*>(PImpl);
1115}
1116
Owen Anderson208636f2010-08-18 18:39:01 +00001117bool LazyValueInfo::runOnFunction(Function &F) {
Hal Finkel7e184492014-09-07 20:29:59 +00001118 AT = &getAnalysis<AssumptionTracker>();
1119
1120 DominatorTreeWrapperPass *DTWP =
1121 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
1122 DT = DTWP ? &DTWP->getDomTree() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001123
Rafael Espindola93512512014-02-25 17:30:31 +00001124 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +00001125 DL = DLP ? &DLP->getDataLayout() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001126 TLI = &getAnalysis<TargetLibraryInfo>();
1127
Hal Finkel7e184492014-09-07 20:29:59 +00001128 if (PImpl)
1129 getCache(PImpl, AT, DL, DT).clear();
1130
Owen Anderson208636f2010-08-18 18:39:01 +00001131 // Fully lazy.
1132 return false;
1133}
1134
Chad Rosier43a33062011-12-02 01:26:24 +00001135void LazyValueInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1136 AU.setPreservesAll();
Hal Finkel7e184492014-09-07 20:29:59 +00001137 AU.addRequired<AssumptionTracker>();
Chad Rosier43a33062011-12-02 01:26:24 +00001138 AU.addRequired<TargetLibraryInfo>();
1139}
1140
Chris Lattneraf025d32009-11-15 19:59:49 +00001141void LazyValueInfo::releaseMemory() {
1142 // If the cache was allocated, free it.
1143 if (PImpl) {
Hal Finkel7e184492014-09-07 20:29:59 +00001144 delete &getCache(PImpl, AT);
Craig Topper9f008862014-04-15 04:59:12 +00001145 PImpl = nullptr;
Chris Lattneraf025d32009-11-15 19:59:49 +00001146 }
1147}
1148
Hal Finkel7e184492014-09-07 20:29:59 +00001149Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
1150 Instruction *CxtI) {
1151 LVILatticeVal Result =
1152 getCache(PImpl, AT, DL, DT).getValueInBlock(V, BB, CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +00001153
Chris Lattner19019ea2009-11-11 22:48:44 +00001154 if (Result.isConstant())
1155 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001156 if (Result.isConstantRange()) {
Owen Anderson38f6b7f2010-08-27 23:29:38 +00001157 ConstantRange CR = Result.getConstantRange();
1158 if (const APInt *SingleVal = CR.getSingleElement())
1159 return ConstantInt::get(V->getContext(), *SingleVal);
1160 }
Craig Topper9f008862014-04-15 04:59:12 +00001161 return nullptr;
Chris Lattner19019ea2009-11-11 22:48:44 +00001162}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001163
Chris Lattnerd5e25432009-11-12 01:29:10 +00001164/// getConstantOnEdge - Determine whether the specified value is known to be a
1165/// constant on the specified edge. Return null if not.
1166Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
Hal Finkel7e184492014-09-07 20:29:59 +00001167 BasicBlock *ToBB,
1168 Instruction *CxtI) {
1169 LVILatticeVal Result =
1170 getCache(PImpl, AT, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Chris Lattnerd5e25432009-11-12 01:29:10 +00001171
1172 if (Result.isConstant())
1173 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001174 if (Result.isConstantRange()) {
Owen Anderson185fe002010-08-10 20:03:09 +00001175 ConstantRange CR = Result.getConstantRange();
1176 if (const APInt *SingleVal = CR.getSingleElement())
1177 return ConstantInt::get(V->getContext(), *SingleVal);
1178 }
Craig Topper9f008862014-04-15 04:59:12 +00001179 return nullptr;
Chris Lattnerd5e25432009-11-12 01:29:10 +00001180}
1181
Hal Finkel7e184492014-09-07 20:29:59 +00001182static LazyValueInfo::Tristate
1183getPredicateResult(unsigned Pred, Constant *C, LVILatticeVal &Result,
1184 const DataLayout *DL, TargetLibraryInfo *TLI) {
1185
Chris Lattner565ee2f2009-11-12 04:36:58 +00001186 // If we know the value is a constant, evaluate the conditional.
Craig Topper9f008862014-04-15 04:59:12 +00001187 Constant *Res = nullptr;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001188 if (Result.isConstant()) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001189 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001190 TLI);
Nick Lewycky11678bd2010-12-15 18:57:18 +00001191 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Hal Finkel7e184492014-09-07 20:29:59 +00001192 return ResCI->isZero() ? LazyValueInfo::False : LazyValueInfo::True;
1193 return LazyValueInfo::Unknown;
Chris Lattneraf025d32009-11-15 19:59:49 +00001194 }
1195
Owen Anderson185fe002010-08-10 20:03:09 +00001196 if (Result.isConstantRange()) {
Owen Andersonc62f7042010-08-24 07:55:44 +00001197 ConstantInt *CI = dyn_cast<ConstantInt>(C);
Hal Finkel7e184492014-09-07 20:29:59 +00001198 if (!CI) return LazyValueInfo::Unknown;
Owen Andersonc62f7042010-08-24 07:55:44 +00001199
Owen Anderson185fe002010-08-10 20:03:09 +00001200 ConstantRange CR = Result.getConstantRange();
1201 if (Pred == ICmpInst::ICMP_EQ) {
1202 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001203 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001204
1205 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001206 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001207 } else if (Pred == ICmpInst::ICMP_NE) {
1208 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001209 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001210
1211 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001212 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001213 }
1214
1215 // Handle more complex predicates.
Nick Lewycky11678bd2010-12-15 18:57:18 +00001216 ConstantRange TrueValues =
1217 ICmpInst::makeConstantRange((ICmpInst::Predicate)Pred, CI->getValue());
1218 if (TrueValues.contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001219 return LazyValueInfo::True;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001220 if (TrueValues.inverse().contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001221 return LazyValueInfo::False;
1222 return LazyValueInfo::Unknown;
Owen Anderson185fe002010-08-10 20:03:09 +00001223 }
1224
Chris Lattneraf025d32009-11-15 19:59:49 +00001225 if (Result.isNotConstant()) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001226 // If this is an equality comparison, we can try to fold it knowing that
1227 // "V != C1".
1228 if (Pred == ICmpInst::ICMP_EQ) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001229 // !C1 == C -> false iff C1 == C.
Chris Lattner565ee2f2009-11-12 04:36:58 +00001230 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001231 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001232 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001233 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001234 return LazyValueInfo::False;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001235 } else if (Pred == ICmpInst::ICMP_NE) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001236 // !C1 != C -> true iff C1 == C.
Chris Lattnerb0c0a0d2009-11-15 20:01:24 +00001237 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001238 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001239 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001240 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001241 return LazyValueInfo::True;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001242 }
Hal Finkel7e184492014-09-07 20:29:59 +00001243 return LazyValueInfo::Unknown;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001244 }
1245
Hal Finkel7e184492014-09-07 20:29:59 +00001246 return LazyValueInfo::Unknown;
1247}
1248
1249/// getPredicateOnEdge - Determine whether the specified value comparison
1250/// with a constant is known to be true or false on the specified CFG edge.
1251/// Pred is a CmpInst predicate.
1252LazyValueInfo::Tristate
1253LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1254 BasicBlock *FromBB, BasicBlock *ToBB,
1255 Instruction *CxtI) {
1256 LVILatticeVal Result =
1257 getCache(PImpl, AT, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
1258
1259 return getPredicateResult(Pred, C, Result, DL, TLI);
1260}
1261
1262LazyValueInfo::Tristate
1263LazyValueInfo::getPredicateAt(unsigned Pred, Value *V, Constant *C,
1264 Instruction *CxtI) {
1265 LVILatticeVal Result =
1266 getCache(PImpl, AT, DL, DT).getValueAt(V, CxtI);
1267
1268 return getPredicateResult(Pred, C, Result, DL, TLI);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001269}
1270
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001271void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky11678bd2010-12-15 18:57:18 +00001272 BasicBlock *NewSucc) {
Hal Finkel7e184492014-09-07 20:29:59 +00001273 if (PImpl) getCache(PImpl, AT, DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +00001274}
1275
1276void LazyValueInfo::eraseBlock(BasicBlock *BB) {
Hal Finkel7e184492014-09-07 20:29:59 +00001277 if (PImpl) getCache(PImpl, AT, DL, DT).eraseBlock(BB);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001278}