blob: 467f46489070fe1dfd5da2f1a272f9375327342e [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"
Philip Reameseb3e9da2015-10-29 03:57:17 +000029#include "llvm/IR/LLVMContext.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000030#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000031#include "llvm/IR/ValueHandle.h"
Chris Lattnerb584d1e2009-11-12 01:22:16 +000032#include "llvm/Support/Debug.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000033#include "llvm/Support/raw_ostream.h"
Bill Wendling4ec081a2012-01-11 23:43:34 +000034#include <map>
Nick Lewycky55a700b2010-12-18 01:00:40 +000035#include <stack>
Chris Lattner741c94c2009-11-11 00:22:30 +000036using namespace llvm;
Benjamin Kramerd9d80b12012-03-02 15:34:43 +000037using namespace PatternMatch;
Chris Lattner741c94c2009-11-11 00:22:30 +000038
Chandler Carruthf1221bd2014-04-22 02:48:03 +000039#define DEBUG_TYPE "lazy-value-info"
40
Chris Lattner741c94c2009-11-11 00:22:30 +000041char LazyValueInfo::ID = 0;
Chad Rosier43a33062011-12-02 01:26:24 +000042INITIALIZE_PASS_BEGIN(LazyValueInfo, "lazy-value-info",
43 "Lazy Value Information Analysis", false, true)
Chandler Carruth66b31302015-01-04 12:03:27 +000044INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthb98f63d2015-01-15 10:41:28 +000045INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Chad Rosier43a33062011-12-02 01:26:24 +000046INITIALIZE_PASS_END(LazyValueInfo, "lazy-value-info",
Owen Andersondf7a4f22010-10-07 22:25:06 +000047 "Lazy Value Information Analysis", false, true)
Chris Lattner741c94c2009-11-11 00:22:30 +000048
49namespace llvm {
50 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfo(); }
51}
52
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000053
54//===----------------------------------------------------------------------===//
55// LVILatticeVal
56//===----------------------------------------------------------------------===//
57
Sanjay Patel2a385e22015-01-09 16:47:20 +000058/// This is the information tracked by LazyValueInfo for each value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000059///
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 {
Sanjay Patel2a385e22015-01-09 16:47:20 +000066 /// This Value has no known value yet.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000067 undefined,
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +000068
Sanjay Patel2a385e22015-01-09 16:47:20 +000069 /// This Value has a specific constant value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000070 constant,
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +000071
Sanjay Patel2a385e22015-01-09 16:47:20 +000072 /// This Value is known to not have the specified value.
Chris Lattner565ee2f2009-11-12 04:36:58 +000073 notconstant,
Chad Rosier43a33062011-12-02 01:26:24 +000074
Sanjay Patel2a385e22015-01-09 16:47:20 +000075 /// The Value falls within this range.
Owen Anderson0f306a42010-08-05 22:59:19 +000076 constantrange,
Chad Rosier43a33062011-12-02 01:26:24 +000077
Sanjay Patel2a385e22015-01-09 16:47:20 +000078 /// This value is not known to be constant, and we know that it has a value.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000079 overdefined
80 };
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +000081
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000082 /// 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;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +000087
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000088public:
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;
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000105 Res.markConstantRange(std::move(CR));
Owen Anderson5f1dd092010-08-10 23:20:01 +0000106 return Res;
107 }
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000108 static LVILatticeVal getOverdefined() {
109 LVILatticeVal Res;
110 Res.markOverdefined();
111 return Res;
112 }
113
Owen Anderson0f306a42010-08-05 22:59:19 +0000114 bool isUndefined() const { return Tag == undefined; }
115 bool isConstant() const { return Tag == constant; }
116 bool isNotConstant() const { return Tag == notconstant; }
117 bool isConstantRange() const { return Tag == constantrange; }
118 bool isOverdefined() const { return Tag == overdefined; }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000119
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000120 Constant *getConstant() const {
121 assert(isConstant() && "Cannot get the constant of a non-constant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000122 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000123 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000124
Chris Lattner565ee2f2009-11-12 04:36:58 +0000125 Constant *getNotConstant() const {
126 assert(isNotConstant() && "Cannot get the constant of a non-notconstant!");
Owen Andersonc3a14132010-08-05 22:10:46 +0000127 return Val;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000128 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000129
Owen Anderson0f306a42010-08-05 22:59:19 +0000130 ConstantRange getConstantRange() const {
131 assert(isConstantRange() &&
132 "Cannot get the constant-range of a non-constant-range!");
133 return Range;
134 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000135
Sanjay Patel2a385e22015-01-09 16:47:20 +0000136 /// Return true if this is a change in status.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000137 bool markOverdefined() {
138 if (isOverdefined())
139 return false;
Owen Andersonc3a14132010-08-05 22:10:46 +0000140 Tag = overdefined;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000141 return true;
142 }
143
Sanjay Patel2a385e22015-01-09 16:47:20 +0000144 /// Return true if this is a change in status.
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000145 bool markConstant(Constant *V) {
Nick Lewycky11678bd2010-12-15 18:57:18 +0000146 assert(V && "Marking constant with NULL");
147 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
148 return markConstantRange(ConstantRange(CI->getValue()));
149 if (isa<UndefValue>(V))
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000150 return false;
Nick Lewycky11678bd2010-12-15 18:57:18 +0000151
152 assert((!isConstant() || getConstant() == V) &&
153 "Marking constant with different value");
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000154 assert(isUndefined());
Owen Andersonc3a14132010-08-05 22:10:46 +0000155 Tag = constant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000156 Val = V;
Chris Lattner19019ea2009-11-11 22:48:44 +0000157 return true;
158 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000159
Sanjay Patel2a385e22015-01-09 16:47:20 +0000160 /// Return true if this is a change in status.
Chris Lattner565ee2f2009-11-12 04:36:58 +0000161 bool markNotConstant(Constant *V) {
Chris Lattner565ee2f2009-11-12 04:36:58 +0000162 assert(V && "Marking constant with NULL");
Nick Lewycky11678bd2010-12-15 18:57:18 +0000163 if (ConstantInt *CI = dyn_cast<ConstantInt>(V))
164 return markConstantRange(ConstantRange(CI->getValue()+1, CI->getValue()));
165 if (isa<UndefValue>(V))
166 return false;
167
168 assert((!isConstant() || getConstant() != V) &&
169 "Marking constant !constant with same value");
170 assert((!isNotConstant() || getNotConstant() == V) &&
171 "Marking !constant with different value");
172 assert(isUndefined() || isConstant());
173 Tag = notconstant;
Owen Andersonc3a14132010-08-05 22:10:46 +0000174 Val = V;
Chris Lattner565ee2f2009-11-12 04:36:58 +0000175 return true;
176 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000177
Sanjay Patel2a385e22015-01-09 16:47:20 +0000178 /// Return true if this is a change in status.
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000179 bool markConstantRange(ConstantRange NewR) {
Owen Anderson0f306a42010-08-05 22:59:19 +0000180 if (isConstantRange()) {
181 if (NewR.isEmptySet())
182 return markOverdefined();
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000183
Nuno Lopese6e04902012-06-28 01:16:18 +0000184 bool changed = Range != NewR;
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000185 Range = std::move(NewR);
Owen Anderson0f306a42010-08-05 22:59:19 +0000186 return changed;
187 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000188
Owen Anderson0f306a42010-08-05 22:59:19 +0000189 assert(isUndefined());
190 if (NewR.isEmptySet())
191 return markOverdefined();
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000192
Owen Anderson0f306a42010-08-05 22:59:19 +0000193 Tag = constantrange;
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000194 Range = std::move(NewR);
Owen Anderson0f306a42010-08-05 22:59:19 +0000195 return true;
196 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000197
Sanjay Patel2a385e22015-01-09 16:47:20 +0000198 /// Merge the specified lattice value into this one, updating this
Chris Lattner19019ea2009-11-11 22:48:44 +0000199 /// one and returning true if anything changed.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000200 bool mergeIn(const LVILatticeVal &RHS, const DataLayout &DL) {
Chris Lattner19019ea2009-11-11 22:48:44 +0000201 if (RHS.isUndefined() || isOverdefined()) return false;
202 if (RHS.isOverdefined()) return markOverdefined();
203
Nick Lewycky11678bd2010-12-15 18:57:18 +0000204 if (isUndefined()) {
205 Tag = RHS.Tag;
206 Val = RHS.Val;
207 Range = RHS.Range;
208 return true;
Chris Lattner22db4b52009-11-12 04:57:13 +0000209 }
210
Nick Lewycky11678bd2010-12-15 18:57:18 +0000211 if (isConstant()) {
212 if (RHS.isConstant()) {
213 if (Val == RHS.Val)
214 return false;
215 return markOverdefined();
216 }
217
218 if (RHS.isNotConstant()) {
219 if (Val == RHS.Val)
220 return markOverdefined();
221
222 // Unless we can prove that the two Constants are different, we must
223 // move to overdefined.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000224 if (ConstantInt *Res =
225 dyn_cast<ConstantInt>(ConstantFoldCompareInstOperands(
226 CmpInst::ICMP_NE, getConstant(), RHS.getNotConstant(), DL)))
Nick Lewycky11678bd2010-12-15 18:57:18 +0000227 if (Res->isOne())
228 return markNotConstant(RHS.getNotConstant());
229
230 return markOverdefined();
231 }
232
233 // RHS is a ConstantRange, LHS is a non-integer Constant.
234
235 // FIXME: consider the case where RHS is a range [1, 0) and LHS is
236 // a function. The correct result is to pick up RHS.
237
Chris Lattner19019ea2009-11-11 22:48:44 +0000238 return markOverdefined();
Nick Lewycky11678bd2010-12-15 18:57:18 +0000239 }
240
241 if (isNotConstant()) {
242 if (RHS.isConstant()) {
243 if (Val == RHS.Val)
244 return markOverdefined();
245
246 // Unless we can prove that the two Constants are different, we must
247 // move to overdefined.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000248 if (ConstantInt *Res =
249 dyn_cast<ConstantInt>(ConstantFoldCompareInstOperands(
250 CmpInst::ICMP_NE, getNotConstant(), RHS.getConstant(), DL)))
Nick Lewycky11678bd2010-12-15 18:57:18 +0000251 if (Res->isOne())
252 return false;
253
254 return markOverdefined();
255 }
256
257 if (RHS.isNotConstant()) {
258 if (Val == RHS.Val)
259 return false;
260 return markOverdefined();
261 }
262
263 return markOverdefined();
264 }
265
266 assert(isConstantRange() && "New LVILattice type?");
267 if (!RHS.isConstantRange())
268 return markOverdefined();
269
270 ConstantRange NewR = Range.unionWith(RHS.getConstantRange());
271 if (NewR.isFullSet())
272 return markOverdefined();
273 return markConstantRange(NewR);
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000274 }
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000275};
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000276
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000277} // end anonymous namespace.
278
Chris Lattner19019ea2009-11-11 22:48:44 +0000279namespace llvm {
Chandler Carruth2b1ba482011-04-18 18:49:44 +0000280raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val)
281 LLVM_ATTRIBUTE_USED;
Chris Lattner19019ea2009-11-11 22:48:44 +0000282raw_ostream &operator<<(raw_ostream &OS, const LVILatticeVal &Val) {
283 if (Val.isUndefined())
284 return OS << "undefined";
285 if (Val.isOverdefined())
286 return OS << "overdefined";
Chris Lattner565ee2f2009-11-12 04:36:58 +0000287
288 if (Val.isNotConstant())
289 return OS << "notconstant<" << *Val.getNotConstant() << '>';
Owen Anderson8afac042010-08-09 20:50:46 +0000290 else if (Val.isConstantRange())
291 return OS << "constantrange<" << Val.getConstantRange().getLower() << ", "
292 << Val.getConstantRange().getUpper() << '>';
Chris Lattner19019ea2009-11-11 22:48:44 +0000293 return OS << "constant<" << *Val.getConstant() << '>';
294}
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000295}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000296
Philip Reamesed8cd0d2016-02-02 22:03:19 +0000297/// Returns true if this lattice value represents at most one possible value.
298/// This is as precise as any lattice value can get while still representing
299/// reachable code.
300static bool hasSingleValue(LVILatticeVal Val) {
301 if (Val.isConstantRange() &&
302 Val.getConstantRange().isSingleElement())
303 // Integer constants are single element ranges
304 return true;
305 if (Val.isConstant())
306 // Non integer constants
307 return true;
308 return false;
309}
310
311/// Combine two sets of facts about the same value into a single set of
312/// facts. Note that this method is not suitable for merging facts along
313/// different paths in a CFG; that's what the mergeIn function is for. This
314/// is for merging facts gathered about the same value at the same location
315/// through two independent means.
316/// Notes:
317/// * This method does not promise to return the most precise possible lattice
318/// value implied by A and B. It is allowed to return any lattice element
319/// which is at least as strong as *either* A or B (unless our facts
320/// conflict, see below).
321/// * Due to unreachable code, the intersection of two lattice values could be
322/// contradictory. If this happens, we return some valid lattice value so as
323/// not confuse the rest of LVI. Ideally, we'd always return Undefined, but
324/// we do not make this guarantee. TODO: This would be a useful enhancement.
325static LVILatticeVal intersect(LVILatticeVal A, LVILatticeVal B) {
326 // Undefined is the strongest state. It means the value is known to be along
327 // an unreachable path.
328 if (A.isUndefined())
329 return A;
330 if (B.isUndefined())
331 return B;
332
333 // If we gave up for one, but got a useable fact from the other, use it.
334 if (A.isOverdefined())
335 return B;
336 if (B.isOverdefined())
337 return A;
338
339 // Can't get any more precise than constants.
340 if (hasSingleValue(A))
341 return A;
342 if (hasSingleValue(B))
343 return B;
344
345 // Could be either constant range or not constant here.
346 if (!A.isConstantRange() || !B.isConstantRange()) {
347 // TODO: Arbitrary choice, could be improved
348 return A;
349 }
350
351 // Intersect two constant ranges
352 ConstantRange Range =
353 A.getConstantRange().intersectWith(B.getConstantRange());
354 // Note: An empty range is implicitly converted to overdefined internally.
355 // TODO: We could instead use Undefined here since we've proven a conflict
356 // and thus know this path must be unreachable.
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000357 return LVILatticeVal::getRange(std::move(Range));
Philip Reamesed8cd0d2016-02-02 22:03:19 +0000358}
Philip Reamesd1f829d2016-02-02 21:57:37 +0000359
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000360//===----------------------------------------------------------------------===//
Chris Lattneraf025d32009-11-15 19:59:49 +0000361// LazyValueInfoCache Decl
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000362//===----------------------------------------------------------------------===//
363
Chris Lattneraf025d32009-11-15 19:59:49 +0000364namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000365 /// A callback value handle updates the cache when values are erased.
Owen Anderson118ac802011-01-05 21:15:29 +0000366 class LazyValueInfoCache;
David Blaikie774b5842015-08-03 22:30:24 +0000367 struct LVIValueHandle final : public CallbackVH {
Owen Anderson118ac802011-01-05 21:15:29 +0000368 LazyValueInfoCache *Parent;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000369
Owen Anderson118ac802011-01-05 21:15:29 +0000370 LVIValueHandle(Value *V, LazyValueInfoCache *P)
371 : CallbackVH(V), Parent(P) { }
Craig Toppere9ba7592014-03-05 07:30:04 +0000372
373 void deleted() override;
374 void allUsesReplacedWith(Value *V) override {
Owen Anderson118ac802011-01-05 21:15:29 +0000375 deleted();
376 }
377 };
Alexander Kornienkof00654e2015-06-23 09:49:53 +0000378}
Owen Anderson118ac802011-01-05 21:15:29 +0000379
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000380namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000381 /// This is the cache kept by LazyValueInfo which
Chris Lattneraf025d32009-11-15 19:59:49 +0000382 /// maintains information about queries across the clients' queries.
383 class LazyValueInfoCache {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000384 /// This is all of the cached block information for exactly one Value*.
385 /// The entries are sorted by the BasicBlock* of the
Chris Lattneraf025d32009-11-15 19:59:49 +0000386 /// entries, allowing us to do a lookup with a binary search.
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000387 /// Over-defined lattice values are recorded in OverDefinedCache to reduce
388 /// memory overhead.
Bruno Cardoso Lopes1846ea32015-08-18 16:54:36 +0000389 typedef SmallDenseMap<AssertingVH<BasicBlock>, LVILatticeVal, 4>
390 ValueCacheEntryTy;
Chris Lattneraf025d32009-11-15 19:59:49 +0000391
Sanjay Patel2a385e22015-01-09 16:47:20 +0000392 /// This is all of the cached information for all values,
Owen Anderson6f060af2011-01-05 23:26:22 +0000393 /// mapped from Value* to key information.
Bill Wendling58c75692012-01-12 01:41:03 +0000394 std::map<LVIValueHandle, ValueCacheEntryTy> ValueCache;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000395
Sanjay Patel2a385e22015-01-09 16:47:20 +0000396 /// This tracks, on a per-block basis, the set of values that are
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000397 /// over-defined at the end of that block.
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +0000398 typedef DenseMap<AssertingVH<BasicBlock>, SmallPtrSet<Value *, 4>>
399 OverDefinedCacheTy;
400 OverDefinedCacheTy OverDefinedCache;
Benjamin Kramer36647082011-12-03 15:16:45 +0000401
Sanjay Patel2a385e22015-01-09 16:47:20 +0000402 /// Keep track of all blocks that we have ever seen, so we
Benjamin Kramer36647082011-12-03 15:16:45 +0000403 /// don't spend time removing unused blocks from our caches.
404 DenseSet<AssertingVH<BasicBlock> > SeenBlocks;
405
Sanjay Patel2a385e22015-01-09 16:47:20 +0000406 /// This stack holds the state of the value solver during a query.
407 /// It basically emulates the callstack of the naive
Owen Anderson6f060af2011-01-05 23:26:22 +0000408 /// recursive value lookup process.
409 std::stack<std::pair<BasicBlock*, Value*> > BlockValueStack;
Hal Finkel7e184492014-09-07 20:29:59 +0000410
Sanjay Patel2a385e22015-01-09 16:47:20 +0000411 /// Keeps track of which block-value pairs are in BlockValueStack.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000412 DenseSet<std::pair<BasicBlock*, Value*> > BlockValueSet;
413
Sanjay Patel2a385e22015-01-09 16:47:20 +0000414 /// Push BV onto BlockValueStack unless it's already in there.
415 /// Returns true on success.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000416 bool pushBlockValue(const std::pair<BasicBlock *, Value *> &BV) {
Benjamin Kramer4e3b9032015-02-27 21:43:14 +0000417 if (!BlockValueSet.insert(BV).second)
Hans Wennborg45172ac2014-11-25 17:23:05 +0000418 return false; // It's already in the stack.
419
Philip Reames44456b82016-02-02 03:15:40 +0000420 DEBUG(dbgs() << "PUSH: " << *BV.second << " in " << BV.first->getName()
421 << "\n");
Hans Wennborg45172ac2014-11-25 17:23:05 +0000422 BlockValueStack.push(BV);
Hans Wennborg45172ac2014-11-25 17:23:05 +0000423 return true;
424 }
425
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000426 AssumptionCache *AC; ///< A pointer to the cache of @llvm.assume calls.
427 const DataLayout &DL; ///< A mandatory DataLayout
428 DominatorTree *DT; ///< An optional DT pointer.
429
Owen Anderson118ac802011-01-05 21:15:29 +0000430 friend struct LVIValueHandle;
Owen Anderson6f060af2011-01-05 23:26:22 +0000431
Hans Wennborg45172ac2014-11-25 17:23:05 +0000432 void insertResult(Value *Val, BasicBlock *BB, const LVILatticeVal &Result) {
433 SeenBlocks.insert(BB);
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000434
435 // Insert over-defined values into their own cache to reduce memory
436 // overhead.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000437 if (Result.isOverdefined())
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +0000438 OverDefinedCache[BB].insert(Val);
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000439 else
440 lookup(Val)[BB] = Result;
Hans Wennborg45172ac2014-11-25 17:23:05 +0000441 }
Owen Andersonc1561b82010-07-30 23:59:40 +0000442
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000443 LVILatticeVal getBlockValue(Value *Val, BasicBlock *BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000444 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
Hal Finkel7e184492014-09-07 20:29:59 +0000445 LVILatticeVal &Result,
446 Instruction *CxtI = nullptr);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000447 bool hasBlockValue(Value *Val, BasicBlock *BB);
448
449 // These methods process one work item and may add more. A false value
450 // returned means that the work item was not completely processed and must
451 // be revisited after going through the new items.
452 bool solveBlockValue(Value *Val, BasicBlock *BB);
Owen Anderson64c2c572010-12-20 18:18:16 +0000453 bool solveBlockValueNonLocal(LVILatticeVal &BBLV,
454 Value *Val, BasicBlock *BB);
455 bool solveBlockValuePHINode(LVILatticeVal &BBLV,
456 PHINode *PN, BasicBlock *BB);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000457 bool solveBlockValueSelect(LVILatticeVal &BBLV,
458 SelectInst *S, BasicBlock *BB);
Owen Anderson64c2c572010-12-20 18:18:16 +0000459 bool solveBlockValueConstantRange(LVILatticeVal &BBLV,
460 Instruction *BBI, BasicBlock *BB);
Philip Reamesd1f829d2016-02-02 21:57:37 +0000461 void intersectAssumeBlockValueConstantRange(Value *Val, LVILatticeVal &BBLV,
Hal Finkel7e184492014-09-07 20:29:59 +0000462 Instruction *BBI);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000463
464 void solve();
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000465
Nick Lewycky11678bd2010-12-15 18:57:18 +0000466 ValueCacheEntryTy &lookup(Value *V) {
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000467 return ValueCache[LVIValueHandle(V, this)];
468 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000469
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000470 bool isOverdefined(Value *V, BasicBlock *BB) const {
471 auto ODI = OverDefinedCache.find(BB);
472
473 if (ODI == OverDefinedCache.end())
474 return false;
475
476 return ODI->second.count(V);
477 }
478
479 bool hasCachedValueInfo(Value *V, BasicBlock *BB) {
480 if (isOverdefined(V, BB))
481 return true;
482
483 LVIValueHandle ValHandle(V, this);
484 auto I = ValueCache.find(ValHandle);
485 if (I == ValueCache.end())
486 return false;
487
488 return I->second.count(BB);
489 }
490
491 LVILatticeVal getCachedValueInfo(Value *V, BasicBlock *BB) {
492 if (isOverdefined(V, BB))
493 return LVILatticeVal::getOverdefined();
494
495 return lookup(V)[BB];
496 }
497
Chris Lattneraf025d32009-11-15 19:59:49 +0000498 public:
Sanjay Patel2a385e22015-01-09 16:47:20 +0000499 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000500 /// value for the specified Value* at the end of the specified block.
Hal Finkel7e184492014-09-07 20:29:59 +0000501 LVILatticeVal getValueInBlock(Value *V, BasicBlock *BB,
502 Instruction *CxtI = nullptr);
503
Sanjay Patel2a385e22015-01-09 16:47:20 +0000504 /// This is the query interface to determine the lattice
Hal Finkel7e184492014-09-07 20:29:59 +0000505 /// value for the specified Value* at the specified instruction (generally
506 /// from an assume intrinsic).
507 LVILatticeVal getValueAt(Value *V, Instruction *CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +0000508
Sanjay Patel2a385e22015-01-09 16:47:20 +0000509 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000510 /// value for the specified Value* that is true on the specified edge.
Hal Finkel7e184492014-09-07 20:29:59 +0000511 LVILatticeVal getValueOnEdge(Value *V, BasicBlock *FromBB,BasicBlock *ToBB,
512 Instruction *CxtI = nullptr);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000513
Sanjay Patel2a385e22015-01-09 16:47:20 +0000514 /// This is the update interface to inform the cache that an edge from
515 /// PredBB to OldSucc has been threaded to be from PredBB to NewSucc.
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000516 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000517
Sanjay Patel2a385e22015-01-09 16:47:20 +0000518 /// This is part of the update interface to inform the cache
Owen Anderson208636f2010-08-18 18:39:01 +0000519 /// that a block has been deleted.
520 void eraseBlock(BasicBlock *BB);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000521
Owen Anderson208636f2010-08-18 18:39:01 +0000522 /// clear - Empty the cache.
523 void clear() {
Benjamin Kramerbbf3c602011-12-03 15:19:55 +0000524 SeenBlocks.clear();
Owen Anderson208636f2010-08-18 18:39:01 +0000525 ValueCache.clear();
526 OverDefinedCache.clear();
527 }
Hal Finkel7e184492014-09-07 20:29:59 +0000528
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000529 LazyValueInfoCache(AssumptionCache *AC, const DataLayout &DL,
Chandler Carruth66b31302015-01-04 12:03:27 +0000530 DominatorTree *DT = nullptr)
531 : AC(AC), DL(DL), DT(DT) {}
Chris Lattneraf025d32009-11-15 19:59:49 +0000532 };
533} // end anonymous namespace
534
Owen Anderson118ac802011-01-05 21:15:29 +0000535void LVIValueHandle::deleted() {
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +0000536 SmallVector<AssertingVH<BasicBlock>, 4> ToErase;
537 for (auto &I : Parent->OverDefinedCache) {
538 SmallPtrSetImpl<Value *> &ValueSet = I.second;
539 if (ValueSet.count(getValPtr()))
540 ValueSet.erase(getValPtr());
541 if (ValueSet.empty())
542 ToErase.push_back(I.first);
543 }
544 for (auto &BB : ToErase)
545 Parent->OverDefinedCache.erase(BB);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000546
Owen Anderson7b974a42010-08-11 22:36:04 +0000547 // This erasure deallocates *this, so it MUST happen after we're done
548 // using any and all members of *this.
549 Parent->ValueCache.erase(*this);
Owen Andersonc1561b82010-07-30 23:59:40 +0000550}
551
Owen Anderson208636f2010-08-18 18:39:01 +0000552void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Benjamin Kramer36647082011-12-03 15:16:45 +0000553 // Shortcut if we have never seen this block.
554 DenseSet<AssertingVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
555 if (I == SeenBlocks.end())
556 return;
557 SeenBlocks.erase(I);
558
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +0000559 auto ODI = OverDefinedCache.find(BB);
560 if (ODI != OverDefinedCache.end())
561 OverDefinedCache.erase(ODI);
Owen Anderson208636f2010-08-18 18:39:01 +0000562
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +0000563 for (auto I = ValueCache.begin(), E = ValueCache.end(); I != E; ++I)
Owen Anderson208636f2010-08-18 18:39:01 +0000564 I->second.erase(BB);
565}
Owen Andersonc1561b82010-07-30 23:59:40 +0000566
Nick Lewycky55a700b2010-12-18 01:00:40 +0000567void LazyValueInfoCache::solve() {
Owen Anderson6f060af2011-01-05 23:26:22 +0000568 while (!BlockValueStack.empty()) {
569 std::pair<BasicBlock*, Value*> &e = BlockValueStack.top();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000570 assert(BlockValueSet.count(e) && "Stack value should be in BlockValueSet!");
571
Nuno Lopese6e04902012-06-28 01:16:18 +0000572 if (solveBlockValue(e.second, e.first)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000573 // The work item was completely processed.
574 assert(BlockValueStack.top() == e && "Nothing should have been pushed!");
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000575 assert(hasCachedValueInfo(e.second, e.first) &&
576 "Result should be in cache!");
Hans Wennborg45172ac2014-11-25 17:23:05 +0000577
Philip Reames44456b82016-02-02 03:15:40 +0000578 DEBUG(dbgs() << "POP " << *e.second << " in " << e.first->getName()
Philip Reamesb7571042016-02-02 22:43:08 +0000579 << " = " << getCachedValueInfo(e.second, e.first) << "\n");
Philip Reames44456b82016-02-02 03:15:40 +0000580
Owen Anderson6f060af2011-01-05 23:26:22 +0000581 BlockValueStack.pop();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000582 BlockValueSet.erase(e);
583 } else {
584 // More work needs to be done before revisiting.
585 assert(BlockValueStack.top() != e && "Stack should have been pushed!");
Nuno Lopese6e04902012-06-28 01:16:18 +0000586 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000587 }
588}
589
590bool LazyValueInfoCache::hasBlockValue(Value *Val, BasicBlock *BB) {
591 // If already a constant, there is nothing to compute.
592 if (isa<Constant>(Val))
593 return true;
594
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000595 return hasCachedValueInfo(Val, BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000596}
597
Owen Andersonc7ed4dc2010-12-09 06:14:58 +0000598LVILatticeVal LazyValueInfoCache::getBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000599 // If already a constant, there is nothing to compute.
600 if (Constant *VC = dyn_cast<Constant>(Val))
601 return LVILatticeVal::get(VC);
602
Benjamin Kramer36647082011-12-03 15:16:45 +0000603 SeenBlocks.insert(BB);
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000604 return getCachedValueInfo(Val, BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000605}
606
Philip Reameseb3e9da2015-10-29 03:57:17 +0000607static LVILatticeVal getFromRangeMetadata(Instruction *BBI) {
608 switch (BBI->getOpcode()) {
609 default: break;
610 case Instruction::Load:
611 case Instruction::Call:
612 case Instruction::Invoke:
613 if (MDNode *Ranges = BBI->getMetadata(LLVMContext::MD_range))
Philip Reames70efccd2015-10-29 04:21:49 +0000614 if (isa<IntegerType>(BBI->getType())) {
Benjamin Kramer2337c1f2016-02-20 10:40:34 +0000615 return LVILatticeVal::getRange(getConstantRangeFromMetadata(*Ranges));
Philip Reameseb3e9da2015-10-29 03:57:17 +0000616 }
617 break;
618 };
Philip Reamesd1f829d2016-02-02 21:57:37 +0000619 // Nothing known - will be intersected with other facts
620 return LVILatticeVal::getOverdefined();
Philip Reameseb3e9da2015-10-29 03:57:17 +0000621}
622
Nick Lewycky55a700b2010-12-18 01:00:40 +0000623bool LazyValueInfoCache::solveBlockValue(Value *Val, BasicBlock *BB) {
624 if (isa<Constant>(Val))
625 return true;
626
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000627 if (hasCachedValueInfo(Val, BB)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000628 // If we have a cached value, use that.
629 DEBUG(dbgs() << " reuse BB '" << BB->getName()
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000630 << "' val=" << getCachedValueInfo(Val, BB) << '\n');
Nick Lewycky55a700b2010-12-18 01:00:40 +0000631
Hans Wennborg45172ac2014-11-25 17:23:05 +0000632 // Since we're reusing a cached value, we don't need to update the
633 // OverDefinedCache. The cache will have been properly updated whenever the
634 // cached value was inserted.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000635 return true;
Chris Lattner2c708562009-11-15 20:00:52 +0000636 }
637
Hans Wennborg45172ac2014-11-25 17:23:05 +0000638 // Hold off inserting this value into the Cache in case we have to return
639 // false and come back later.
640 LVILatticeVal Res;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000641
Chris Lattneraf025d32009-11-15 19:59:49 +0000642 Instruction *BBI = dyn_cast<Instruction>(Val);
Craig Topper9f008862014-04-15 04:59:12 +0000643 if (!BBI || BBI->getParent() != BB) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000644 if (!solveBlockValueNonLocal(Res, Val, BB))
645 return false;
646 insertResult(Val, BB, Res);
647 return true;
Chris Lattneraf025d32009-11-15 19:59:49 +0000648 }
Chris Lattner2c708562009-11-15 20:00:52 +0000649
Nick Lewycky55a700b2010-12-18 01:00:40 +0000650 if (PHINode *PN = dyn_cast<PHINode>(BBI)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000651 if (!solveBlockValuePHINode(Res, PN, BB))
652 return false;
653 insertResult(Val, BB, Res);
654 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000655 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000656
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000657 if (auto *SI = dyn_cast<SelectInst>(BBI)) {
658 if (!solveBlockValueSelect(Res, SI, BB))
659 return false;
660 insertResult(Val, BB, Res);
661 return true;
662 }
663
Igor Laevsky0fa48192015-09-18 13:01:48 +0000664 // If this value is a nonnull pointer, record it's range and bailout.
665 PointerType *PT = dyn_cast<PointerType>(BBI->getType());
666 if (PT && isKnownNonNull(BBI)) {
667 Res = LVILatticeVal::getNot(ConstantPointerNull::get(PT));
Hans Wennborg45172ac2014-11-25 17:23:05 +0000668 insertResult(Val, BB, Res);
669 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000670 }
671
Philip Reamesa0c9f6e2016-03-04 22:27:39 +0000672 if (isa<CastInst>(BBI) && BBI->getType()->isIntegerTy()) {
673 if (!solveBlockValueConstantRange(Res, BBI, BB))
674 return false;
Hans Wennborg45172ac2014-11-25 17:23:05 +0000675 insertResult(Val, BB, Res);
676 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +0000677 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000678
Owen Anderson80d19f02010-08-18 21:11:37 +0000679 BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI);
Philip Reamesa0c9f6e2016-03-04 22:27:39 +0000680 if (BO && isa<ConstantInt>(BO->getOperand(1))) {
681 if (!solveBlockValueConstantRange(Res, BBI, BB))
682 return false;
Hans Wennborg45172ac2014-11-25 17:23:05 +0000683 insertResult(Val, BB, Res);
684 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000685 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000686
Philip Reamesa0c9f6e2016-03-04 22:27:39 +0000687 DEBUG(dbgs() << " compute BB '" << BB->getName()
688 << "' - unknown inst def found.\n");
689 Res = getFromRangeMetadata(BBI);
Hans Wennborg45172ac2014-11-25 17:23:05 +0000690 insertResult(Val, BB, Res);
691 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000692}
693
694static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
695 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
696 return L->getPointerAddressSpace() == 0 &&
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000697 GetUnderlyingObject(L->getPointerOperand(),
698 L->getModule()->getDataLayout()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000699 }
700 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
701 return S->getPointerAddressSpace() == 0 &&
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000702 GetUnderlyingObject(S->getPointerOperand(),
703 S->getModule()->getDataLayout()) == Ptr;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000704 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000705 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
706 if (MI->isVolatile()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000707
708 // FIXME: check whether it has a valuerange that excludes zero?
709 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
710 if (!Len || Len->isZero()) return false;
711
Eli Friedman7a5fc692011-05-31 20:40:16 +0000712 if (MI->getDestAddressSpace() == 0)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000713 if (GetUnderlyingObject(MI->getRawDest(),
714 MI->getModule()->getDataLayout()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000715 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000716 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Eli Friedman7a5fc692011-05-31 20:40:16 +0000717 if (MTI->getSourceAddressSpace() == 0)
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000718 if (GetUnderlyingObject(MTI->getRawSource(),
719 MTI->getModule()->getDataLayout()) == Ptr)
Eli Friedman7a5fc692011-05-31 20:40:16 +0000720 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000721 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000722 return false;
723}
724
Owen Anderson64c2c572010-12-20 18:18:16 +0000725bool LazyValueInfoCache::solveBlockValueNonLocal(LVILatticeVal &BBLV,
726 Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000727 LVILatticeVal Result; // Start Undefined.
728
729 // If this is a pointer, and there's a load from that pointer in this BB,
730 // then we know that the pointer can't be NULL.
731 bool NotNull = false;
732 if (Val->getType()->isPointerTy()) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000733 if (isKnownNonNull(Val)) {
Nick Lewycky367f98f2011-01-15 09:16:12 +0000734 NotNull = true;
735 } else {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000736 const DataLayout &DL = BB->getModule()->getDataLayout();
737 Value *UnderlyingVal = GetUnderlyingObject(Val, DL);
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000738 // If 'GetUnderlyingObject' didn't converge, skip it. It won't converge
739 // inside InstructionDereferencesPointer either.
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000740 if (UnderlyingVal == GetUnderlyingObject(UnderlyingVal, DL, 1)) {
Hans Wennborgcbb18e32014-11-21 19:07:46 +0000741 for (Instruction &I : *BB) {
742 if (InstructionDereferencesPointer(&I, UnderlyingVal)) {
Nick Lewyckyc86037f2012-10-26 04:43:47 +0000743 NotNull = true;
744 break;
745 }
Nick Lewycky367f98f2011-01-15 09:16:12 +0000746 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000747 }
748 }
749 }
750
751 // If this is the entry block, we must be asking about an argument. The
752 // value is overdefined.
753 if (BB == &BB->getParent()->getEntryBlock()) {
754 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
755 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000756 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000757 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
758 } else {
759 Result.markOverdefined();
760 }
Owen Anderson64c2c572010-12-20 18:18:16 +0000761 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000762 return true;
763 }
764
765 // Loop over all of our predecessors, merging what we know from them into
766 // result.
767 bool EdgesMissing = false;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000768 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000769 LVILatticeVal EdgeResult;
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000770 EdgesMissing |= !getEdgeValue(Val, *PI, BB, EdgeResult);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000771 if (EdgesMissing)
772 continue;
773
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000774 Result.mergeIn(EdgeResult, DL);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000775
776 // If we hit overdefined, exit early. The BlockVals entry is already set
777 // to overdefined.
778 if (Result.isOverdefined()) {
779 DEBUG(dbgs() << " compute BB '" << BB->getName()
Philip Reamesb7571042016-02-02 22:43:08 +0000780 << "' - overdefined because of pred (non local).\n");
Nick Lewycky55a700b2010-12-18 01:00:40 +0000781 // If we previously determined that this is a pointer that can't be null
782 // then return that rather than giving up entirely.
783 if (NotNull) {
Chris Lattner229907c2011-07-18 04:54:35 +0000784 PointerType *PTy = cast<PointerType>(Val->getType());
Nick Lewycky55a700b2010-12-18 01:00:40 +0000785 Result = LVILatticeVal::getNot(ConstantPointerNull::get(PTy));
786 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000787
Owen Anderson64c2c572010-12-20 18:18:16 +0000788 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000789 return true;
790 }
791 }
792 if (EdgesMissing)
793 return false;
794
795 // Return the merged value, which is more precise than 'overdefined'.
796 assert(!Result.isOverdefined());
Owen Anderson64c2c572010-12-20 18:18:16 +0000797 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000798 return true;
799}
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000800
Owen Anderson64c2c572010-12-20 18:18:16 +0000801bool LazyValueInfoCache::solveBlockValuePHINode(LVILatticeVal &BBLV,
802 PHINode *PN, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000803 LVILatticeVal Result; // Start Undefined.
804
805 // Loop over all of our predecessors, merging what we know from them into
806 // result.
807 bool EdgesMissing = false;
808 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
809 BasicBlock *PhiBB = PN->getIncomingBlock(i);
810 Value *PhiVal = PN->getIncomingValue(i);
811 LVILatticeVal EdgeResult;
Hal Finkel2400c962014-10-16 00:40:05 +0000812 // Note that we can provide PN as the context value to getEdgeValue, even
813 // though the results will be cached, because PN is the value being used as
814 // the cache key in the caller.
Hal Finkel7e184492014-09-07 20:29:59 +0000815 EdgesMissing |= !getEdgeValue(PhiVal, PhiBB, BB, EdgeResult, PN);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000816 if (EdgesMissing)
817 continue;
818
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000819 Result.mergeIn(EdgeResult, DL);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000820
821 // If we hit overdefined, exit early. The BlockVals entry is already set
822 // to overdefined.
823 if (Result.isOverdefined()) {
824 DEBUG(dbgs() << " compute BB '" << BB->getName()
Philip Reamesb7571042016-02-02 22:43:08 +0000825 << "' - overdefined because of pred (local).\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000826
Owen Anderson64c2c572010-12-20 18:18:16 +0000827 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000828 return true;
829 }
830 }
831 if (EdgesMissing)
832 return false;
833
834 // Return the merged value, which is more precise than 'overdefined'.
835 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson64c2c572010-12-20 18:18:16 +0000836 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000837 return true;
838}
839
Hal Finkel7e184492014-09-07 20:29:59 +0000840static bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
841 LVILatticeVal &Result,
842 bool isTrueDest = true);
843
Philip Reamesd1f829d2016-02-02 21:57:37 +0000844// If we can determine a constraint on the value given conditions assumed by
845// the program, intersect those constraints with BBLV
846void LazyValueInfoCache::intersectAssumeBlockValueConstantRange(Value *Val,
Hans Wennborgc5ec73d2014-11-21 18:58:23 +0000847 LVILatticeVal &BBLV,
848 Instruction *BBI) {
Hal Finkel7e184492014-09-07 20:29:59 +0000849 BBI = BBI ? BBI : dyn_cast<Instruction>(Val);
850 if (!BBI)
851 return;
852
Chandler Carruth66b31302015-01-04 12:03:27 +0000853 for (auto &AssumeVH : AC->assumptions()) {
854 if (!AssumeVH)
855 continue;
856 auto *I = cast<CallInst>(AssumeVH);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000857 if (!isValidAssumeForContext(I, BBI, DT))
Hal Finkel7e184492014-09-07 20:29:59 +0000858 continue;
859
860 Value *C = I->getArgOperand(0);
861 if (ICmpInst *ICI = dyn_cast<ICmpInst>(C)) {
862 LVILatticeVal Result;
Philip Reamesd1f829d2016-02-02 21:57:37 +0000863 if (getValueFromFromCondition(Val, ICI, Result))
864 BBLV = intersect(BBLV, Result);
Hal Finkel7e184492014-09-07 20:29:59 +0000865 }
866 }
867}
868
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000869bool LazyValueInfoCache::solveBlockValueSelect(LVILatticeVal &BBLV,
870 SelectInst *SI, BasicBlock *BB) {
871
872 // Recurse on our inputs if needed
873 if (!hasBlockValue(SI->getTrueValue(), BB)) {
874 if (pushBlockValue(std::make_pair(BB, SI->getTrueValue())))
875 return false;
876 BBLV.markOverdefined();
877 return true;
878 }
879 LVILatticeVal TrueVal = getBlockValue(SI->getTrueValue(), BB);
880 // If we hit overdefined, don't ask more queries. We want to avoid poisoning
881 // extra slots in the table if we can.
882 if (TrueVal.isOverdefined()) {
883 BBLV.markOverdefined();
884 return true;
885 }
886
887 if (!hasBlockValue(SI->getFalseValue(), BB)) {
888 if (pushBlockValue(std::make_pair(BB, SI->getFalseValue())))
889 return false;
890 BBLV.markOverdefined();
891 return true;
892 }
893 LVILatticeVal FalseVal = getBlockValue(SI->getFalseValue(), BB);
894 // If we hit overdefined, don't ask more queries. We want to avoid poisoning
895 // extra slots in the table if we can.
896 if (FalseVal.isOverdefined()) {
897 BBLV.markOverdefined();
898 return true;
899 }
900
Philip Reamesadf0e352016-02-26 22:53:59 +0000901 if (TrueVal.isConstantRange() && FalseVal.isConstantRange()) {
902 ConstantRange TrueCR = TrueVal.getConstantRange();
903 ConstantRange FalseCR = FalseVal.getConstantRange();
904 Value *LHS = nullptr;
905 Value *RHS = nullptr;
906 SelectPatternResult SPR = matchSelectPattern(SI, LHS, RHS);
907 // Is this a min specifically of our two inputs? (Avoid the risk of
908 // ValueTracking getting smarter looking back past our immediate inputs.)
909 if (SelectPatternResult::isMinOrMax(SPR.Flavor) &&
910 LHS == SI->getTrueValue() && RHS == SI->getFalseValue()) {
911 switch (SPR.Flavor) {
912 default:
913 llvm_unreachable("unexpected minmax type!");
914 case SPF_SMIN: /// Signed minimum
915 BBLV.markConstantRange(TrueCR.smin(FalseCR));
916 return true;
917 case SPF_UMIN: /// Unsigned minimum
918 BBLV.markConstantRange(TrueCR.umin(FalseCR));
919 return true;
920 case SPF_SMAX: /// Signed maximum
921 BBLV.markConstantRange(TrueCR.smax(FalseCR));
922 return true;
923 case SPF_UMAX: /// Unsigned maximum
924 BBLV.markConstantRange(TrueCR.umax(FalseCR));
925 return true;
926 };
927 }
928
929 // TODO: ABS, NABS from the SelectPatternResult
930 }
931
Philip Reames854a84c2016-02-12 00:09:18 +0000932 // Can we constrain the facts about the true and false values by using the
933 // condition itself? This shows up with idioms like e.g. select(a > 5, a, 5).
934 // TODO: We could potentially refine an overdefined true value above.
935 if (auto *ICI = dyn_cast<ICmpInst>(SI->getCondition())) {
936 LVILatticeVal TrueValTaken, FalseValTaken;
937 if (!getValueFromFromCondition(SI->getTrueValue(), ICI,
938 TrueValTaken, true))
939 TrueValTaken.markOverdefined();
940 if (!getValueFromFromCondition(SI->getFalseValue(), ICI,
941 FalseValTaken, false))
942 FalseValTaken.markOverdefined();
943
944 TrueVal = intersect(TrueVal, TrueValTaken);
945 FalseVal = intersect(FalseVal, FalseValTaken);
Philip Reames854a84c2016-02-12 00:09:18 +0000946
Philip Reamesadf0e352016-02-26 22:53:59 +0000947
948 // Handle clamp idioms such as:
949 // %24 = constantrange<0, 17>
950 // %39 = icmp eq i32 %24, 0
951 // %40 = add i32 %24, -1
952 // %siv.next = select i1 %39, i32 16, i32 %40
953 // %siv.next = constantrange<0, 17> not <-1, 17>
954 // In general, this can handle any clamp idiom which tests the edge
955 // condition via an equality or inequality.
956 ICmpInst::Predicate Pred = ICI->getPredicate();
957 Value *A = ICI->getOperand(0);
958 if (ConstantInt *CIBase = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
959 auto addConstants = [](ConstantInt *A, ConstantInt *B) {
960 assert(A->getType() == B->getType());
961 return ConstantInt::get(A->getType(), A->getValue() + B->getValue());
962 };
963 // See if either input is A + C2, subject to the constraint from the
964 // condition that A != C when that input is used. We can assume that
965 // that input doesn't include C + C2.
966 ConstantInt *CIAdded;
967 switch (Pred) {
Philip Reames70b39182016-02-27 05:18:30 +0000968 default: break;
Philip Reamesadf0e352016-02-26 22:53:59 +0000969 case ICmpInst::ICMP_EQ:
970 if (match(SI->getFalseValue(), m_Add(m_Specific(A),
971 m_ConstantInt(CIAdded)))) {
972 auto ResNot = addConstants(CIBase, CIAdded);
973 FalseVal = intersect(FalseVal,
974 LVILatticeVal::getNot(ResNot));
975 }
976 break;
977 case ICmpInst::ICMP_NE:
978 if (match(SI->getTrueValue(), m_Add(m_Specific(A),
979 m_ConstantInt(CIAdded)))) {
980 auto ResNot = addConstants(CIBase, CIAdded);
981 TrueVal = intersect(TrueVal,
982 LVILatticeVal::getNot(ResNot));
983 }
984 break;
985 };
986 }
987 }
Philip Reames854a84c2016-02-12 00:09:18 +0000988
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000989 LVILatticeVal Result; // Start Undefined.
990 Result.mergeIn(TrueVal, DL);
991 Result.mergeIn(FalseVal, DL);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000992 BBLV = Result;
993 return true;
994}
995
Owen Anderson64c2c572010-12-20 18:18:16 +0000996bool LazyValueInfoCache::solveBlockValueConstantRange(LVILatticeVal &BBLV,
997 Instruction *BBI,
Philip Reamesa0c9f6e2016-03-04 22:27:39 +0000998 BasicBlock *BB) {
Owen Anderson80d19f02010-08-18 21:11:37 +0000999 // Figure out the range of the LHS. If that fails, bail.
Nick Lewycky55a700b2010-12-18 01:00:40 +00001000 if (!hasBlockValue(BBI->getOperand(0), BB)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +00001001 if (pushBlockValue(std::make_pair(BB, BBI->getOperand(0))))
1002 return false;
1003 BBLV.markOverdefined();
1004 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +00001005 }
1006
Nick Lewycky55a700b2010-12-18 01:00:40 +00001007 LVILatticeVal LHSVal = getBlockValue(BBI->getOperand(0), BB);
Philip Reamesd1f829d2016-02-02 21:57:37 +00001008 intersectAssumeBlockValueConstantRange(BBI->getOperand(0), LHSVal, BBI);
Owen Anderson80d19f02010-08-18 21:11:37 +00001009 if (!LHSVal.isConstantRange()) {
Owen Anderson64c2c572010-12-20 18:18:16 +00001010 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +00001011 return true;
Owen Anderson80d19f02010-08-18 21:11:37 +00001012 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001013
Owen Anderson80d19f02010-08-18 21:11:37 +00001014 ConstantRange LHSRange = LHSVal.getConstantRange();
1015 ConstantRange RHSRange(1);
Chris Lattner229907c2011-07-18 04:54:35 +00001016 IntegerType *ResultTy = cast<IntegerType>(BBI->getType());
Owen Anderson80d19f02010-08-18 21:11:37 +00001017 if (isa<BinaryOperator>(BBI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001018 if (ConstantInt *RHS = dyn_cast<ConstantInt>(BBI->getOperand(1))) {
1019 RHSRange = ConstantRange(RHS->getValue());
1020 } else {
Owen Anderson64c2c572010-12-20 18:18:16 +00001021 BBLV.markOverdefined();
Nick Lewycky55a700b2010-12-18 01:00:40 +00001022 return true;
Owen Andersonc62f7042010-08-24 07:55:44 +00001023 }
Owen Anderson80d19f02010-08-18 21:11:37 +00001024 }
Nick Lewycky55a700b2010-12-18 01:00:40 +00001025
Owen Anderson80d19f02010-08-18 21:11:37 +00001026 // NOTE: We're currently limited by the set of operations that ConstantRange
1027 // can evaluate symbolically. Enhancing that set will allows us to analyze
1028 // more definitions.
Owen Anderson64c2c572010-12-20 18:18:16 +00001029 LVILatticeVal Result;
Owen Anderson80d19f02010-08-18 21:11:37 +00001030 switch (BBI->getOpcode()) {
1031 case Instruction::Add:
1032 Result.markConstantRange(LHSRange.add(RHSRange));
1033 break;
1034 case Instruction::Sub:
1035 Result.markConstantRange(LHSRange.sub(RHSRange));
1036 break;
1037 case Instruction::Mul:
1038 Result.markConstantRange(LHSRange.multiply(RHSRange));
1039 break;
1040 case Instruction::UDiv:
1041 Result.markConstantRange(LHSRange.udiv(RHSRange));
1042 break;
1043 case Instruction::Shl:
1044 Result.markConstantRange(LHSRange.shl(RHSRange));
1045 break;
1046 case Instruction::LShr:
1047 Result.markConstantRange(LHSRange.lshr(RHSRange));
1048 break;
1049 case Instruction::Trunc:
1050 Result.markConstantRange(LHSRange.truncate(ResultTy->getBitWidth()));
1051 break;
1052 case Instruction::SExt:
1053 Result.markConstantRange(LHSRange.signExtend(ResultTy->getBitWidth()));
1054 break;
1055 case Instruction::ZExt:
1056 Result.markConstantRange(LHSRange.zeroExtend(ResultTy->getBitWidth()));
1057 break;
1058 case Instruction::BitCast:
1059 Result.markConstantRange(LHSRange);
1060 break;
Nick Lewyckyad48e012010-09-07 05:39:02 +00001061 case Instruction::And:
1062 Result.markConstantRange(LHSRange.binaryAnd(RHSRange));
1063 break;
1064 case Instruction::Or:
1065 Result.markConstantRange(LHSRange.binaryOr(RHSRange));
1066 break;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001067
Owen Anderson80d19f02010-08-18 21:11:37 +00001068 // Unhandled instructions are overdefined.
1069 default:
1070 DEBUG(dbgs() << " compute BB '" << BB->getName()
1071 << "' - overdefined because inst def found.\n");
1072 Result.markOverdefined();
1073 break;
1074 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001075
Owen Anderson64c2c572010-12-20 18:18:16 +00001076 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +00001077 return true;
Chris Lattner741c94c2009-11-11 00:22:30 +00001078}
1079
Hal Finkel7e184492014-09-07 20:29:59 +00001080bool getValueFromFromCondition(Value *Val, ICmpInst *ICI,
1081 LVILatticeVal &Result, bool isTrueDest) {
1082 if (ICI && isa<Constant>(ICI->getOperand(1))) {
1083 if (ICI->isEquality() && ICI->getOperand(0) == Val) {
1084 // We know that V has the RHS constant if this is a true SETEQ or
1085 // false SETNE.
1086 if (isTrueDest == (ICI->getPredicate() == ICmpInst::ICMP_EQ))
1087 Result = LVILatticeVal::get(cast<Constant>(ICI->getOperand(1)));
1088 else
1089 Result = LVILatticeVal::getNot(cast<Constant>(ICI->getOperand(1)));
1090 return true;
1091 }
1092
1093 // Recognize the range checking idiom that InstCombine produces.
1094 // (X-C1) u< C2 --> [C1, C1+C2)
1095 ConstantInt *NegOffset = nullptr;
1096 if (ICI->getPredicate() == ICmpInst::ICMP_ULT)
1097 match(ICI->getOperand(0), m_Add(m_Specific(Val),
1098 m_ConstantInt(NegOffset)));
1099
1100 ConstantInt *CI = dyn_cast<ConstantInt>(ICI->getOperand(1));
1101 if (CI && (ICI->getOperand(0) == Val || NegOffset)) {
Sanjoy Das7182d362015-03-18 00:41:24 +00001102 // Calculate the range of values that are allowed by the comparison
Hal Finkel7e184492014-09-07 20:29:59 +00001103 ConstantRange CmpRange(CI->getValue());
1104 ConstantRange TrueValues =
Sanjoy Das7182d362015-03-18 00:41:24 +00001105 ConstantRange::makeAllowedICmpRegion(ICI->getPredicate(), CmpRange);
Hal Finkel7e184492014-09-07 20:29:59 +00001106
1107 if (NegOffset) // Apply the offset from above.
1108 TrueValues = TrueValues.subtract(NegOffset->getValue());
1109
1110 // If we're interested in the false dest, invert the condition.
1111 if (!isTrueDest) TrueValues = TrueValues.inverse();
1112
Benjamin Kramer2337c1f2016-02-20 10:40:34 +00001113 Result = LVILatticeVal::getRange(std::move(TrueValues));
Hal Finkel7e184492014-09-07 20:29:59 +00001114 return true;
1115 }
1116 }
1117
1118 return false;
1119}
1120
Nuno Lopese6e04902012-06-28 01:16:18 +00001121/// \brief Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
Philip Reames13f73242016-02-01 23:21:11 +00001122/// Val is not constrained on the edge. Result is unspecified if return value
1123/// is false.
Nuno Lopese6e04902012-06-28 01:16:18 +00001124static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
1125 BasicBlock *BBTo, LVILatticeVal &Result) {
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001126 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
Chris Lattner77358782009-11-15 20:02:12 +00001127 // know that v != 0.
Chris Lattner19019ea2009-11-11 22:48:44 +00001128 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
1129 // If this is a conditional branch and only one successor goes to BBTo, then
Sanjay Patel938e2792015-01-09 16:35:37 +00001130 // we may be able to infer something from the condition.
Chris Lattner19019ea2009-11-11 22:48:44 +00001131 if (BI->isConditional() &&
1132 BI->getSuccessor(0) != BI->getSuccessor(1)) {
1133 bool isTrueDest = BI->getSuccessor(0) == BBTo;
1134 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
1135 "BBTo isn't a successor of BBFrom");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001136
Chris Lattner19019ea2009-11-11 22:48:44 +00001137 // If V is the condition of the branch itself, then we know exactly what
1138 // it is.
Nick Lewycky55a700b2010-12-18 01:00:40 +00001139 if (BI->getCondition() == Val) {
1140 Result = LVILatticeVal::get(ConstantInt::get(
Owen Anderson185fe002010-08-10 20:03:09 +00001141 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky55a700b2010-12-18 01:00:40 +00001142 return true;
1143 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001144
Chris Lattner19019ea2009-11-11 22:48:44 +00001145 // If the condition of the branch is an equality comparison, we may be
1146 // able to infer the value.
Sanjay Pateld7291152015-01-09 16:28:15 +00001147 if (ICmpInst *ICI = dyn_cast<ICmpInst>(BI->getCondition()))
1148 if (getValueFromFromCondition(Val, ICI, Result, isTrueDest))
1149 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +00001150 }
1151 }
Chris Lattner77358782009-11-15 20:02:12 +00001152
1153 // If the edge was formed by a switch on the value, then we may know exactly
1154 // what it is.
1155 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Nuno Lopes8650fb82012-06-28 16:13:37 +00001156 if (SI->getCondition() != Val)
1157 return false;
1158
1159 bool DefaultCase = SI->getDefaultDest() == BBTo;
1160 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
1161 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
1162
Hans Wennborgcbb18e32014-11-21 19:07:46 +00001163 for (SwitchInst::CaseIt i : SI->cases()) {
Nuno Lopes8650fb82012-06-28 16:13:37 +00001164 ConstantRange EdgeVal(i.getCaseValue()->getValue());
Manman Renf3fedb62012-09-05 23:45:58 +00001165 if (DefaultCase) {
1166 // It is possible that the default destination is the destination of
1167 // some cases. There is no need to perform difference for those cases.
1168 if (i.getCaseSuccessor() != BBTo)
1169 EdgesVals = EdgesVals.difference(EdgeVal);
1170 } else if (i.getCaseSuccessor() == BBTo)
Nuno Lopesac593802012-05-18 21:02:10 +00001171 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner77358782009-11-15 20:02:12 +00001172 }
Benjamin Kramer2337c1f2016-02-20 10:40:34 +00001173 Result = LVILatticeVal::getRange(std::move(EdgesVals));
Nuno Lopes8650fb82012-06-28 16:13:37 +00001174 return true;
Chris Lattner77358782009-11-15 20:02:12 +00001175 }
Nuno Lopese6e04902012-06-28 01:16:18 +00001176 return false;
1177}
1178
Sanjay Patel938e2792015-01-09 16:35:37 +00001179/// \brief Compute the value of Val on the edge BBFrom -> BBTo or the value at
1180/// the basic block if the edge does not constrain Val.
Nuno Lopese6e04902012-06-28 01:16:18 +00001181bool LazyValueInfoCache::getEdgeValue(Value *Val, BasicBlock *BBFrom,
Hal Finkel7e184492014-09-07 20:29:59 +00001182 BasicBlock *BBTo, LVILatticeVal &Result,
1183 Instruction *CxtI) {
Nuno Lopese6e04902012-06-28 01:16:18 +00001184 // If already a constant, there is nothing to compute.
1185 if (Constant *VC = dyn_cast<Constant>(Val)) {
1186 Result = LVILatticeVal::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001187 return true;
1188 }
Nuno Lopese6e04902012-06-28 01:16:18 +00001189
Philip Reames44456b82016-02-02 03:15:40 +00001190 LVILatticeVal LocalResult;
1191 if (!getEdgeValueLocal(Val, BBFrom, BBTo, LocalResult))
1192 // If we couldn't constrain the value on the edge, LocalResult doesn't
1193 // provide any information.
1194 LocalResult.markOverdefined();
1195
1196 if (hasSingleValue(LocalResult)) {
1197 // Can't get any more precise here
1198 Result = LocalResult;
Nuno Lopese6e04902012-06-28 01:16:18 +00001199 return true;
1200 }
1201
1202 if (!hasBlockValue(Val, BBFrom)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +00001203 if (pushBlockValue(std::make_pair(BBFrom, Val)))
1204 return false;
Philip Reames44456b82016-02-02 03:15:40 +00001205 // No new information.
1206 Result = LocalResult;
Hans Wennborg45172ac2014-11-25 17:23:05 +00001207 return true;
Nuno Lopese6e04902012-06-28 01:16:18 +00001208 }
1209
Philip Reames44456b82016-02-02 03:15:40 +00001210 // Try to intersect ranges of the BB and the constraint on the edge.
1211 LVILatticeVal InBlock = getBlockValue(Val, BBFrom);
Philip Reamesd1f829d2016-02-02 21:57:37 +00001212 intersectAssumeBlockValueConstantRange(Val, InBlock, BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +00001213 // We can use the context instruction (generically the ultimate instruction
1214 // the calling pass is trying to simplify) here, even though the result of
1215 // this function is generally cached when called from the solve* functions
1216 // (and that cached result might be used with queries using a different
1217 // context instruction), because when this function is called from the solve*
1218 // functions, the context instruction is not provided. When called from
1219 // LazyValueInfoCache::getValueOnEdge, the context instruction is provided,
1220 // but then the result is not cached.
Philip Reamesd1f829d2016-02-02 21:57:37 +00001221 intersectAssumeBlockValueConstantRange(Val, InBlock, CxtI);
Philip Reames44456b82016-02-02 03:15:40 +00001222
1223 Result = intersect(LocalResult, InBlock);
Nuno Lopese6e04902012-06-28 01:16:18 +00001224 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +00001225}
1226
Hal Finkel7e184492014-09-07 20:29:59 +00001227LVILatticeVal LazyValueInfoCache::getValueInBlock(Value *V, BasicBlock *BB,
1228 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001229 DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001230 << BB->getName() << "'\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001231
Hans Wennborg45172ac2014-11-25 17:23:05 +00001232 assert(BlockValueStack.empty() && BlockValueSet.empty());
Philip Reamesbb781b42016-02-10 21:46:32 +00001233 if (!hasBlockValue(V, BB)) {
1234 pushBlockValue(std::make_pair(BB, V));
1235 solve();
1236 }
Owen Andersonc7ed4dc2010-12-09 06:14:58 +00001237 LVILatticeVal Result = getBlockValue(V, BB);
Philip Reamesd1f829d2016-02-02 21:57:37 +00001238 intersectAssumeBlockValueConstantRange(V, Result, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001239
1240 DEBUG(dbgs() << " Result = " << Result << "\n");
1241 return Result;
1242}
1243
1244LVILatticeVal LazyValueInfoCache::getValueAt(Value *V, Instruction *CxtI) {
1245 DEBUG(dbgs() << "LVI Getting value " << *V << " at '"
1246 << CxtI->getName() << "'\n");
1247
Philip Reamesbb781b42016-02-10 21:46:32 +00001248 if (auto *C = dyn_cast<Constant>(V))
1249 return LVILatticeVal::get(C);
1250
Philip Reamesd1f829d2016-02-02 21:57:37 +00001251 LVILatticeVal Result = LVILatticeVal::getOverdefined();
Philip Reameseb3e9da2015-10-29 03:57:17 +00001252 if (auto *I = dyn_cast<Instruction>(V))
1253 Result = getFromRangeMetadata(I);
Philip Reamesd1f829d2016-02-02 21:57:37 +00001254 intersectAssumeBlockValueConstantRange(V, Result, CxtI);
Philip Reames2c275cc2016-02-02 00:45:30 +00001255
David Greene37e98092009-12-23 20:43:58 +00001256 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001257 return Result;
1258}
Chris Lattner19019ea2009-11-11 22:48:44 +00001259
Chris Lattneraf025d32009-11-15 19:59:49 +00001260LVILatticeVal LazyValueInfoCache::
Hal Finkel7e184492014-09-07 20:29:59 +00001261getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
1262 Instruction *CxtI) {
David Greene37e98092009-12-23 20:43:58 +00001263 DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
Chris Lattneraf025d32009-11-15 19:59:49 +00001264 << FromBB->getName() << "' to '" << ToBB->getName() << "'\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001265
Nick Lewycky55a700b2010-12-18 01:00:40 +00001266 LVILatticeVal Result;
Hal Finkel7e184492014-09-07 20:29:59 +00001267 if (!getEdgeValue(V, FromBB, ToBB, Result, CxtI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001268 solve();
Hal Finkel7e184492014-09-07 20:29:59 +00001269 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001270 (void)WasFastQuery;
1271 assert(WasFastQuery && "More work to do after problem solved?");
1272 }
1273
David Greene37e98092009-12-23 20:43:58 +00001274 DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001275 return Result;
1276}
1277
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001278void LazyValueInfoCache::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
1279 BasicBlock *NewSucc) {
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001280 // When an edge in the graph has been threaded, values that we could not
1281 // determine a value for before (i.e. were marked overdefined) may be
1282 // possible to solve now. We do NOT try to proactively update these values.
1283 // Instead, we clear their entries from the cache, and allow lazy updating to
1284 // recompute them when needed.
1285
Hans Wennborgc5ec73d2014-11-21 18:58:23 +00001286 // The updating process is fairly simple: we need to drop cached info
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001287 // for all values that were marked overdefined in OldSucc, and for those same
1288 // values in any successor of OldSucc (except NewSucc) in which they were
1289 // also marked overdefined.
1290 std::vector<BasicBlock*> worklist;
1291 worklist.push_back(OldSucc);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001292
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +00001293 auto I = OverDefinedCache.find(OldSucc);
1294 if (I == OverDefinedCache.end())
1295 return; // Nothing to process here.
Bruno Cardoso Lopes7a1483e2015-08-21 21:18:26 +00001296 SmallVector<Value *, 4> ValsToClear(I->second.begin(), I->second.end());
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001297
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001298 // Use a worklist to perform a depth-first search of OldSucc's successors.
1299 // NOTE: We do not need a visited list since any blocks we have already
1300 // visited will have had their overdefined markers cleared already, and we
1301 // thus won't loop to their successors.
1302 while (!worklist.empty()) {
1303 BasicBlock *ToUpdate = worklist.back();
1304 worklist.pop_back();
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001305
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001306 // Skip blocks only accessible through NewSucc.
1307 if (ToUpdate == NewSucc) continue;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001308
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001309 bool changed = false;
Bruno Cardoso Lopes7a1483e2015-08-21 21:18:26 +00001310 for (Value *V : ValsToClear) {
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001311 // If a value was marked overdefined in OldSucc, and is here too...
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +00001312 auto OI = OverDefinedCache.find(ToUpdate);
1313 if (OI == OverDefinedCache.end())
1314 continue;
1315 SmallPtrSetImpl<Value *> &ValueSet = OI->second;
1316 if (!ValueSet.count(V))
1317 continue;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001318
Bruno Cardoso Lopes6ac4ea42015-08-18 16:34:27 +00001319 ValueSet.erase(V);
1320 if (ValueSet.empty())
1321 OverDefinedCache.erase(OI);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001322
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001323 // If we removed anything, then we potentially need to update
Owen Andersonaac5a722010-07-27 23:58:11 +00001324 // blocks successors too.
1325 changed = true;
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001326 }
Nick Lewycky55a700b2010-12-18 01:00:40 +00001327
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001328 if (!changed) continue;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001329
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001330 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
1331 }
1332}
1333
Chris Lattneraf025d32009-11-15 19:59:49 +00001334//===----------------------------------------------------------------------===//
1335// LazyValueInfo Impl
1336//===----------------------------------------------------------------------===//
1337
Sanjay Patel2a385e22015-01-09 16:47:20 +00001338/// This lazily constructs the LazyValueInfoCache.
Chandler Carruth66b31302015-01-04 12:03:27 +00001339static LazyValueInfoCache &getCache(void *&PImpl, AssumptionCache *AC,
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001340 const DataLayout *DL,
Hal Finkel7e184492014-09-07 20:29:59 +00001341 DominatorTree *DT = nullptr) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001342 if (!PImpl) {
1343 assert(DL && "getCache() called with a null DataLayout");
1344 PImpl = new LazyValueInfoCache(AC, *DL, DT);
1345 }
Chris Lattneraf025d32009-11-15 19:59:49 +00001346 return *static_cast<LazyValueInfoCache*>(PImpl);
1347}
1348
Owen Anderson208636f2010-08-18 18:39:01 +00001349bool LazyValueInfo::runOnFunction(Function &F) {
Chandler Carruth66b31302015-01-04 12:03:27 +00001350 AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001351 const DataLayout &DL = F.getParent()->getDataLayout();
Hal Finkel7e184492014-09-07 20:29:59 +00001352
1353 DominatorTreeWrapperPass *DTWP =
1354 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
1355 DT = DTWP ? &DTWP->getDomTree() : nullptr;
Chad Rosier43a33062011-12-02 01:26:24 +00001356
Chandler Carruthb98f63d2015-01-15 10:41:28 +00001357 TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Chad Rosier43a33062011-12-02 01:26:24 +00001358
Hal Finkel7e184492014-09-07 20:29:59 +00001359 if (PImpl)
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001360 getCache(PImpl, AC, &DL, DT).clear();
Hal Finkel7e184492014-09-07 20:29:59 +00001361
Owen Anderson208636f2010-08-18 18:39:01 +00001362 // Fully lazy.
1363 return false;
1364}
1365
Chad Rosier43a33062011-12-02 01:26:24 +00001366void LazyValueInfo::getAnalysisUsage(AnalysisUsage &AU) const {
1367 AU.setPreservesAll();
Chandler Carruth66b31302015-01-04 12:03:27 +00001368 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruthb98f63d2015-01-15 10:41:28 +00001369 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chad Rosier43a33062011-12-02 01:26:24 +00001370}
1371
Chris Lattneraf025d32009-11-15 19:59:49 +00001372void LazyValueInfo::releaseMemory() {
1373 // If the cache was allocated, free it.
1374 if (PImpl) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001375 delete &getCache(PImpl, AC, nullptr);
Craig Topper9f008862014-04-15 04:59:12 +00001376 PImpl = nullptr;
Chris Lattneraf025d32009-11-15 19:59:49 +00001377 }
1378}
1379
Hal Finkel7e184492014-09-07 20:29:59 +00001380Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
1381 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001382 const DataLayout &DL = BB->getModule()->getDataLayout();
Hal Finkel7e184492014-09-07 20:29:59 +00001383 LVILatticeVal Result =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001384 getCache(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI);
Chandler Carruth66b31302015-01-04 12:03:27 +00001385
Chris Lattner19019ea2009-11-11 22:48:44 +00001386 if (Result.isConstant())
1387 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001388 if (Result.isConstantRange()) {
Owen Anderson38f6b7f2010-08-27 23:29:38 +00001389 ConstantRange CR = Result.getConstantRange();
1390 if (const APInt *SingleVal = CR.getSingleElement())
1391 return ConstantInt::get(V->getContext(), *SingleVal);
1392 }
Craig Topper9f008862014-04-15 04:59:12 +00001393 return nullptr;
Chris Lattner19019ea2009-11-11 22:48:44 +00001394}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001395
Sanjay Patel2a385e22015-01-09 16:47:20 +00001396/// Determine whether the specified value is known to be a
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001397/// constant on the specified edge. Return null if not.
Chris Lattnerd5e25432009-11-12 01:29:10 +00001398Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
Hal Finkel7e184492014-09-07 20:29:59 +00001399 BasicBlock *ToBB,
1400 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001401 const DataLayout &DL = FromBB->getModule()->getDataLayout();
Hal Finkel7e184492014-09-07 20:29:59 +00001402 LVILatticeVal Result =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001403 getCache(PImpl, AC, &DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Chandler Carruth66b31302015-01-04 12:03:27 +00001404
Chris Lattnerd5e25432009-11-12 01:29:10 +00001405 if (Result.isConstant())
1406 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001407 if (Result.isConstantRange()) {
Owen Anderson185fe002010-08-10 20:03:09 +00001408 ConstantRange CR = Result.getConstantRange();
1409 if (const APInt *SingleVal = CR.getSingleElement())
1410 return ConstantInt::get(V->getContext(), *SingleVal);
1411 }
Craig Topper9f008862014-04-15 04:59:12 +00001412 return nullptr;
Chris Lattnerd5e25432009-11-12 01:29:10 +00001413}
1414
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001415static LazyValueInfo::Tristate getPredicateResult(unsigned Pred, Constant *C,
1416 LVILatticeVal &Result,
1417 const DataLayout &DL,
1418 TargetLibraryInfo *TLI) {
Hal Finkel7e184492014-09-07 20:29:59 +00001419
Chris Lattner565ee2f2009-11-12 04:36:58 +00001420 // If we know the value is a constant, evaluate the conditional.
Craig Topper9f008862014-04-15 04:59:12 +00001421 Constant *Res = nullptr;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001422 if (Result.isConstant()) {
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001423 Res = ConstantFoldCompareInstOperands(Pred, Result.getConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001424 TLI);
Nick Lewycky11678bd2010-12-15 18:57:18 +00001425 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Hal Finkel7e184492014-09-07 20:29:59 +00001426 return ResCI->isZero() ? LazyValueInfo::False : LazyValueInfo::True;
1427 return LazyValueInfo::Unknown;
Chris Lattneraf025d32009-11-15 19:59:49 +00001428 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001429
Owen Anderson185fe002010-08-10 20:03:09 +00001430 if (Result.isConstantRange()) {
Owen Andersonc62f7042010-08-24 07:55:44 +00001431 ConstantInt *CI = dyn_cast<ConstantInt>(C);
Hal Finkel7e184492014-09-07 20:29:59 +00001432 if (!CI) return LazyValueInfo::Unknown;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001433
Owen Anderson185fe002010-08-10 20:03:09 +00001434 ConstantRange CR = Result.getConstantRange();
1435 if (Pred == ICmpInst::ICMP_EQ) {
1436 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001437 return LazyValueInfo::False;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001438
Owen Anderson185fe002010-08-10 20:03:09 +00001439 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001440 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001441 } else if (Pred == ICmpInst::ICMP_NE) {
1442 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001443 return LazyValueInfo::True;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001444
Owen Anderson185fe002010-08-10 20:03:09 +00001445 if (CR.isSingleElement() && CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001446 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001447 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001448
Owen Anderson185fe002010-08-10 20:03:09 +00001449 // Handle more complex predicates.
Nick Lewycky11678bd2010-12-15 18:57:18 +00001450 ConstantRange TrueValues =
1451 ICmpInst::makeConstantRange((ICmpInst::Predicate)Pred, CI->getValue());
1452 if (TrueValues.contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001453 return LazyValueInfo::True;
Nick Lewycky11678bd2010-12-15 18:57:18 +00001454 if (TrueValues.inverse().contains(CR))
Hal Finkel7e184492014-09-07 20:29:59 +00001455 return LazyValueInfo::False;
1456 return LazyValueInfo::Unknown;
Owen Anderson185fe002010-08-10 20:03:09 +00001457 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001458
Chris Lattneraf025d32009-11-15 19:59:49 +00001459 if (Result.isNotConstant()) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001460 // If this is an equality comparison, we can try to fold it knowing that
1461 // "V != C1".
1462 if (Pred == ICmpInst::ICMP_EQ) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001463 // !C1 == C -> false iff C1 == C.
Chris Lattner565ee2f2009-11-12 04:36:58 +00001464 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001465 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001466 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001467 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001468 return LazyValueInfo::False;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001469 } else if (Pred == ICmpInst::ICMP_NE) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001470 // !C1 != C -> true iff C1 == C.
Chris Lattnerb0c0a0d2009-11-15 20:01:24 +00001471 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Rafael Espindola7c68beb2014-02-18 15:33:12 +00001472 Result.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001473 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001474 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001475 return LazyValueInfo::True;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001476 }
Hal Finkel7e184492014-09-07 20:29:59 +00001477 return LazyValueInfo::Unknown;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001478 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001479
Hal Finkel7e184492014-09-07 20:29:59 +00001480 return LazyValueInfo::Unknown;
1481}
1482
Sanjay Patel2a385e22015-01-09 16:47:20 +00001483/// Determine whether the specified value comparison with a constant is known to
1484/// be true or false on the specified CFG edge. Pred is a CmpInst predicate.
Hal Finkel7e184492014-09-07 20:29:59 +00001485LazyValueInfo::Tristate
1486LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1487 BasicBlock *FromBB, BasicBlock *ToBB,
1488 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001489 const DataLayout &DL = FromBB->getModule()->getDataLayout();
Hal Finkel7e184492014-09-07 20:29:59 +00001490 LVILatticeVal Result =
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001491 getCache(PImpl, AC, &DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001492
1493 return getPredicateResult(Pred, C, Result, DL, TLI);
1494}
1495
1496LazyValueInfo::Tristate
1497LazyValueInfo::getPredicateAt(unsigned Pred, Value *V, Constant *C,
1498 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001499 const DataLayout &DL = CxtI->getModule()->getDataLayout();
1500 LVILatticeVal Result = getCache(PImpl, AC, &DL, DT).getValueAt(V, CxtI);
Philip Reames66ab0f02015-06-16 00:49:59 +00001501 Tristate Ret = getPredicateResult(Pred, C, Result, DL, TLI);
1502 if (Ret != Unknown)
1503 return Ret;
Hal Finkel7e184492014-09-07 20:29:59 +00001504
Philip Reamesaeefae02015-11-04 01:47:04 +00001505 // Note: The following bit of code is somewhat distinct from the rest of LVI;
1506 // LVI as a whole tries to compute a lattice value which is conservatively
1507 // correct at a given location. In this case, we have a predicate which we
1508 // weren't able to prove about the merged result, and we're pushing that
1509 // predicate back along each incoming edge to see if we can prove it
1510 // separately for each input. As a motivating example, consider:
1511 // bb1:
1512 // %v1 = ... ; constantrange<1, 5>
1513 // br label %merge
1514 // bb2:
1515 // %v2 = ... ; constantrange<10, 20>
1516 // br label %merge
1517 // merge:
1518 // %phi = phi [%v1, %v2] ; constantrange<1,20>
1519 // %pred = icmp eq i32 %phi, 8
1520 // We can't tell from the lattice value for '%phi' that '%pred' is false
1521 // along each path, but by checking the predicate over each input separately,
1522 // we can.
1523 // We limit the search to one step backwards from the current BB and value.
1524 // We could consider extending this to search further backwards through the
1525 // CFG and/or value graph, but there are non-obvious compile time vs quality
1526 // tradeoffs.
Philip Reames66ab0f02015-06-16 00:49:59 +00001527 if (CxtI) {
Philip Reamesbb11d622015-08-31 18:31:48 +00001528 BasicBlock *BB = CxtI->getParent();
1529
1530 // Function entry or an unreachable block. Bail to avoid confusing
1531 // analysis below.
1532 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
1533 if (PI == PE)
1534 return Unknown;
1535
1536 // If V is a PHI node in the same block as the context, we need to ask
1537 // questions about the predicate as applied to the incoming value along
1538 // each edge. This is useful for eliminating cases where the predicate is
1539 // known along all incoming edges.
1540 if (auto *PHI = dyn_cast<PHINode>(V))
1541 if (PHI->getParent() == BB) {
1542 Tristate Baseline = Unknown;
1543 for (unsigned i = 0, e = PHI->getNumIncomingValues(); i < e; i++) {
1544 Value *Incoming = PHI->getIncomingValue(i);
1545 BasicBlock *PredBB = PHI->getIncomingBlock(i);
1546 // Note that PredBB may be BB itself.
1547 Tristate Result = getPredicateOnEdge(Pred, Incoming, C, PredBB, BB,
1548 CxtI);
1549
1550 // Keep going as long as we've seen a consistent known result for
1551 // all inputs.
1552 Baseline = (i == 0) ? Result /* First iteration */
1553 : (Baseline == Result ? Baseline : Unknown); /* All others */
1554 if (Baseline == Unknown)
1555 break;
1556 }
1557 if (Baseline != Unknown)
1558 return Baseline;
1559 }
1560
Philip Reames66ab0f02015-06-16 00:49:59 +00001561 // For a comparison where the V is outside this block, it's possible
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001562 // that we've branched on it before. Look to see if the value is known
Philip Reames66ab0f02015-06-16 00:49:59 +00001563 // on all incoming edges.
Philip Reamesbb11d622015-08-31 18:31:48 +00001564 if (!isa<Instruction>(V) ||
1565 cast<Instruction>(V)->getParent() != BB) {
Philip Reames66ab0f02015-06-16 00:49:59 +00001566 // For predecessor edge, determine if the comparison is true or false
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001567 // on that edge. If they're all true or all false, we can conclude
Philip Reames66ab0f02015-06-16 00:49:59 +00001568 // the value of the comparison in this block.
1569 Tristate Baseline = getPredicateOnEdge(Pred, V, C, *PI, BB, CxtI);
1570 if (Baseline != Unknown) {
1571 // Check that all remaining incoming values match the first one.
1572 while (++PI != PE) {
1573 Tristate Ret = getPredicateOnEdge(Pred, V, C, *PI, BB, CxtI);
1574 if (Ret != Baseline) break;
1575 }
1576 // If we terminated early, then one of the values didn't match.
1577 if (PI == PE) {
1578 return Baseline;
1579 }
1580 }
1581 }
1582 }
1583 return Unknown;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001584}
1585
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001586void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky11678bd2010-12-15 18:57:18 +00001587 BasicBlock *NewSucc) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001588 if (PImpl) {
1589 const DataLayout &DL = PredBB->getModule()->getDataLayout();
1590 getCache(PImpl, AC, &DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
1591 }
Owen Anderson208636f2010-08-18 18:39:01 +00001592}
1593
1594void LazyValueInfo::eraseBlock(BasicBlock *BB) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001595 if (PImpl) {
1596 const DataLayout &DL = BB->getModule()->getDataLayout();
1597 getCache(PImpl, AC, &DL, DT).eraseBlock(BB);
1598 }
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001599}