blob: bad2de9e5f5e0c0698e1b3f0e7c166e355fe3c61 [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//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Chris Lattner741c94c2009-11-11 00:22:30 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file defines the interface for lazy computation of value constraint
10// information.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/Analysis/LazyValueInfo.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000015#include "llvm/ADT/DenseSet.h"
John Regehr3a1c9d52018-11-21 05:24:12 +000016#include "llvm/ADT/Optional.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000017#include "llvm/ADT/STLExtras.h"
Daniel Jasperaec2fa32016-12-19 08:22:17 +000018#include "llvm/Analysis/AssumptionCache.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000019#include "llvm/Analysis/ConstantFolding.h"
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +000020#include "llvm/Analysis/InstructionSimplify.h"
Chandler Carruth62d42152015-01-15 02:16:27 +000021#include "llvm/Analysis/TargetLibraryInfo.h"
Florian Hahn8af01572017-09-28 11:09:22 +000022#include "llvm/Analysis/ValueLattice.h"
Reid Kleckner05da2fe2019-11-13 13:15:01 -080023#include "llvm/Analysis/ValueTracking.h"
Anna Thomase27b39a2017-03-22 19:27:12 +000024#include "llvm/IR/AssemblyAnnotationWriter.h"
Chandler Carruth1305dc32014-03-04 11:45:46 +000025#include "llvm/IR/CFG.h"
Chandler Carruth8cd041e2014-03-04 12:24:34 +000026#include "llvm/IR/ConstantRange.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000027#include "llvm/IR/Constants.h"
28#include "llvm/IR/DataLayout.h"
Hal Finkel7e184492014-09-07 20:29:59 +000029#include "llvm/IR/Dominators.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000030#include "llvm/IR/Instructions.h"
31#include "llvm/IR/IntrinsicInst.h"
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +000032#include "llvm/IR/Intrinsics.h"
Philip Reameseb3e9da2015-10-29 03:57:17 +000033#include "llvm/IR/LLVMContext.h"
Chandler Carruth820a9082014-03-04 11:08:18 +000034#include "llvm/IR/PatternMatch.h"
Chandler Carruth4220e9c2014-03-04 11:17:44 +000035#include "llvm/IR/ValueHandle.h"
Reid Kleckner05da2fe2019-11-13 13:15:01 -080036#include "llvm/InitializePasses.h"
Chris Lattnerb584d1e2009-11-12 01:22:16 +000037#include "llvm/Support/Debug.h"
Anna Thomase27b39a2017-03-22 19:27:12 +000038#include "llvm/Support/FormattedStream.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000039#include "llvm/Support/raw_ostream.h"
Bill Wendling4ec081a2012-01-11 23:43:34 +000040#include <map>
Chris Lattner741c94c2009-11-11 00:22:30 +000041using namespace llvm;
Benjamin Kramerd9d80b12012-03-02 15:34:43 +000042using namespace PatternMatch;
Chris Lattner741c94c2009-11-11 00:22:30 +000043
Chandler Carruthf1221bd2014-04-22 02:48:03 +000044#define DEBUG_TYPE "lazy-value-info"
45
Daniel Berlin9c92a462017-02-08 15:22:52 +000046// This is the number of worklist items we will process to try to discover an
47// answer for a given value.
48static const unsigned MaxProcessedPerValue = 500;
49
Sean Silva687019f2016-06-13 22:01:25 +000050char LazyValueInfoWrapperPass::ID = 0;
Reid Kleckner05da2fe2019-11-13 13:15:01 -080051LazyValueInfoWrapperPass::LazyValueInfoWrapperPass() : FunctionPass(ID) {
52 initializeLazyValueInfoWrapperPassPass(*PassRegistry::getPassRegistry());
53}
Sean Silva687019f2016-06-13 22:01:25 +000054INITIALIZE_PASS_BEGIN(LazyValueInfoWrapperPass, "lazy-value-info",
Chad Rosier43a33062011-12-02 01:26:24 +000055 "Lazy Value Information Analysis", false, true)
Daniel Jasperaec2fa32016-12-19 08:22:17 +000056INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
Chandler Carruthb98f63d2015-01-15 10:41:28 +000057INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Sean Silva687019f2016-06-13 22:01:25 +000058INITIALIZE_PASS_END(LazyValueInfoWrapperPass, "lazy-value-info",
Owen Andersondf7a4f22010-10-07 22:25:06 +000059 "Lazy Value Information Analysis", false, true)
Chris Lattner741c94c2009-11-11 00:22:30 +000060
61namespace llvm {
Sean Silva687019f2016-06-13 22:01:25 +000062 FunctionPass *createLazyValueInfoPass() { return new LazyValueInfoWrapperPass(); }
Chris Lattner741c94c2009-11-11 00:22:30 +000063}
64
Chandler Carruthdab4eae2016-11-23 17:53:26 +000065AnalysisKey LazyValueAnalysis::Key;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +000066
Philip Reamesed8cd0d2016-02-02 22:03:19 +000067/// Returns true if this lattice value represents at most one possible value.
68/// This is as precise as any lattice value can get while still representing
69/// reachable code.
Florian Hahn8af01572017-09-28 11:09:22 +000070static bool hasSingleValue(const ValueLatticeElement &Val) {
Philip Reamesed8cd0d2016-02-02 22:03:19 +000071 if (Val.isConstantRange() &&
72 Val.getConstantRange().isSingleElement())
73 // Integer constants are single element ranges
74 return true;
75 if (Val.isConstant())
76 // Non integer constants
77 return true;
78 return false;
79}
80
81/// Combine two sets of facts about the same value into a single set of
82/// facts. Note that this method is not suitable for merging facts along
83/// different paths in a CFG; that's what the mergeIn function is for. This
84/// is for merging facts gathered about the same value at the same location
85/// through two independent means.
86/// Notes:
87/// * This method does not promise to return the most precise possible lattice
88/// value implied by A and B. It is allowed to return any lattice element
89/// which is at least as strong as *either* A or B (unless our facts
NAKAMURA Takumif2529512016-07-04 01:26:27 +000090/// conflict, see below).
Philip Reamesed8cd0d2016-02-02 22:03:19 +000091/// * Due to unreachable code, the intersection of two lattice values could be
92/// contradictory. If this happens, we return some valid lattice value so as
93/// not confuse the rest of LVI. Ideally, we'd always return Undefined, but
94/// we do not make this guarantee. TODO: This would be a useful enhancement.
Florian Hahn8af01572017-09-28 11:09:22 +000095static ValueLatticeElement intersect(const ValueLatticeElement &A,
96 const ValueLatticeElement &B) {
Philip Reamesed8cd0d2016-02-02 22:03:19 +000097 // Undefined is the strongest state. It means the value is known to be along
98 // an unreachable path.
99 if (A.isUndefined())
100 return A;
101 if (B.isUndefined())
102 return B;
103
104 // If we gave up for one, but got a useable fact from the other, use it.
105 if (A.isOverdefined())
106 return B;
107 if (B.isOverdefined())
108 return A;
109
110 // Can't get any more precise than constants.
111 if (hasSingleValue(A))
112 return A;
113 if (hasSingleValue(B))
114 return B;
115
116 // Could be either constant range or not constant here.
117 if (!A.isConstantRange() || !B.isConstantRange()) {
118 // TODO: Arbitrary choice, could be improved
119 return A;
120 }
121
122 // Intersect two constant ranges
123 ConstantRange Range =
124 A.getConstantRange().intersectWith(B.getConstantRange());
125 // Note: An empty range is implicitly converted to overdefined internally.
126 // TODO: We could instead use Undefined here since we've proven a conflict
NAKAMURA Takumif2529512016-07-04 01:26:27 +0000127 // and thus know this path must be unreachable.
Florian Hahn8af01572017-09-28 11:09:22 +0000128 return ValueLatticeElement::getRange(std::move(Range));
Philip Reamesed8cd0d2016-02-02 22:03:19 +0000129}
Philip Reamesd1f829d2016-02-02 21:57:37 +0000130
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000131//===----------------------------------------------------------------------===//
Chris Lattneraf025d32009-11-15 19:59:49 +0000132// LazyValueInfoCache Decl
Chris Lattnerfde1f8d2009-11-11 02:08:33 +0000133//===----------------------------------------------------------------------===//
134
Chris Lattneraf025d32009-11-15 19:59:49 +0000135namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000136 /// A callback value handle updates the cache when values are erased.
Owen Anderson118ac802011-01-05 21:15:29 +0000137 class LazyValueInfoCache;
David Blaikie774b5842015-08-03 22:30:24 +0000138 struct LVIValueHandle final : public CallbackVH {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800139 // Needs to access getValPtr(), which is protected.
140 friend struct DenseMapInfo<LVIValueHandle>;
141
Owen Anderson118ac802011-01-05 21:15:29 +0000142 LazyValueInfoCache *Parent;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000143
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800144 LVIValueHandle(Value *V, LazyValueInfoCache *P)
Owen Anderson118ac802011-01-05 21:15:29 +0000145 : CallbackVH(V), Parent(P) { }
Craig Toppere9ba7592014-03-05 07:30:04 +0000146
147 void deleted() override;
148 void allUsesReplacedWith(Value *V) override {
Owen Anderson118ac802011-01-05 21:15:29 +0000149 deleted();
150 }
151 };
Justin Lebar58b377e2016-07-27 22:33:36 +0000152} // end anonymous namespace
Owen Anderson118ac802011-01-05 21:15:29 +0000153
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000154namespace {
Sanjay Patel2a385e22015-01-09 16:47:20 +0000155 /// This is the cache kept by LazyValueInfo which
Chris Lattneraf025d32009-11-15 19:59:49 +0000156 /// maintains information about queries across the clients' queries.
157 class LazyValueInfoCache {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800158 /// This is all of the cached block information for exactly one Value*.
159 /// The entries are sorted by the BasicBlock* of the
160 /// entries, allowing us to do a lookup with a binary search.
161 /// Over-defined lattice values are recorded in OverDefinedCache to reduce
162 /// memory overhead.
163 struct ValueCacheEntryTy {
164 ValueCacheEntryTy(Value *V, LazyValueInfoCache *P) : Handle(V, P) {}
165 LVIValueHandle Handle;
166 SmallDenseMap<PoisoningVH<BasicBlock>, ValueLatticeElement, 4> BlockVals;
Justin Lebar58b377e2016-07-27 22:33:36 +0000167 };
Chris Lattneraf025d32009-11-15 19:59:49 +0000168
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800169 /// This tracks, on a per-block basis, the set of values that are
170 /// over-defined at the end of that block.
171 typedef DenseMap<PoisoningVH<BasicBlock>, SmallPtrSet<Value *, 4>>
172 OverDefinedCacheTy;
173 /// Keep track of all blocks that we have ever seen, so we
174 /// don't spend time removing unused blocks from our caches.
175 DenseSet<PoisoningVH<BasicBlock> > SeenBlocks;
176
177 /// This is all of the cached information for all values,
178 /// mapped from Value* to key information.
179 DenseMap<Value *, std::unique_ptr<ValueCacheEntryTy>> ValueCache;
180 OverDefinedCacheTy OverDefinedCache;
181
Anna Thomase27b39a2017-03-22 19:27:12 +0000182
Philip Reames9db79482016-09-12 22:38:44 +0000183 public:
Florian Hahn8af01572017-09-28 11:09:22 +0000184 void insertResult(Value *Val, BasicBlock *BB,
185 const ValueLatticeElement &Result) {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800186 SeenBlocks.insert(BB);
187
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000188 // Insert over-defined values into their own cache to reduce memory
189 // overhead.
Hans Wennborg45172ac2014-11-25 17:23:05 +0000190 if (Result.isOverdefined())
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800191 OverDefinedCache[BB].insert(Val);
192 else {
193 auto It = ValueCache.find_as(Val);
194 if (It == ValueCache.end()) {
195 ValueCache[Val] = std::make_unique<ValueCacheEntryTy>(Val, this);
196 It = ValueCache.find_as(Val);
197 assert(It != ValueCache.end() && "Val was just added to the map!");
198 }
199 It->second->BlockVals[BB] = Result;
200 }
201 }
Owen Andersonc1561b82010-07-30 23:59:40 +0000202
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800203 bool isOverdefined(Value *V, BasicBlock *BB) const {
204 auto ODI = OverDefinedCache.find(BB);
205
206 if (ODI == OverDefinedCache.end())
207 return false;
208
209 return ODI->second.count(V);
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000210 }
211
Philip Reames9db79482016-09-12 22:38:44 +0000212 bool hasCachedValueInfo(Value *V, BasicBlock *BB) const {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800213 if (isOverdefined(V, BB))
214 return true;
215
216 auto I = ValueCache.find_as(V);
217 if (I == ValueCache.end())
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000218 return false;
219
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800220 return I->second->BlockVals.count(BB);
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000221 }
222
Florian Hahn8af01572017-09-28 11:09:22 +0000223 ValueLatticeElement getCachedValueInfo(Value *V, BasicBlock *BB) const {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800224 if (isOverdefined(V, BB))
Florian Hahn8af01572017-09-28 11:09:22 +0000225 return ValueLatticeElement::getOverdefined();
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000226
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800227 auto I = ValueCache.find_as(V);
228 if (I == ValueCache.end())
Florian Hahn8af01572017-09-28 11:09:22 +0000229 return ValueLatticeElement();
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800230 auto BBI = I->second->BlockVals.find(BB);
231 if (BBI == I->second->BlockVals.end())
232 return ValueLatticeElement();
233 return BBI->second;
Nikita Popov21fbd552019-12-04 20:51:31 +0100234 }
235
Philip Reames92e5e1b2016-09-12 21:46:58 +0000236 /// clear - Empty the cache.
237 void clear() {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800238 SeenBlocks.clear();
239 ValueCache.clear();
240 OverDefinedCache.clear();
Philip Reames92e5e1b2016-09-12 21:46:58 +0000241 }
242
Philip Reamesb627aec2016-09-12 22:03:36 +0000243 /// Inform the cache that a given value has been deleted.
244 void eraseValue(Value *V);
245
246 /// This is part of the update interface to inform the cache
247 /// that a block has been deleted.
248 void eraseBlock(BasicBlock *BB);
249
Philip Reames9db79482016-09-12 22:38:44 +0000250 /// Updates the cache to remove any influence an overdefined value in
251 /// OldSucc might have (unless also overdefined in NewSucc). This just
252 /// flushes elements from the cache and does not add any.
253 void threadEdgeImpl(BasicBlock *OldSucc,BasicBlock *NewSucc);
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800254
255 friend struct LVIValueHandle;
Philip Reames92e5e1b2016-09-12 21:46:58 +0000256 };
Philip Reamesb627aec2016-09-12 22:03:36 +0000257}
Philip Reames92e5e1b2016-09-12 21:46:58 +0000258
Eric Christopher7a3ad482019-11-12 15:51:51 -0800259void LazyValueInfoCache::eraseValue(Value *V) {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800260 for (auto I = OverDefinedCache.begin(), E = OverDefinedCache.end(); I != E;) {
261 // Copy and increment the iterator immediately so we can erase behind
262 // ourselves.
263 auto Iter = I++;
264 SmallPtrSetImpl<Value *> &ValueSet = Iter->second;
265 ValueSet.erase(V);
266 if (ValueSet.empty())
267 OverDefinedCache.erase(Iter);
Philip Reamesb627aec2016-09-12 22:03:36 +0000268 }
Philip Reamesb627aec2016-09-12 22:03:36 +0000269
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800270 ValueCache.erase(V);
Philip Reamesb627aec2016-09-12 22:03:36 +0000271}
272
273void LVIValueHandle::deleted() {
274 // This erasure deallocates *this, so it MUST happen after we're done
275 // using any and all members of *this.
276 Parent->eraseValue(*this);
277}
278
279void LazyValueInfoCache::eraseBlock(BasicBlock *BB) {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800280 // Shortcut if we have never seen this block.
281 DenseSet<PoisoningVH<BasicBlock> >::iterator I = SeenBlocks.find(BB);
282 if (I == SeenBlocks.end())
283 return;
284 SeenBlocks.erase(I);
285
286 auto ODI = OverDefinedCache.find(BB);
287 if (ODI != OverDefinedCache.end())
288 OverDefinedCache.erase(ODI);
289
290 for (auto &I : ValueCache)
291 I.second->BlockVals.erase(BB);
Philip Reamesb627aec2016-09-12 22:03:36 +0000292}
293
Philip Reames9db79482016-09-12 22:38:44 +0000294void LazyValueInfoCache::threadEdgeImpl(BasicBlock *OldSucc,
295 BasicBlock *NewSucc) {
296 // When an edge in the graph has been threaded, values that we could not
297 // determine a value for before (i.e. were marked overdefined) may be
298 // possible to solve now. We do NOT try to proactively update these values.
299 // Instead, we clear their entries from the cache, and allow lazy updating to
300 // recompute them when needed.
301
302 // The updating process is fairly simple: we need to drop cached info
303 // for all values that were marked overdefined in OldSucc, and for those same
304 // values in any successor of OldSucc (except NewSucc) in which they were
305 // also marked overdefined.
306 std::vector<BasicBlock*> worklist;
307 worklist.push_back(OldSucc);
308
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800309 auto I = OverDefinedCache.find(OldSucc);
310 if (I == OverDefinedCache.end())
Philip Reames9db79482016-09-12 22:38:44 +0000311 return; // Nothing to process here.
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800312 SmallVector<Value *, 4> ValsToClear(I->second.begin(), I->second.end());
Philip Reames9db79482016-09-12 22:38:44 +0000313
314 // Use a worklist to perform a depth-first search of OldSucc's successors.
315 // NOTE: We do not need a visited list since any blocks we have already
316 // visited will have had their overdefined markers cleared already, and we
317 // thus won't loop to their successors.
318 while (!worklist.empty()) {
319 BasicBlock *ToUpdate = worklist.back();
320 worklist.pop_back();
321
322 // Skip blocks only accessible through NewSucc.
323 if (ToUpdate == NewSucc) continue;
324
Philip Reames1e48efc2016-12-30 17:56:47 +0000325 // If a value was marked overdefined in OldSucc, and is here too...
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800326 auto OI = OverDefinedCache.find(ToUpdate);
327 if (OI == OverDefinedCache.end())
Philip Reames1e48efc2016-12-30 17:56:47 +0000328 continue;
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800329 SmallPtrSetImpl<Value *> &ValueSet = OI->second;
Philip Reames1e48efc2016-12-30 17:56:47 +0000330
Philip Reames9db79482016-09-12 22:38:44 +0000331 bool changed = false;
332 for (Value *V : ValsToClear) {
Philip Reamesfdbb05b2016-12-30 22:09:10 +0000333 if (!ValueSet.erase(V))
Philip Reames9db79482016-09-12 22:38:44 +0000334 continue;
335
Philip Reames9db79482016-09-12 22:38:44 +0000336 // If we removed anything, then we potentially need to update
337 // blocks successors too.
338 changed = true;
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800339
340 if (ValueSet.empty()) {
341 OverDefinedCache.erase(OI);
342 break;
343 }
Philip Reames9db79482016-09-12 22:38:44 +0000344 }
345
346 if (!changed) continue;
347
348 worklist.insert(worklist.end(), succ_begin(ToUpdate), succ_end(ToUpdate));
349 }
350}
351
Anna Thomas4acfc7e2017-06-06 19:25:31 +0000352
353namespace {
354/// An assembly annotator class to print LazyValueCache information in
355/// comments.
356class LazyValueInfoImpl;
357class LazyValueInfoAnnotatedWriter : public AssemblyAnnotationWriter {
358 LazyValueInfoImpl *LVIImpl;
359 // While analyzing which blocks we can solve values for, we need the dominator
360 // information. Since this is an optional parameter in LVI, we require this
361 // DomTreeAnalysis pass in the printer pass, and pass the dominator
362 // tree to the LazyValueInfoAnnotatedWriter.
363 DominatorTree &DT;
364
365public:
366 LazyValueInfoAnnotatedWriter(LazyValueInfoImpl *L, DominatorTree &DTree)
367 : LVIImpl(L), DT(DTree) {}
368
369 virtual void emitBasicBlockStartAnnot(const BasicBlock *BB,
370 formatted_raw_ostream &OS);
371
372 virtual void emitInstructionAnnot(const Instruction *I,
373 formatted_raw_ostream &OS);
374};
375}
Philip Reamesb627aec2016-09-12 22:03:36 +0000376namespace {
Philip Reames92e5e1b2016-09-12 21:46:58 +0000377 // The actual implementation of the lazy analysis and update. Note that the
378 // inheritance from LazyValueInfoCache is intended to be temporary while
379 // splitting the code and then transitioning to a has-a relationship.
Philip Reames9db79482016-09-12 22:38:44 +0000380 class LazyValueInfoImpl {
381
382 /// Cached results from previous queries
383 LazyValueInfoCache TheCache;
Philip Reames92e5e1b2016-09-12 21:46:58 +0000384
385 /// This stack holds the state of the value solver during a query.
386 /// It basically emulates the callstack of the naive
387 /// recursive value lookup process.
Daniel Berlin9c92a462017-02-08 15:22:52 +0000388 SmallVector<std::pair<BasicBlock*, Value*>, 8> BlockValueStack;
Philip Reames92e5e1b2016-09-12 21:46:58 +0000389
390 /// Keeps track of which block-value pairs are in BlockValueStack.
391 DenseSet<std::pair<BasicBlock*, Value*> > BlockValueSet;
392
393 /// Push BV onto BlockValueStack unless it's already in there.
394 /// Returns true on success.
395 bool pushBlockValue(const std::pair<BasicBlock *, Value *> &BV) {
396 if (!BlockValueSet.insert(BV).second)
397 return false; // It's already in the stack.
398
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000399 LLVM_DEBUG(dbgs() << "PUSH: " << *BV.second << " in "
400 << BV.first->getName() << "\n");
Daniel Berlin9c92a462017-02-08 15:22:52 +0000401 BlockValueStack.push_back(BV);
Philip Reames92e5e1b2016-09-12 21:46:58 +0000402 return true;
403 }
404
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000405 AssumptionCache *AC; ///< A pointer to the cache of @llvm.assume calls.
Philip Reames92e5e1b2016-09-12 21:46:58 +0000406 const DataLayout &DL; ///< A mandatory DataLayout
407 DominatorTree *DT; ///< An optional DT pointer.
Brian M. Rzyckif1a7df52018-02-16 16:35:17 +0000408 DominatorTree *DisabledDT; ///< Stores DT if it's disabled.
Philip Reames92e5e1b2016-09-12 21:46:58 +0000409
Florian Hahn8af01572017-09-28 11:09:22 +0000410 ValueLatticeElement getBlockValue(Value *Val, BasicBlock *BB);
Philip Reames92e5e1b2016-09-12 21:46:58 +0000411 bool getEdgeValue(Value *V, BasicBlock *F, BasicBlock *T,
Florian Hahn8af01572017-09-28 11:09:22 +0000412 ValueLatticeElement &Result, Instruction *CxtI = nullptr);
Philip Reames92e5e1b2016-09-12 21:46:58 +0000413 bool hasBlockValue(Value *Val, BasicBlock *BB);
414
415 // These methods process one work item and may add more. A false value
416 // returned means that the work item was not completely processed and must
417 // be revisited after going through the new items.
418 bool solveBlockValue(Value *Val, BasicBlock *BB);
Florian Hahn8af01572017-09-28 11:09:22 +0000419 bool solveBlockValueImpl(ValueLatticeElement &Res, Value *Val,
420 BasicBlock *BB);
421 bool solveBlockValueNonLocal(ValueLatticeElement &BBLV, Value *Val,
Philip Reames92e5e1b2016-09-12 21:46:58 +0000422 BasicBlock *BB);
Florian Hahn8af01572017-09-28 11:09:22 +0000423 bool solveBlockValuePHINode(ValueLatticeElement &BBLV, PHINode *PN,
424 BasicBlock *BB);
425 bool solveBlockValueSelect(ValueLatticeElement &BBLV, SelectInst *S,
426 BasicBlock *BB);
John Regehr3a1c9d52018-11-21 05:24:12 +0000427 Optional<ConstantRange> getRangeForOperand(unsigned Op, Instruction *I,
428 BasicBlock *BB);
Nikita Popov17367b02019-05-25 09:53:37 +0000429 bool solveBlockValueBinaryOpImpl(
430 ValueLatticeElement &BBLV, Instruction *I, BasicBlock *BB,
431 std::function<ConstantRange(const ConstantRange &,
432 const ConstantRange &)> OpFn);
Florian Hahn8af01572017-09-28 11:09:22 +0000433 bool solveBlockValueBinaryOp(ValueLatticeElement &BBLV, BinaryOperator *BBI,
434 BasicBlock *BB);
435 bool solveBlockValueCast(ValueLatticeElement &BBLV, CastInst *CI,
Philip Reames92e5e1b2016-09-12 21:46:58 +0000436 BasicBlock *BB);
Nikita Popov024b18a2019-05-25 09:53:45 +0000437 bool solveBlockValueOverflowIntrinsic(
438 ValueLatticeElement &BBLV, WithOverflowInst *WO, BasicBlock *BB);
Roman Lebedev8eda8f82019-10-23 18:05:05 +0300439 bool solveBlockValueSaturatingIntrinsic(ValueLatticeElement &BBLV,
440 SaturatingInst *SI, BasicBlock *BB);
Nikita Popov6bb50412019-05-25 16:44:14 +0000441 bool solveBlockValueIntrinsic(ValueLatticeElement &BBLV, IntrinsicInst *II,
442 BasicBlock *BB);
Nikita Popovac582132019-08-31 09:58:50 +0000443 bool solveBlockValueExtractValue(ValueLatticeElement &BBLV,
444 ExtractValueInst *EVI, BasicBlock *BB);
Philip Reames92e5e1b2016-09-12 21:46:58 +0000445 void intersectAssumeOrGuardBlockValueConstantRange(Value *Val,
Florian Hahn8af01572017-09-28 11:09:22 +0000446 ValueLatticeElement &BBLV,
Craig Topper9277a862017-06-02 17:28:12 +0000447 Instruction *BBI);
Philip Reames92e5e1b2016-09-12 21:46:58 +0000448
449 void solve();
450
451 public:
Sanjay Patel2a385e22015-01-09 16:47:20 +0000452 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000453 /// value for the specified Value* at the end of the specified block.
Florian Hahn8af01572017-09-28 11:09:22 +0000454 ValueLatticeElement getValueInBlock(Value *V, BasicBlock *BB,
455 Instruction *CxtI = nullptr);
Hal Finkel7e184492014-09-07 20:29:59 +0000456
Sanjay Patel2a385e22015-01-09 16:47:20 +0000457 /// This is the query interface to determine the lattice
Hal Finkel7e184492014-09-07 20:29:59 +0000458 /// value for the specified Value* at the specified instruction (generally
459 /// from an assume intrinsic).
Florian Hahn8af01572017-09-28 11:09:22 +0000460 ValueLatticeElement getValueAt(Value *V, Instruction *CxtI);
Chris Lattneraf025d32009-11-15 19:59:49 +0000461
Sanjay Patel2a385e22015-01-09 16:47:20 +0000462 /// This is the query interface to determine the lattice
Chris Lattneraf025d32009-11-15 19:59:49 +0000463 /// value for the specified Value* that is true on the specified edge.
Florian Hahn8af01572017-09-28 11:09:22 +0000464 ValueLatticeElement getValueOnEdge(Value *V, BasicBlock *FromBB,
465 BasicBlock *ToBB,
466 Instruction *CxtI = nullptr);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000467
Philip Reames9db79482016-09-12 22:38:44 +0000468 /// Complete flush all previously computed values
469 void clear() {
470 TheCache.clear();
471 }
472
Anna Thomas4acfc7e2017-06-06 19:25:31 +0000473 /// Printing the LazyValueInfo Analysis.
474 void printLVI(Function &F, DominatorTree &DTree, raw_ostream &OS) {
475 LazyValueInfoAnnotatedWriter Writer(this, DTree);
476 F.print(OS, &Writer);
Anna Thomase27b39a2017-03-22 19:27:12 +0000477 }
478
Philip Reames9db79482016-09-12 22:38:44 +0000479 /// This is part of the update interface to inform the cache
480 /// that a block has been deleted.
481 void eraseBlock(BasicBlock *BB) {
482 TheCache.eraseBlock(BB);
483 }
484
Brian M. Rzyckif1a7df52018-02-16 16:35:17 +0000485 /// Disables use of the DominatorTree within LVI.
486 void disableDT() {
487 if (DT) {
488 assert(!DisabledDT && "Both DT and DisabledDT are not nullptr!");
489 std::swap(DT, DisabledDT);
490 }
491 }
492
493 /// Enables use of the DominatorTree within LVI. Does nothing if the class
494 /// instance was initialized without a DT pointer.
495 void enableDT() {
496 if (DisabledDT) {
497 assert(!DT && "Both DT and DisabledDT are not nullptr!");
498 std::swap(DT, DisabledDT);
499 }
500 }
501
Sanjay Patel2a385e22015-01-09 16:47:20 +0000502 /// This is the update interface to inform the cache that an edge from
503 /// PredBB to OldSucc has been threaded to be from PredBB to NewSucc.
Owen Andersonaa7f66b2010-07-26 18:48:03 +0000504 void threadEdge(BasicBlock *PredBB,BasicBlock *OldSucc,BasicBlock *NewSucc);
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000505
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000506 LazyValueInfoImpl(AssumptionCache *AC, const DataLayout &DL,
507 DominatorTree *DT = nullptr)
Brian M. Rzyckif1a7df52018-02-16 16:35:17 +0000508 : AC(AC), DL(DL), DT(DT), DisabledDT(nullptr) {}
Chris Lattneraf025d32009-11-15 19:59:49 +0000509 };
510} // end anonymous namespace
511
Anna Thomas4acfc7e2017-06-06 19:25:31 +0000512
Philip Reames92e5e1b2016-09-12 21:46:58 +0000513void LazyValueInfoImpl::solve() {
Daniel Berlin9c92a462017-02-08 15:22:52 +0000514 SmallVector<std::pair<BasicBlock *, Value *>, 8> StartingStack(
515 BlockValueStack.begin(), BlockValueStack.end());
516
517 unsigned processedCount = 0;
Owen Anderson6f060af2011-01-05 23:26:22 +0000518 while (!BlockValueStack.empty()) {
Daniel Berlin9c92a462017-02-08 15:22:52 +0000519 processedCount++;
520 // Abort if we have to process too many values to get a result for this one.
521 // Because of the design of the overdefined cache currently being per-block
522 // to avoid naming-related issues (IE it wants to try to give different
523 // results for the same name in different blocks), overdefined results don't
524 // get cached globally, which in turn means we will often try to rediscover
525 // the same overdefined result again and again. Once something like
526 // PredicateInfo is used in LVI or CVP, we should be able to make the
527 // overdefined cache global, and remove this throttle.
528 if (processedCount > MaxProcessedPerValue) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000529 LLVM_DEBUG(
530 dbgs() << "Giving up on stack because we are getting too deep\n");
Daniel Berlin9c92a462017-02-08 15:22:52 +0000531 // Fill in the original values
532 while (!StartingStack.empty()) {
533 std::pair<BasicBlock *, Value *> &e = StartingStack.back();
534 TheCache.insertResult(e.second, e.first,
Florian Hahn8af01572017-09-28 11:09:22 +0000535 ValueLatticeElement::getOverdefined());
Daniel Berlin9c92a462017-02-08 15:22:52 +0000536 StartingStack.pop_back();
537 }
538 BlockValueSet.clear();
539 BlockValueStack.clear();
540 return;
541 }
Vitaly Buka9987d982017-02-09 09:28:05 +0000542 std::pair<BasicBlock *, Value *> e = BlockValueStack.back();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000543 assert(BlockValueSet.count(e) && "Stack value should be in BlockValueSet!");
544
Nuno Lopese6e04902012-06-28 01:16:18 +0000545 if (solveBlockValue(e.second, e.first)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000546 // The work item was completely processed.
Daniel Berlin9c92a462017-02-08 15:22:52 +0000547 assert(BlockValueStack.back() == e && "Nothing should have been pushed!");
Philip Reames9db79482016-09-12 22:38:44 +0000548 assert(TheCache.hasCachedValueInfo(e.second, e.first) &&
Akira Hatanaka2992bee2015-12-11 00:49:47 +0000549 "Result should be in cache!");
Hans Wennborg45172ac2014-11-25 17:23:05 +0000550
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000551 LLVM_DEBUG(
552 dbgs() << "POP " << *e.second << " in " << e.first->getName() << " = "
553 << TheCache.getCachedValueInfo(e.second, e.first) << "\n");
Philip Reames44456b82016-02-02 03:15:40 +0000554
Daniel Berlin9c92a462017-02-08 15:22:52 +0000555 BlockValueStack.pop_back();
Hans Wennborg45172ac2014-11-25 17:23:05 +0000556 BlockValueSet.erase(e);
557 } else {
558 // More work needs to be done before revisiting.
Daniel Berlin9c92a462017-02-08 15:22:52 +0000559 assert(BlockValueStack.back() != e && "Stack should have been pushed!");
Nuno Lopese6e04902012-06-28 01:16:18 +0000560 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000561 }
562}
563
Philip Reames92e5e1b2016-09-12 21:46:58 +0000564bool LazyValueInfoImpl::hasBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000565 // If already a constant, there is nothing to compute.
566 if (isa<Constant>(Val))
567 return true;
568
Philip Reames9db79482016-09-12 22:38:44 +0000569 return TheCache.hasCachedValueInfo(Val, BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000570}
571
Florian Hahn8af01572017-09-28 11:09:22 +0000572ValueLatticeElement LazyValueInfoImpl::getBlockValue(Value *Val,
573 BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000574 // If already a constant, there is nothing to compute.
575 if (Constant *VC = dyn_cast<Constant>(Val))
Florian Hahn8af01572017-09-28 11:09:22 +0000576 return ValueLatticeElement::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000577
Philip Reames9db79482016-09-12 22:38:44 +0000578 return TheCache.getCachedValueInfo(Val, BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000579}
580
Florian Hahn8af01572017-09-28 11:09:22 +0000581static ValueLatticeElement getFromRangeMetadata(Instruction *BBI) {
Philip Reameseb3e9da2015-10-29 03:57:17 +0000582 switch (BBI->getOpcode()) {
583 default: break;
584 case Instruction::Load:
585 case Instruction::Call:
586 case Instruction::Invoke:
NAKAMURA Takumibd072a92016-07-25 00:59:46 +0000587 if (MDNode *Ranges = BBI->getMetadata(LLVMContext::MD_range))
Philip Reames70efccd2015-10-29 04:21:49 +0000588 if (isa<IntegerType>(BBI->getType())) {
Florian Hahn8af01572017-09-28 11:09:22 +0000589 return ValueLatticeElement::getRange(
590 getConstantRangeFromMetadata(*Ranges));
Philip Reameseb3e9da2015-10-29 03:57:17 +0000591 }
592 break;
593 };
Philip Reamesd1f829d2016-02-02 21:57:37 +0000594 // Nothing known - will be intersected with other facts
Florian Hahn8af01572017-09-28 11:09:22 +0000595 return ValueLatticeElement::getOverdefined();
Philip Reameseb3e9da2015-10-29 03:57:17 +0000596}
597
Philip Reames92e5e1b2016-09-12 21:46:58 +0000598bool LazyValueInfoImpl::solveBlockValue(Value *Val, BasicBlock *BB) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000599 if (isa<Constant>(Val))
600 return true;
601
Philip Reames9db79482016-09-12 22:38:44 +0000602 if (TheCache.hasCachedValueInfo(Val, BB)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +0000603 // If we have a cached value, use that.
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000604 LLVM_DEBUG(dbgs() << " reuse BB '" << BB->getName() << "' val="
605 << TheCache.getCachedValueInfo(Val, BB) << '\n');
Nick Lewycky55a700b2010-12-18 01:00:40 +0000606
Hans Wennborg45172ac2014-11-25 17:23:05 +0000607 // Since we're reusing a cached value, we don't need to update the
608 // OverDefinedCache. The cache will have been properly updated whenever the
609 // cached value was inserted.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000610 return true;
Chris Lattner2c708562009-11-15 20:00:52 +0000611 }
612
Hans Wennborg45172ac2014-11-25 17:23:05 +0000613 // Hold off inserting this value into the Cache in case we have to return
614 // false and come back later.
Florian Hahn8af01572017-09-28 11:09:22 +0000615 ValueLatticeElement Res;
Philip Reames05c435e2016-12-06 03:22:03 +0000616 if (!solveBlockValueImpl(Res, Val, BB))
617 // Work pushed, will revisit
618 return false;
619
620 TheCache.insertResult(Val, BB, Res);
621 return true;
622}
623
Florian Hahn8af01572017-09-28 11:09:22 +0000624bool LazyValueInfoImpl::solveBlockValueImpl(ValueLatticeElement &Res,
Philip Reames05c435e2016-12-06 03:22:03 +0000625 Value *Val, BasicBlock *BB) {
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000626
Chris Lattneraf025d32009-11-15 19:59:49 +0000627 Instruction *BBI = dyn_cast<Instruction>(Val);
Philip Reames05c435e2016-12-06 03:22:03 +0000628 if (!BBI || BBI->getParent() != BB)
629 return solveBlockValueNonLocal(Res, Val, BB);
Chris Lattner2c708562009-11-15 20:00:52 +0000630
Philip Reames05c435e2016-12-06 03:22:03 +0000631 if (PHINode *PN = dyn_cast<PHINode>(BBI))
632 return solveBlockValuePHINode(Res, PN, BB);
Owen Anderson80d19f02010-08-18 21:11:37 +0000633
Philip Reames05c435e2016-12-06 03:22:03 +0000634 if (auto *SI = dyn_cast<SelectInst>(BBI))
635 return solveBlockValueSelect(Res, SI, BB);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000636
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800637 // If this value is a nonnull pointer, record it's range and bailout. Note
638 // that for all other pointer typed values, we terminate the search at the
639 // definition. We could easily extend this to look through geps, bitcasts,
640 // and the like to prove non-nullness, but it's not clear that's worth it
641 // compile time wise. The context-insensitive value walk done inside
642 // isKnownNonZero gets most of the profitable cases at much less expense.
643 // This does mean that we have a sensitivity to where the defining
644 // instruction is placed, even if it could legally be hoisted much higher.
645 // That is unfortunate.
646 PointerType *PT = dyn_cast<PointerType>(BBI->getType());
647 if (PT && isKnownNonZero(BBI, DL)) {
648 Res = ValueLatticeElement::getNot(ConstantPointerNull::get(PT));
649 return true;
650 }
Davide Italianobd543d02016-05-25 22:29:34 +0000651 if (BBI->getType()->isIntegerTy()) {
Craig Topper0e5f1092017-06-03 07:47:08 +0000652 if (auto *CI = dyn_cast<CastInst>(BBI))
653 return solveBlockValueCast(Res, CI, BB);
654
John Regehr3a1c9d52018-11-21 05:24:12 +0000655 if (BinaryOperator *BO = dyn_cast<BinaryOperator>(BBI))
Craig Topper3778c892017-06-02 16:33:13 +0000656 return solveBlockValueBinaryOp(Res, BO, BB);
Nikita Popov024b18a2019-05-25 09:53:45 +0000657
658 if (auto *EVI = dyn_cast<ExtractValueInst>(BBI))
Nikita Popovac582132019-08-31 09:58:50 +0000659 return solveBlockValueExtractValue(Res, EVI, BB);
Nikita Popov6bb50412019-05-25 16:44:14 +0000660
661 if (auto *II = dyn_cast<IntrinsicInst>(BBI))
662 return solveBlockValueIntrinsic(Res, II, BB);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000663 }
Owen Anderson80d19f02010-08-18 21:11:37 +0000664
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000665 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
666 << "' - unknown inst def found.\n");
Philip Reamesa0c9f6e2016-03-04 22:27:39 +0000667 Res = getFromRangeMetadata(BBI);
Hans Wennborg45172ac2014-11-25 17:23:05 +0000668 return true;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000669}
670
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800671static bool InstructionDereferencesPointer(Instruction *I, Value *Ptr) {
Nick Lewycky55a700b2010-12-18 01:00:40 +0000672 if (LoadInst *L = dyn_cast<LoadInst>(I)) {
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800673 return L->getPointerAddressSpace() == 0 &&
674 GetUnderlyingObject(L->getPointerOperand(),
675 L->getModule()->getDataLayout()) == Ptr;
676 }
677 if (StoreInst *S = dyn_cast<StoreInst>(I)) {
678 return S->getPointerAddressSpace() == 0 &&
679 GetUnderlyingObject(S->getPointerOperand(),
680 S->getModule()->getDataLayout()) == Ptr;
681 }
682 if (MemIntrinsic *MI = dyn_cast<MemIntrinsic>(I)) {
683 if (MI->isVolatile()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000684
685 // FIXME: check whether it has a valuerange that excludes zero?
686 ConstantInt *Len = dyn_cast<ConstantInt>(MI->getLength());
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800687 if (!Len || Len->isZero()) return false;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000688
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800689 if (MI->getDestAddressSpace() == 0)
690 if (GetUnderlyingObject(MI->getRawDest(),
691 MI->getModule()->getDataLayout()) == Ptr)
692 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000693 if (MemTransferInst *MTI = dyn_cast<MemTransferInst>(MI))
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800694 if (MTI->getSourceAddressSpace() == 0)
695 if (GetUnderlyingObject(MTI->getRawSource(),
696 MTI->getModule()->getDataLayout()) == Ptr)
697 return true;
Nick Lewycky367f98f2011-01-15 09:16:12 +0000698 }
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800699 return false;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000700}
701
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800702/// Return true if the allocation associated with Val is ever dereferenced
703/// within the given basic block. This establishes the fact Val is not null,
704/// but does not imply that the memory at Val is dereferenceable. (Val may
705/// point off the end of the dereferenceable part of the object.)
706static bool isObjectDereferencedInBlock(Value *Val, BasicBlock *BB) {
707 assert(Val->getType()->isPointerTy());
Philip Reames3f83dbe2016-04-27 00:30:55 +0000708
709 const DataLayout &DL = BB->getModule()->getDataLayout();
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800710 Value *UnderlyingVal = GetUnderlyingObject(Val, DL);
711 // If 'GetUnderlyingObject' didn't converge, skip it. It won't converge
712 // inside InstructionDereferencesPointer either.
713 if (UnderlyingVal == GetUnderlyingObject(UnderlyingVal, DL, 1))
Philip Reames3f83dbe2016-04-27 00:30:55 +0000714 for (Instruction &I : *BB)
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800715 if (InstructionDereferencesPointer(&I, UnderlyingVal))
716 return true;
717 return false;
Philip Reames3f83dbe2016-04-27 00:30:55 +0000718}
719
Florian Hahn8af01572017-09-28 11:09:22 +0000720bool LazyValueInfoImpl::solveBlockValueNonLocal(ValueLatticeElement &BBLV,
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800721 Value *Val, BasicBlock *BB) {
Florian Hahn8af01572017-09-28 11:09:22 +0000722 ValueLatticeElement Result; // Start Undefined.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000723
Nick Lewycky55a700b2010-12-18 01:00:40 +0000724 // If this is the entry block, we must be asking about an argument. The
725 // value is overdefined.
726 if (BB == &BB->getParent()->getEntryBlock()) {
727 assert(isa<Argument>(Val) && "Unknown live-in to the entry block");
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800728 // Before giving up, see if we can prove the pointer non-null local to
729 // this particular block.
730 PointerType *PTy = dyn_cast<PointerType>(Val->getType());
731 if (PTy &&
732 (isKnownNonZero(Val, DL) ||
733 (isObjectDereferencedInBlock(Val, BB) &&
734 !NullPointerIsDefined(BB->getParent(), PTy->getAddressSpace())))) {
735 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy));
736 } else {
737 Result = ValueLatticeElement::getOverdefined();
738 }
739 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000740 return true;
741 }
742
743 // Loop over all of our predecessors, merging what we know from them into
Philip Reamesc80bd042017-02-07 00:25:24 +0000744 // result. If we encounter an unexplored predecessor, we eagerly explore it
745 // in a depth first manner. In practice, this has the effect of discovering
746 // paths we can't analyze eagerly without spending compile times analyzing
747 // other paths. This heuristic benefits from the fact that predecessors are
748 // frequently arranged such that dominating ones come first and we quickly
749 // find a path to function entry. TODO: We should consider explicitly
750 // canonicalizing to make this true rather than relying on this happy
Fangrui Songf78650a2018-07-30 19:41:25 +0000751 // accident.
Duncan P. N. Exon Smith6c990152014-07-21 17:06:51 +0000752 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) {
Florian Hahn8af01572017-09-28 11:09:22 +0000753 ValueLatticeElement EdgeResult;
Philip Reamesc80bd042017-02-07 00:25:24 +0000754 if (!getEdgeValue(Val, *PI, BB, EdgeResult))
755 // Explore that input, then return here
756 return false;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000757
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000758 Result.mergeIn(EdgeResult, DL);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000759
760 // If we hit overdefined, exit early. The BlockVals entry is already set
761 // to overdefined.
762 if (Result.isOverdefined()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000763 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
764 << "' - overdefined because of pred (non local).\n");
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800765 // Before giving up, see if we can prove the pointer non-null local to
766 // this particular block.
767 PointerType *PTy = dyn_cast<PointerType>(Val->getType());
768 if (PTy && isObjectDereferencedInBlock(Val, BB) &&
769 !NullPointerIsDefined(BB->getParent(), PTy->getAddressSpace())) {
770 Result = ValueLatticeElement::getNot(ConstantPointerNull::get(PTy));
771 }
772
Owen Anderson64c2c572010-12-20 18:18:16 +0000773 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000774 return true;
775 }
776 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000777
778 // Return the merged value, which is more precise than 'overdefined'.
779 assert(!Result.isOverdefined());
Owen Anderson64c2c572010-12-20 18:18:16 +0000780 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000781 return true;
782}
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000783
Florian Hahn8af01572017-09-28 11:09:22 +0000784bool LazyValueInfoImpl::solveBlockValuePHINode(ValueLatticeElement &BBLV,
785 PHINode *PN, BasicBlock *BB) {
786 ValueLatticeElement Result; // Start Undefined.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000787
788 // Loop over all of our predecessors, merging what we know from them into
Philip Reamesc80bd042017-02-07 00:25:24 +0000789 // result. See the comment about the chosen traversal order in
790 // solveBlockValueNonLocal; the same reasoning applies here.
Nick Lewycky55a700b2010-12-18 01:00:40 +0000791 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
792 BasicBlock *PhiBB = PN->getIncomingBlock(i);
793 Value *PhiVal = PN->getIncomingValue(i);
Florian Hahn8af01572017-09-28 11:09:22 +0000794 ValueLatticeElement EdgeResult;
Hal Finkel2400c962014-10-16 00:40:05 +0000795 // Note that we can provide PN as the context value to getEdgeValue, even
796 // though the results will be cached, because PN is the value being used as
797 // the cache key in the caller.
Philip Reamesc80bd042017-02-07 00:25:24 +0000798 if (!getEdgeValue(PhiVal, PhiBB, BB, EdgeResult, PN))
799 // Explore that input, then return here
800 return false;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000801
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000802 Result.mergeIn(EdgeResult, DL);
Nick Lewycky55a700b2010-12-18 01:00:40 +0000803
804 // If we hit overdefined, exit early. The BlockVals entry is already set
805 // to overdefined.
806 if (Result.isOverdefined()) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000807 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
808 << "' - overdefined because of pred (local).\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +0000809
Owen Anderson64c2c572010-12-20 18:18:16 +0000810 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000811 return true;
812 }
813 }
Nick Lewycky55a700b2010-12-18 01:00:40 +0000814
815 // Return the merged value, which is more precise than 'overdefined'.
816 assert(!Result.isOverdefined() && "Possible PHI in entry block?");
Owen Anderson64c2c572010-12-20 18:18:16 +0000817 BBLV = Result;
Nick Lewycky55a700b2010-12-18 01:00:40 +0000818 return true;
819}
820
Florian Hahn8af01572017-09-28 11:09:22 +0000821static ValueLatticeElement getValueFromCondition(Value *Val, Value *Cond,
822 bool isTrueDest = true);
Hal Finkel7e184492014-09-07 20:29:59 +0000823
Philip Reamesd1f829d2016-02-02 21:57:37 +0000824// If we can determine a constraint on the value given conditions assumed by
825// the program, intersect those constraints with BBLV
Philip Reames92e5e1b2016-09-12 21:46:58 +0000826void LazyValueInfoImpl::intersectAssumeOrGuardBlockValueConstantRange(
Florian Hahn8af01572017-09-28 11:09:22 +0000827 Value *Val, ValueLatticeElement &BBLV, Instruction *BBI) {
Hal Finkel7e184492014-09-07 20:29:59 +0000828 BBI = BBI ? BBI : dyn_cast<Instruction>(Val);
829 if (!BBI)
830 return;
831
Hal Finkel8a9a7832017-01-11 13:24:24 +0000832 for (auto &AssumeVH : AC->assumptionsFor(Val)) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000833 if (!AssumeVH)
Chandler Carruth66b31302015-01-04 12:03:27 +0000834 continue;
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000835 auto *I = cast<CallInst>(AssumeVH);
836 if (!isValidAssumeForContext(I, BBI, DT))
Hal Finkel7e184492014-09-07 20:29:59 +0000837 continue;
838
Daniel Jasperaec2fa32016-12-19 08:22:17 +0000839 BBLV = intersect(BBLV, getValueFromCondition(Val, I->getArgOperand(0)));
Hal Finkel7e184492014-09-07 20:29:59 +0000840 }
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +0000841
842 // If guards are not used in the module, don't spend time looking for them
843 auto *GuardDecl = BBI->getModule()->getFunction(
844 Intrinsic::getName(Intrinsic::experimental_guard));
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800845 if (!GuardDecl || GuardDecl->use_empty())
846 return;
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +0000847
Jordan Rupprecht02a6b0b2019-12-20 10:25:57 -0800848 if (BBI->getIterator() == BBI->getParent()->begin())
849 return;
850 for (Instruction &I : make_range(std::next(BBI->getIterator().getReverse()),
851 BBI->getParent()->rend())) {
852 Value *Cond = nullptr;
853 if (match(&I, m_Intrinsic<Intrinsic::experimental_guard>(m_Value(Cond))))
854 BBLV = intersect(BBLV, getValueFromCondition(Val, Cond));
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +0000855 }
Hal Finkel7e184492014-09-07 20:29:59 +0000856}
857
Florian Hahn8af01572017-09-28 11:09:22 +0000858bool LazyValueInfoImpl::solveBlockValueSelect(ValueLatticeElement &BBLV,
859 SelectInst *SI, BasicBlock *BB) {
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000860
861 // Recurse on our inputs if needed
862 if (!hasBlockValue(SI->getTrueValue(), BB)) {
863 if (pushBlockValue(std::make_pair(BB, SI->getTrueValue())))
864 return false;
Florian Hahn8af01572017-09-28 11:09:22 +0000865 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000866 return true;
867 }
Florian Hahn8af01572017-09-28 11:09:22 +0000868 ValueLatticeElement TrueVal = getBlockValue(SI->getTrueValue(), BB);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000869 // If we hit overdefined, don't ask more queries. We want to avoid poisoning
870 // extra slots in the table if we can.
871 if (TrueVal.isOverdefined()) {
Florian Hahn8af01572017-09-28 11:09:22 +0000872 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000873 return true;
874 }
875
876 if (!hasBlockValue(SI->getFalseValue(), BB)) {
877 if (pushBlockValue(std::make_pair(BB, SI->getFalseValue())))
878 return false;
Florian Hahn8af01572017-09-28 11:09:22 +0000879 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000880 return true;
881 }
Florian Hahn8af01572017-09-28 11:09:22 +0000882 ValueLatticeElement FalseVal = getBlockValue(SI->getFalseValue(), BB);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000883 // If we hit overdefined, don't ask more queries. We want to avoid poisoning
884 // extra slots in the table if we can.
885 if (FalseVal.isOverdefined()) {
Florian Hahn8af01572017-09-28 11:09:22 +0000886 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000887 return true;
888 }
889
Philip Reamesadf0e352016-02-26 22:53:59 +0000890 if (TrueVal.isConstantRange() && FalseVal.isConstantRange()) {
Craig Topper2b195fd2017-05-06 03:35:15 +0000891 const ConstantRange &TrueCR = TrueVal.getConstantRange();
892 const ConstantRange &FalseCR = FalseVal.getConstantRange();
Philip Reamesadf0e352016-02-26 22:53:59 +0000893 Value *LHS = nullptr;
894 Value *RHS = nullptr;
895 SelectPatternResult SPR = matchSelectPattern(SI, LHS, RHS);
896 // Is this a min specifically of our two inputs? (Avoid the risk of
897 // ValueTracking getting smarter looking back past our immediate inputs.)
898 if (SelectPatternResult::isMinOrMax(SPR.Flavor) &&
899 LHS == SI->getTrueValue() && RHS == SI->getFalseValue()) {
Philip Reamesb2949622016-12-06 02:54:16 +0000900 ConstantRange ResultCR = [&]() {
901 switch (SPR.Flavor) {
902 default:
903 llvm_unreachable("unexpected minmax type!");
904 case SPF_SMIN: /// Signed minimum
905 return TrueCR.smin(FalseCR);
906 case SPF_UMIN: /// Unsigned minimum
907 return TrueCR.umin(FalseCR);
908 case SPF_SMAX: /// Signed maximum
909 return TrueCR.smax(FalseCR);
910 case SPF_UMAX: /// Unsigned maximum
911 return TrueCR.umax(FalseCR);
912 };
913 }();
Florian Hahn8af01572017-09-28 11:09:22 +0000914 BBLV = ValueLatticeElement::getRange(ResultCR);
Philip Reamesb2949622016-12-06 02:54:16 +0000915 return true;
Philip Reamesadf0e352016-02-26 22:53:59 +0000916 }
NAKAMURA Takumi4cb46e62016-07-04 01:26:33 +0000917
Nikita Popov48c4e4f2019-05-14 18:53:47 +0000918 if (SPR.Flavor == SPF_ABS) {
919 if (LHS == SI->getTrueValue()) {
920 BBLV = ValueLatticeElement::getRange(TrueCR.abs());
921 return true;
922 }
923 if (LHS == SI->getFalseValue()) {
924 BBLV = ValueLatticeElement::getRange(FalseCR.abs());
925 return true;
926 }
927 }
928
929 if (SPR.Flavor == SPF_NABS) {
930 ConstantRange Zero(APInt::getNullValue(TrueCR.getBitWidth()));
931 if (LHS == SI->getTrueValue()) {
932 BBLV = ValueLatticeElement::getRange(Zero.sub(TrueCR.abs()));
933 return true;
934 }
935 if (LHS == SI->getFalseValue()) {
936 BBLV = ValueLatticeElement::getRange(Zero.sub(FalseCR.abs()));
937 return true;
938 }
939 }
Philip Reamesadf0e352016-02-26 22:53:59 +0000940 }
941
Philip Reames854a84c2016-02-12 00:09:18 +0000942 // Can we constrain the facts about the true and false values by using the
943 // condition itself? This shows up with idioms like e.g. select(a > 5, a, 5).
944 // TODO: We could potentially refine an overdefined true value above.
Artur Pilipenko2e19f592016-08-02 16:20:48 +0000945 Value *Cond = SI->getCondition();
Artur Pilipenko933c07a2016-08-10 13:38:07 +0000946 TrueVal = intersect(TrueVal,
947 getValueFromCondition(SI->getTrueValue(), Cond, true));
948 FalseVal = intersect(FalseVal,
949 getValueFromCondition(SI->getFalseValue(), Cond, false));
Philip Reames854a84c2016-02-12 00:09:18 +0000950
Artur Pilipenko2e19f592016-08-02 16:20:48 +0000951 // Handle clamp idioms such as:
952 // %24 = constantrange<0, 17>
953 // %39 = icmp eq i32 %24, 0
954 // %40 = add i32 %24, -1
955 // %siv.next = select i1 %39, i32 16, i32 %40
956 // %siv.next = constantrange<0, 17> not <-1, 17>
957 // In general, this can handle any clamp idiom which tests the edge
958 // condition via an equality or inequality.
959 if (auto *ICI = dyn_cast<ICmpInst>(Cond)) {
Philip Reamesadf0e352016-02-26 22:53:59 +0000960 ICmpInst::Predicate Pred = ICI->getPredicate();
961 Value *A = ICI->getOperand(0);
962 if (ConstantInt *CIBase = dyn_cast<ConstantInt>(ICI->getOperand(1))) {
963 auto addConstants = [](ConstantInt *A, ConstantInt *B) {
964 assert(A->getType() == B->getType());
965 return ConstantInt::get(A->getType(), A->getValue() + B->getValue());
966 };
967 // See if either input is A + C2, subject to the constraint from the
968 // condition that A != C when that input is used. We can assume that
969 // that input doesn't include C + C2.
970 ConstantInt *CIAdded;
971 switch (Pred) {
Philip Reames70b39182016-02-27 05:18:30 +0000972 default: break;
Philip Reamesadf0e352016-02-26 22:53:59 +0000973 case ICmpInst::ICMP_EQ:
974 if (match(SI->getFalseValue(), m_Add(m_Specific(A),
975 m_ConstantInt(CIAdded)))) {
976 auto ResNot = addConstants(CIBase, CIAdded);
977 FalseVal = intersect(FalseVal,
Florian Hahn8af01572017-09-28 11:09:22 +0000978 ValueLatticeElement::getNot(ResNot));
Philip Reamesadf0e352016-02-26 22:53:59 +0000979 }
980 break;
981 case ICmpInst::ICMP_NE:
982 if (match(SI->getTrueValue(), m_Add(m_Specific(A),
983 m_ConstantInt(CIAdded)))) {
984 auto ResNot = addConstants(CIBase, CIAdded);
985 TrueVal = intersect(TrueVal,
Florian Hahn8af01572017-09-28 11:09:22 +0000986 ValueLatticeElement::getNot(ResNot));
Philip Reamesadf0e352016-02-26 22:53:59 +0000987 }
988 break;
989 };
990 }
991 }
NAKAMURA Takumi4cb46e62016-07-04 01:26:33 +0000992
Florian Hahn8af01572017-09-28 11:09:22 +0000993 ValueLatticeElement Result; // Start Undefined.
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000994 Result.mergeIn(TrueVal, DL);
995 Result.mergeIn(FalseVal, DL);
Philip Reamesc0bdb0c2016-02-01 22:57:53 +0000996 BBLV = Result;
997 return true;
998}
999
John Regehr3a1c9d52018-11-21 05:24:12 +00001000Optional<ConstantRange> LazyValueInfoImpl::getRangeForOperand(unsigned Op,
1001 Instruction *I,
1002 BasicBlock *BB) {
1003 if (!hasBlockValue(I->getOperand(Op), BB))
1004 if (pushBlockValue(std::make_pair(BB, I->getOperand(Op))))
1005 return None;
1006
1007 const unsigned OperandBitWidth =
1008 DL.getTypeSizeInBits(I->getOperand(Op)->getType());
Nikita Popov977934f2019-03-24 09:34:40 +00001009 ConstantRange Range = ConstantRange::getFull(OperandBitWidth);
John Regehr3a1c9d52018-11-21 05:24:12 +00001010 if (hasBlockValue(I->getOperand(Op), BB)) {
1011 ValueLatticeElement Val = getBlockValue(I->getOperand(Op), BB);
1012 intersectAssumeOrGuardBlockValueConstantRange(I->getOperand(Op), Val, I);
1013 if (Val.isConstantRange())
1014 Range = Val.getConstantRange();
1015 }
1016 return Range;
1017}
1018
Florian Hahn8af01572017-09-28 11:09:22 +00001019bool LazyValueInfoImpl::solveBlockValueCast(ValueLatticeElement &BBLV,
Craig Topper0e5f1092017-06-03 07:47:08 +00001020 CastInst *CI,
1021 BasicBlock *BB) {
1022 if (!CI->getOperand(0)->getType()->isSized()) {
Philip Reamese5030e82016-04-26 22:52:30 +00001023 // Without knowing how wide the input is, we can't analyze it in any useful
1024 // way.
Florian Hahn8af01572017-09-28 11:09:22 +00001025 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamese5030e82016-04-26 22:52:30 +00001026 return true;
1027 }
Philip Reamesf105db42016-04-26 23:27:33 +00001028
1029 // Filter out casts we don't know how to reason about before attempting to
1030 // recurse on our operand. This can cut a long search short if we know we're
1031 // not going to be able to get any useful information anways.
Craig Topper0e5f1092017-06-03 07:47:08 +00001032 switch (CI->getOpcode()) {
Philip Reamesf105db42016-04-26 23:27:33 +00001033 case Instruction::Trunc:
1034 case Instruction::SExt:
1035 case Instruction::ZExt:
1036 case Instruction::BitCast:
1037 break;
1038 default:
1039 // Unhandled instructions are overdefined.
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001040 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
1041 << "' - overdefined (unknown cast).\n");
Florian Hahn8af01572017-09-28 11:09:22 +00001042 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesf105db42016-04-26 23:27:33 +00001043 return true;
1044 }
1045
Philip Reames38c87c22016-04-26 21:48:16 +00001046 // Figure out the range of the LHS. If that fails, we still apply the
1047 // transfer rule on the full set since we may be able to locally infer
1048 // interesting facts.
John Regehr3a1c9d52018-11-21 05:24:12 +00001049 Optional<ConstantRange> LHSRes = getRangeForOperand(0, CI, BB);
1050 if (!LHSRes.hasValue())
1051 // More work to do before applying this transfer rule.
1052 return false;
1053 ConstantRange LHSRange = LHSRes.getValue();
Nick Lewycky55a700b2010-12-18 01:00:40 +00001054
Craig Toppera803d5b2017-06-03 07:47:14 +00001055 const unsigned ResultBitWidth = CI->getType()->getIntegerBitWidth();
Philip Reames66715772016-04-25 18:30:31 +00001056
1057 // NOTE: We're currently limited by the set of operations that ConstantRange
1058 // can evaluate symbolically. Enhancing that set will allows us to analyze
1059 // more definitions.
Florian Hahn8af01572017-09-28 11:09:22 +00001060 BBLV = ValueLatticeElement::getRange(LHSRange.castOp(CI->getOpcode(),
1061 ResultBitWidth));
Philip Reames66715772016-04-25 18:30:31 +00001062 return true;
1063}
1064
Nikita Popov17367b02019-05-25 09:53:37 +00001065bool LazyValueInfoImpl::solveBlockValueBinaryOpImpl(
1066 ValueLatticeElement &BBLV, Instruction *I, BasicBlock *BB,
1067 std::function<ConstantRange(const ConstantRange &,
1068 const ConstantRange &)> OpFn) {
1069 // Figure out the ranges of the operands. If that fails, use a
1070 // conservative range, but apply the transfer rule anyways. This
1071 // lets us pick up facts from expressions like "and i32 (call i32
1072 // @foo()), 32"
1073 Optional<ConstantRange> LHSRes = getRangeForOperand(0, I, BB);
1074 Optional<ConstantRange> RHSRes = getRangeForOperand(1, I, BB);
1075 if (!LHSRes.hasValue() || !RHSRes.hasValue())
1076 // More work to do before applying this transfer rule.
1077 return false;
1078
1079 ConstantRange LHSRange = LHSRes.getValue();
1080 ConstantRange RHSRange = RHSRes.getValue();
1081 BBLV = ValueLatticeElement::getRange(OpFn(LHSRange, RHSRange));
1082 return true;
1083}
1084
Florian Hahn8af01572017-09-28 11:09:22 +00001085bool LazyValueInfoImpl::solveBlockValueBinaryOp(ValueLatticeElement &BBLV,
1086 BinaryOperator *BO,
1087 BasicBlock *BB) {
Philip Reames66715772016-04-25 18:30:31 +00001088
Craig Topper3778c892017-06-02 16:33:13 +00001089 assert(BO->getOperand(0)->getType()->isSized() &&
Philip Reames053c2a62016-04-26 23:10:35 +00001090 "all operands to binary operators are sized");
Nikita Popovdf621bd2019-06-04 16:24:09 +00001091 if (BO->getOpcode() == Instruction::Xor) {
1092 // Xor is the only operation not supported by ConstantRange::binaryOp().
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001093 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
1094 << "' - overdefined (unknown binary operator).\n");
Florian Hahn8af01572017-09-28 11:09:22 +00001095 BBLV = ValueLatticeElement::getOverdefined();
Philip Reamesf105db42016-04-26 23:27:33 +00001096 return true;
Nikita Popovdf621bd2019-06-04 16:24:09 +00001097 }
1098
Roman Lebedev1f665042019-10-23 16:56:04 +03001099 if (auto *OBO = dyn_cast<OverflowingBinaryOperator>(BO)) {
1100 unsigned NoWrapKind = 0;
1101 if (OBO->hasNoUnsignedWrap())
1102 NoWrapKind |= OverflowingBinaryOperator::NoUnsignedWrap;
1103 if (OBO->hasNoSignedWrap())
1104 NoWrapKind |= OverflowingBinaryOperator::NoSignedWrap;
1105
1106 return solveBlockValueBinaryOpImpl(
1107 BBLV, BO, BB,
1108 [BO, NoWrapKind](const ConstantRange &CR1, const ConstantRange &CR2) {
1109 return CR1.overflowingBinaryOp(BO->getOpcode(), CR2, NoWrapKind);
1110 });
1111 }
1112
1113 return solveBlockValueBinaryOpImpl(
1114 BBLV, BO, BB, [BO](const ConstantRange &CR1, const ConstantRange &CR2) {
Nikita Popovdf621bd2019-06-04 16:24:09 +00001115 return CR1.binaryOp(BO->getOpcode(), CR2);
1116 });
Chris Lattner741c94c2009-11-11 00:22:30 +00001117}
1118
Nikita Popov024b18a2019-05-25 09:53:45 +00001119bool LazyValueInfoImpl::solveBlockValueOverflowIntrinsic(
1120 ValueLatticeElement &BBLV, WithOverflowInst *WO, BasicBlock *BB) {
1121 return solveBlockValueBinaryOpImpl(BBLV, WO, BB,
1122 [WO](const ConstantRange &CR1, const ConstantRange &CR2) {
1123 return CR1.binaryOp(WO->getBinaryOp(), CR2);
1124 });
1125}
1126
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001127bool LazyValueInfoImpl::solveBlockValueSaturatingIntrinsic(
1128 ValueLatticeElement &BBLV, SaturatingInst *SI, BasicBlock *BB) {
1129 switch (SI->getIntrinsicID()) {
Nikita Popov6bb50412019-05-25 16:44:14 +00001130 case Intrinsic::uadd_sat:
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001131 return solveBlockValueBinaryOpImpl(
1132 BBLV, SI, BB, [](const ConstantRange &CR1, const ConstantRange &CR2) {
Nikita Popov6bb50412019-05-25 16:44:14 +00001133 return CR1.uadd_sat(CR2);
1134 });
1135 case Intrinsic::usub_sat:
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001136 return solveBlockValueBinaryOpImpl(
1137 BBLV, SI, BB, [](const ConstantRange &CR1, const ConstantRange &CR2) {
Nikita Popov6bb50412019-05-25 16:44:14 +00001138 return CR1.usub_sat(CR2);
1139 });
1140 case Intrinsic::sadd_sat:
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001141 return solveBlockValueBinaryOpImpl(
1142 BBLV, SI, BB, [](const ConstantRange &CR1, const ConstantRange &CR2) {
Nikita Popov6bb50412019-05-25 16:44:14 +00001143 return CR1.sadd_sat(CR2);
1144 });
1145 case Intrinsic::ssub_sat:
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001146 return solveBlockValueBinaryOpImpl(
1147 BBLV, SI, BB, [](const ConstantRange &CR1, const ConstantRange &CR2) {
Nikita Popov6bb50412019-05-25 16:44:14 +00001148 return CR1.ssub_sat(CR2);
1149 });
1150 default:
Roman Lebedev8eda8f82019-10-23 18:05:05 +03001151 llvm_unreachable("All llvm.sat intrinsic are handled.");
1152 }
1153}
1154
1155bool LazyValueInfoImpl::solveBlockValueIntrinsic(ValueLatticeElement &BBLV,
1156 IntrinsicInst *II,
1157 BasicBlock *BB) {
1158 if (auto *SI = dyn_cast<SaturatingInst>(II))
1159 return solveBlockValueSaturatingIntrinsic(BBLV, SI, BB);
1160
Simon Pilgrimc39ba042019-10-24 13:39:56 -07001161 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
1162 << "' - overdefined (unknown intrinsic).\n");
1163 BBLV = ValueLatticeElement::getOverdefined();
1164 return true;
Nikita Popov6bb50412019-05-25 16:44:14 +00001165}
1166
Nikita Popovac582132019-08-31 09:58:50 +00001167bool LazyValueInfoImpl::solveBlockValueExtractValue(
1168 ValueLatticeElement &BBLV, ExtractValueInst *EVI, BasicBlock *BB) {
1169 if (auto *WO = dyn_cast<WithOverflowInst>(EVI->getAggregateOperand()))
1170 if (EVI->getNumIndices() == 1 && *EVI->idx_begin() == 0)
1171 return solveBlockValueOverflowIntrinsic(BBLV, WO, BB);
1172
Nikita Popovfdc69772019-09-07 12:03:59 +00001173 // Handle extractvalue of insertvalue to allow further simplification
1174 // based on replaced with.overflow intrinsics.
1175 if (Value *V = SimplifyExtractValueInst(
1176 EVI->getAggregateOperand(), EVI->getIndices(),
1177 EVI->getModule()->getDataLayout())) {
1178 if (!hasBlockValue(V, BB)) {
1179 if (pushBlockValue({ BB, V }))
1180 return false;
1181 BBLV = ValueLatticeElement::getOverdefined();
1182 return true;
1183 }
1184 BBLV = getBlockValue(V, BB);
1185 return true;
1186 }
1187
Nikita Popovac582132019-08-31 09:58:50 +00001188 LLVM_DEBUG(dbgs() << " compute BB '" << BB->getName()
1189 << "' - overdefined (unknown extractvalue).\n");
1190 BBLV = ValueLatticeElement::getOverdefined();
1191 return true;
1192}
1193
Florian Hahn8af01572017-09-28 11:09:22 +00001194static ValueLatticeElement getValueFromICmpCondition(Value *Val, ICmpInst *ICI,
1195 bool isTrueDest) {
Artur Pilipenko21472912016-08-08 14:08:37 +00001196 Value *LHS = ICI->getOperand(0);
1197 Value *RHS = ICI->getOperand(1);
1198 CmpInst::Predicate Predicate = ICI->getPredicate();
1199
1200 if (isa<Constant>(RHS)) {
1201 if (ICI->isEquality() && LHS == Val) {
Hal Finkel7e184492014-09-07 20:29:59 +00001202 // We know that V has the RHS constant if this is a true SETEQ or
NAKAMURA Takumif2529512016-07-04 01:26:27 +00001203 // false SETNE.
Artur Pilipenko21472912016-08-08 14:08:37 +00001204 if (isTrueDest == (Predicate == ICmpInst::ICMP_EQ))
Florian Hahn8af01572017-09-28 11:09:22 +00001205 return ValueLatticeElement::get(cast<Constant>(RHS));
Hal Finkel7e184492014-09-07 20:29:59 +00001206 else
Florian Hahn8af01572017-09-28 11:09:22 +00001207 return ValueLatticeElement::getNot(cast<Constant>(RHS));
Hal Finkel7e184492014-09-07 20:29:59 +00001208 }
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001209 }
Hal Finkel7e184492014-09-07 20:29:59 +00001210
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001211 if (!Val->getType()->isIntegerTy())
Florian Hahn8af01572017-09-28 11:09:22 +00001212 return ValueLatticeElement::getOverdefined();
Hal Finkel7e184492014-09-07 20:29:59 +00001213
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001214 // Use ConstantRange::makeAllowedICmpRegion in order to determine the possible
1215 // range of Val guaranteed by the condition. Recognize comparisons in the from
1216 // of:
1217 // icmp <pred> Val, ...
Artur Pilipenko63562582016-08-12 10:05:11 +00001218 // icmp <pred> (add Val, Offset), ...
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001219 // The latter is the range checking idiom that InstCombine produces. Subtract
1220 // the offset from the allowed range for RHS in this case.
Artur Pilipenkoeed618d2016-08-08 14:33:11 +00001221
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001222 // Val or (add Val, Offset) can be on either hand of the comparison
1223 if (LHS != Val && !match(LHS, m_Add(m_Specific(Val), m_ConstantInt()))) {
1224 std::swap(LHS, RHS);
1225 Predicate = CmpInst::getSwappedPredicate(Predicate);
1226 }
Hal Finkel7e184492014-09-07 20:29:59 +00001227
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001228 ConstantInt *Offset = nullptr;
Artur Pilipenko63562582016-08-12 10:05:11 +00001229 if (LHS != Val)
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001230 match(LHS, m_Add(m_Specific(Val), m_ConstantInt(Offset)));
Hal Finkel7e184492014-09-07 20:29:59 +00001231
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001232 if (LHS == Val || Offset) {
1233 // Calculate the range of values that are allowed by the comparison
1234 ConstantRange RHSRange(RHS->getType()->getIntegerBitWidth(),
1235 /*isFullSet=*/true);
1236 if (ConstantInt *CI = dyn_cast<ConstantInt>(RHS))
1237 RHSRange = ConstantRange(CI->getValue());
Artur Pilipenko6669f252016-08-12 10:14:11 +00001238 else if (Instruction *I = dyn_cast<Instruction>(RHS))
1239 if (auto *Ranges = I->getMetadata(LLVMContext::MD_range))
1240 RHSRange = getConstantRangeFromMetadata(*Ranges);
Artur Pilipenkoc710a462016-08-09 14:50:08 +00001241
1242 // If we're interested in the false dest, invert the condition
1243 CmpInst::Predicate Pred =
1244 isTrueDest ? Predicate : CmpInst::getInversePredicate(Predicate);
1245 ConstantRange TrueValues =
1246 ConstantRange::makeAllowedICmpRegion(Pred, RHSRange);
1247
1248 if (Offset) // Apply the offset from above.
1249 TrueValues = TrueValues.subtract(Offset->getValue());
1250
Florian Hahn8af01572017-09-28 11:09:22 +00001251 return ValueLatticeElement::getRange(std::move(TrueValues));
Hal Finkel7e184492014-09-07 20:29:59 +00001252 }
NAKAMURA Takumi4cb46e62016-07-04 01:26:33 +00001253
Florian Hahn8af01572017-09-28 11:09:22 +00001254 return ValueLatticeElement::getOverdefined();
Hal Finkel7e184492014-09-07 20:29:59 +00001255}
1256
Nikita Popov20395812019-04-17 16:57:42 +00001257// Handle conditions of the form
1258// extractvalue(op.with.overflow(%x, C), 1).
1259static ValueLatticeElement getValueFromOverflowCondition(
1260 Value *Val, WithOverflowInst *WO, bool IsTrueDest) {
1261 // TODO: This only works with a constant RHS for now. We could also compute
1262 // the range of the RHS, but this doesn't fit into the current structure of
1263 // the edge value calculation.
1264 const APInt *C;
1265 if (WO->getLHS() != Val || !match(WO->getRHS(), m_APInt(C)))
1266 return ValueLatticeElement::getOverdefined();
1267
1268 // Calculate the possible values of %x for which no overflow occurs.
Nikita Popov7a947952019-04-28 15:40:56 +00001269 ConstantRange NWR = ConstantRange::makeExactNoWrapRegion(
1270 WO->getBinaryOp(), *C, WO->getNoWrapKind());
Nikita Popov20395812019-04-17 16:57:42 +00001271
1272 // If overflow is false, %x is constrained to NWR. If overflow is true, %x is
1273 // constrained to it's inverse (all values that might cause overflow).
1274 if (IsTrueDest)
1275 NWR = NWR.inverse();
1276 return ValueLatticeElement::getRange(NWR);
1277}
1278
Florian Hahn8af01572017-09-28 11:09:22 +00001279static ValueLatticeElement
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001280getValueFromCondition(Value *Val, Value *Cond, bool isTrueDest,
Florian Hahn8af01572017-09-28 11:09:22 +00001281 DenseMap<Value*, ValueLatticeElement> &Visited);
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001282
Florian Hahn8af01572017-09-28 11:09:22 +00001283static ValueLatticeElement
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001284getValueFromConditionImpl(Value *Val, Value *Cond, bool isTrueDest,
Florian Hahn8af01572017-09-28 11:09:22 +00001285 DenseMap<Value*, ValueLatticeElement> &Visited) {
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001286 if (ICmpInst *ICI = dyn_cast<ICmpInst>(Cond))
1287 return getValueFromICmpCondition(Val, ICI, isTrueDest);
1288
Nikita Popov20395812019-04-17 16:57:42 +00001289 if (auto *EVI = dyn_cast<ExtractValueInst>(Cond))
1290 if (auto *WO = dyn_cast<WithOverflowInst>(EVI->getAggregateOperand()))
1291 if (EVI->getNumIndices() == 1 && *EVI->idx_begin() == 1)
1292 return getValueFromOverflowCondition(Val, WO, isTrueDest);
1293
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001294 // Handle conditions in the form of (cond1 && cond2), we know that on the
Craig Topperb60f8662017-06-23 01:08:16 +00001295 // true dest path both of the conditions hold. Similarly for conditions of
1296 // the form (cond1 || cond2), we know that on the false dest path neither
1297 // condition holds.
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001298 BinaryOperator *BO = dyn_cast<BinaryOperator>(Cond);
Craig Topperb60f8662017-06-23 01:08:16 +00001299 if (!BO || (isTrueDest && BO->getOpcode() != BinaryOperator::And) ||
1300 (!isTrueDest && BO->getOpcode() != BinaryOperator::Or))
Florian Hahn8af01572017-09-28 11:09:22 +00001301 return ValueLatticeElement::getOverdefined();
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001302
Brian M. Rzycki252165b2018-03-13 18:14:10 +00001303 // Prevent infinite recursion if Cond references itself as in this example:
1304 // Cond: "%tmp4 = and i1 %tmp4, undef"
1305 // BL: "%tmp4 = and i1 %tmp4, undef"
1306 // BR: "i1 undef"
1307 Value *BL = BO->getOperand(0);
1308 Value *BR = BO->getOperand(1);
1309 if (BL == Cond || BR == Cond)
1310 return ValueLatticeElement::getOverdefined();
1311
1312 return intersect(getValueFromCondition(Val, BL, isTrueDest, Visited),
1313 getValueFromCondition(Val, BR, isTrueDest, Visited));
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001314}
1315
Florian Hahn8af01572017-09-28 11:09:22 +00001316static ValueLatticeElement
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001317getValueFromCondition(Value *Val, Value *Cond, bool isTrueDest,
Florian Hahn8af01572017-09-28 11:09:22 +00001318 DenseMap<Value*, ValueLatticeElement> &Visited) {
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001319 auto I = Visited.find(Cond);
1320 if (I != Visited.end())
1321 return I->second;
Artur Pilipenkob6230882016-08-12 15:08:15 +00001322
1323 auto Result = getValueFromConditionImpl(Val, Cond, isTrueDest, Visited);
1324 Visited[Cond] = Result;
1325 return Result;
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001326}
1327
Florian Hahn8af01572017-09-28 11:09:22 +00001328ValueLatticeElement getValueFromCondition(Value *Val, Value *Cond,
1329 bool isTrueDest) {
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001330 assert(Cond && "precondition");
Florian Hahn8af01572017-09-28 11:09:22 +00001331 DenseMap<Value*, ValueLatticeElement> Visited;
Artur Pilipenkofd223d52016-08-10 15:13:15 +00001332 return getValueFromCondition(Val, Cond, isTrueDest, Visited);
1333}
1334
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001335// Return true if Usr has Op as an operand, otherwise false.
1336static bool usesOperand(User *Usr, Value *Op) {
1337 return find(Usr->operands(), Op) != Usr->op_end();
1338}
1339
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001340// Return true if the instruction type of Val is supported by
1341// constantFoldUser(). Currently CastInst and BinaryOperator only. Call this
1342// before calling constantFoldUser() to find out if it's even worth attempting
1343// to call it.
1344static bool isOperationFoldable(User *Usr) {
1345 return isa<CastInst>(Usr) || isa<BinaryOperator>(Usr);
1346}
1347
1348// Check if Usr can be simplified to an integer constant when the value of one
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001349// of its operands Op is an integer constant OpConstVal. If so, return it as an
1350// lattice value range with a single element or otherwise return an overdefined
1351// lattice value.
Florian Hahn8af01572017-09-28 11:09:22 +00001352static ValueLatticeElement constantFoldUser(User *Usr, Value *Op,
1353 const APInt &OpConstVal,
1354 const DataLayout &DL) {
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001355 assert(isOperationFoldable(Usr) && "Precondition");
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001356 Constant* OpConst = Constant::getIntegerValue(Op->getType(), OpConstVal);
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001357 // Check if Usr can be simplified to a constant.
1358 if (auto *CI = dyn_cast<CastInst>(Usr)) {
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001359 assert(CI->getOperand(0) == Op && "Operand 0 isn't Op");
1360 if (auto *C = dyn_cast_or_null<ConstantInt>(
1361 SimplifyCastInst(CI->getOpcode(), OpConst,
1362 CI->getDestTy(), DL))) {
Florian Hahn8af01572017-09-28 11:09:22 +00001363 return ValueLatticeElement::getRange(ConstantRange(C->getValue()));
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001364 }
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001365 } else if (auto *BO = dyn_cast<BinaryOperator>(Usr)) {
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001366 bool Op0Match = BO->getOperand(0) == Op;
1367 bool Op1Match = BO->getOperand(1) == Op;
1368 assert((Op0Match || Op1Match) &&
1369 "Operand 0 nor Operand 1 isn't a match");
1370 Value *LHS = Op0Match ? OpConst : BO->getOperand(0);
1371 Value *RHS = Op1Match ? OpConst : BO->getOperand(1);
1372 if (auto *C = dyn_cast_or_null<ConstantInt>(
1373 SimplifyBinOp(BO->getOpcode(), LHS, RHS, DL))) {
Florian Hahn8af01572017-09-28 11:09:22 +00001374 return ValueLatticeElement::getRange(ConstantRange(C->getValue()));
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001375 }
1376 }
Florian Hahn8af01572017-09-28 11:09:22 +00001377 return ValueLatticeElement::getOverdefined();
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001378}
1379
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001380/// Compute the value of Val on the edge BBFrom -> BBTo. Returns false if
Philip Reames13f73242016-02-01 23:21:11 +00001381/// Val is not constrained on the edge. Result is unspecified if return value
1382/// is false.
Nuno Lopese6e04902012-06-28 01:16:18 +00001383static bool getEdgeValueLocal(Value *Val, BasicBlock *BBFrom,
Florian Hahn8af01572017-09-28 11:09:22 +00001384 BasicBlock *BBTo, ValueLatticeElement &Result) {
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001385 // TODO: Handle more complex conditionals. If (v == 0 || v2 < 1) is false, we
Chris Lattner77358782009-11-15 20:02:12 +00001386 // know that v != 0.
Chris Lattner19019ea2009-11-11 22:48:44 +00001387 if (BranchInst *BI = dyn_cast<BranchInst>(BBFrom->getTerminator())) {
1388 // If this is a conditional branch and only one successor goes to BBTo, then
Sanjay Patel938e2792015-01-09 16:35:37 +00001389 // we may be able to infer something from the condition.
Chris Lattner19019ea2009-11-11 22:48:44 +00001390 if (BI->isConditional() &&
1391 BI->getSuccessor(0) != BI->getSuccessor(1)) {
1392 bool isTrueDest = BI->getSuccessor(0) == BBTo;
1393 assert(BI->getSuccessor(!isTrueDest) == BBTo &&
1394 "BBTo isn't a successor of BBFrom");
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001395 Value *Condition = BI->getCondition();
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001396
Chris Lattner19019ea2009-11-11 22:48:44 +00001397 // If V is the condition of the branch itself, then we know exactly what
1398 // it is.
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001399 if (Condition == Val) {
Florian Hahn8af01572017-09-28 11:09:22 +00001400 Result = ValueLatticeElement::get(ConstantInt::get(
Owen Anderson185fe002010-08-10 20:03:09 +00001401 Type::getInt1Ty(Val->getContext()), isTrueDest));
Nick Lewycky55a700b2010-12-18 01:00:40 +00001402 return true;
1403 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001404
Chris Lattner19019ea2009-11-11 22:48:44 +00001405 // If the condition of the branch is an equality comparison, we may be
1406 // able to infer the value.
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001407 Result = getValueFromCondition(Val, Condition, isTrueDest);
1408 if (!Result.isOverdefined())
1409 return true;
1410
1411 if (User *Usr = dyn_cast<User>(Val)) {
1412 assert(Result.isOverdefined() && "Result isn't overdefined");
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001413 // Check with isOperationFoldable() first to avoid linearly iterating
1414 // over the operands unnecessarily which can be expensive for
1415 // instructions with many operands.
1416 if (isa<IntegerType>(Usr->getType()) && isOperationFoldable(Usr)) {
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001417 const DataLayout &DL = BBTo->getModule()->getDataLayout();
1418 if (usesOperand(Usr, Condition)) {
1419 // If Val has Condition as an operand and Val can be folded into a
1420 // constant with either Condition == true or Condition == false,
1421 // propagate the constant.
1422 // eg.
1423 // ; %Val is true on the edge to %then.
1424 // %Val = and i1 %Condition, true.
1425 // br %Condition, label %then, label %else
1426 APInt ConditionVal(1, isTrueDest ? 1 : 0);
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001427 Result = constantFoldUser(Usr, Condition, ConditionVal, DL);
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001428 } else {
1429 // If one of Val's operand has an inferred value, we may be able to
1430 // infer the value of Val.
1431 // eg.
1432 // ; %Val is 94 on the edge to %then.
1433 // %Val = add i8 %Op, 1
1434 // %Condition = icmp eq i8 %Op, 93
1435 // br i1 %Condition, label %then, label %else
1436 for (unsigned i = 0; i < Usr->getNumOperands(); ++i) {
1437 Value *Op = Usr->getOperand(i);
Florian Hahn8af01572017-09-28 11:09:22 +00001438 ValueLatticeElement OpLatticeVal =
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001439 getValueFromCondition(Op, Condition, isTrueDest);
1440 if (Optional<APInt> OpConst = OpLatticeVal.asConstantInteger()) {
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001441 Result = constantFoldUser(Usr, Op, OpConst.getValue(), DL);
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001442 break;
1443 }
1444 }
1445 }
1446 }
1447 }
Artur Pilipenko933c07a2016-08-10 13:38:07 +00001448 if (!Result.isOverdefined())
Artur Pilipenko2e19f592016-08-02 16:20:48 +00001449 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +00001450 }
1451 }
Chris Lattner77358782009-11-15 20:02:12 +00001452
1453 // If the edge was formed by a switch on the value, then we may know exactly
1454 // what it is.
1455 if (SwitchInst *SI = dyn_cast<SwitchInst>(BBFrom->getTerminator())) {
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001456 Value *Condition = SI->getCondition();
1457 if (!isa<IntegerType>(Val->getType()))
Nuno Lopes8650fb82012-06-28 16:13:37 +00001458 return false;
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001459 bool ValUsesConditionAndMayBeFoldable = false;
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001460 if (Condition != Val) {
1461 // Check if Val has Condition as an operand.
1462 if (User *Usr = dyn_cast<User>(Val))
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001463 ValUsesConditionAndMayBeFoldable = isOperationFoldable(Usr) &&
1464 usesOperand(Usr, Condition);
1465 if (!ValUsesConditionAndMayBeFoldable)
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001466 return false;
1467 }
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001468 assert((Condition == Val || ValUsesConditionAndMayBeFoldable) &&
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001469 "Condition != Val nor Val doesn't use Condition");
Nuno Lopes8650fb82012-06-28 16:13:37 +00001470
1471 bool DefaultCase = SI->getDefaultDest() == BBTo;
1472 unsigned BitWidth = Val->getType()->getIntegerBitWidth();
1473 ConstantRange EdgesVals(BitWidth, DefaultCase/*isFullSet*/);
1474
Chandler Carruth927d8e62017-04-12 07:27:28 +00001475 for (auto Case : SI->cases()) {
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001476 APInt CaseValue = Case.getCaseValue()->getValue();
1477 ConstantRange EdgeVal(CaseValue);
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001478 if (ValUsesConditionAndMayBeFoldable) {
1479 User *Usr = cast<User>(Val);
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001480 const DataLayout &DL = BBTo->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001481 ValueLatticeElement EdgeLatticeVal =
Hiroshi Yamauchiccd412f2017-08-10 02:23:14 +00001482 constantFoldUser(Usr, Condition, CaseValue, DL);
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001483 if (EdgeLatticeVal.isOverdefined())
1484 return false;
1485 EdgeVal = EdgeLatticeVal.getConstantRange();
1486 }
Manman Renf3fedb62012-09-05 23:45:58 +00001487 if (DefaultCase) {
1488 // It is possible that the default destination is the destination of
Hiroshi Yamauchi144ee2b2017-08-03 21:11:30 +00001489 // some cases. We cannot perform difference for those cases.
1490 // We know Condition != CaseValue in BBTo. In some cases we can use
1491 // this to infer Val == f(Condition) is != f(CaseValue). For now, we
1492 // only do this when f is identity (i.e. Val == Condition), but we
1493 // should be able to do this for any injective f.
1494 if (Case.getCaseSuccessor() != BBTo && Condition == Val)
Manman Renf3fedb62012-09-05 23:45:58 +00001495 EdgesVals = EdgesVals.difference(EdgeVal);
Chandler Carruth927d8e62017-04-12 07:27:28 +00001496 } else if (Case.getCaseSuccessor() == BBTo)
Nuno Lopesac593802012-05-18 21:02:10 +00001497 EdgesVals = EdgesVals.unionWith(EdgeVal);
Chris Lattner77358782009-11-15 20:02:12 +00001498 }
Florian Hahn8af01572017-09-28 11:09:22 +00001499 Result = ValueLatticeElement::getRange(std::move(EdgesVals));
Nuno Lopes8650fb82012-06-28 16:13:37 +00001500 return true;
Chris Lattner77358782009-11-15 20:02:12 +00001501 }
Nuno Lopese6e04902012-06-28 01:16:18 +00001502 return false;
1503}
1504
Adrian Prantl5f8f34e42018-05-01 15:54:18 +00001505/// Compute the value of Val on the edge BBFrom -> BBTo or the value at
Sanjay Patel938e2792015-01-09 16:35:37 +00001506/// the basic block if the edge does not constrain Val.
Philip Reames92e5e1b2016-09-12 21:46:58 +00001507bool LazyValueInfoImpl::getEdgeValue(Value *Val, BasicBlock *BBFrom,
Florian Hahn8af01572017-09-28 11:09:22 +00001508 BasicBlock *BBTo,
1509 ValueLatticeElement &Result,
Xin Tong68ea9aa2017-02-24 20:59:26 +00001510 Instruction *CxtI) {
Nuno Lopese6e04902012-06-28 01:16:18 +00001511 // If already a constant, there is nothing to compute.
1512 if (Constant *VC = dyn_cast<Constant>(Val)) {
Florian Hahn8af01572017-09-28 11:09:22 +00001513 Result = ValueLatticeElement::get(VC);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001514 return true;
1515 }
Nuno Lopese6e04902012-06-28 01:16:18 +00001516
Florian Hahn8af01572017-09-28 11:09:22 +00001517 ValueLatticeElement LocalResult;
Philip Reames44456b82016-02-02 03:15:40 +00001518 if (!getEdgeValueLocal(Val, BBFrom, BBTo, LocalResult))
1519 // If we couldn't constrain the value on the edge, LocalResult doesn't
1520 // provide any information.
Florian Hahn8af01572017-09-28 11:09:22 +00001521 LocalResult = ValueLatticeElement::getOverdefined();
NAKAMURA Takumi4cb46e62016-07-04 01:26:33 +00001522
Philip Reames44456b82016-02-02 03:15:40 +00001523 if (hasSingleValue(LocalResult)) {
1524 // Can't get any more precise here
1525 Result = LocalResult;
Nuno Lopese6e04902012-06-28 01:16:18 +00001526 return true;
1527 }
1528
1529 if (!hasBlockValue(Val, BBFrom)) {
Hans Wennborg45172ac2014-11-25 17:23:05 +00001530 if (pushBlockValue(std::make_pair(BBFrom, Val)))
1531 return false;
Philip Reames44456b82016-02-02 03:15:40 +00001532 // No new information.
1533 Result = LocalResult;
Hans Wennborg45172ac2014-11-25 17:23:05 +00001534 return true;
Nuno Lopese6e04902012-06-28 01:16:18 +00001535 }
1536
Philip Reames44456b82016-02-02 03:15:40 +00001537 // Try to intersect ranges of the BB and the constraint on the edge.
Florian Hahn8af01572017-09-28 11:09:22 +00001538 ValueLatticeElement InBlock = getBlockValue(Val, BBFrom);
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +00001539 intersectAssumeOrGuardBlockValueConstantRange(Val, InBlock,
1540 BBFrom->getTerminator());
Hal Finkel2400c962014-10-16 00:40:05 +00001541 // We can use the context instruction (generically the ultimate instruction
1542 // the calling pass is trying to simplify) here, even though the result of
1543 // this function is generally cached when called from the solve* functions
1544 // (and that cached result might be used with queries using a different
1545 // context instruction), because when this function is called from the solve*
1546 // functions, the context instruction is not provided. When called from
Philip Reames92e5e1b2016-09-12 21:46:58 +00001547 // LazyValueInfoImpl::getValueOnEdge, the context instruction is provided,
Hal Finkel2400c962014-10-16 00:40:05 +00001548 // but then the result is not cached.
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +00001549 intersectAssumeOrGuardBlockValueConstantRange(Val, InBlock, CxtI);
Philip Reames44456b82016-02-02 03:15:40 +00001550
1551 Result = intersect(LocalResult, InBlock);
Nuno Lopese6e04902012-06-28 01:16:18 +00001552 return true;
Chris Lattner19019ea2009-11-11 22:48:44 +00001553}
1554
Florian Hahn8af01572017-09-28 11:09:22 +00001555ValueLatticeElement LazyValueInfoImpl::getValueInBlock(Value *V, BasicBlock *BB,
1556 Instruction *CxtI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001557 LLVM_DEBUG(dbgs() << "LVI Getting block end value " << *V << " at '"
1558 << BB->getName() << "'\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001559
Hans Wennborg45172ac2014-11-25 17:23:05 +00001560 assert(BlockValueStack.empty() && BlockValueSet.empty());
Philip Reamesbb781b42016-02-10 21:46:32 +00001561 if (!hasBlockValue(V, BB)) {
NAKAMURA Takumibd072a92016-07-25 00:59:46 +00001562 pushBlockValue(std::make_pair(BB, V));
Philip Reamesbb781b42016-02-10 21:46:32 +00001563 solve();
1564 }
Florian Hahn8af01572017-09-28 11:09:22 +00001565 ValueLatticeElement Result = getBlockValue(V, BB);
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +00001566 intersectAssumeOrGuardBlockValueConstantRange(V, Result, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001567
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001568 LLVM_DEBUG(dbgs() << " Result = " << Result << "\n");
Hal Finkel7e184492014-09-07 20:29:59 +00001569 return Result;
1570}
1571
Florian Hahn8af01572017-09-28 11:09:22 +00001572ValueLatticeElement LazyValueInfoImpl::getValueAt(Value *V, Instruction *CxtI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001573 LLVM_DEBUG(dbgs() << "LVI Getting value " << *V << " at '" << CxtI->getName()
1574 << "'\n");
Hal Finkel7e184492014-09-07 20:29:59 +00001575
Philip Reamesbb781b42016-02-10 21:46:32 +00001576 if (auto *C = dyn_cast<Constant>(V))
Florian Hahn8af01572017-09-28 11:09:22 +00001577 return ValueLatticeElement::get(C);
Philip Reamesbb781b42016-02-10 21:46:32 +00001578
Florian Hahn8af01572017-09-28 11:09:22 +00001579 ValueLatticeElement Result = ValueLatticeElement::getOverdefined();
Philip Reameseb3e9da2015-10-29 03:57:17 +00001580 if (auto *I = dyn_cast<Instruction>(V))
1581 Result = getFromRangeMetadata(I);
Artur Pilipenko2e8f82d2016-08-12 15:52:23 +00001582 intersectAssumeOrGuardBlockValueConstantRange(V, Result, CxtI);
Philip Reames2c275cc2016-02-02 00:45:30 +00001583
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001584 LLVM_DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001585 return Result;
1586}
Chris Lattner19019ea2009-11-11 22:48:44 +00001587
Florian Hahn8af01572017-09-28 11:09:22 +00001588ValueLatticeElement LazyValueInfoImpl::
Hal Finkel7e184492014-09-07 20:29:59 +00001589getValueOnEdge(Value *V, BasicBlock *FromBB, BasicBlock *ToBB,
1590 Instruction *CxtI) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001591 LLVM_DEBUG(dbgs() << "LVI Getting edge value " << *V << " from '"
1592 << FromBB->getName() << "' to '" << ToBB->getName()
1593 << "'\n");
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001594
Florian Hahn8af01572017-09-28 11:09:22 +00001595 ValueLatticeElement Result;
Hal Finkel7e184492014-09-07 20:29:59 +00001596 if (!getEdgeValue(V, FromBB, ToBB, Result, CxtI)) {
Nick Lewycky55a700b2010-12-18 01:00:40 +00001597 solve();
Hal Finkel7e184492014-09-07 20:29:59 +00001598 bool WasFastQuery = getEdgeValue(V, FromBB, ToBB, Result, CxtI);
Nick Lewycky55a700b2010-12-18 01:00:40 +00001599 (void)WasFastQuery;
1600 assert(WasFastQuery && "More work to do after problem solved?");
1601 }
1602
Nicola Zaghend34e60c2018-05-14 12:53:11 +00001603 LLVM_DEBUG(dbgs() << " Result = " << Result << "\n");
Chris Lattneraf025d32009-11-15 19:59:49 +00001604 return Result;
1605}
1606
Philip Reames92e5e1b2016-09-12 21:46:58 +00001607void LazyValueInfoImpl::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Philip Reames9db79482016-09-12 22:38:44 +00001608 BasicBlock *NewSucc) {
1609 TheCache.threadEdgeImpl(OldSucc, NewSucc);
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001610}
1611
Chris Lattneraf025d32009-11-15 19:59:49 +00001612//===----------------------------------------------------------------------===//
1613// LazyValueInfo Impl
1614//===----------------------------------------------------------------------===//
1615
Philip Reames92e5e1b2016-09-12 21:46:58 +00001616/// This lazily constructs the LazyValueInfoImpl.
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001617static LazyValueInfoImpl &getImpl(void *&PImpl, AssumptionCache *AC,
1618 const DataLayout *DL,
Philip Reames92e5e1b2016-09-12 21:46:58 +00001619 DominatorTree *DT = nullptr) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001620 if (!PImpl) {
1621 assert(DL && "getCache() called with a null DataLayout");
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001622 PImpl = new LazyValueInfoImpl(AC, *DL, DT);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001623 }
Philip Reames92e5e1b2016-09-12 21:46:58 +00001624 return *static_cast<LazyValueInfoImpl*>(PImpl);
Chris Lattneraf025d32009-11-15 19:59:49 +00001625}
1626
Sean Silva687019f2016-06-13 22:01:25 +00001627bool LazyValueInfoWrapperPass::runOnFunction(Function &F) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001628 Info.AC = &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001629 const DataLayout &DL = F.getParent()->getDataLayout();
Hal Finkel7e184492014-09-07 20:29:59 +00001630
1631 DominatorTreeWrapperPass *DTWP =
1632 getAnalysisIfAvailable<DominatorTreeWrapperPass>();
Sean Silva687019f2016-06-13 22:01:25 +00001633 Info.DT = DTWP ? &DTWP->getDomTree() : nullptr;
Teresa Johnson9c27b592019-09-07 03:09:36 +00001634 Info.TLI = &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F);
Chad Rosier43a33062011-12-02 01:26:24 +00001635
Sean Silva687019f2016-06-13 22:01:25 +00001636 if (Info.PImpl)
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001637 getImpl(Info.PImpl, Info.AC, &DL, Info.DT).clear();
Hal Finkel7e184492014-09-07 20:29:59 +00001638
Owen Anderson208636f2010-08-18 18:39:01 +00001639 // Fully lazy.
1640 return false;
1641}
1642
Sean Silva687019f2016-06-13 22:01:25 +00001643void LazyValueInfoWrapperPass::getAnalysisUsage(AnalysisUsage &AU) const {
Chad Rosier43a33062011-12-02 01:26:24 +00001644 AU.setPreservesAll();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001645 AU.addRequired<AssumptionCacheTracker>();
Chandler Carruthb98f63d2015-01-15 10:41:28 +00001646 AU.addRequired<TargetLibraryInfoWrapperPass>();
Chad Rosier43a33062011-12-02 01:26:24 +00001647}
1648
Sean Silva687019f2016-06-13 22:01:25 +00001649LazyValueInfo &LazyValueInfoWrapperPass::getLVI() { return Info; }
1650
1651LazyValueInfo::~LazyValueInfo() { releaseMemory(); }
1652
Chris Lattneraf025d32009-11-15 19:59:49 +00001653void LazyValueInfo::releaseMemory() {
1654 // If the cache was allocated, free it.
1655 if (PImpl) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001656 delete &getImpl(PImpl, AC, nullptr);
Craig Topper9f008862014-04-15 04:59:12 +00001657 PImpl = nullptr;
Chris Lattneraf025d32009-11-15 19:59:49 +00001658 }
1659}
1660
Chandler Carrutha504f2b2017-01-23 06:35:12 +00001661bool LazyValueInfo::invalidate(Function &F, const PreservedAnalyses &PA,
1662 FunctionAnalysisManager::Invalidator &Inv) {
1663 // We need to invalidate if we have either failed to preserve this analyses
1664 // result directly or if any of its dependencies have been invalidated.
1665 auto PAC = PA.getChecker<LazyValueAnalysis>();
1666 if (!(PAC.preserved() || PAC.preservedSet<AllAnalysesOn<Function>>()) ||
1667 (DT && Inv.invalidate<DominatorTreeAnalysis>(F, PA)))
1668 return true;
1669
1670 return false;
1671}
1672
Sean Silva687019f2016-06-13 22:01:25 +00001673void LazyValueInfoWrapperPass::releaseMemory() { Info.releaseMemory(); }
1674
Florian Hahn8af01572017-09-28 11:09:22 +00001675LazyValueInfo LazyValueAnalysis::run(Function &F,
1676 FunctionAnalysisManager &FAM) {
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001677 auto &AC = FAM.getResult<AssumptionAnalysis>(F);
Sean Silva687019f2016-06-13 22:01:25 +00001678 auto &TLI = FAM.getResult<TargetLibraryAnalysis>(F);
1679 auto *DT = FAM.getCachedResult<DominatorTreeAnalysis>(F);
1680
Anna Thomasa10e3e42017-03-12 14:06:41 +00001681 return LazyValueInfo(&AC, &F.getParent()->getDataLayout(), &TLI, DT);
Sean Silva687019f2016-06-13 22:01:25 +00001682}
1683
Wei Mif160e342016-09-15 06:28:34 +00001684/// Returns true if we can statically tell that this value will never be a
1685/// "useful" constant. In practice, this means we've got something like an
1686/// alloca or a malloc call for which a comparison against a constant can
1687/// only be guarding dead code. Note that we are potentially giving up some
1688/// precision in dead code (a constant result) in favour of avoiding a
1689/// expensive search for a easily answered common query.
1690static bool isKnownNonConstant(Value *V) {
1691 V = V->stripPointerCasts();
1692 // The return val of alloc cannot be a Constant.
1693 if (isa<AllocaInst>(V))
1694 return true;
1695 return false;
1696}
1697
Hal Finkel7e184492014-09-07 20:29:59 +00001698Constant *LazyValueInfo::getConstant(Value *V, BasicBlock *BB,
1699 Instruction *CxtI) {
Wei Mif160e342016-09-15 06:28:34 +00001700 // Bail out early if V is known not to be a Constant.
1701 if (isKnownNonConstant(V))
1702 return nullptr;
1703
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001704 const DataLayout &DL = BB->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001705 ValueLatticeElement Result =
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001706 getImpl(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI);
Chandler Carruth66b31302015-01-04 12:03:27 +00001707
Chris Lattner19019ea2009-11-11 22:48:44 +00001708 if (Result.isConstant())
1709 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001710 if (Result.isConstantRange()) {
Craig Topper2b195fd2017-05-06 03:35:15 +00001711 const ConstantRange &CR = Result.getConstantRange();
Owen Anderson38f6b7f2010-08-27 23:29:38 +00001712 if (const APInt *SingleVal = CR.getSingleElement())
1713 return ConstantInt::get(V->getContext(), *SingleVal);
1714 }
Craig Topper9f008862014-04-15 04:59:12 +00001715 return nullptr;
Chris Lattner19019ea2009-11-11 22:48:44 +00001716}
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001717
John Regehre1c481d2016-05-02 19:58:00 +00001718ConstantRange LazyValueInfo::getConstantRange(Value *V, BasicBlock *BB,
NAKAMURA Takumi940cd932016-07-04 01:26:21 +00001719 Instruction *CxtI) {
John Regehre1c481d2016-05-02 19:58:00 +00001720 assert(V->getType()->isIntegerTy());
1721 unsigned Width = V->getType()->getIntegerBitWidth();
1722 const DataLayout &DL = BB->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001723 ValueLatticeElement Result =
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001724 getImpl(PImpl, AC, &DL, DT).getValueInBlock(V, BB, CxtI);
John Regehre1c481d2016-05-02 19:58:00 +00001725 if (Result.isUndefined())
Nikita Popov977934f2019-03-24 09:34:40 +00001726 return ConstantRange::getEmpty(Width);
John Regehre1c481d2016-05-02 19:58:00 +00001727 if (Result.isConstantRange())
1728 return Result.getConstantRange();
Artur Pilipenkoa4b6a702016-08-10 12:54:54 +00001729 // We represent ConstantInt constants as constant ranges but other kinds
1730 // of integer constants, i.e. ConstantExpr will be tagged as constants
1731 assert(!(Result.isConstant() && isa<ConstantInt>(Result.getConstant())) &&
1732 "ConstantInt value must be represented as constantrange");
Nikita Popov977934f2019-03-24 09:34:40 +00001733 return ConstantRange::getFull(Width);
John Regehre1c481d2016-05-02 19:58:00 +00001734}
1735
Sanjay Patel2a385e22015-01-09 16:47:20 +00001736/// Determine whether the specified value is known to be a
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001737/// constant on the specified edge. Return null if not.
Chris Lattnerd5e25432009-11-12 01:29:10 +00001738Constant *LazyValueInfo::getConstantOnEdge(Value *V, BasicBlock *FromBB,
Hal Finkel7e184492014-09-07 20:29:59 +00001739 BasicBlock *ToBB,
1740 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001741 const DataLayout &DL = FromBB->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001742 ValueLatticeElement Result =
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001743 getImpl(PImpl, AC, &DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Chandler Carruth66b31302015-01-04 12:03:27 +00001744
Chris Lattnerd5e25432009-11-12 01:29:10 +00001745 if (Result.isConstant())
1746 return Result.getConstant();
Nick Lewycky11678bd2010-12-15 18:57:18 +00001747 if (Result.isConstantRange()) {
Craig Topper2b195fd2017-05-06 03:35:15 +00001748 const ConstantRange &CR = Result.getConstantRange();
Owen Anderson185fe002010-08-10 20:03:09 +00001749 if (const APInt *SingleVal = CR.getSingleElement())
1750 return ConstantInt::get(V->getContext(), *SingleVal);
1751 }
Craig Topper9f008862014-04-15 04:59:12 +00001752 return nullptr;
Chris Lattnerd5e25432009-11-12 01:29:10 +00001753}
1754
Craig Topper2c20c422017-06-23 05:41:35 +00001755ConstantRange LazyValueInfo::getConstantRangeOnEdge(Value *V,
1756 BasicBlock *FromBB,
1757 BasicBlock *ToBB,
1758 Instruction *CxtI) {
1759 unsigned Width = V->getType()->getIntegerBitWidth();
1760 const DataLayout &DL = FromBB->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001761 ValueLatticeElement Result =
Craig Topper2c20c422017-06-23 05:41:35 +00001762 getImpl(PImpl, AC, &DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
1763
1764 if (Result.isUndefined())
Nikita Popov977934f2019-03-24 09:34:40 +00001765 return ConstantRange::getEmpty(Width);
Craig Topper2c20c422017-06-23 05:41:35 +00001766 if (Result.isConstantRange())
1767 return Result.getConstantRange();
1768 // We represent ConstantInt constants as constant ranges but other kinds
1769 // of integer constants, i.e. ConstantExpr will be tagged as constants
1770 assert(!(Result.isConstant() && isa<ConstantInt>(Result.getConstant())) &&
1771 "ConstantInt value must be represented as constantrange");
Nikita Popov977934f2019-03-24 09:34:40 +00001772 return ConstantRange::getFull(Width);
Craig Topper2c20c422017-06-23 05:41:35 +00001773}
1774
Florian Hahn8af01572017-09-28 11:09:22 +00001775static LazyValueInfo::Tristate
1776getPredicateResult(unsigned Pred, Constant *C, const ValueLatticeElement &Val,
1777 const DataLayout &DL, TargetLibraryInfo *TLI) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001778 // If we know the value is a constant, evaluate the conditional.
Craig Topper9f008862014-04-15 04:59:12 +00001779 Constant *Res = nullptr;
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001780 if (Val.isConstant()) {
1781 Res = ConstantFoldCompareInstOperands(Pred, Val.getConstant(), C, DL, TLI);
Nick Lewycky11678bd2010-12-15 18:57:18 +00001782 if (ConstantInt *ResCI = dyn_cast<ConstantInt>(Res))
Hal Finkel7e184492014-09-07 20:29:59 +00001783 return ResCI->isZero() ? LazyValueInfo::False : LazyValueInfo::True;
1784 return LazyValueInfo::Unknown;
Chris Lattneraf025d32009-11-15 19:59:49 +00001785 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001786
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001787 if (Val.isConstantRange()) {
Owen Andersonc62f7042010-08-24 07:55:44 +00001788 ConstantInt *CI = dyn_cast<ConstantInt>(C);
Hal Finkel7e184492014-09-07 20:29:59 +00001789 if (!CI) return LazyValueInfo::Unknown;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001790
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001791 const ConstantRange &CR = Val.getConstantRange();
Owen Anderson185fe002010-08-10 20:03:09 +00001792 if (Pred == ICmpInst::ICMP_EQ) {
1793 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001794 return LazyValueInfo::False;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001795
Craig Topper79452482017-06-07 00:58:09 +00001796 if (CR.isSingleElement())
Hal Finkel7e184492014-09-07 20:29:59 +00001797 return LazyValueInfo::True;
Owen Anderson185fe002010-08-10 20:03:09 +00001798 } else if (Pred == ICmpInst::ICMP_NE) {
1799 if (!CR.contains(CI->getValue()))
Hal Finkel7e184492014-09-07 20:29:59 +00001800 return LazyValueInfo::True;
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001801
Craig Topper79452482017-06-07 00:58:09 +00001802 if (CR.isSingleElement())
Hal Finkel7e184492014-09-07 20:29:59 +00001803 return LazyValueInfo::False;
Craig Topper31ce4ec2017-06-09 16:16:20 +00001804 } else {
1805 // Handle more complex predicates.
1806 ConstantRange TrueValues = ConstantRange::makeExactICmpRegion(
1807 (ICmpInst::Predicate)Pred, CI->getValue());
1808 if (TrueValues.contains(CR))
1809 return LazyValueInfo::True;
1810 if (TrueValues.inverse().contains(CR))
1811 return LazyValueInfo::False;
Owen Anderson185fe002010-08-10 20:03:09 +00001812 }
Hal Finkel7e184492014-09-07 20:29:59 +00001813 return LazyValueInfo::Unknown;
Owen Anderson185fe002010-08-10 20:03:09 +00001814 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001815
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001816 if (Val.isNotConstant()) {
Chris Lattner565ee2f2009-11-12 04:36:58 +00001817 // If this is an equality comparison, we can try to fold it knowing that
1818 // "V != C1".
1819 if (Pred == ICmpInst::ICMP_EQ) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001820 // !C1 == C -> false iff C1 == C.
Chris Lattner565ee2f2009-11-12 04:36:58 +00001821 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001822 Val.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001823 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001824 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001825 return LazyValueInfo::False;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001826 } else if (Pred == ICmpInst::ICMP_NE) {
Sylvestre Ledru91ce36c2012-09-27 10:14:43 +00001827 // !C1 != C -> true iff C1 == C.
Chris Lattnerb0c0a0d2009-11-15 20:01:24 +00001828 Res = ConstantFoldCompareInstOperands(ICmpInst::ICMP_NE,
Craig Topper6dd9dcf2017-06-09 21:18:16 +00001829 Val.getNotConstant(), C, DL,
Chad Rosier43a33062011-12-02 01:26:24 +00001830 TLI);
Chris Lattner565ee2f2009-11-12 04:36:58 +00001831 if (Res->isNullValue())
Hal Finkel7e184492014-09-07 20:29:59 +00001832 return LazyValueInfo::True;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001833 }
Hal Finkel7e184492014-09-07 20:29:59 +00001834 return LazyValueInfo::Unknown;
Chris Lattner565ee2f2009-11-12 04:36:58 +00001835 }
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001836
Hal Finkel7e184492014-09-07 20:29:59 +00001837 return LazyValueInfo::Unknown;
1838}
1839
Sanjay Patel2a385e22015-01-09 16:47:20 +00001840/// Determine whether the specified value comparison with a constant is known to
1841/// be true or false on the specified CFG edge. Pred is a CmpInst predicate.
Hal Finkel7e184492014-09-07 20:29:59 +00001842LazyValueInfo::Tristate
1843LazyValueInfo::getPredicateOnEdge(unsigned Pred, Value *V, Constant *C,
1844 BasicBlock *FromBB, BasicBlock *ToBB,
1845 Instruction *CxtI) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001846 const DataLayout &DL = FromBB->getModule()->getDataLayout();
Florian Hahn8af01572017-09-28 11:09:22 +00001847 ValueLatticeElement Result =
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001848 getImpl(PImpl, AC, &DL, DT).getValueOnEdge(V, FromBB, ToBB, CxtI);
Hal Finkel7e184492014-09-07 20:29:59 +00001849
1850 return getPredicateResult(Pred, C, Result, DL, TLI);
1851}
1852
1853LazyValueInfo::Tristate
1854LazyValueInfo::getPredicateAt(unsigned Pred, Value *V, Constant *C,
1855 Instruction *CxtI) {
Wei Mif160e342016-09-15 06:28:34 +00001856 // Is or is not NonNull are common predicates being queried. If
Nuno Lopes404f1062017-09-09 18:23:11 +00001857 // isKnownNonZero can tell us the result of the predicate, we can
Wei Mif160e342016-09-15 06:28:34 +00001858 // return it quickly. But this is only a fastpath, and falling
1859 // through would still be correct.
Nuno Lopes404f1062017-09-09 18:23:11 +00001860 const DataLayout &DL = CxtI->getModule()->getDataLayout();
Wei Mif160e342016-09-15 06:28:34 +00001861 if (V->getType()->isPointerTy() && C->isNullValue() &&
Johannes Doerfert40107ce2019-06-04 20:21:46 +00001862 isKnownNonZero(V->stripPointerCastsSameRepresentation(), DL)) {
Wei Mif160e342016-09-15 06:28:34 +00001863 if (Pred == ICmpInst::ICMP_EQ)
1864 return LazyValueInfo::False;
1865 else if (Pred == ICmpInst::ICMP_NE)
1866 return LazyValueInfo::True;
1867 }
Florian Hahn8af01572017-09-28 11:09:22 +00001868 ValueLatticeElement Result = getImpl(PImpl, AC, &DL, DT).getValueAt(V, CxtI);
Philip Reames66ab0f02015-06-16 00:49:59 +00001869 Tristate Ret = getPredicateResult(Pred, C, Result, DL, TLI);
1870 if (Ret != Unknown)
1871 return Ret;
Hal Finkel7e184492014-09-07 20:29:59 +00001872
Philip Reamesaeefae02015-11-04 01:47:04 +00001873 // Note: The following bit of code is somewhat distinct from the rest of LVI;
1874 // LVI as a whole tries to compute a lattice value which is conservatively
1875 // correct at a given location. In this case, we have a predicate which we
1876 // weren't able to prove about the merged result, and we're pushing that
1877 // predicate back along each incoming edge to see if we can prove it
1878 // separately for each input. As a motivating example, consider:
1879 // bb1:
1880 // %v1 = ... ; constantrange<1, 5>
1881 // br label %merge
1882 // bb2:
1883 // %v2 = ... ; constantrange<10, 20>
1884 // br label %merge
1885 // merge:
1886 // %phi = phi [%v1, %v2] ; constantrange<1,20>
1887 // %pred = icmp eq i32 %phi, 8
1888 // We can't tell from the lattice value for '%phi' that '%pred' is false
1889 // along each path, but by checking the predicate over each input separately,
1890 // we can.
1891 // We limit the search to one step backwards from the current BB and value.
1892 // We could consider extending this to search further backwards through the
1893 // CFG and/or value graph, but there are non-obvious compile time vs quality
NAKAMURA Takumif2529512016-07-04 01:26:27 +00001894 // tradeoffs.
Philip Reames66ab0f02015-06-16 00:49:59 +00001895 if (CxtI) {
Philip Reamesbb11d622015-08-31 18:31:48 +00001896 BasicBlock *BB = CxtI->getParent();
1897
1898 // Function entry or an unreachable block. Bail to avoid confusing
1899 // analysis below.
1900 pred_iterator PI = pred_begin(BB), PE = pred_end(BB);
1901 if (PI == PE)
1902 return Unknown;
1903
1904 // If V is a PHI node in the same block as the context, we need to ask
1905 // questions about the predicate as applied to the incoming value along
1906 // each edge. This is useful for eliminating cases where the predicate is
1907 // known along all incoming edges.
1908 if (auto *PHI = dyn_cast<PHINode>(V))
1909 if (PHI->getParent() == BB) {
1910 Tristate Baseline = Unknown;
1911 for (unsigned i = 0, e = PHI->getNumIncomingValues(); i < e; i++) {
1912 Value *Incoming = PHI->getIncomingValue(i);
1913 BasicBlock *PredBB = PHI->getIncomingBlock(i);
NAKAMURA Takumif2529512016-07-04 01:26:27 +00001914 // Note that PredBB may be BB itself.
Philip Reamesbb11d622015-08-31 18:31:48 +00001915 Tristate Result = getPredicateOnEdge(Pred, Incoming, C, PredBB, BB,
1916 CxtI);
NAKAMURA Takumi4cb46e62016-07-04 01:26:33 +00001917
Philip Reamesbb11d622015-08-31 18:31:48 +00001918 // Keep going as long as we've seen a consistent known result for
1919 // all inputs.
1920 Baseline = (i == 0) ? Result /* First iteration */
1921 : (Baseline == Result ? Baseline : Unknown); /* All others */
1922 if (Baseline == Unknown)
1923 break;
1924 }
1925 if (Baseline != Unknown)
1926 return Baseline;
NAKAMURA Takumibd072a92016-07-25 00:59:46 +00001927 }
Philip Reamesbb11d622015-08-31 18:31:48 +00001928
Philip Reames66ab0f02015-06-16 00:49:59 +00001929 // For a comparison where the V is outside this block, it's possible
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001930 // that we've branched on it before. Look to see if the value is known
Philip Reames66ab0f02015-06-16 00:49:59 +00001931 // on all incoming edges.
Philip Reamesbb11d622015-08-31 18:31:48 +00001932 if (!isa<Instruction>(V) ||
1933 cast<Instruction>(V)->getParent() != BB) {
Philip Reames66ab0f02015-06-16 00:49:59 +00001934 // For predecessor edge, determine if the comparison is true or false
Bruno Cardoso Lopes51fd2422015-07-28 15:53:21 +00001935 // on that edge. If they're all true or all false, we can conclude
Philip Reames66ab0f02015-06-16 00:49:59 +00001936 // the value of the comparison in this block.
1937 Tristate Baseline = getPredicateOnEdge(Pred, V, C, *PI, BB, CxtI);
1938 if (Baseline != Unknown) {
1939 // Check that all remaining incoming values match the first one.
1940 while (++PI != PE) {
1941 Tristate Ret = getPredicateOnEdge(Pred, V, C, *PI, BB, CxtI);
1942 if (Ret != Baseline) break;
1943 }
1944 // If we terminated early, then one of the values didn't match.
1945 if (PI == PE) {
1946 return Baseline;
1947 }
1948 }
1949 }
1950 }
1951 return Unknown;
Chris Lattnerfde1f8d2009-11-11 02:08:33 +00001952}
1953
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001954void LazyValueInfo::threadEdge(BasicBlock *PredBB, BasicBlock *OldSucc,
Nick Lewycky11678bd2010-12-15 18:57:18 +00001955 BasicBlock *NewSucc) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001956 if (PImpl) {
1957 const DataLayout &DL = PredBB->getModule()->getDataLayout();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001958 getImpl(PImpl, AC, &DL, DT).threadEdge(PredBB, OldSucc, NewSucc);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001959 }
Owen Anderson208636f2010-08-18 18:39:01 +00001960}
1961
1962void LazyValueInfo::eraseBlock(BasicBlock *BB) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001963 if (PImpl) {
1964 const DataLayout &DL = BB->getModule()->getDataLayout();
Daniel Jasperaec2fa32016-12-19 08:22:17 +00001965 getImpl(PImpl, AC, &DL, DT).eraseBlock(BB);
Mehdi Aminia28d91d2015-03-10 02:37:25 +00001966 }
Owen Andersonaa7f66b2010-07-26 18:48:03 +00001967}
Anna Thomase27b39a2017-03-22 19:27:12 +00001968
1969
Anna Thomas4acfc7e2017-06-06 19:25:31 +00001970void LazyValueInfo::printLVI(Function &F, DominatorTree &DTree, raw_ostream &OS) {
Anna Thomase27b39a2017-03-22 19:27:12 +00001971 if (PImpl) {
Anna Thomas4acfc7e2017-06-06 19:25:31 +00001972 getImpl(PImpl, AC, DL, DT).printLVI(F, DTree, OS);
Anna Thomase27b39a2017-03-22 19:27:12 +00001973 }
1974}
1975
Brian M. Rzyckif1a7df52018-02-16 16:35:17 +00001976void LazyValueInfo::disableDT() {
1977 if (PImpl)
1978 getImpl(PImpl, AC, DL, DT).disableDT();
1979}
1980
1981void LazyValueInfo::enableDT() {
1982 if (PImpl)
1983 getImpl(PImpl, AC, DL, DT).enableDT();
1984}
1985
Anna Thomas4acfc7e2017-06-06 19:25:31 +00001986// Print the LVI for the function arguments at the start of each basic block.
1987void LazyValueInfoAnnotatedWriter::emitBasicBlockStartAnnot(
1988 const BasicBlock *BB, formatted_raw_ostream &OS) {
1989 // Find if there are latticevalues defined for arguments of the function.
1990 auto *F = BB->getParent();
1991 for (auto &Arg : F->args()) {
Florian Hahn8af01572017-09-28 11:09:22 +00001992 ValueLatticeElement Result = LVIImpl->getValueInBlock(
Anna Thomas4acfc7e2017-06-06 19:25:31 +00001993 const_cast<Argument *>(&Arg), const_cast<BasicBlock *>(BB));
1994 if (Result.isUndefined())
1995 continue;
1996 OS << "; LatticeVal for: '" << Arg << "' is: " << Result << "\n";
1997 }
1998}
1999
2000// This function prints the LVI analysis for the instruction I at the beginning
2001// of various basic blocks. It relies on calculated values that are stored in
Xin Tongadb5bfe2018-04-24 07:38:07 +00002002// the LazyValueInfoCache, and in the absence of cached values, recalculate the
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002003// LazyValueInfo for `I`, and print that info.
2004void LazyValueInfoAnnotatedWriter::emitInstructionAnnot(
2005 const Instruction *I, formatted_raw_ostream &OS) {
2006
2007 auto *ParentBB = I->getParent();
2008 SmallPtrSet<const BasicBlock*, 16> BlocksContainingLVI;
2009 // We can generate (solve) LVI values only for blocks that are dominated by
2010 // the I's parent. However, to avoid generating LVI for all dominating blocks,
2011 // that contain redundant/uninteresting information, we print LVI for
2012 // blocks that may use this LVI information (such as immediate successor
2013 // blocks, and blocks that contain uses of `I`).
2014 auto printResult = [&](const BasicBlock *BB) {
2015 if (!BlocksContainingLVI.insert(BB).second)
2016 return;
Florian Hahn8af01572017-09-28 11:09:22 +00002017 ValueLatticeElement Result = LVIImpl->getValueInBlock(
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002018 const_cast<Instruction *>(I), const_cast<BasicBlock *>(BB));
2019 OS << "; LatticeVal for: '" << *I << "' in BB: '";
2020 BB->printAsOperand(OS, false);
2021 OS << "' is: " << Result << "\n";
2022 };
2023
2024 printResult(ParentBB);
Hiroshi Inoue8f976ba2018-01-17 12:29:38 +00002025 // Print the LVI analysis results for the immediate successor blocks, that
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002026 // are dominated by `ParentBB`.
2027 for (auto *BBSucc : successors(ParentBB))
2028 if (DT.dominates(ParentBB, BBSucc))
2029 printResult(BBSucc);
2030
2031 // Print LVI in blocks where `I` is used.
2032 for (auto *U : I->users())
2033 if (auto *UseI = dyn_cast<Instruction>(U))
2034 if (!isa<PHINode>(UseI) || DT.dominates(ParentBB, UseI->getParent()))
2035 printResult(UseI->getParent());
2036
2037}
2038
Anna Thomase27b39a2017-03-22 19:27:12 +00002039namespace {
2040// Printer class for LazyValueInfo results.
2041class LazyValueInfoPrinter : public FunctionPass {
2042public:
2043 static char ID; // Pass identification, replacement for typeid
2044 LazyValueInfoPrinter() : FunctionPass(ID) {
2045 initializeLazyValueInfoPrinterPass(*PassRegistry::getPassRegistry());
2046 }
2047
2048 void getAnalysisUsage(AnalysisUsage &AU) const override {
2049 AU.setPreservesAll();
2050 AU.addRequired<LazyValueInfoWrapperPass>();
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002051 AU.addRequired<DominatorTreeWrapperPass>();
Anna Thomase27b39a2017-03-22 19:27:12 +00002052 }
2053
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002054 // Get the mandatory dominator tree analysis and pass this in to the
2055 // LVIPrinter. We cannot rely on the LVI's DT, since it's optional.
Anna Thomase27b39a2017-03-22 19:27:12 +00002056 bool runOnFunction(Function &F) override {
2057 dbgs() << "LVI for function '" << F.getName() << "':\n";
2058 auto &LVI = getAnalysis<LazyValueInfoWrapperPass>().getLVI();
Anna Thomas4acfc7e2017-06-06 19:25:31 +00002059 auto &DTree = getAnalysis<DominatorTreeWrapperPass>().getDomTree();
2060 LVI.printLVI(F, DTree, dbgs());
Anna Thomase27b39a2017-03-22 19:27:12 +00002061 return false;
2062 }
2063};
2064}
2065
2066char LazyValueInfoPrinter::ID = 0;
2067INITIALIZE_PASS_BEGIN(LazyValueInfoPrinter, "print-lazy-value-info",
2068 "Lazy Value Info Printer Pass", false, false)
2069INITIALIZE_PASS_DEPENDENCY(LazyValueInfoWrapperPass)
2070INITIALIZE_PASS_END(LazyValueInfoPrinter, "print-lazy-value-info",
2071 "Lazy Value Info Printer Pass", false, false)