blob: c712c9f487d1260c01f5f1a62369e5745cd0fce5 [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"
Chris Lattnerb584d1e2009-11-12 01:22:16 +000030#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000031#include "llvm/Support/raw_ostream.h"
32#include "llvm/Target/TargetLibraryInfo.h"
Bill Wendling4ec081a2012-01-11 23:43:34 +000033#include <map>
Nick Lewycky55a700b2010-12-18 01:00:40 +000034#include <stack>
Chris Lattner741c94c2009-11-11 00:22:30 +000035using namespace llvm;
Benjamin Kramerd9d80b12012-03-02 15:34:43 +000036using namespace PatternMatch;
Chris Lattner741c94c2009-11-11 00:22:30 +000037
Chandler Carruthf1221bd2014-04-22 02:48:03 +000038#define DEBUG_TYPE "lazy-value-info"
39
Chris Lattner741c94c2009-11-11 00:22:30 +000040char LazyValueInfo::ID = 0;
Chad Rosier43a33062011-12-02 01:26:24 +000041INITIALIZE_PASS_BEGIN(LazyValueInfo, "lazy-value-info",
42 "Lazy Value Information Analysis", false, true)
Hal Finkel7e184492014-09-07 20:29:59 +000043INITIALIZE_PASS_DEPENDENCY(AssumptionTracker)
Chad Rosier43a33062011-12-02 01:26:24 +000044INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfo)
45INITIALIZE_PASS_END(LazyValueInfo, "lazy-value-info",
Owen Andersondf7a4f22010-10-07 22:25:06 +000046 "Lazy Value Information Analysis", false, true)
Chris Lattner741c94c2009-11-11 00:22:30 +000047
48namespace llvm {
49 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
50}
51
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000052
53//===----------------------------------------------------------------------===//
54// LVILatticeVal
55//===----------------------------------------------------------------------===//
56
57/// LVILatticeVal - This is the information tracked by LazyValueInfo for each
58/// value.
59///
60/// FIXME: This is basically just for bringup, this can be made a lot more rich
61/// in the future.
62///
63namespace {
64class LVILatticeVal {
65 enum LatticeValueTy {
Nick Lewycky11678bd2010-12-15 18:57:18 +000066 /// undefined - This Value has no known value yet.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000067 undefined,
Owen Anderson0f306a42010-08-05 22:59:19 +000068
Nick Lewycky11678bd2010-12-15 18:57:18 +000069 /// constant - This Value has a specific constant value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000070 constant,
Nick Lewycky11678bd2010-12-15 18:57:18 +000071 /// notconstant - This Value is known to not have the specified value.
Chris Lattner565ee2f2009-11-12 04:36:58 +000072 notconstant,
Chad Rosier43a33062011-12-02 01:26:24 +000073
Nick Lewycky11678bd2010-12-15 18:57:18 +000074 /// constantrange - The Value falls within this range.
Owen Anderson0f306a42010-08-05 22:59:19 +000075 constantrange,
Chad Rosier43a33062011-12-02 01:26:24 +000076
Nick Lewycky11678bd2010-12-15 18:57:18 +000077 /// overdefined - This value is not known to be constant, and we know that
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000078 /// it has a value.
79 overdefined
80 };
81
82 /// Val: This stores the current lattice value along with the Constant* for
Chris Lattner565ee2f2009-11-12 04:36:58 +000083 /// the constant if this is a 'constant' or 'notconstant' value.
Owen Andersonc3a14132010-08-05 22:10:46 +000084 LatticeValueTy Tag;
85 Constant *Val;
Owen Anderson0f306a42010-08-05 22:59:19 +000086 ConstantRange Range;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000087
88public:
Craig Topper9f008862014-04-15 04:59:12 +000089 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000090
Chris Lattner19019ea2009-11-11 22:48:44 +000091 static LVILatticeVal get(Constant *C) {
92 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +000093 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +000094 Res.markConstant(C);
Chris Lattner19019ea2009-11-11 22:48:44 +000095 return Res;
96 }
Chris Lattner565ee2f2009-11-12 04:36:58 +000097 static LVILatticeVal getNot(Constant *C) {
98 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +000099 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +0000100 Res.markNotConstant(C);
Chris Lattner565ee2f2009-11-12 04:36:58 +0000101 return Res;
102 }
Owen Anderson5f1dd092010-08-10 23:20:01 +0000103 static LVILatticeVal getRange(ConstantRange CR) {
104 LVILatticeVal Res;
105 Res.markConstantRange(CR);
106 return Res;
107 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000108
Owen Anderson0f306a42010-08-05 22:59:19 +0000109 bool isUndefined() const { return Tag == undefined; }
110 bool isConstant() const { return Tag == constant; }
111 bool isNotConstant() const { return Tag == notconstant; }
112 bool isConstantRange() const { return Tag == constantrange; }
113 bool isOverdefined() const { return Tag == overdefined; }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000114
115 Constant *getConstant() const {
116 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000117 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000118 }
119
Chris Lattner565ee2f2009-11-12 04:36:58 +0000120 Constant *getNotConstant() const {
121 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000122 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000123 }
124
Owen Anderson0f306a42010-08-05 22:59:19 +0000125 ConstantRange getConstantRange() const {
126 assert(isConstantRange() &&
127 "Cannot get the constant-range of a non-constant-range!");
128 return Range;
129 }
130
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000131 /// markOverdefined - Return true if this is a change in status.
132 bool markOverdefined() {
133 if (isOverdefined())
134 return false;
Owen Andersonc3a14132010-08-05 22:10:46 +0000135 Tag = overdefined;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000136 return true;
137 }
138
139 /// markConstant - Return true if this is a change in status.
140 bool markConstant(Constant *V) {
Nick Lewycky11678bd2010-12-15 18:57:18 +0000141 assert(V && "Marking constant with NULL");
142 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
143 return markConstantRange(ConstantRange(CI->getValue()));
144 if (isa<UndefValue>(V))
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000145 return false;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000146
147 assert((!isConstant() || getConstant() == V) &&
148 "Marking constant with different value");
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000149 assert(isUndefined());
Owen Andersonc3a14132010-08-05 22:10:46 +0000150 Tag = constant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000151 Val = V;
Chris Lattner19019ea2009-11-11 22:48:44 +0000152 return true;
153 }
154
Chris Lattner565ee2f2009-11-12 04:36:58 +0000155 /// markNotConstant - Return true if this is a change in status.
156 bool markNotConstant(Constant *V) {
Chris Lattner565ee2f2009-11-12 04:36:58 +0000157 assert(V && "Marking constant with NULL");
Nick Lewycky11678bd2010-12-15 18:57:18 +0000158 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
159 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
160 if (isa<UndefValue>(V))
161 return false;
162
163 assert((!isConstant() || getConstant() != V) &&
164 "Marking constant !constant with same value");
165 assert((!isNotConstant() || getNotConstant() == V) &&
166 "Marking !constant with different value");
167 assert(isUndefined() || isConstant());
168 Tag = notconstant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000169 Val = V;
Chris Lattner565ee2f2009-11-12 04:36:58 +0000170 return true;
171 }
172
Owen Anderson0f306a42010-08-05 22:59:19 +0000173 /// markConstantRange - Return true if this is a change in status.
174 bool markConstantRange(const ConstantRange NewR) {
175 if (isConstantRange()) {
176 if (NewR.isEmptySet())
177 return markOverdefined();
178
Nuno Lopese6e04902012-06-28 01:16:18 +0000179 bool changed = Range != NewR;
Owen Anderson0f306a42010-08-05 22:59:19 +0000180 Range = NewR;
181 return changed;
182 }
183
184 assert(isUndefined());
185 if (NewR.isEmptySet())
186 return markOverdefined();
Owen Anderson0f306a42010-08-05 22:59:19 +0000187
188 Tag = constantrange;
189 Range = NewR;
190 return true;
191 }
192
Chris Lattner19019ea2009-11-11 22:48:44 +0000193 /// mergeIn - Merge the specified lattice value into this one, updating this
194 /// one and returning true if anything changed.
195 bool mergeIn(const LVILatticeVal &RHS) {
196 if (RHS.isUndefined() || isOverdefined()) return false;
197 if (RHS.isOverdefined()) return markOverdefined();
198
Nick Lewycky11678bd2010-12-15 18:57:18 +0000199 if (isUndefined()) {
200 Tag = RHS.Tag;
201 Val = RHS.Val;
202 Range = RHS.Range;
203 return true;
Chris Lattner22db4b52009-11-12 04:57:13 +0000204 }
205
Nick Lewycky11678bd2010-12-15 18:57:18 +0000206 if (isConstant()) {
207 if (RHS.isConstant()) {
208 if (Val == RHS.Val)
209 return false;
210 return markOverdefined();
211 }
212
213 if (RHS.isNotConstant()) {
214 if (Val == RHS.Val)
215 return markOverdefined();
216
217 // Unless we can prove that the two Constants are different, we must
218 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000219 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000220 if (ConstantInt *Res = dyn_cast<ConstantInt>(
221 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
222 getConstant(),
223 RHS.getNotConstant())))
224 if (Res->isOne())
225 return markNotConstant(RHS.getNotConstant());
226
227 return markOverdefined();
228 }
229
230 // RHS is a ConstantRange, LHS is a non-integer Constant.
231
232 // FIXME: consider the case where RHS is a range [1, 0) and LHS is
233 // a function. The correct result is to pick up RHS.
234
Chris Lattner19019ea2009-11-11 22:48:44 +0000235 return markOverdefined();
Nick Lewycky11678bd2010-12-15 18:57:18 +0000236 }
237
238 if (isNotConstant()) {
239 if (RHS.isConstant()) {
240 if (Val == RHS.Val)
241 return markOverdefined();
242
243 // Unless we can prove that the two Constants are different, we must
244 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000245 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000246 if (ConstantInt *Res = dyn_cast<ConstantInt>(
247 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
248 getNotConstant(),
249 RHS.getConstant())))
250 if (Res->isOne())
251 return false;
252
253 return markOverdefined();
254 }
255
256 if (RHS.isNotConstant()) {
257 if (Val == RHS.Val)
258 return false;
259 return markOverdefined();
260 }
261
262 return markOverdefined();
263 }
264
265 assert(isConstantRange() && "New LVILattice type?");
266 if (!RHS.isConstantRange())
267 return markOverdefined();
268
269 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
270 if (NewR.isFullSet())
271 return markOverdefined();
272 return markConstantRange(NewR);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000273 }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000274};
275
276} // end anonymous namespace.
277
Chris Lattner19019ea2009-11-11 22:48:44 +0000278namespace llvm {
Chandler Carruth2b1ba482011-04-18 18:49:44 +0000279raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
280 LLVM_ATTRIBUTE_USED;
Chris Lattner19019ea2009-11-11 22:48:44 +0000281raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
282 if (Val.isUndefined())
283 return OS << "undefined";
284 if (Val.isOverdefined())
285 return OS << "overdefined";
Chris Lattner565ee2f2009-11-12 04:36:58 +0000286
287 if (Val.isNotConstant())
288 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson8afac042010-08-09 20:50:46 +0000289 else if (Val.isConstantRange())
290 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
291 << Val.getConstantRange().getUpper() << '>';
Chris Lattner19019ea2009-11-11 22:48:44 +0000292 return OS << "constant<" << *Val.getConstant() << '>';
293}
294}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000295
296//===----------------------------------------------------------------------===//
Chris Lattneraf025d32009-11-15 19:59:49 +0000297// LazyValueInfoCache Decl
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000298//===----------------------------------------------------------------------===//
299
Chris Lattneraf025d32009-11-15 19:59:49 +0000300namespace {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000301 /// LVIValueHandle - A callback value handle updates the cache when
Owen Anderson118ac802011-01-05 21:15:29 +0000302 /// values are erased.
303 class LazyValueInfoCache;
304 struct LVIValueHandle : public CallbackVH {
305 LazyValueInfoCache *Parent;
306
307 LVIValueHandle(Value *V, LazyValueInfoCache *P)
308 : CallbackVH(V), Parent(P) { }
Craig Toppere9ba7592014-03-05 07:30:04 +0000309
310 void deleted() override;
311 void allUsesReplacedWith(Value *V) override {
Owen Anderson118ac802011-01-05 21:15:29 +0000312 deleted();
313 }
314 };
315}
316
Owen Anderson118ac802011-01-05 21:15:29 +0000317namespace {
Chris Lattneraf025d32009-11-15 19:59:49 +0000318 /// LazyValueInfoCache - This is the cache kept by LazyValueInfo which
319 /// maintains information about queries across the clients' queries.
320 class LazyValueInfoCache {
Chris Lattneraf025d32009-11-15 19:59:49 +0000321 /// ValueCacheEntryTy - This is all of the cached block information for
322 /// exactly one Value*. The entries are sorted by the BasicBlock* of the
323 /// entries, allowing us to do a lookup with a binary search.
Bill Wendling4ec081a2012-01-11 23:43:34 +0000324 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
Chris Lattneraf025d32009-11-15 19:59:49 +0000325
Owen Anderson6f060af2011-01-05 23:26:22 +0000326 /// ValueCache - This is all of the cached information for all values,
327 /// mapped from Value* to key information.
Bill Wendling58c75692012-01-12 01:41:03 +0000328 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Anderson6f060af2011-01-05 23:26:22 +0000329
330 /// OverDefinedCache - This tracks, on a per-block basis, the set of
331 /// values that are over-defined at the end of that block. This is required
332 /// for cache updating.
333 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
334 DenseSet<OverDefinedPairTy> OverDefinedCache;
Benjamin Kramer36647082011-12-03 15:16:45 +0000335
336 /// SeenBlocks - Keep track of all blocks that we have ever seen, so we
337 /// don't spend time removing unused blocks from our caches.
338 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
339
Owen Anderson6f060af2011-01-05 23:26:22 +0000340 /// BlockValueStack - This stack holds the state of the value solver
341 /// during a query. It basically emulates the callstack of the naive
342 /// recursive value lookup process.
343 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack;
Hal Finkel7e184492014-09-07 20:29:59 +0000344
345 /// A pointer to the cache of @llvm.assume calls.
346 AssumptionTracker *AT;
347 /// An optional DL pointer.
348 const DataLayout *DL;
349 /// An optional DT pointer.
350 DominatorTree *DT;
Owen Anderson6f060af2011-01-05 23:26:22 +0000351
Owen Anderson118ac802011-01-05 21:15:29 +0000352 friend struct LVIValueHandle;
Owen Andersond83f98a2010-12-20 19:33:41 +0000353
354 /// OverDefinedCacheUpdater - A helper object that ensures that the
355 /// OverDefinedCache is updated whenever solveBlockValue returns.
356 struct OverDefinedCacheUpdater {
357 LazyValueInfoCache *Parent;
358 Value *Val;
359 BasicBlock *BB;
360 LVILatticeVal &BBLV;
361
362 OverDefinedCacheUpdater(Value *V, BasicBlock *B, LVILatticeVal &LV,
363 LazyValueInfoCache *P)
364 : Parent(P), Val(V), BB(B), BBLV(LV) { }
365
366 bool markResult(bool changed) {
367 if (changed && BBLV.isOverdefined())
368 Parent->OverDefinedCache.insert(std::make_pair(BB, Val));
369 return changed;
370 }
371 };
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000372
Owen Anderson6f060af2011-01-05 23:26:22 +0000373
Owen Andersonc1561b82010-07-30 23:59:40 +0000374
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000375 LVILatticeVal getBlockValue(Value *Val, BasicBlock *BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000376 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
Hal Finkel7e184492014-09-07 20:29:59 +0000377 LVILatticeVal &Result,
378 Instruction *CxtI = nullptr);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000379 bool hasBlockValue(Value *Val, BasicBlock *BB);
380
381 // These methods process one work item and may add more. A false value
382 // returned means that the work item was not completely processed and must
383 // be revisited after going through the new items.
384 bool solveBlockValue(Value *Val, BasicBlock *BB);
Owen Anderson64c2c572010-12-20 18:18:16 +0000385 bool solveBlockValueNonLocal(LVILatticeVal &BBLV,
386 Value *Val, BasicBlock *BB);
387 bool solveBlockValuePHINode(LVILatticeVal &BBLV,
388 PHINode *PN, BasicBlock *BB);
389 bool solveBlockValueConstantRange(LVILatticeVal &BBLV,
390 Instruction *BBI, BasicBlock *BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000391 void mergeAssumeBlockValueConstantRange(Value *Val, LVILatticeVal &BBLV,
392 Instruction *BBI);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000393
394 void solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000395
Nick Lewycky11678bd2010-12-15 18:57:18 +0000396 ValueCacheEntryTy &lookup(Value *V) {
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000397 return ValueCache[LVIValueHandle(V, this)];
398 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000399
Chris Lattneraf025d32009-11-15 19:59:49 +0000400 public:
Chris Lattneraf025d32009-11-15 19:59:49 +0000401 /// getValueInBlock - This is the query interface to determine the lattice
402 /// value for the specified Value* at the end of the specified block.
Hal Finkel7e184492014-09-07 20:29:59 +0000403 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB,
404 Instruction *CxtI = nullptr);
405
406 /// getValueAt - This is the query interface to determine the lattice
407 /// value for the specified Value* at the specified instruction (generally
408 /// from an assume intrinsic).
409 LVILatticeVal getValueAt(Value *V, Instruction *CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +0000410
411 /// getValueOnEdge - This is the query interface to determine the lattice
412 /// value for the specified Value* that is true on the specified edge.
Hal Finkel7e184492014-09-07 20:29:59 +0000413 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB,
414 Instruction *CxtI = nullptr);
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000415
416 /// threadEdge - This is the update interface to inform the cache that an
417 /// edge from PredBB to OldSucc has been threaded to be from PredBB to
418 /// NewSucc.
419 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +0000420
421 /// eraseBlock - This is part of the update interface to inform the cache
422 /// that a block has been deleted.
423 void eraseBlock(BasicBlock *BB);
424
425 /// clear - Empty the cache.
426 void clear() {
Benjamin Kramerbbf3c602011-12-03 15:19:55 +0000427 SeenBlocks.clear();
Owen Anderson208636f2010-08-18 18:39:01 +0000428 ValueCache.clear();
429 OverDefinedCache.clear();
430 }
Hal Finkel7e184492014-09-07 20:29:59 +0000431
432 LazyValueInfoCache(AssumptionTracker *AT,
433 const DataLayout *DL = nullptr,
434 DominatorTree *DT = nullptr) : AT(AT), DL(DL), DT(DT) {}
Chris Lattneraf025d32009-11-15 19:59:49 +0000435 };
436} // end anonymous namespace
437
Owen Anderson118ac802011-01-05 21:15:29 +0000438void LVIValueHandle::deleted() {
439 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
440
441 SmallVector<OverDefinedPairTy, 4> ToErase;
442 for (DenseSet<OverDefinedPairTy>::iterator
Owen Andersonc1561b82010-07-30 23:59:40 +0000443 I = Parent->OverDefinedCache.begin(),
444 E = Parent->OverDefinedCache.end();
Owen Anderson118ac802011-01-05 21:15:29 +0000445 I != E; ++I) {
446 if (I->second == getValPtr())
447 ToErase.push_back(*I);
Owen Andersonc1561b82010-07-30 23:59:40 +0000448 }
Craig Topperaf0dea12013-07-04 01:31:24 +0000449
450 for (SmallVectorImpl<OverDefinedPairTy>::iterator I = ToErase.begin(),
Owen Anderson118ac802011-01-05 21:15:29 +0000451 E = ToErase.end(); I != E; ++I)
452 Parent->OverDefinedCache.erase(*I);
453
Owen Anderson7b974a42010-08-11 22:36:04 +0000454 // This erasure deallocates *this, so it MUST happen after we're done
455 // using any and all members of *this.
456 Parent->ValueCache.erase(*this);
Owen Andersonc1561b82010-07-30 23:59:40 +0000457}
458
Owen Anderson208636f2010-08-18 18:39:01 +0000459void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Benjamin Kramer36647082011-12-03 15:16:45 +0000460 // Shortcut if we have never seen this block.
461 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
462 if (I == SeenBlocks.end())
463 return;
464 SeenBlocks.erase(I);
465
Owen Anderson118ac802011-01-05 21:15:29 +0000466 SmallVector<OverDefinedPairTy, 4> ToErase;
467 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
468 E = OverDefinedCache.end(); I != E; ++I) {
469 if (I->first == BB)
470 ToErase.push_back(*I);
Owen Anderson208636f2010-08-18 18:39:01 +0000471 }
Craig Topperaf0dea12013-07-04 01:31:24 +0000472
473 for (SmallVectorImpl<OverDefinedPairTy>::iterator I = ToErase.begin(),
Owen Anderson118ac802011-01-05 21:15:29 +0000474 E = ToErase.end(); I != E; ++I)
475 OverDefinedCache.erase(*I);
Owen Anderson208636f2010-08-18 18:39:01 +0000476
Bill Wendling58c75692012-01-12 01:41:03 +0000477 for (std::map<LVIValueHandle, ValueCacheEntryTy>::iterator
Owen Anderson208636f2010-08-18 18:39:01 +0000478 I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
479 I->second.erase(BB);
480}
Owen Andersonc1561b82010-07-30 23:59:40 +0000481
Nick Lewycky55a700b2010-12-18 01:00:40 +0000482void LazyValueInfoCache::solve() {
Owen Anderson6f060af2011-01-05 23:26:22 +0000483 while (!BlockValueStack.empty()) {
484 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top();
Nuno Lopese6e04902012-06-28 01:16:18 +0000485 if (solveBlockValue(e.second, e.first)) {
486 assert(BlockValueStack.top() == e);
Owen Anderson6f060af2011-01-05 23:26:22 +0000487 BlockValueStack.pop();
Nuno Lopese6e04902012-06-28 01:16:18 +0000488 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000489 }
490}
491
492bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) {
493 // If already a constant, there is nothing to compute.
494 if (isa<Constant>(Val))
495 return true;
496
Owen Anderson118ac802011-01-05 21:15:29 +0000497 LVIValueHandle ValHandle(Val, this);
Benjamin Kramerf29db272012-08-22 15:37:57 +0000498 std::map<LVIValueHandle, ValueCacheEntryTy>::iterator I =
499 ValueCache.find(ValHandle);
500 if (I == ValueCache.end()) return false;
501 return I->second.count(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000502}
503
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000504LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000505 // If already a constant, there is nothing to compute.
506 if (Constant *VC = dyn_cast<Constant>(Val))
507 return LVILatticeVal::get(VC);
508
Benjamin Kramer36647082011-12-03 15:16:45 +0000509 SeenBlocks.insert(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000510 return lookup(Val)[BB];
511}
512
513bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) {
514 if (isa<Constant>(Val))
515 return true;
516
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000517 ValueCacheEntryTy &Cache = lookup(Val);
Benjamin Kramer36647082011-12-03 15:16:45 +0000518 SeenBlocks.insert(BB);
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000519 LVILatticeVal &BBLV = Cache[BB];
Owen Andersond83f98a2010-12-20 19:33:41 +0000520
521 // OverDefinedCacheUpdater is a helper object that will update
522 // the OverDefinedCache for us when this method exits. Make sure to
523 // call markResult on it as we exist, passing a bool to indicate if the
524 // cache needs updating, i.e. if we have solve a new value or not.
525 OverDefinedCacheUpdater ODCacheUpdater(Val, BB, BBLV, this);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000526
James Molloycb7449d2014-10-03 09:29:24 +0000527 if (!BBLV.isUndefined()) {
David Greene37e98092009-12-23 20:43:58 +0000528 DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val=" << BBLV <<'\n');
Owen Andersond83f98a2010-12-20 19:33:41 +0000529
530 // Since we're reusing a cached value here, we don't need to update the
531 // OverDefinedCahce. The cache will have been properly updated
532 // whenever the cached value was inserted.
533 ODCacheUpdater.markResult(false);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000534 return true;
Chris Lattner2c708562009-11-15 20:00:52 +0000535 }
536
Chris Lattneraf025d32009-11-15 19:59:49 +0000537 // Otherwise, this is the first time we're seeing this block. Reset the
538 // lattice value to overdefined, so that cycles will terminate and be
539 // conservatively correct.
540 BBLV.markOverdefined();
541
Chris Lattneraf025d32009-11-15 19:59:49 +0000542 Instruction *BBI = dyn_cast<Instruction>(Val);
Craig Topper9f008862014-04-15 04:59:12 +0000543 if (!BBI || BBI->getParent() != BB) {
Owen Andersond83f98a2010-12-20 19:33:41 +0000544 return ODCacheUpdater.markResult(solveBlockValueNonLocal(BBLV, Val, BB));
Chris Lattneraf025d32009-11-15 19:59:49 +0000545 }
Chris Lattner2c708562009-11-15 20:00:52 +0000546
Nick Lewycky55a700b2010-12-18 01:00:40 +0000547 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Owen Andersond83f98a2010-12-20 19:33:41 +0000548 return ODCacheUpdater.markResult(solveBlockValuePHINode(BBLV, PN, BB));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000549 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000550
Nick Lewycky367f98f2011-01-15 09:16:12 +0000551 if (AllocaInst *AI = dyn_cast<AllocaInst>(BBI)) {
552 BBLV = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType()));
553 return ODCacheUpdater.markResult(true);
554 }
555
Owen Anderson80d19f02010-08-18 21:11:37 +0000556 // We can only analyze the definitions of certain classes of instructions
557 // (integral binops and casts at the moment), so bail if this isn't one.
Chris Lattneraf025d32009-11-15 19:59:49 +0000558 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000559 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
560 !BBI->getType()->isIntegerTy()) {
561 DEBUG(dbgs() << " compute BB '" << BB->getName()
562 << "' - overdefined because inst def found.\n");
Owen Anderson64c2c572010-12-20 18:18:16 +0000563 BBLV.markOverdefined();
Owen Andersond83f98a2010-12-20 19:33:41 +0000564 return ODCacheUpdater.markResult(true);
Owen Anderson80d19f02010-08-18 21:11:37 +0000565 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000566
Owen Anderson80d19f02010-08-18 21:11:37 +0000567 // FIXME: We're currently limited to binops with a constant RHS. This should
568 // be improved.
569 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
570 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
571 DEBUG(dbgs() << " compute BB '" << BB->getName()
572 << "' - overdefined because inst def found.\n");
573
Owen Anderson64c2c572010-12-20 18:18:16 +0000574 BBLV.markOverdefined();
Owen Andersond83f98a2010-12-20 19:33:41 +0000575 return ODCacheUpdater.markResult(true);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000576 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000577
Owen Andersond83f98a2010-12-20 19:33:41 +0000578 return ODCacheUpdater.markResult(solveBlockValueConstantRange(BBLV, BBI, BB));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000579}
580
581static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
582 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
583 return L->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000584 GetUnderlyingObject(L->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000585 }
586 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
587 return S->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000588 GetUnderlyingObject(S->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000589 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000590 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
591 if (MI->isVolatile()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000592
593 // FIXME: check whether it has a valuerange that excludes zero?
594 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
595 if (!Len || Len->isZero()) return false;
596
Eli Friedman7a5fc692011-05-31 20:40:16 +0000597 if (MI->getDestAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000598 if (GetUnderlyingObject(MI->getRawDest()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000599 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000600 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Eli Friedman7a5fc692011-05-31 20:40:16 +0000601 if (MTI->getSourceAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000602 if (GetUnderlyingObject(MTI->getRawSource()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000603 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000604 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000605 return false;
606}
607
Owen Anderson64c2c572010-12-20 18:18:16 +0000608bool LazyValueInfoCache::solveBlockValueNonLocal(LVILatticeVal &BBLV,
609 Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000610 LVILatticeVal Result; // Start Undefined.
611
612 // If this is a pointer, and there's a load from that pointer in this BB,
613 // then we know that the pointer can't be NULL.
614 bool NotNull = false;
615 if (Val->getType()->isPointerTy()) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000616 if (isKnownNonNull(Val)) {
Nick Lewycky367f98f2011-01-15 09:16:12 +0000617 NotNull = true;
618 } else {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000619 Value *UnderlyingVal = GetUnderlyingObject(Val);
620 // If 'GetUnderlyingObject' didn't converge, skip it. It won't converge
621 // inside InstructionDereferencesPointer either.
Craig Topper9f008862014-04-15 04:59:12 +0000622 if (UnderlyingVal == GetUnderlyingObject(UnderlyingVal, nullptr, 1)) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000623 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end();
624 BI != BE; ++BI) {
625 if (InstructionDereferencesPointer(BI, UnderlyingVal)) {
626 NotNull = true;
627 break;
628 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000629 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000630 }
631 }
632 }
633
634 // If this is the entry block, we must be asking about an argument. The
635 // value is overdefined.
636 if (BB == &BB->getParent()->getEntryBlock()) {
637 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
638 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000639 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000640 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
641 } else {
642 Result.markOverdefined();
643 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000644 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000645 return true;
646 }
647
648 // Loop over all of our predecessors, merging what we know from them into
649 // result.
650 bool EdgesMissing = false;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000651 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000652 LVILatticeVal EdgeResult;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000653 EdgesMissing |= !getEdgeValue(Val, *PI, BB, EdgeResult);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000654 if (EdgesMissing)
655 continue;
656
657 Result.mergeIn(EdgeResult);
658
659 // If we hit overdefined, exit early. The BlockVals entry is already set
660 // to overdefined.
661 if (Result.isOverdefined()) {
662 DEBUG(dbgs() << " compute BB '" << BB->getName()
663 << "' - overdefined because of pred.\n");
664 // If we previously determined that this is a pointer that can't be null
665 // then return that rather than giving up entirely.
666 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000667 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000668 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
669 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000670
671 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000672 return true;
673 }
674 }
675 if (EdgesMissing)
676 return false;
677
678 // Return the merged value, which is more precise than 'overdefined'.
679 assert(!Result.isOverdefined());
Owen Anderson64c2c572010-12-20 18:18:16 +0000680 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000681 return true;
682}
683
Owen Anderson64c2c572010-12-20 18:18:16 +0000684bool LazyValueInfoCache::solveBlockValuePHINode(LVILatticeVal &BBLV,
685 PHINode *PN, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000686 LVILatticeVal Result; // Start Undefined.
687
688 // Loop over all of our predecessors, merging what we know from them into
689 // result.
690 bool EdgesMissing = false;
691 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
692 BasicBlock *PhiBB = PN->getIncomingBlock(i);
693 Value *PhiVal = PN->getIncomingValue(i);
694 LVILatticeVal EdgeResult;
Hal Finkel2400c962014-10-16 00:40:05 +0000695 // Note that we can provide PN as the context value to getEdgeValue, even
696 // though the results will be cached, because PN is the value being used as
697 // the cache key in the caller.
Hal Finkel7e184492014-09-07 20:29:59 +0000698 EdgesMissing |= !getEdgeValue(PhiVal, PhiBB, BB, EdgeResult, PN);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000699 if (EdgesMissing)
700 continue;
701
702 Result.mergeIn(EdgeResult);
703
704 // If we hit overdefined, exit early. The BlockVals entry is already set
705 // to overdefined.
706 if (Result.isOverdefined()) {
707 DEBUG(dbgs() << " compute BB '" << BB->getName()
708 << "' - overdefined because of pred.\n");
Owen Anderson64c2c572010-12-20 18:18:16 +0000709
710 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000711 return true;
712 }
713 }
714 if (EdgesMissing)
715 return false;
716
717 // Return the merged value, which is more precise than 'overdefined'.
718 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson64c2c572010-12-20 18:18:16 +0000719 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000720 return true;
721}
722
Hal Finkel7e184492014-09-07 20:29:59 +0000723static bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
724 LVILatticeVal &Result,
725 bool isTrueDest = true);
726
727// If we can determine a constant range for the value Val at the context
728// provided by the instruction BBI, then merge it into BBLV. If we did find a
729// constant range, return true.
730void LazyValueInfoCache::mergeAssumeBlockValueConstantRange(
731 Value *Val, LVILatticeVal &BBLV, Instruction *BBI) {
732 BBI = BBI ? BBI : dyn_cast<Instruction>(Val);
733 if (!BBI)
734 return;
735
736 for (auto &I : AT->assumptions(BBI->getParent()->getParent())) {
737 if (!isValidAssumeForContext(I, BBI, DL, DT))
738 continue;
739
740 Value *C = I->getArgOperand(0);
741 if (ICmpInst *ICI = dyn_cast<ICmpInst>(C)) {
742 LVILatticeVal Result;
743 if (getValueFromFromCondition(Val, ICI, Result)) {
744 if (BBLV.isOverdefined())
745 BBLV = Result;
746 else
747 BBLV.mergeIn(Result);
748 }
749 }
750 }
751}
752
Owen Anderson64c2c572010-12-20 18:18:16 +0000753bool LazyValueInfoCache::solveBlockValueConstantRange(LVILatticeVal &BBLV,
754 Instruction *BBI,
Nick Lewycky55a700b2010-12-18 01:00:40 +0000755 BasicBlock *BB) {
Owen Anderson80d19f02010-08-18 21:11:37 +0000756 // Figure out the range of the LHS. If that fails, bail.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000757 if (!hasBlockValue(BBI->getOperand(0), BB)) {
Owen Anderson6f060af2011-01-05 23:26:22 +0000758 BlockValueStack.push(std::make_pair(BB, BBI->getOperand(0)));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000759 return false;
760 }
761
Nick Lewycky55a700b2010-12-18 01:00:40 +0000762 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000763 mergeAssumeBlockValueConstantRange(BBI->getOperand(0), LHSVal, BBI);
Owen Anderson80d19f02010-08-18 21:11:37 +0000764 if (!LHSVal.isConstantRange()) {
Owen Anderson64c2c572010-12-20 18:18:16 +0000765 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000766 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +0000767 }
768
Owen Anderson80d19f02010-08-18 21:11:37 +0000769 ConstantRange LHSRange = LHSVal.getConstantRange();
770 ConstantRange RHSRange(1);
Chris Lattner229907c2011-07-18 04:54:35 +0000771 IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
Owen Anderson80d19f02010-08-18 21:11:37 +0000772 if (isa<BinaryOperator>(BBI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000773 if (ConstantInt *RHS = dyn_cast<ConstantInt>(BBI->getOperand(1))) {
774 RHSRange = ConstantRange(RHS->getValue());
775 } else {
Owen Anderson64c2c572010-12-20 18:18:16 +0000776 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000777 return true;
Owen Andersonc62f7042010-08-24 07:55:44 +0000778 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000779 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000780
Owen Anderson80d19f02010-08-18 21:11:37 +0000781 // NOTE: We're currently limited by the set of operations that ConstantRange
782 // can evaluate symbolically. Enhancing that set will allows us to analyze
783 // more definitions.
Owen Anderson64c2c572010-12-20 18:18:16 +0000784 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000785 switch (BBI->getOpcode()) {
786 case Instruction::Add:
787 Result.markConstantRange(LHSRange.add(RHSRange));
788 break;
789 case Instruction::Sub:
790 Result.markConstantRange(LHSRange.sub(RHSRange));
791 break;
792 case Instruction::Mul:
793 Result.markConstantRange(LHSRange.multiply(RHSRange));
794 break;
795 case Instruction::UDiv:
796 Result.markConstantRange(LHSRange.udiv(RHSRange));
797 break;
798 case Instruction::Shl:
799 Result.markConstantRange(LHSRange.shl(RHSRange));
800 break;
801 case Instruction::LShr:
802 Result.markConstantRange(LHSRange.lshr(RHSRange));
803 break;
804 case Instruction::Trunc:
805 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
806 break;
807 case Instruction::SExt:
808 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
809 break;
810 case Instruction::ZExt:
811 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
812 break;
813 case Instruction::BitCast:
814 Result.markConstantRange(LHSRange);
815 break;
Nick Lewyckyad48e012010-09-07 05:39:02 +0000816 case Instruction::And:
817 Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
818 break;
819 case Instruction::Or:
820 Result.markConstantRange(LHSRange.binaryOr(RHSRange));
821 break;
Owen Anderson80d19f02010-08-18 21:11:37 +0000822
823 // Unhandled instructions are overdefined.
824 default:
825 DEBUG(dbgs() << " compute BB '" << BB->getName()
826 << "' - overdefined because inst def found.\n");
827 Result.markOverdefined();
828 break;
829 }
830
Owen Anderson64c2c572010-12-20 18:18:16 +0000831 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000832 return true;
Chris Lattner741c94c2009-11-11 00:22:30 +0000833}
834
Hal Finkel7e184492014-09-07 20:29:59 +0000835bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
836 LVILatticeVal &Result, bool isTrueDest) {
837 if (ICI && isa<Constant>(ICI->getOperand(1))) {
838 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
839 // We know that V has the RHS constant if this is a true SETEQ or
840 // false SETNE.
841 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
842 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
843 else
844 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
845 return true;
846 }
847
848 // Recognize the range checking idiom that InstCombine produces.
849 // (X-C1) u< C2 --> [C1, C1+C2)
850 ConstantInt *NegOffset = nullptr;
851 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
852 match(ICI->getOperand(0), m_Add(m_Specific(Val),
853 m_ConstantInt(NegOffset)));
854
855 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
856 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
857 // Calculate the range of values that would satisfy the comparison.
858 ConstantRange CmpRange(CI->getValue());
859 ConstantRange TrueValues =
860 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
861
862 if (NegOffset) // Apply the offset from above.
863 TrueValues = TrueValues.subtract(NegOffset->getValue());
864
865 // If we're interested in the false dest, invert the condition.
866 if (!isTrueDest) TrueValues = TrueValues.inverse();
867
868 Result = LVILatticeVal::getRange(TrueValues);
869 return true;
870 }
871 }
872
873 return false;
874}
875
Nuno Lopese6e04902012-06-28 01:16:18 +0000876/// \brief Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
877/// Val is not constrained on the edge.
878static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
879 BasicBlock *BBTo, LVILatticeVal &Result) {
Chris Lattner77358782009-11-15 20:02:12 +0000880 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
881 // know that v != 0.
Chris Lattner19019ea2009-11-11 22:48:44 +0000882 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
883 // If this is a conditional branch and only one successor goes to BBTo, then
884 // we maybe able to infer something from the condition.
885 if (BI->isConditional() &&
886 BI->getSuccessor(0) != BI->getSuccessor(1)) {
887 bool isTrueDest = BI->getSuccessor(0) == BBTo;
888 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
889 "BBTo isn't a successor of BBFrom");
890
891 // If V is the condition of the branch itself, then we know exactly what
892 // it is.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000893 if (BI->getCondition() == Val) {
894 Result = LVILatticeVal::get(ConstantInt::get(
Owen Anderson185fe002010-08-10 20:03:09 +0000895 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000896 return true;
897 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000898
899 // If the condition of the branch is an equality comparison, we may be
900 // able to infer the value.
Owen Anderson0bd61242010-08-11 04:24:25 +0000901 ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition());
Hal Finkel7e184492014-09-07 20:29:59 +0000902 if (getValueFromFromCondition(Val, ICI, Result, isTrueDest))
903 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000904 }
905 }
Chris Lattner77358782009-11-15 20:02:12 +0000906
907 // If the edge was formed by a switch on the value, then we may know exactly
908 // what it is.
909 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Nuno Lopes8650fb82012-06-28 16:13:37 +0000910 if (SI->getCondition() != Val)
911 return false;
912
913 bool DefaultCase = SI->getDefaultDest() == BBTo;
914 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
915 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
916
917 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end();
918 i != e; ++i) {
919 ConstantRange EdgeVal(i.getCaseValue()->getValue());
Manman Renf3fedb62012-09-05 23:45:58 +0000920 if (DefaultCase) {
921 // It is possible that the default destination is the destination of
922 // some cases. There is no need to perform difference for those cases.
923 if (i.getCaseSuccessor() != BBTo)
924 EdgesVals = EdgesVals.difference(EdgeVal);
925 } else if (i.getCaseSuccessor() == BBTo)
Nuno Lopesac593802012-05-18 21:02:10 +0000926 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner77358782009-11-15 20:02:12 +0000927 }
Nuno Lopes8650fb82012-06-28 16:13:37 +0000928 Result = LVILatticeVal::getRange(EdgesVals);
929 return true;
Chris Lattner77358782009-11-15 20:02:12 +0000930 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000931 return false;
932}
933
934/// \brief Compute the value of Val on the edge BBFrom -> BBTo, or the value at
935/// the basic block if the edge does not constraint Val.
936bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom,
Hal Finkel7e184492014-09-07 20:29:59 +0000937 BasicBlock *BBTo, LVILatticeVal &Result,
938 Instruction *CxtI) {
Nuno Lopese6e04902012-06-28 01:16:18 +0000939 // If already a constant, there is nothing to compute.
940 if (Constant *VC = dyn_cast<Constant>(Val)) {
941 Result = LVILatticeVal::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000942 return true;
943 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000944
945 if (getEdgeValueLocal(Val, BBFrom, BBTo, Result)) {
946 if (!Result.isConstantRange() ||
947 Result.getConstantRange().getSingleElement())
948 return true;
949
950 // FIXME: this check should be moved to the beginning of the function when
951 // LVI better supports recursive values. Even for the single value case, we
952 // can intersect to detect dead code (an empty range).
953 if (!hasBlockValue(Val, BBFrom)) {
954 BlockValueStack.push(std::make_pair(BBFrom, Val));
955 return false;
956 }
957
958 // Try to intersect ranges of the BB and the constraint on the edge.
959 LVILatticeVal InBlock = getBlockValue(Val, BBFrom);
Hal Finkela3f23e32014-10-14 16:04:49 +0000960 mergeAssumeBlockValueConstantRange(Val, InBlock, BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +0000961 // See note on the use of the CxtI with mergeAssumeBlockValueConstantRange,
962 // and caching, below.
Hal Finkel7e184492014-09-07 20:29:59 +0000963 mergeAssumeBlockValueConstantRange(Val, InBlock, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000964 if (!InBlock.isConstantRange())
965 return true;
966
967 ConstantRange Range =
968 Result.getConstantRange().intersectWith(InBlock.getConstantRange());
969 Result = LVILatticeVal::getRange(Range);
970 return true;
971 }
972
973 if (!hasBlockValue(Val, BBFrom)) {
974 BlockValueStack.push(std::make_pair(BBFrom, Val));
975 return false;
976 }
977
978 // if we couldn't compute the value on the edge, use the value from the BB
979 Result = getBlockValue(Val, BBFrom);
Hal Finkela3f23e32014-10-14 16:04:49 +0000980 mergeAssumeBlockValueConstantRange(Val, Result, BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +0000981 // We can use the context instruction (generically the ultimate instruction
982 // the calling pass is trying to simplify) here, even though the result of
983 // this function is generally cached when called from the solve* functions
984 // (and that cached result might be used with queries using a different
985 // context instruction), because when this function is called from the solve*
986 // functions, the context instruction is not provided. When called from
987 // LazyValueInfoCache::getValueOnEdge, the context instruction is provided,
988 // but then the result is not cached.
Hal Finkel7e184492014-09-07 20:29:59 +0000989 mergeAssumeBlockValueConstantRange(Val, Result, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000990 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000991}
992
Hal Finkel7e184492014-09-07 20:29:59 +0000993LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB,
994 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +0000995 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattneraf025d32009-11-15 19:59:49 +0000996 << BB->getName() << "'\n");
997
Owen Anderson6f060af2011-01-05 23:26:22 +0000998 BlockValueStack.push(std::make_pair(BB, V));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000999 solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +00001000 LVILatticeVal Result = getBlockValue(V, BB);
Hal Finkel7e184492014-09-07 20:29:59 +00001001 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
1002
1003 DEBUG(dbgs() << " Result = " << Result << "\n");
1004 return Result;
1005}
1006
1007LVILatticeVal LazyValueInfoCache::getValueAt(Value *V, Instruction *CxtI) {
1008 DEBUG(dbgs() << "LVI Getting value " << *V << " at '"
1009 << CxtI->getName() << "'\n");
1010
1011 LVILatticeVal Result;
1012 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001013
David Greene37e98092009-12-23 20:43:58 +00001014 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001015 return Result;
1016}
Chris Lattner19019ea2009-11-11 22:48:44 +00001017
Chris Lattneraf025d32009-11-15 19:59:49 +00001018LVILatticeVal LazyValueInfoCache::
Hal Finkel7e184492014-09-07 20:29:59 +00001019getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
1020 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001021 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001022 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001023
Nick Lewycky55a700b2010-12-18 01:00:40 +00001024 LVILatticeVal Result;
Hal Finkel7e184492014-09-07 20:29:59 +00001025 if (!getEdgeValue(V, FromBB, ToBB, Result, CxtI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001026 solve();
Hal Finkel7e184492014-09-07 20:29:59 +00001027 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001028 (void)WasFastQuery;
1029 assert(WasFastQuery && "More work to do after problem solved?");
1030 }
1031
David Greene37e98092009-12-23 20:43:58 +00001032 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001033 return Result;
1034}
1035
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001036void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
1037 BasicBlock *NewSucc) {
1038 // When an edge in the graph has been threaded, values that we could not
1039 // determine a value for before (i.e. were marked overdefined) may be possible
1040 // to solve now. We do NOT try to proactively update these values. Instead,
1041 // we clear their entries from the cache, and allow lazy updating to recompute
1042 // them when needed.
1043
1044 // The updating process is fairly simple: we need to dropped cached info
1045 // for all values that were marked overdefined in OldSucc, and for those same
1046 // values in any successor of OldSucc (except NewSucc) in which they were
1047 // also marked overdefined.
1048 std::vector<BasicBlock*> worklist;
1049 worklist.push_back(OldSucc);
1050
Owen Andersonaac5a722010-07-27 23:58:11 +00001051 DenseSet<Value*> ClearSet;
Owen Anderson118ac802011-01-05 21:15:29 +00001052 for (DenseSet<OverDefinedPairTy>::iterator I = OverDefinedCache.begin(),
1053 E = OverDefinedCache.end(); I != E; ++I) {
Owen Andersonaac5a722010-07-27 23:58:11 +00001054 if (I->first == OldSucc)
1055 ClearSet.insert(I->second);
1056 }
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001057
1058 // Use a worklist to perform a depth-first search of OldSucc's successors.
1059 // NOTE: We do not need a visited list since any blocks we have already
1060 // visited will have had their overdefined markers cleared already, and we
1061 // thus won't loop to their successors.
1062 while (!worklist.empty()) {
1063 BasicBlock *ToUpdate = worklist.back();
1064 worklist.pop_back();
1065
1066 // Skip blocks only accessible through NewSucc.
1067 if (ToUpdate == NewSucc) continue;
1068
1069 bool changed = false;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001070 for (DenseSet<Value*>::iterator I = ClearSet.begin(), E = ClearSet.end();
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001071 I != E; ++I) {
1072 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson118ac802011-01-05 21:15:29 +00001073 DenseSet<OverDefinedPairTy>::iterator OI =
Owen Andersonaac5a722010-07-27 23:58:11 +00001074 OverDefinedCache.find(std::make_pair(ToUpdate, *I));
1075 if (OI == OverDefinedCache.end()) continue;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001076
Owen Andersonaac5a722010-07-27 23:58:11 +00001077 // Remove it from the caches.
Owen Andersonc1561b82010-07-30 23:59:40 +00001078 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(*I, this)];
Owen Andersonaac5a722010-07-27 23:58:11 +00001079 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001080
Owen Andersonaac5a722010-07-27 23:58:11 +00001081 assert(CI != Entry.end() && "Couldn't find entry to update?");
1082 Entry.erase(CI);
1083 OverDefinedCache.erase(OI);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001084
Owen Andersonaac5a722010-07-27 23:58:11 +00001085 // If we removed anything, then we potentially need to update
1086 // blocks successors too.
1087 changed = true;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001088 }
Nick Lewycky55a700b2010-12-18 01:00:40 +00001089
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001090 if (!changed) continue;
1091
1092 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
1093 }
1094}
1095
Chris Lattneraf025d32009-11-15 19:59:49 +00001096//===----------------------------------------------------------------------===//
1097// LazyValueInfo Impl
1098//===----------------------------------------------------------------------===//
1099
Chris Lattneraf025d32009-11-15 19:59:49 +00001100/// getCache - This lazily constructs the LazyValueInfoCache.
Hal Finkel7e184492014-09-07 20:29:59 +00001101static LazyValueInfoCache &getCache(void *&PImpl,
1102 AssumptionTracker *AT,
1103 const DataLayout *DL = nullptr,
1104 DominatorTree *DT = nullptr) {
Chris Lattneraf025d32009-11-15 19:59:49 +00001105 if (!PImpl)
Hal Finkel7e184492014-09-07 20:29:59 +00001106 PImpl = new LazyValueInfoCache(AT, DL, DT);
Chris Lattneraf025d32009-11-15 19:59:49 +00001107 return *static_cast<LazyValueInfoCache*>(PImpl);
1108}
1109
Owen Anderson208636f2010-08-18 18:39:01 +00001110bool LazyValueInfo::runOnFunction(Function &F) {
Hal Finkel7e184492014-09-07 20:29:59 +00001111 AT = &getAnalysis<AssumptionTracker>();
1112
1113 DominatorTreeWrapperPass *DTWP =
1114 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
1115 DT = DTWP ? &DTWP->getDomTree() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001116
Rafael Espindola93512512014-02-25 17:30:31 +00001117 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +00001118 DL = DLP ? &DLP->getDataLayout() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001119 TLI = &getAnalysis<TargetLibraryInfo>();
1120
Hal Finkel7e184492014-09-07 20:29:59 +00001121 if (PImpl)
1122 getCache(PImpl, AT, DL, DT).clear();
1123
Owen Anderson208636f2010-08-18 18:39:01 +00001124 // Fully lazy.
1125 return false;
1126}
1127
Chad Rosier43a33062011-12-02 01:26:24 +00001128void LazyValueInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1129 AU.setPreservesAll();
Hal Finkel7e184492014-09-07 20:29:59 +00001130 AU.addRequired<AssumptionTracker>();
Chad Rosier43a33062011-12-02 01:26:24 +00001131 AU.addRequired<TargetLibraryInfo>();
1132}
1133
Chris Lattneraf025d32009-11-15 19:59:49 +00001134void LazyValueInfo::releaseMemory() {
1135 // If the cache was allocated, free it.
1136 if (PImpl) {
Hal Finkel7e184492014-09-07 20:29:59 +00001137 delete &getCache(PImpl, AT);
Craig Topper9f008862014-04-15 04:59:12 +00001138 PImpl = nullptr;
Chris Lattneraf025d32009-11-15 19:59:49 +00001139 }
1140}
1141
Hal Finkel7e184492014-09-07 20:29:59 +00001142Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
1143 Instruction *CxtI) {
1144 LVILatticeVal Result =
1145 getCache(PImpl, AT, DL, DT).getValueInBlock(V, BB, CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +00001146
Chris Lattner19019ea2009-11-11 22:48:44 +00001147 if (Result.isConstant())
1148 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001149 if (Result.isConstantRange()) {
Owen Anderson38f6b7f2010-08-27 23:29:38 +00001150 ConstantRange CR = Result.getConstantRange();
1151 if (const APInt *SingleVal = CR.getSingleElement())
1152 return ConstantInt::get(V->getContext(), *SingleVal);
1153 }
Craig Topper9f008862014-04-15 04:59:12 +00001154 return nullptr;
Chris Lattner19019ea2009-11-11 22:48:44 +00001155}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001156
Chris Lattnerd5e25432009-11-12 01:29:10 +00001157/// getConstantOnEdge - Determine whether the specified value is known to be a
1158/// constant on the specified edge. Return null if not.
1159Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
Hal Finkel7e184492014-09-07 20:29:59 +00001160 BasicBlock *ToBB,
1161 Instruction *CxtI) {
1162 LVILatticeVal Result =
1163 getCache(PImpl, AT, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Chris Lattnerd5e25432009-11-12 01:29:10 +00001164
1165 if (Result.isConstant())
1166 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001167 if (Result.isConstantRange()) {
Owen Anderson185fe002010-08-10 20:03:09 +00001168 ConstantRange CR = Result.getConstantRange();
1169 if (const APInt *SingleVal = CR.getSingleElement())
1170 return ConstantInt::get(V->getContext(), *SingleVal);
1171 }
Craig Topper9f008862014-04-15 04:59:12 +00001172 return nullptr;
Chris Lattnerd5e25432009-11-12 01:29:10 +00001173}
1174
Hal Finkel7e184492014-09-07 20:29:59 +00001175static LazyValueInfo::Tristate
1176getPredicateResult(unsigned Pred, Constant *C, LVILatticeVal &Result,
1177 const DataLayout *DL, TargetLibraryInfo *TLI) {
1178
Chris Lattner565ee2f2009-11-12 04:36:58 +00001179 // If we know the value is a constant, evaluate the conditional.
Craig Topper9f008862014-04-15 04:59:12 +00001180 Constant *Res = nullptr;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001181 if (Result.isConstant()) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001182 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001183 TLI);
Nick Lewycky11678bd2010-12-15 18:57:18 +00001184 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Hal Finkel7e184492014-09-07 20:29:59 +00001185 return ResCI->isZero() ? LazyValueInfo::False : LazyValueInfo::True;
1186 return LazyValueInfo::Unknown;
Chris Lattneraf025d32009-11-15 19:59:49 +00001187 }
1188
Owen Anderson185fe002010-08-10 20:03:09 +00001189 if (Result.isConstantRange()) {
Owen Andersonc62f7042010-08-24 07:55:44 +00001190 ConstantInt *CI = dyn_cast<ConstantInt>(C);
Hal Finkel7e184492014-09-07 20:29:59 +00001191 if (!CI) return LazyValueInfo::Unknown;
Owen Andersonc62f7042010-08-24 07:55:44 +00001192
Owen Anderson185fe002010-08-10 20:03:09 +00001193 ConstantRange CR = Result.getConstantRange();
1194 if (Pred == ICmpInst::ICMP_EQ) {
1195 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001196 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001197
1198 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001199 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001200 } else if (Pred == ICmpInst::ICMP_NE) {
1201 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001202 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001203
1204 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001205 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001206 }
1207
1208 // Handle more complex predicates.
Nick Lewycky11678bd2010-12-15 18:57:18 +00001209 ConstantRange TrueValues =
1210 ICmpInst::makeConstantRange((ICmpInst::Predicate)Pred, CI->getValue());
1211 if (TrueValues.contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001212 return LazyValueInfo::True;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001213 if (TrueValues.inverse().contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001214 return LazyValueInfo::False;
1215 return LazyValueInfo::Unknown;
Owen Anderson185fe002010-08-10 20:03:09 +00001216 }
1217
Chris Lattneraf025d32009-11-15 19:59:49 +00001218 if (Result.isNotConstant()) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001219 // If this is an equality comparison, we can try to fold it knowing that
1220 // "V != C1".
1221 if (Pred == ICmpInst::ICMP_EQ) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001222 // !C1 == C -> false iff C1 == C.
Chris Lattner565ee2f2009-11-12 04:36:58 +00001223 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001224 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001225 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001226 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001227 return LazyValueInfo::False;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001228 } else if (Pred == ICmpInst::ICMP_NE) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001229 // !C1 != C -> true iff C1 == C.
Chris Lattnerb0c0a0d2009-11-15 20:01:24 +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::True;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001235 }
Hal Finkel7e184492014-09-07 20:29:59 +00001236 return LazyValueInfo::Unknown;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001237 }
1238
Hal Finkel7e184492014-09-07 20:29:59 +00001239 return LazyValueInfo::Unknown;
1240}
1241
1242/// getPredicateOnEdge - Determine whether the specified value comparison
1243/// with a constant is known to be true or false on the specified CFG edge.
1244/// Pred is a CmpInst predicate.
1245LazyValueInfo::Tristate
1246LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1247 BasicBlock *FromBB, BasicBlock *ToBB,
1248 Instruction *CxtI) {
1249 LVILatticeVal Result =
1250 getCache(PImpl, AT, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
1251
1252 return getPredicateResult(Pred, C, Result, DL, TLI);
1253}
1254
1255LazyValueInfo::Tristate
1256LazyValueInfo::getPredicateAt(unsigned Pred, Value *V, Constant *C,
1257 Instruction *CxtI) {
1258 LVILatticeVal Result =
1259 getCache(PImpl, AT, DL, DT).getValueAt(V, CxtI);
1260
1261 return getPredicateResult(Pred, C, Result, DL, TLI);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001262}
1263
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001264void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky11678bd2010-12-15 18:57:18 +00001265 BasicBlock *NewSucc) {
Hal Finkel7e184492014-09-07 20:29:59 +00001266 if (PImpl) getCache(PImpl, AT, DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +00001267}
1268
1269void LazyValueInfo::eraseBlock(BasicBlock *BB) {
Hal Finkel7e184492014-09-07 20:29:59 +00001270 if (PImpl) getCache(PImpl, AT, DL, DT).eraseBlock(BB);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001271}