blob: 87c31fd9b68b0ff50a61ef367a2dd697fd0ff1c3 [file] [log] [blame]
Hans Wennborgc5ec73d2014-11-21 18:58:23 +00001//===- LazyValueInfo.cpp - Value constraint analysis ------------*- C++ -*-===//
Chris Lattner741c94c2009-11-11 00:22:30 +00002//
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"
Chandler Carruth66b31302015-01-04 12:03:27 +000018#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Analysis/ConstantFolding.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000020#include "llvm/Analysis/TargetLibraryInfo.h"
Dan Gohmana4fcd242010-12-15 20:02:24 +000021#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000022#include "llvm/IR/CFG.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000023#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000024#include "llvm/IR/Constants.h"
25#include "llvm/IR/DataLayout.h"
Hal Finkel7e184492014-09-07 20:29:59 +000026#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Instructions.h"
28#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000029#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000030#include "llvm/IR/ValueHandle.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"
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)
Chandler Carruth66b31302015-01-04 12:03:27 +000043INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthb98f63d2015-01-15 10:41:28 +000044INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Chad Rosier43a33062011-12-02 01:26:24 +000045INITIALIZE_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
Sanjay Patel2a385e22015-01-09 16:47:20 +000057/// This is the information tracked by LazyValueInfo for each value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000058///
59/// FIXME: This is basically just for bringup, this can be made a lot more rich
60/// in the future.
61///
62namespace {
63class LVILatticeVal {
64 enum LatticeValueTy {
Sanjay Patel2a385e22015-01-09 16:47:20 +000065 /// This Value has no known value yet.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000066 undefined,
Owen Anderson0f306a42010-08-05 22:59:19 +000067
Sanjay Patel2a385e22015-01-09 16:47:20 +000068 /// This Value has a specific constant value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000069 constant,
Sanjay Patel2a385e22015-01-09 16:47:20 +000070
71 /// 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
Sanjay Patel2a385e22015-01-09 16:47:20 +000074 /// The Value falls within this range.
Owen Anderson0f306a42010-08-05 22:59:19 +000075 constantrange,
Chad Rosier43a33062011-12-02 01:26:24 +000076
Sanjay Patel2a385e22015-01-09 16:47:20 +000077 /// This value is not known to be constant, and we know that it has a value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000078 overdefined
79 };
80
81 /// Val: This stores the current lattice value along with the Constant* for
Chris Lattner565ee2f2009-11-12 04:36:58 +000082 /// the constant if this is a 'constant' or 'notconstant' value.
Owen Andersonc3a14132010-08-05 22:10:46 +000083 LatticeValueTy Tag;
84 Constant *Val;
Owen Anderson0f306a42010-08-05 22:59:19 +000085 ConstantRange Range;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000086
87public:
Craig Topper9f008862014-04-15 04:59:12 +000088 LVILatticeVal() : Tag(undefined), Val(nullptr), Range(1, true) {}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000089
Chris Lattner19019ea2009-11-11 22:48:44 +000090 static LVILatticeVal get(Constant *C) {
91 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +000092 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +000093 Res.markConstant(C);
Chris Lattner19019ea2009-11-11 22:48:44 +000094 return Res;
95 }
Chris Lattner565ee2f2009-11-12 04:36:58 +000096 static LVILatticeVal getNot(Constant *C) {
97 LVILatticeVal Res;
Nick Lewycky11678bd2010-12-15 18:57:18 +000098 if (!isa<UndefValue>(C))
Owen Anderson185fe002010-08-10 20:03:09 +000099 Res.markNotConstant(C);
Chris Lattner565ee2f2009-11-12 04:36:58 +0000100 return Res;
101 }
Owen Anderson5f1dd092010-08-10 23:20:01 +0000102 static LVILatticeVal getRange(ConstantRange CR) {
103 LVILatticeVal Res;
104 Res.markConstantRange(CR);
105 return Res;
106 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000107
Owen Anderson0f306a42010-08-05 22:59:19 +0000108 bool isUndefined() const { return Tag == undefined; }
109 bool isConstant() const { return Tag == constant; }
110 bool isNotConstant() const { return Tag == notconstant; }
111 bool isConstantRange() const { return Tag == constantrange; }
112 bool isOverdefined() const { return Tag == overdefined; }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000113
114 Constant *getConstant() const {
115 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000116 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000117 }
118
Chris Lattner565ee2f2009-11-12 04:36:58 +0000119 Constant *getNotConstant() const {
120 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000121 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000122 }
123
Owen Anderson0f306a42010-08-05 22:59:19 +0000124 ConstantRange getConstantRange() const {
125 assert(isConstantRange() &&
126 "Cannot get the constant-range of a non-constant-range!");
127 return Range;
128 }
129
Sanjay Patel2a385e22015-01-09 16:47:20 +0000130 /// Return true if this is a change in status.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000131 bool markOverdefined() {
132 if (isOverdefined())
133 return false;
Owen Andersonc3a14132010-08-05 22:10:46 +0000134 Tag = overdefined;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000135 return true;
136 }
137
Sanjay Patel2a385e22015-01-09 16:47:20 +0000138 /// Return true if this is a change in status.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000139 bool markConstant(Constant *V) {
Nick Lewycky11678bd2010-12-15 18:57:18 +0000140 assert(V && "Marking constant with NULL");
141 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
142 return markConstantRange(ConstantRange(CI->getValue()));
143 if (isa<UndefValue>(V))
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000144 return false;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000145
146 assert((!isConstant() || getConstant() == V) &&
147 "Marking constant with different value");
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000148 assert(isUndefined());
Owen Andersonc3a14132010-08-05 22:10:46 +0000149 Tag = constant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000150 Val = V;
Chris Lattner19019ea2009-11-11 22:48:44 +0000151 return true;
152 }
153
Sanjay Patel2a385e22015-01-09 16:47:20 +0000154 /// Return true if this is a change in status.
Chris Lattner565ee2f2009-11-12 04:36:58 +0000155 bool markNotConstant(Constant *V) {
Chris Lattner565ee2f2009-11-12 04:36:58 +0000156 assert(V && "Marking constant with NULL");
Nick Lewycky11678bd2010-12-15 18:57:18 +0000157 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
158 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
159 if (isa<UndefValue>(V))
160 return false;
161
162 assert((!isConstant() || getConstant() != V) &&
163 "Marking constant !constant with same value");
164 assert((!isNotConstant() || getNotConstant() == V) &&
165 "Marking !constant with different value");
166 assert(isUndefined() || isConstant());
167 Tag = notconstant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000168 Val = V;
Chris Lattner565ee2f2009-11-12 04:36:58 +0000169 return true;
170 }
171
Sanjay Patel2a385e22015-01-09 16:47:20 +0000172 /// Return true if this is a change in status.
Owen Anderson0f306a42010-08-05 22:59:19 +0000173 bool markConstantRange(const ConstantRange NewR) {
174 if (isConstantRange()) {
175 if (NewR.isEmptySet())
176 return markOverdefined();
177
Nuno Lopese6e04902012-06-28 01:16:18 +0000178 bool changed = Range != NewR;
Owen Anderson0f306a42010-08-05 22:59:19 +0000179 Range = NewR;
180 return changed;
181 }
182
183 assert(isUndefined());
184 if (NewR.isEmptySet())
185 return markOverdefined();
Owen Anderson0f306a42010-08-05 22:59:19 +0000186
187 Tag = constantrange;
188 Range = NewR;
189 return true;
190 }
191
Sanjay Patel2a385e22015-01-09 16:47:20 +0000192 /// Merge the specified lattice value into this one, updating this
Chris Lattner19019ea2009-11-11 22:48:44 +0000193 /// one and returning true if anything changed.
194 bool mergeIn(const LVILatticeVal &RHS) {
195 if (RHS.isUndefined() || isOverdefined()) return false;
196 if (RHS.isOverdefined()) return markOverdefined();
197
Nick Lewycky11678bd2010-12-15 18:57:18 +0000198 if (isUndefined()) {
199 Tag = RHS.Tag;
200 Val = RHS.Val;
201 Range = RHS.Range;
202 return true;
Chris Lattner22db4b52009-11-12 04:57:13 +0000203 }
204
Nick Lewycky11678bd2010-12-15 18:57:18 +0000205 if (isConstant()) {
206 if (RHS.isConstant()) {
207 if (Val == RHS.Val)
208 return false;
209 return markOverdefined();
210 }
211
212 if (RHS.isNotConstant()) {
213 if (Val == RHS.Val)
214 return markOverdefined();
215
216 // Unless we can prove that the two Constants are different, we must
217 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000218 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000219 if (ConstantInt *Res = dyn_cast<ConstantInt>(
220 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
221 getConstant(),
222 RHS.getNotConstant())))
223 if (Res->isOne())
224 return markNotConstant(RHS.getNotConstant());
225
226 return markOverdefined();
227 }
228
229 // RHS is a ConstantRange, LHS is a non-integer Constant.
230
231 // FIXME: consider the case where RHS is a range [1, 0) and LHS is
232 // a function. The correct result is to pick up RHS.
233
Chris Lattner19019ea2009-11-11 22:48:44 +0000234 return markOverdefined();
Nick Lewycky11678bd2010-12-15 18:57:18 +0000235 }
236
237 if (isNotConstant()) {
238 if (RHS.isConstant()) {
239 if (Val == RHS.Val)
240 return markOverdefined();
241
242 // Unless we can prove that the two Constants are different, we must
243 // move to overdefined.
Micah Villmowcdfe20b2012-10-08 16:38:25 +0000244 // FIXME: use DataLayout/TargetLibraryInfo for smarter constant folding.
Nick Lewycky11678bd2010-12-15 18:57:18 +0000245 if (ConstantInt *Res = dyn_cast<ConstantInt>(
246 ConstantFoldCompareInstOperands(CmpInst::ICMP_NE,
247 getNotConstant(),
248 RHS.getConstant())))
249 if (Res->isOne())
250 return false;
251
252 return markOverdefined();
253 }
254
255 if (RHS.isNotConstant()) {
256 if (Val == RHS.Val)
257 return false;
258 return markOverdefined();
259 }
260
261 return markOverdefined();
262 }
263
264 assert(isConstantRange() && "New LVILattice type?");
265 if (!RHS.isConstantRange())
266 return markOverdefined();
267
268 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
269 if (NewR.isFullSet())
270 return markOverdefined();
271 return markConstantRange(NewR);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000272 }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000273};
274
275} // end anonymous namespace.
276
Chris Lattner19019ea2009-11-11 22:48:44 +0000277namespace llvm {
Chandler Carruth2b1ba482011-04-18 18:49:44 +0000278raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
279 LLVM_ATTRIBUTE_USED;
Chris Lattner19019ea2009-11-11 22:48:44 +0000280raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
281 if (Val.isUndefined())
282 return OS << "undefined";
283 if (Val.isOverdefined())
284 return OS << "overdefined";
Chris Lattner565ee2f2009-11-12 04:36:58 +0000285
286 if (Val.isNotConstant())
287 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson8afac042010-08-09 20:50:46 +0000288 else if (Val.isConstantRange())
289 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
290 << Val.getConstantRange().getUpper() << '>';
Chris Lattner19019ea2009-11-11 22:48:44 +0000291 return OS << "constant<" << *Val.getConstant() << '>';
292}
293}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000294
295//===----------------------------------------------------------------------===//
Chris Lattneraf025d32009-11-15 19:59:49 +0000296// LazyValueInfoCache Decl
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000297//===----------------------------------------------------------------------===//
298
Chris Lattneraf025d32009-11-15 19:59:49 +0000299namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000300 /// A callback value handle updates the cache when values are erased.
Owen Anderson118ac802011-01-05 21:15:29 +0000301 class LazyValueInfoCache;
302 struct LVIValueHandle : public CallbackVH {
303 LazyValueInfoCache *Parent;
304
305 LVIValueHandle(Value *V, LazyValueInfoCache *P)
306 : CallbackVH(V), Parent(P) { }
Craig Toppere9ba7592014-03-05 07:30:04 +0000307
308 void deleted() override;
309 void allUsesReplacedWith(Value *V) override {
Owen Anderson118ac802011-01-05 21:15:29 +0000310 deleted();
311 }
312 };
313}
314
Owen Anderson118ac802011-01-05 21:15:29 +0000315namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000316 /// This is the cache kept by LazyValueInfo which
Chris Lattneraf025d32009-11-15 19:59:49 +0000317 /// maintains information about queries across the clients' queries.
318 class LazyValueInfoCache {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000319 /// This is all of the cached block information for exactly one Value*.
320 /// The entries are sorted by the BasicBlock* of the
Chris Lattneraf025d32009-11-15 19:59:49 +0000321 /// entries, allowing us to do a lookup with a binary search.
Bill Wendling4ec081a2012-01-11 23:43:34 +0000322 typedef std::map<AssertingVH<BasicBlock>, LVILatticeVal> ValueCacheEntryTy;
Chris Lattneraf025d32009-11-15 19:59:49 +0000323
Sanjay Patel2a385e22015-01-09 16:47:20 +0000324 /// This is all of the cached information for all values,
Owen Anderson6f060af2011-01-05 23:26:22 +0000325 /// mapped from Value* to key information.
Bill Wendling58c75692012-01-12 01:41:03 +0000326 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Owen Anderson6f060af2011-01-05 23:26:22 +0000327
Sanjay Patel2a385e22015-01-09 16:47:20 +0000328 /// This tracks, on a per-block basis, the set of values that are
329 /// over-defined at the end of that block. This is required
Owen Anderson6f060af2011-01-05 23:26:22 +0000330 /// for cache updating.
331 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
332 DenseSet<OverDefinedPairTy> OverDefinedCache;
Benjamin Kramer36647082011-12-03 15:16:45 +0000333
Sanjay Patel2a385e22015-01-09 16:47:20 +0000334 /// Keep track of all blocks that we have ever seen, so we
Benjamin Kramer36647082011-12-03 15:16:45 +0000335 /// don't spend time removing unused blocks from our caches.
336 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
337
Sanjay Patel2a385e22015-01-09 16:47:20 +0000338 /// This stack holds the state of the value solver during a query.
339 /// It basically emulates the callstack of the naive
Owen Anderson6f060af2011-01-05 23:26:22 +0000340 /// recursive value lookup process.
341 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack;
Hal Finkel7e184492014-09-07 20:29:59 +0000342
Sanjay Patel2a385e22015-01-09 16:47:20 +0000343 /// Keeps track of which block-value pairs are in BlockValueStack.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000344 DenseSet<std::pair<BasicBlock*, Value*> > BlockValueSet;
345
Sanjay Patel2a385e22015-01-09 16:47:20 +0000346 /// Push BV onto BlockValueStack unless it's already in there.
347 /// Returns true on success.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000348 bool pushBlockValue(const std::pair<BasicBlock *, Value *> &BV) {
349 if (BlockValueSet.count(BV))
350 return false; // It's already in the stack.
351
352 BlockValueStack.push(BV);
353 BlockValueSet.insert(BV);
354 return true;
355 }
356
Hal Finkel7e184492014-09-07 20:29:59 +0000357 /// A pointer to the cache of @llvm.assume calls.
Chandler Carruth66b31302015-01-04 12:03:27 +0000358 AssumptionCache *AC;
Hal Finkel7e184492014-09-07 20:29:59 +0000359 /// An optional DL pointer.
360 const DataLayout *DL;
361 /// An optional DT pointer.
362 DominatorTree *DT;
Owen Anderson6f060af2011-01-05 23:26:22 +0000363
Owen Anderson118ac802011-01-05 21:15:29 +0000364 friend struct LVIValueHandle;
Owen Anderson6f060af2011-01-05 23:26:22 +0000365
Hans Wennborg45172ac2014-11-25 17:23:05 +0000366 void insertResult(Value *Val, BasicBlock *BB, const LVILatticeVal &Result) {
367 SeenBlocks.insert(BB);
368 lookup(Val)[BB] = Result;
369 if (Result.isOverdefined())
370 OverDefinedCache.insert(std::make_pair(BB, Val));
371 }
Owen Andersonc1561b82010-07-30 23:59:40 +0000372
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000373 LVILatticeVal getBlockValue(Value *Val, BasicBlock *BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000374 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
Hal Finkel7e184492014-09-07 20:29:59 +0000375 LVILatticeVal &Result,
376 Instruction *CxtI = nullptr);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000377 bool hasBlockValue(Value *Val, BasicBlock *BB);
378
379 // These methods process one work item and may add more. A false value
380 // returned means that the work item was not completely processed and must
381 // be revisited after going through the new items.
382 bool solveBlockValue(Value *Val, BasicBlock *BB);
Owen Anderson64c2c572010-12-20 18:18:16 +0000383 bool solveBlockValueNonLocal(LVILatticeVal &BBLV,
384 Value *Val, BasicBlock *BB);
385 bool solveBlockValuePHINode(LVILatticeVal &BBLV,
386 PHINode *PN, BasicBlock *BB);
387 bool solveBlockValueConstantRange(LVILatticeVal &BBLV,
388 Instruction *BBI, BasicBlock *BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000389 void mergeAssumeBlockValueConstantRange(Value *Val, LVILatticeVal &BBLV,
390 Instruction *BBI);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000391
392 void solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000393
Nick Lewycky11678bd2010-12-15 18:57:18 +0000394 ValueCacheEntryTy &lookup(Value *V) {
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000395 return ValueCache[LVIValueHandle(V, this)];
396 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000397
Chris Lattneraf025d32009-11-15 19:59:49 +0000398 public:
Sanjay Patel2a385e22015-01-09 16:47:20 +0000399 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000400 /// value for the specified Value* at the end of the specified block.
Hal Finkel7e184492014-09-07 20:29:59 +0000401 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB,
402 Instruction *CxtI = nullptr);
403
Sanjay Patel2a385e22015-01-09 16:47:20 +0000404 /// This is the query interface to determine the lattice
Hal Finkel7e184492014-09-07 20:29:59 +0000405 /// value for the specified Value* at the specified instruction (generally
406 /// from an assume intrinsic).
407 LVILatticeVal getValueAt(Value *V, Instruction *CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +0000408
Sanjay Patel2a385e22015-01-09 16:47:20 +0000409 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000410 /// value for the specified Value* that is true on the specified edge.
Hal Finkel7e184492014-09-07 20:29:59 +0000411 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB,
412 Instruction *CxtI = nullptr);
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000413
Sanjay Patel2a385e22015-01-09 16:47:20 +0000414 /// This is the update interface to inform the cache that an edge from
415 /// PredBB to OldSucc has been threaded to be from PredBB to NewSucc.
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000416 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +0000417
Sanjay Patel2a385e22015-01-09 16:47:20 +0000418 /// This is part of the update interface to inform the cache
Owen Anderson208636f2010-08-18 18:39:01 +0000419 /// that a block has been deleted.
420 void eraseBlock(BasicBlock *BB);
421
422 /// clear - Empty the cache.
423 void clear() {
Benjamin Kramerbbf3c602011-12-03 15:19:55 +0000424 SeenBlocks.clear();
Owen Anderson208636f2010-08-18 18:39:01 +0000425 ValueCache.clear();
426 OverDefinedCache.clear();
427 }
Hal Finkel7e184492014-09-07 20:29:59 +0000428
Chandler Carruth66b31302015-01-04 12:03:27 +0000429 LazyValueInfoCache(AssumptionCache *AC, const DataLayout *DL = nullptr,
430 DominatorTree *DT = nullptr)
431 : AC(AC), DL(DL), DT(DT) {}
Chris Lattneraf025d32009-11-15 19:59:49 +0000432 };
433} // end anonymous namespace
434
Owen Anderson118ac802011-01-05 21:15:29 +0000435void LVIValueHandle::deleted() {
436 typedef std::pair<AssertingVH<BasicBlock>, Value*> OverDefinedPairTy;
437
438 SmallVector<OverDefinedPairTy, 4> ToErase;
Hans Wennborgcbb18e32014-11-21 19:07:46 +0000439 for (const OverDefinedPairTy &P : Parent->OverDefinedCache)
440 if (P.second == getValPtr())
441 ToErase.push_back(P);
442 for (const OverDefinedPairTy &P : ToErase)
443 Parent->OverDefinedCache.erase(P);
Owen Anderson118ac802011-01-05 21:15:29 +0000444
Owen Anderson7b974a42010-08-11 22:36:04 +0000445 // This erasure deallocates *this, so it MUST happen after we're done
446 // using any and all members of *this.
447 Parent->ValueCache.erase(*this);
Owen Andersonc1561b82010-07-30 23:59:40 +0000448}
449
Owen Anderson208636f2010-08-18 18:39:01 +0000450void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Benjamin Kramer36647082011-12-03 15:16:45 +0000451 // Shortcut if we have never seen this block.
452 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
453 if (I == SeenBlocks.end())
454 return;
455 SeenBlocks.erase(I);
456
Owen Anderson118ac802011-01-05 21:15:29 +0000457 SmallVector<OverDefinedPairTy, 4> ToErase;
Hans Wennborgcbb18e32014-11-21 19:07:46 +0000458 for (const OverDefinedPairTy& P : OverDefinedCache)
459 if (P.first == BB)
460 ToErase.push_back(P);
461 for (const OverDefinedPairTy &P : ToErase)
462 OverDefinedCache.erase(P);
Owen Anderson208636f2010-08-18 18:39:01 +0000463
Bill Wendling58c75692012-01-12 01:41:03 +0000464 for (std::map<LVIValueHandle, ValueCacheEntryTy>::iterator
Owen Anderson208636f2010-08-18 18:39:01 +0000465 I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
466 I->second.erase(BB);
467}
Owen Andersonc1561b82010-07-30 23:59:40 +0000468
Nick Lewycky55a700b2010-12-18 01:00:40 +0000469void LazyValueInfoCache::solve() {
Owen Anderson6f060af2011-01-05 23:26:22 +0000470 while (!BlockValueStack.empty()) {
471 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000472 assert(BlockValueSet.count(e) && "Stack value should be in BlockValueSet!");
473
Nuno Lopese6e04902012-06-28 01:16:18 +0000474 if (solveBlockValue(e.second, e.first)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000475 // The work item was completely processed.
476 assert(BlockValueStack.top() == e && "Nothing should have been pushed!");
477 assert(lookup(e.second).count(e.first) && "Result should be in cache!");
478
Owen Anderson6f060af2011-01-05 23:26:22 +0000479 BlockValueStack.pop();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000480 BlockValueSet.erase(e);
481 } else {
482 // More work needs to be done before revisiting.
483 assert(BlockValueStack.top() != e && "Stack should have been pushed!");
Nuno Lopese6e04902012-06-28 01:16:18 +0000484 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000485 }
486}
487
488bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) {
489 // If already a constant, there is nothing to compute.
490 if (isa<Constant>(Val))
491 return true;
492
Owen Anderson118ac802011-01-05 21:15:29 +0000493 LVIValueHandle ValHandle(Val, this);
Benjamin Kramerf29db272012-08-22 15:37:57 +0000494 std::map<LVIValueHandle, ValueCacheEntryTy>::iterator I =
495 ValueCache.find(ValHandle);
496 if (I == ValueCache.end()) return false;
497 return I->second.count(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000498}
499
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000500LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000501 // If already a constant, there is nothing to compute.
502 if (Constant *VC = dyn_cast<Constant>(Val))
503 return LVILatticeVal::get(VC);
504
Benjamin Kramer36647082011-12-03 15:16:45 +0000505 SeenBlocks.insert(BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000506 return lookup(Val)[BB];
507}
508
509bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) {
510 if (isa<Constant>(Val))
511 return true;
512
Hans Wennborg45172ac2014-11-25 17:23:05 +0000513 if (lookup(Val).count(BB)) {
514 // If we have a cached value, use that.
515 DEBUG(dbgs() << " reuse BB '" << BB->getName()
516 << "' val=" << lookup(Val)[BB] << '\n');
Nick Lewycky55a700b2010-12-18 01:00:40 +0000517
Hans Wennborg45172ac2014-11-25 17:23:05 +0000518 // Since we're reusing a cached value, we don't need to update the
519 // OverDefinedCache. The cache will have been properly updated whenever the
520 // cached value was inserted.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000521 return true;
Chris Lattner2c708562009-11-15 20:00:52 +0000522 }
523
Hans Wennborg45172ac2014-11-25 17:23:05 +0000524 // Hold off inserting this value into the Cache in case we have to return
525 // false and come back later.
526 LVILatticeVal Res;
Chris Lattneraf025d32009-11-15 19:59:49 +0000527
Chris Lattneraf025d32009-11-15 19:59:49 +0000528 Instruction *BBI = dyn_cast<Instruction>(Val);
Craig Topper9f008862014-04-15 04:59:12 +0000529 if (!BBI || BBI->getParent() != BB) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000530 if (!solveBlockValueNonLocal(Res, Val, BB))
531 return false;
532 insertResult(Val, BB, Res);
533 return true;
Chris Lattneraf025d32009-11-15 19:59:49 +0000534 }
Chris Lattner2c708562009-11-15 20:00:52 +0000535
Nick Lewycky55a700b2010-12-18 01:00:40 +0000536 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000537 if (!solveBlockValuePHINode(Res, PN, BB))
538 return false;
539 insertResult(Val, BB, Res);
540 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000541 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000542
Nick Lewycky367f98f2011-01-15 09:16:12 +0000543 if (AllocaInst *AI = dyn_cast<AllocaInst>(BBI)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000544 Res = LVILatticeVal::getNot(ConstantPointerNull::get(AI->getType()));
545 insertResult(Val, BB, Res);
546 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000547 }
548
Owen Anderson80d19f02010-08-18 21:11:37 +0000549 // We can only analyze the definitions of certain classes of instructions
550 // (integral binops and casts at the moment), so bail if this isn't one.
Chris Lattneraf025d32009-11-15 19:59:49 +0000551 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000552 if ((!isa<BinaryOperator>(BBI) && !isa<CastInst>(BBI)) ||
553 !BBI->getType()->isIntegerTy()) {
554 DEBUG(dbgs() << " compute BB '" << BB->getName()
555 << "' - overdefined because inst def found.\n");
Hans Wennborg45172ac2014-11-25 17:23:05 +0000556 Res.markOverdefined();
557 insertResult(Val, BB, Res);
558 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +0000559 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000560
Owen Anderson80d19f02010-08-18 21:11:37 +0000561 // FIXME: We're currently limited to binops with a constant RHS. This should
562 // be improved.
563 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
564 if (BO && !isa<ConstantInt>(BO->getOperand(1))) {
565 DEBUG(dbgs() << " compute BB '" << BB->getName()
566 << "' - overdefined because inst def found.\n");
567
Hans Wennborg45172ac2014-11-25 17:23:05 +0000568 Res.markOverdefined();
569 insertResult(Val, BB, Res);
570 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000571 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000572
Hans Wennborg45172ac2014-11-25 17:23:05 +0000573 if (!solveBlockValueConstantRange(Res, BBI, BB))
574 return false;
575 insertResult(Val, BB, Res);
576 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000577}
578
579static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
580 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
581 return L->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000582 GetUnderlyingObject(L->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000583 }
584 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
585 return S->getPointerAddressSpace() == 0 &&
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000586 GetUnderlyingObject(S->getPointerOperand()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000587 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000588 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
589 if (MI->isVolatile()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000590
591 // FIXME: check whether it has a valuerange that excludes zero?
592 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
593 if (!Len || Len->isZero()) return false;
594
Eli Friedman7a5fc692011-05-31 20:40:16 +0000595 if (MI->getDestAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000596 if (GetUnderlyingObject(MI->getRawDest()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000597 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000598 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Eli Friedman7a5fc692011-05-31 20:40:16 +0000599 if (MTI->getSourceAddressSpace() == 0)
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000600 if (GetUnderlyingObject(MTI->getRawSource()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000601 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000602 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000603 return false;
604}
605
Owen Anderson64c2c572010-12-20 18:18:16 +0000606bool LazyValueInfoCache::solveBlockValueNonLocal(LVILatticeVal &BBLV,
607 Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000608 LVILatticeVal Result; // Start Undefined.
609
610 // If this is a pointer, and there's a load from that pointer in this BB,
611 // then we know that the pointer can't be NULL.
612 bool NotNull = false;
613 if (Val->getType()->isPointerTy()) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000614 if (isKnownNonNull(Val)) {
Nick Lewycky367f98f2011-01-15 09:16:12 +0000615 NotNull = true;
616 } else {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000617 Value *UnderlyingVal = GetUnderlyingObject(Val);
618 // If 'GetUnderlyingObject' didn't converge, skip it. It won't converge
619 // inside InstructionDereferencesPointer either.
Craig Topper9f008862014-04-15 04:59:12 +0000620 if (UnderlyingVal == GetUnderlyingObject(UnderlyingVal, nullptr, 1)) {
Hans Wennborgcbb18e32014-11-21 19:07:46 +0000621 for (Instruction &I : *BB) {
622 if (InstructionDereferencesPointer(&I, UnderlyingVal)) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000623 NotNull = true;
624 break;
625 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000626 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000627 }
628 }
629 }
630
631 // If this is the entry block, we must be asking about an argument. The
632 // value is overdefined.
633 if (BB == &BB->getParent()->getEntryBlock()) {
634 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
635 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000636 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000637 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
638 } else {
639 Result.markOverdefined();
640 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000641 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000642 return true;
643 }
644
645 // Loop over all of our predecessors, merging what we know from them into
646 // result.
647 bool EdgesMissing = false;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000648 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000649 LVILatticeVal EdgeResult;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000650 EdgesMissing |= !getEdgeValue(Val, *PI, BB, EdgeResult);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000651 if (EdgesMissing)
652 continue;
653
654 Result.mergeIn(EdgeResult);
655
656 // If we hit overdefined, exit early. The BlockVals entry is already set
657 // to overdefined.
658 if (Result.isOverdefined()) {
659 DEBUG(dbgs() << " compute BB '" << BB->getName()
660 << "' - overdefined because of pred.\n");
661 // If we previously determined that this is a pointer that can't be null
662 // then return that rather than giving up entirely.
663 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000664 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000665 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
666 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000667
668 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000669 return true;
670 }
671 }
672 if (EdgesMissing)
673 return false;
674
675 // Return the merged value, which is more precise than 'overdefined'.
676 assert(!Result.isOverdefined());
Owen Anderson64c2c572010-12-20 18:18:16 +0000677 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000678 return true;
679}
680
Owen Anderson64c2c572010-12-20 18:18:16 +0000681bool LazyValueInfoCache::solveBlockValuePHINode(LVILatticeVal &BBLV,
682 PHINode *PN, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000683 LVILatticeVal Result; // Start Undefined.
684
685 // Loop over all of our predecessors, merging what we know from them into
686 // result.
687 bool EdgesMissing = false;
688 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
689 BasicBlock *PhiBB = PN->getIncomingBlock(i);
690 Value *PhiVal = PN->getIncomingValue(i);
691 LVILatticeVal EdgeResult;
Hal Finkel2400c962014-10-16 00:40:05 +0000692 // Note that we can provide PN as the context value to getEdgeValue, even
693 // though the results will be cached, because PN is the value being used as
694 // the cache key in the caller.
Hal Finkel7e184492014-09-07 20:29:59 +0000695 EdgesMissing |= !getEdgeValue(PhiVal, PhiBB, BB, EdgeResult, PN);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000696 if (EdgesMissing)
697 continue;
698
699 Result.mergeIn(EdgeResult);
700
701 // If we hit overdefined, exit early. The BlockVals entry is already set
702 // to overdefined.
703 if (Result.isOverdefined()) {
704 DEBUG(dbgs() << " compute BB '" << BB->getName()
705 << "' - overdefined because of pred.\n");
Owen Anderson64c2c572010-12-20 18:18:16 +0000706
707 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000708 return true;
709 }
710 }
711 if (EdgesMissing)
712 return false;
713
714 // Return the merged value, which is more precise than 'overdefined'.
715 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson64c2c572010-12-20 18:18:16 +0000716 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000717 return true;
718}
719
Hal Finkel7e184492014-09-07 20:29:59 +0000720static bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
721 LVILatticeVal &Result,
722 bool isTrueDest = true);
723
Hans Wennborgc5ec73d2014-11-21 18:58:23 +0000724// If we can determine a constant range for the value Val in the context
Hal Finkel7e184492014-09-07 20:29:59 +0000725// provided by the instruction BBI, then merge it into BBLV. If we did find a
726// constant range, return true.
Hans Wennborgc5ec73d2014-11-21 18:58:23 +0000727void LazyValueInfoCache::mergeAssumeBlockValueConstantRange(Value *Val,
728 LVILatticeVal &BBLV,
729 Instruction *BBI) {
Hal Finkel7e184492014-09-07 20:29:59 +0000730 BBI = BBI ? BBI : dyn_cast<Instruction>(Val);
731 if (!BBI)
732 return;
733
Chandler Carruth66b31302015-01-04 12:03:27 +0000734 for (auto &AssumeVH : AC->assumptions()) {
735 if (!AssumeVH)
736 continue;
737 auto *I = cast<CallInst>(AssumeVH);
Hal Finkel7e184492014-09-07 20:29:59 +0000738 if (!isValidAssumeForContext(I, BBI, DL, DT))
739 continue;
740
741 Value *C = I->getArgOperand(0);
742 if (ICmpInst *ICI = dyn_cast<ICmpInst>(C)) {
743 LVILatticeVal Result;
744 if (getValueFromFromCondition(Val, ICI, Result)) {
745 if (BBLV.isOverdefined())
746 BBLV = Result;
747 else
748 BBLV.mergeIn(Result);
749 }
750 }
751 }
752}
753
Owen Anderson64c2c572010-12-20 18:18:16 +0000754bool LazyValueInfoCache::solveBlockValueConstantRange(LVILatticeVal &BBLV,
755 Instruction *BBI,
Nick Lewycky55a700b2010-12-18 01:00:40 +0000756 BasicBlock *BB) {
Owen Anderson80d19f02010-08-18 21:11:37 +0000757 // Figure out the range of the LHS. If that fails, bail.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000758 if (!hasBlockValue(BBI->getOperand(0), BB)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000759 if (pushBlockValue(std::make_pair(BB, BBI->getOperand(0))))
760 return false;
761 BBLV.markOverdefined();
762 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000763 }
764
Nick Lewycky55a700b2010-12-18 01:00:40 +0000765 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
Hal Finkel7e184492014-09-07 20:29:59 +0000766 mergeAssumeBlockValueConstantRange(BBI->getOperand(0), LHSVal, BBI);
Owen Anderson80d19f02010-08-18 21:11:37 +0000767 if (!LHSVal.isConstantRange()) {
Owen Anderson64c2c572010-12-20 18:18:16 +0000768 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000769 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +0000770 }
771
Owen Anderson80d19f02010-08-18 21:11:37 +0000772 ConstantRange LHSRange = LHSVal.getConstantRange();
773 ConstantRange RHSRange(1);
Chris Lattner229907c2011-07-18 04:54:35 +0000774 IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
Owen Anderson80d19f02010-08-18 21:11:37 +0000775 if (isa<BinaryOperator>(BBI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000776 if (ConstantInt *RHS = dyn_cast<ConstantInt>(BBI->getOperand(1))) {
777 RHSRange = ConstantRange(RHS->getValue());
778 } else {
Owen Anderson64c2c572010-12-20 18:18:16 +0000779 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +0000780 return true;
Owen Andersonc62f7042010-08-24 07:55:44 +0000781 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000782 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000783
Owen Anderson80d19f02010-08-18 21:11:37 +0000784 // NOTE: We're currently limited by the set of operations that ConstantRange
785 // can evaluate symbolically. Enhancing that set will allows us to analyze
786 // more definitions.
Owen Anderson64c2c572010-12-20 18:18:16 +0000787 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +0000788 switch (BBI->getOpcode()) {
789 case Instruction::Add:
790 Result.markConstantRange(LHSRange.add(RHSRange));
791 break;
792 case Instruction::Sub:
793 Result.markConstantRange(LHSRange.sub(RHSRange));
794 break;
795 case Instruction::Mul:
796 Result.markConstantRange(LHSRange.multiply(RHSRange));
797 break;
798 case Instruction::UDiv:
799 Result.markConstantRange(LHSRange.udiv(RHSRange));
800 break;
801 case Instruction::Shl:
802 Result.markConstantRange(LHSRange.shl(RHSRange));
803 break;
804 case Instruction::LShr:
805 Result.markConstantRange(LHSRange.lshr(RHSRange));
806 break;
807 case Instruction::Trunc:
808 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
809 break;
810 case Instruction::SExt:
811 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
812 break;
813 case Instruction::ZExt:
814 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
815 break;
816 case Instruction::BitCast:
817 Result.markConstantRange(LHSRange);
818 break;
Nick Lewyckyad48e012010-09-07 05:39:02 +0000819 case Instruction::And:
820 Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
821 break;
822 case Instruction::Or:
823 Result.markConstantRange(LHSRange.binaryOr(RHSRange));
824 break;
Owen Anderson80d19f02010-08-18 21:11:37 +0000825
826 // Unhandled instructions are overdefined.
827 default:
828 DEBUG(dbgs() << " compute BB '" << BB->getName()
829 << "' - overdefined because inst def found.\n");
830 Result.markOverdefined();
831 break;
832 }
833
Owen Anderson64c2c572010-12-20 18:18:16 +0000834 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000835 return true;
Chris Lattner741c94c2009-11-11 00:22:30 +0000836}
837
Hal Finkel7e184492014-09-07 20:29:59 +0000838bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
839 LVILatticeVal &Result, bool isTrueDest) {
840 if (ICI && isa<Constant>(ICI->getOperand(1))) {
841 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
842 // We know that V has the RHS constant if this is a true SETEQ or
843 // false SETNE.
844 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
845 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
846 else
847 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
848 return true;
849 }
850
851 // Recognize the range checking idiom that InstCombine produces.
852 // (X-C1) u< C2 --> [C1, C1+C2)
853 ConstantInt *NegOffset = nullptr;
854 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
855 match(ICI->getOperand(0), m_Add(m_Specific(Val),
856 m_ConstantInt(NegOffset)));
857
858 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
859 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
860 // Calculate the range of values that would satisfy the comparison.
861 ConstantRange CmpRange(CI->getValue());
862 ConstantRange TrueValues =
863 ConstantRange::makeICmpRegion(ICI->getPredicate(), CmpRange);
864
865 if (NegOffset) // Apply the offset from above.
866 TrueValues = TrueValues.subtract(NegOffset->getValue());
867
868 // If we're interested in the false dest, invert the condition.
869 if (!isTrueDest) TrueValues = TrueValues.inverse();
870
871 Result = LVILatticeVal::getRange(TrueValues);
872 return true;
873 }
874 }
875
876 return false;
877}
878
Nuno Lopese6e04902012-06-28 01:16:18 +0000879/// \brief Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
880/// Val is not constrained on the edge.
881static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
882 BasicBlock *BBTo, LVILatticeVal &Result) {
Chris Lattner77358782009-11-15 20:02:12 +0000883 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
884 // know that v != 0.
Chris Lattner19019ea2009-11-11 22:48:44 +0000885 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
886 // If this is a conditional branch and only one successor goes to BBTo, then
Sanjay Patel938e2792015-01-09 16:35:37 +0000887 // we may be able to infer something from the condition.
Chris Lattner19019ea2009-11-11 22:48:44 +0000888 if (BI->isConditional() &&
889 BI->getSuccessor(0) != BI->getSuccessor(1)) {
890 bool isTrueDest = BI->getSuccessor(0) == BBTo;
891 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
892 "BBTo isn't a successor of BBFrom");
893
894 // If V is the condition of the branch itself, then we know exactly what
895 // it is.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000896 if (BI->getCondition() == Val) {
897 Result = LVILatticeVal::get(ConstantInt::get(
Owen Anderson185fe002010-08-10 20:03:09 +0000898 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky55a700b2010-12-18 01:00:40 +0000899 return true;
900 }
Chris Lattner19019ea2009-11-11 22:48:44 +0000901
902 // If the condition of the branch is an equality comparison, we may be
903 // able to infer the value.
Sanjay Pateld7291152015-01-09 16:28:15 +0000904 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
905 if (getValueFromFromCondition(Val, ICI, Result, isTrueDest))
906 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000907 }
908 }
Chris Lattner77358782009-11-15 20:02:12 +0000909
910 // If the edge was formed by a switch on the value, then we may know exactly
911 // what it is.
912 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Nuno Lopes8650fb82012-06-28 16:13:37 +0000913 if (SI->getCondition() != Val)
914 return false;
915
916 bool DefaultCase = SI->getDefaultDest() == BBTo;
917 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
918 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
919
Hans Wennborgcbb18e32014-11-21 19:07:46 +0000920 for (SwitchInst::CaseIt i : SI->cases()) {
Nuno Lopes8650fb82012-06-28 16:13:37 +0000921 ConstantRange EdgeVal(i.getCaseValue()->getValue());
Manman Renf3fedb62012-09-05 23:45:58 +0000922 if (DefaultCase) {
923 // It is possible that the default destination is the destination of
924 // some cases. There is no need to perform difference for those cases.
925 if (i.getCaseSuccessor() != BBTo)
926 EdgesVals = EdgesVals.difference(EdgeVal);
927 } else if (i.getCaseSuccessor() == BBTo)
Nuno Lopesac593802012-05-18 21:02:10 +0000928 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner77358782009-11-15 20:02:12 +0000929 }
Nuno Lopes8650fb82012-06-28 16:13:37 +0000930 Result = LVILatticeVal::getRange(EdgesVals);
931 return true;
Chris Lattner77358782009-11-15 20:02:12 +0000932 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000933 return false;
934}
935
Sanjay Patel938e2792015-01-09 16:35:37 +0000936/// \brief Compute the value of Val on the edge BBFrom -> BBTo or the value at
937/// the basic block if the edge does not constrain Val.
Nuno Lopese6e04902012-06-28 01:16:18 +0000938bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom,
Hal Finkel7e184492014-09-07 20:29:59 +0000939 BasicBlock *BBTo, LVILatticeVal &Result,
940 Instruction *CxtI) {
Nuno Lopese6e04902012-06-28 01:16:18 +0000941 // If already a constant, there is nothing to compute.
942 if (Constant *VC = dyn_cast<Constant>(Val)) {
943 Result = LVILatticeVal::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000944 return true;
945 }
Nuno Lopese6e04902012-06-28 01:16:18 +0000946
947 if (getEdgeValueLocal(Val, BBFrom, BBTo, Result)) {
948 if (!Result.isConstantRange() ||
Hans Wennborgc5ec73d2014-11-21 18:58:23 +0000949 Result.getConstantRange().getSingleElement())
Nuno Lopese6e04902012-06-28 01:16:18 +0000950 return true;
951
952 // FIXME: this check should be moved to the beginning of the function when
953 // LVI better supports recursive values. Even for the single value case, we
954 // can intersect to detect dead code (an empty range).
955 if (!hasBlockValue(Val, BBFrom)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000956 if (pushBlockValue(std::make_pair(BBFrom, Val)))
957 return false;
958 Result.markOverdefined();
959 return true;
Nuno Lopese6e04902012-06-28 01:16:18 +0000960 }
961
962 // Try to intersect ranges of the BB and the constraint on the edge.
963 LVILatticeVal InBlock = getBlockValue(Val, BBFrom);
Hal Finkela3f23e32014-10-14 16:04:49 +0000964 mergeAssumeBlockValueConstantRange(Val, InBlock, BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +0000965 // See note on the use of the CxtI with mergeAssumeBlockValueConstantRange,
966 // and caching, below.
Hal Finkel7e184492014-09-07 20:29:59 +0000967 mergeAssumeBlockValueConstantRange(Val, InBlock, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000968 if (!InBlock.isConstantRange())
969 return true;
970
971 ConstantRange Range =
972 Result.getConstantRange().intersectWith(InBlock.getConstantRange());
973 Result = LVILatticeVal::getRange(Range);
974 return true;
975 }
976
977 if (!hasBlockValue(Val, BBFrom)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000978 if (pushBlockValue(std::make_pair(BBFrom, Val)))
979 return false;
980 Result.markOverdefined();
981 return true;
Nuno Lopese6e04902012-06-28 01:16:18 +0000982 }
983
Hans Wennborgc5ec73d2014-11-21 18:58:23 +0000984 // If we couldn't compute the value on the edge, use the value from the BB.
Nuno Lopese6e04902012-06-28 01:16:18 +0000985 Result = getBlockValue(Val, BBFrom);
Hal Finkela3f23e32014-10-14 16:04:49 +0000986 mergeAssumeBlockValueConstantRange(Val, Result, BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +0000987 // We can use the context instruction (generically the ultimate instruction
988 // the calling pass is trying to simplify) here, even though the result of
989 // this function is generally cached when called from the solve* functions
990 // (and that cached result might be used with queries using a different
991 // context instruction), because when this function is called from the solve*
992 // functions, the context instruction is not provided. When called from
993 // LazyValueInfoCache::getValueOnEdge, the context instruction is provided,
994 // but then the result is not cached.
Hal Finkel7e184492014-09-07 20:29:59 +0000995 mergeAssumeBlockValueConstantRange(Val, Result, CxtI);
Nuno Lopese6e04902012-06-28 01:16:18 +0000996 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +0000997}
998
Hal Finkel7e184492014-09-07 20:29:59 +0000999LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB,
1000 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001001 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001002 << BB->getName() << "'\n");
1003
Hans Wennborg45172ac2014-11-25 17:23:05 +00001004 assert(BlockValueStack.empty() && BlockValueSet.empty());
1005 pushBlockValue(std::make_pair(BB, V));
1006
Nick Lewycky55a700b2010-12-18 01:00:40 +00001007 solve();
Owen Andersonc7ed4dc2010-12-09 06:14:58 +00001008 LVILatticeVal Result = getBlockValue(V, BB);
Hal Finkel7e184492014-09-07 20:29:59 +00001009 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
1010
1011 DEBUG(dbgs() << " Result = " << Result << "\n");
1012 return Result;
1013}
1014
1015LVILatticeVal LazyValueInfoCache::getValueAt(Value *V, Instruction *CxtI) {
1016 DEBUG(dbgs() << "LVI Getting value " << *V << " at '"
1017 << CxtI->getName() << "'\n");
1018
1019 LVILatticeVal Result;
1020 mergeAssumeBlockValueConstantRange(V, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001021
David Greene37e98092009-12-23 20:43:58 +00001022 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001023 return Result;
1024}
Chris Lattner19019ea2009-11-11 22:48:44 +00001025
Chris Lattneraf025d32009-11-15 19:59:49 +00001026LVILatticeVal LazyValueInfoCache::
Hal Finkel7e184492014-09-07 20:29:59 +00001027getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
1028 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001029 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001030 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001031
Nick Lewycky55a700b2010-12-18 01:00:40 +00001032 LVILatticeVal Result;
Hal Finkel7e184492014-09-07 20:29:59 +00001033 if (!getEdgeValue(V, FromBB, ToBB, Result, CxtI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001034 solve();
Hal Finkel7e184492014-09-07 20:29:59 +00001035 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001036 (void)WasFastQuery;
1037 assert(WasFastQuery && "More work to do after problem solved?");
1038 }
1039
David Greene37e98092009-12-23 20:43:58 +00001040 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001041 return Result;
1042}
1043
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001044void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
1045 BasicBlock *NewSucc) {
1046 // When an edge in the graph has been threaded, values that we could not
1047 // determine a value for before (i.e. were marked overdefined) may be possible
1048 // to solve now. We do NOT try to proactively update these values. Instead,
1049 // we clear their entries from the cache, and allow lazy updating to recompute
1050 // them when needed.
1051
Hans Wennborgc5ec73d2014-11-21 18:58:23 +00001052 // The updating process is fairly simple: we need to drop cached info
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001053 // for all values that were marked overdefined in OldSucc, and for those same
1054 // values in any successor of OldSucc (except NewSucc) in which they were
1055 // also marked overdefined.
1056 std::vector<BasicBlock*> worklist;
1057 worklist.push_back(OldSucc);
1058
Owen Andersonaac5a722010-07-27 23:58:11 +00001059 DenseSet<Value*> ClearSet;
Hans Wennborgcbb18e32014-11-21 19:07:46 +00001060 for (OverDefinedPairTy &P : OverDefinedCache)
1061 if (P.first == OldSucc)
1062 ClearSet.insert(P.second);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001063
1064 // Use a worklist to perform a depth-first search of OldSucc's successors.
1065 // NOTE: We do not need a visited list since any blocks we have already
1066 // visited will have had their overdefined markers cleared already, and we
1067 // thus won't loop to their successors.
1068 while (!worklist.empty()) {
1069 BasicBlock *ToUpdate = worklist.back();
1070 worklist.pop_back();
1071
1072 // Skip blocks only accessible through NewSucc.
1073 if (ToUpdate == NewSucc) continue;
1074
1075 bool changed = false;
Hans Wennborgcbb18e32014-11-21 19:07:46 +00001076 for (Value *V : ClearSet) {
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001077 // If a value was marked overdefined in OldSucc, and is here too...
Owen Anderson118ac802011-01-05 21:15:29 +00001078 DenseSet<OverDefinedPairTy>::iterator OI =
Hans Wennborgcbb18e32014-11-21 19:07:46 +00001079 OverDefinedCache.find(std::make_pair(ToUpdate, V));
Owen Andersonaac5a722010-07-27 23:58:11 +00001080 if (OI == OverDefinedCache.end()) continue;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001081
Owen Andersonaac5a722010-07-27 23:58:11 +00001082 // Remove it from the caches.
Hans Wennborgcbb18e32014-11-21 19:07:46 +00001083 ValueCacheEntryTy &Entry = ValueCache[LVIValueHandle(V, this)];
Owen Andersonaac5a722010-07-27 23:58:11 +00001084 ValueCacheEntryTy::iterator CI = Entry.find(ToUpdate);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001085
Owen Andersonaac5a722010-07-27 23:58:11 +00001086 assert(CI != Entry.end() && "Couldn't find entry to update?");
1087 Entry.erase(CI);
1088 OverDefinedCache.erase(OI);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001089
Owen Andersonaac5a722010-07-27 23:58:11 +00001090 // If we removed anything, then we potentially need to update
1091 // blocks successors too.
1092 changed = true;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001093 }
Nick Lewycky55a700b2010-12-18 01:00:40 +00001094
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001095 if (!changed) continue;
1096
1097 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
1098 }
1099}
1100
Chris Lattneraf025d32009-11-15 19:59:49 +00001101//===----------------------------------------------------------------------===//
1102// LazyValueInfo Impl
1103//===----------------------------------------------------------------------===//
1104
Sanjay Patel2a385e22015-01-09 16:47:20 +00001105/// This lazily constructs the LazyValueInfoCache.
Chandler Carruth66b31302015-01-04 12:03:27 +00001106static LazyValueInfoCache &getCache(void *&PImpl, AssumptionCache *AC,
Hal Finkel7e184492014-09-07 20:29:59 +00001107 const DataLayout *DL = nullptr,
1108 DominatorTree *DT = nullptr) {
Chris Lattneraf025d32009-11-15 19:59:49 +00001109 if (!PImpl)
Chandler Carruth66b31302015-01-04 12:03:27 +00001110 PImpl = new LazyValueInfoCache(AC, DL, DT);
Chris Lattneraf025d32009-11-15 19:59:49 +00001111 return *static_cast<LazyValueInfoCache*>(PImpl);
1112}
1113
Owen Anderson208636f2010-08-18 18:39:01 +00001114bool LazyValueInfo::runOnFunction(Function &F) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001115 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Hal Finkel7e184492014-09-07 20:29:59 +00001116
1117 DominatorTreeWrapperPass *DTWP =
1118 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
1119 DT = DTWP ? &DTWP->getDomTree() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001120
Rafael Espindola93512512014-02-25 17:30:31 +00001121 DataLayoutPass *DLP = getAnalysisIfAvailable<DataLayoutPass>();
Craig Topper9f008862014-04-15 04:59:12 +00001122 DL = DLP ? &DLP->getDataLayout() : nullptr;
Hans Wennborgc5ec73d2014-11-21 18:58:23 +00001123
Chandler Carruthb98f63d2015-01-15 10:41:28 +00001124 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chad Rosier43a33062011-12-02 01:26:24 +00001125
Hal Finkel7e184492014-09-07 20:29:59 +00001126 if (PImpl)
Chandler Carruth66b31302015-01-04 12:03:27 +00001127 getCache(PImpl, AC, DL, DT).clear();
Hal Finkel7e184492014-09-07 20:29:59 +00001128
Owen Anderson208636f2010-08-18 18:39:01 +00001129 // Fully lazy.
1130 return false;
1131}
1132
Chad Rosier43a33062011-12-02 01:26:24 +00001133void LazyValueInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1134 AU.setPreservesAll();
Chandler Carruth66b31302015-01-04 12:03:27 +00001135 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruthb98f63d2015-01-15 10:41:28 +00001136 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chad Rosier43a33062011-12-02 01:26:24 +00001137}
1138
Chris Lattneraf025d32009-11-15 19:59:49 +00001139void LazyValueInfo::releaseMemory() {
1140 // If the cache was allocated, free it.
1141 if (PImpl) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001142 delete &getCache(PImpl, AC);
Craig Topper9f008862014-04-15 04:59:12 +00001143 PImpl = nullptr;
Chris Lattneraf025d32009-11-15 19:59:49 +00001144 }
1145}
1146
Hal Finkel7e184492014-09-07 20:29:59 +00001147Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
1148 Instruction *CxtI) {
1149 LVILatticeVal Result =
Chandler Carruth66b31302015-01-04 12:03:27 +00001150 getCache(PImpl, AC, DL, DT).getValueInBlock(V, BB, CxtI);
1151
Chris Lattner19019ea2009-11-11 22:48:44 +00001152 if (Result.isConstant())
1153 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001154 if (Result.isConstantRange()) {
Owen Anderson38f6b7f2010-08-27 23:29:38 +00001155 ConstantRange CR = Result.getConstantRange();
1156 if (const APInt *SingleVal = CR.getSingleElement())
1157 return ConstantInt::get(V->getContext(), *SingleVal);
1158 }
Craig Topper9f008862014-04-15 04:59:12 +00001159 return nullptr;
Chris Lattner19019ea2009-11-11 22:48:44 +00001160}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001161
Sanjay Patel2a385e22015-01-09 16:47:20 +00001162/// Determine whether the specified value is known to be a
Chris Lattnerd5e25432009-11-12 01:29:10 +00001163/// constant on the specified edge. Return null if not.
1164Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
Hal Finkel7e184492014-09-07 20:29:59 +00001165 BasicBlock *ToBB,
1166 Instruction *CxtI) {
1167 LVILatticeVal Result =
Chandler Carruth66b31302015-01-04 12:03:27 +00001168 getCache(PImpl, AC, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
1169
Chris Lattnerd5e25432009-11-12 01:29:10 +00001170 if (Result.isConstant())
1171 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001172 if (Result.isConstantRange()) {
Owen Anderson185fe002010-08-10 20:03:09 +00001173 ConstantRange CR = Result.getConstantRange();
1174 if (const APInt *SingleVal = CR.getSingleElement())
1175 return ConstantInt::get(V->getContext(), *SingleVal);
1176 }
Craig Topper9f008862014-04-15 04:59:12 +00001177 return nullptr;
Chris Lattnerd5e25432009-11-12 01:29:10 +00001178}
1179
Hal Finkel7e184492014-09-07 20:29:59 +00001180static LazyValueInfo::Tristate
1181getPredicateResult(unsigned Pred, Constant *C, LVILatticeVal &Result,
1182 const DataLayout *DL, TargetLibraryInfo *TLI) {
1183
Chris Lattner565ee2f2009-11-12 04:36:58 +00001184 // If we know the value is a constant, evaluate the conditional.
Craig Topper9f008862014-04-15 04:59:12 +00001185 Constant *Res = nullptr;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001186 if (Result.isConstant()) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001187 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001188 TLI);
Nick Lewycky11678bd2010-12-15 18:57:18 +00001189 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Hal Finkel7e184492014-09-07 20:29:59 +00001190 return ResCI->isZero() ? LazyValueInfo::False : LazyValueInfo::True;
1191 return LazyValueInfo::Unknown;
Chris Lattneraf025d32009-11-15 19:59:49 +00001192 }
1193
Owen Anderson185fe002010-08-10 20:03:09 +00001194 if (Result.isConstantRange()) {
Owen Andersonc62f7042010-08-24 07:55:44 +00001195 ConstantInt *CI = dyn_cast<ConstantInt>(C);
Hal Finkel7e184492014-09-07 20:29:59 +00001196 if (!CI) return LazyValueInfo::Unknown;
Owen Andersonc62f7042010-08-24 07:55:44 +00001197
Owen Anderson185fe002010-08-10 20:03:09 +00001198 ConstantRange CR = Result.getConstantRange();
1199 if (Pred == ICmpInst::ICMP_EQ) {
1200 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001201 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001202
1203 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001204 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001205 } else if (Pred == ICmpInst::ICMP_NE) {
1206 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001207 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001208
1209 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001210 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001211 }
1212
1213 // Handle more complex predicates.
Nick Lewycky11678bd2010-12-15 18:57:18 +00001214 ConstantRange TrueValues =
1215 ICmpInst::makeConstantRange((ICmpInst::Predicate)Pred, CI->getValue());
1216 if (TrueValues.contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001217 return LazyValueInfo::True;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001218 if (TrueValues.inverse().contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001219 return LazyValueInfo::False;
1220 return LazyValueInfo::Unknown;
Owen Anderson185fe002010-08-10 20:03:09 +00001221 }
1222
Chris Lattneraf025d32009-11-15 19:59:49 +00001223 if (Result.isNotConstant()) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001224 // If this is an equality comparison, we can try to fold it knowing that
1225 // "V != C1".
1226 if (Pred == ICmpInst::ICMP_EQ) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001227 // !C1 == C -> false iff C1 == C.
Chris Lattner565ee2f2009-11-12 04:36:58 +00001228 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001229 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001230 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001231 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001232 return LazyValueInfo::False;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001233 } else if (Pred == ICmpInst::ICMP_NE) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001234 // !C1 != C -> true iff C1 == C.
Chris Lattnerb0c0a0d2009-11-15 20:01:24 +00001235 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001236 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001237 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001238 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001239 return LazyValueInfo::True;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001240 }
Hal Finkel7e184492014-09-07 20:29:59 +00001241 return LazyValueInfo::Unknown;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001242 }
1243
Hal Finkel7e184492014-09-07 20:29:59 +00001244 return LazyValueInfo::Unknown;
1245}
1246
Sanjay Patel2a385e22015-01-09 16:47:20 +00001247/// Determine whether the specified value comparison with a constant is known to
1248/// be true or false on the specified CFG edge. Pred is a CmpInst predicate.
Hal Finkel7e184492014-09-07 20:29:59 +00001249LazyValueInfo::Tristate
1250LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1251 BasicBlock *FromBB, BasicBlock *ToBB,
1252 Instruction *CxtI) {
1253 LVILatticeVal Result =
Chandler Carruth66b31302015-01-04 12:03:27 +00001254 getCache(PImpl, AC, DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001255
1256 return getPredicateResult(Pred, C, Result, DL, TLI);
1257}
1258
1259LazyValueInfo::Tristate
1260LazyValueInfo::getPredicateAt(unsigned Pred, Value *V, Constant *C,
1261 Instruction *CxtI) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001262 LVILatticeVal Result = getCache(PImpl, AC, DL, DT).getValueAt(V, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001263
1264 return getPredicateResult(Pred, C, Result, DL, TLI);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001265}
1266
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001267void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky11678bd2010-12-15 18:57:18 +00001268 BasicBlock *NewSucc) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001269 if (PImpl)
1270 getCache(PImpl, AC, DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
Owen Anderson208636f2010-08-18 18:39:01 +00001271}
1272
1273void LazyValueInfo::eraseBlock(BasicBlock *BB) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001274 if (PImpl)
1275 getCache(PImpl, AC, DL, DT).eraseBlock(BB);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001276}