blob: e82f69a8aa96f56ee91d4370abfc12f33e3eebed [file] [log] [blame]
Eugene Zelenko99241d72017-10-20 21:47:29 +00001//===- NewGVN.cpp - Global Value Numbering Pass ---------------------------===//
Davide Italiano7e274e02016-12-22 16:03:48 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
Eugene Zelenko99241d72017-10-20 21:47:29 +00009//
Davide Italiano7e274e02016-12-22 16:03:48 +000010/// \file
11/// This file implements the new LLVM's Global Value Numbering pass.
12/// GVN partitions values computed by a function into congruence classes.
13/// Values ending up in the same congruence class are guaranteed to be the same
14/// for every execution of the program. In that respect, congruency is a
15/// compile-time approximation of equivalence of values at runtime.
16/// The algorithm implemented here uses a sparse formulation and it's based
17/// on the ideas described in the paper:
18/// "A Sparse Algorithm for Predicated Global Value Numbering" from
19/// Karthik Gargi.
20///
Daniel Berlindb3c7be2017-01-26 21:39:49 +000021/// A brief overview of the algorithm: The algorithm is essentially the same as
22/// the standard RPO value numbering algorithm (a good reference is the paper
23/// "SCC based value numbering" by L. Taylor Simpson) with one major difference:
24/// The RPO algorithm proceeds, on every iteration, to process every reachable
25/// block and every instruction in that block. This is because the standard RPO
26/// algorithm does not track what things have the same value number, it only
27/// tracks what the value number of a given operation is (the mapping is
28/// operation -> value number). Thus, when a value number of an operation
29/// changes, it must reprocess everything to ensure all uses of a value number
30/// get updated properly. In constrast, the sparse algorithm we use *also*
31/// tracks what operations have a given value number (IE it also tracks the
32/// reverse mapping from value number -> operations with that value number), so
33/// that it only needs to reprocess the instructions that are affected when
Daniel Berlinb527b2c2017-05-19 19:01:27 +000034/// something's value number changes. The vast majority of complexity and code
35/// in this file is devoted to tracking what value numbers could change for what
36/// instructions when various things happen. The rest of the algorithm is
37/// devoted to performing symbolic evaluation, forward propagation, and
38/// simplification of operations based on the value numbers deduced so far
39///
40/// In order to make the GVN mostly-complete, we use a technique derived from
41/// "Detection of Redundant Expressions: A Complete and Polynomial-time
42/// Algorithm in SSA" by R.R. Pai. The source of incompleteness in most SSA
43/// based GVN algorithms is related to their inability to detect equivalence
44/// between phi of ops (IE phi(a+b, c+d)) and op of phis (phi(a,c) + phi(b, d)).
45/// We resolve this issue by generating the equivalent "phi of ops" form for
46/// each op of phis we see, in a way that only takes polynomial time to resolve.
Daniel Berlindb3c7be2017-01-26 21:39:49 +000047///
48/// We also do not perform elimination by using any published algorithm. All
49/// published algorithms are O(Instructions). Instead, we use a technique that
50/// is O(number of operations with the same value number), enabling us to skip
51/// trying to eliminate things that have unique value numbers.
Eugene Zelenko99241d72017-10-20 21:47:29 +000052//
Davide Italiano7e274e02016-12-22 16:03:48 +000053//===----------------------------------------------------------------------===//
54
55#include "llvm/Transforms/Scalar/NewGVN.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000056#include "llvm/ADT/ArrayRef.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000057#include "llvm/ADT/BitVector.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000058#include "llvm/ADT/DenseMap.h"
59#include "llvm/ADT/DenseMapInfo.h"
60#include "llvm/ADT/DenseSet.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000061#include "llvm/ADT/DepthFirstIterator.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000062#include "llvm/ADT/GraphTraits.h"
63#include "llvm/ADT/Hashing.h"
64#include "llvm/ADT/PointerIntPair.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000065#include "llvm/ADT/PostOrderIterator.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000066#include "llvm/ADT/SmallPtrSet.h"
67#include "llvm/ADT/SmallVector.h"
Daniel Berlin9b926e92017-09-30 23:51:53 +000068#include "llvm/ADT/SparseBitVector.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000069#include "llvm/ADT/Statistic.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000070#include "llvm/ADT/iterator_range.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000071#include "llvm/Analysis/AliasAnalysis.h"
72#include "llvm/Analysis/AssumptionCache.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000073#include "llvm/Analysis/CFGPrinter.h"
74#include "llvm/Analysis/ConstantFolding.h"
75#include "llvm/Analysis/GlobalsModRef.h"
76#include "llvm/Analysis/InstructionSimplify.h"
Davide Italiano7e274e02016-12-22 16:03:48 +000077#include "llvm/Analysis/MemoryBuiltins.h"
Daniel Berlin2f72b192017-04-14 02:53:37 +000078#include "llvm/Analysis/MemorySSA.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000079#include "llvm/Analysis/TargetLibraryInfo.h"
David Blaikie2be39222018-03-21 22:34:23 +000080#include "llvm/Analysis/Utils/Local.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +000081#include "llvm/IR/Argument.h"
82#include "llvm/IR/BasicBlock.h"
83#include "llvm/IR/Constant.h"
84#include "llvm/IR/Constants.h"
85#include "llvm/IR/Dominators.h"
86#include "llvm/IR/Function.h"
87#include "llvm/IR/InstrTypes.h"
88#include "llvm/IR/Instruction.h"
89#include "llvm/IR/Instructions.h"
90#include "llvm/IR/IntrinsicInst.h"
91#include "llvm/IR/Intrinsics.h"
92#include "llvm/IR/LLVMContext.h"
93#include "llvm/IR/Type.h"
94#include "llvm/IR/Use.h"
95#include "llvm/IR/User.h"
96#include "llvm/IR/Value.h"
97#include "llvm/Pass.h"
98#include "llvm/Support/Allocator.h"
99#include "llvm/Support/ArrayRecycler.h"
100#include "llvm/Support/Casting.h"
101#include "llvm/Support/CommandLine.h"
102#include "llvm/Support/Debug.h"
Daniel Berlin283a6082017-03-01 19:59:26 +0000103#include "llvm/Support/DebugCounter.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +0000104#include "llvm/Support/ErrorHandling.h"
105#include "llvm/Support/PointerLikeTypeTraits.h"
106#include "llvm/Support/raw_ostream.h"
Davide Italiano7e274e02016-12-22 16:03:48 +0000107#include "llvm/Transforms/Scalar.h"
108#include "llvm/Transforms/Scalar/GVNExpression.h"
Daniel Berlinf7d95802017-02-18 23:06:50 +0000109#include "llvm/Transforms/Utils/PredicateInfo.h"
Daniel Berlin07daac82017-04-02 13:23:44 +0000110#include "llvm/Transforms/Utils/VNCoercion.h"
Eugene Zelenko99241d72017-10-20 21:47:29 +0000111#include <algorithm>
112#include <cassert>
113#include <cstdint>
114#include <iterator>
115#include <map>
116#include <memory>
117#include <set>
118#include <string>
119#include <tuple>
120#include <utility>
121#include <vector>
122
Davide Italiano7e274e02016-12-22 16:03:48 +0000123using namespace llvm;
Davide Italiano7e274e02016-12-22 16:03:48 +0000124using namespace llvm::GVNExpression;
Daniel Berlin07daac82017-04-02 13:23:44 +0000125using namespace llvm::VNCoercion;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000126
Davide Italiano7e274e02016-12-22 16:03:48 +0000127#define DEBUG_TYPE "newgvn"
128
129STATISTIC(NumGVNInstrDeleted, "Number of instructions deleted");
130STATISTIC(NumGVNBlocksDeleted, "Number of blocks deleted");
131STATISTIC(NumGVNOpsSimplified, "Number of Expressions simplified");
132STATISTIC(NumGVNPhisAllSame, "Number of PHIs whos arguments are all the same");
Daniel Berlin04443432017-01-07 03:23:47 +0000133STATISTIC(NumGVNMaxIterations,
134 "Maximum Number of iterations it took to converge GVN");
Daniel Berlinc0431fd2017-01-13 22:40:01 +0000135STATISTIC(NumGVNLeaderChanges, "Number of leader changes");
136STATISTIC(NumGVNSortedLeaderChanges, "Number of sorted leader changes");
137STATISTIC(NumGVNAvoidedSortedLeaderChanges,
138 "Number of avoided sorted leader changes");
Daniel Berlinc4796862017-01-27 02:37:11 +0000139STATISTIC(NumGVNDeadStores, "Number of redundant/dead stores eliminated");
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000140STATISTIC(NumGVNPHIOfOpsCreated, "Number of PHI of ops created");
141STATISTIC(NumGVNPHIOfOpsEliminations,
142 "Number of things eliminated using PHI of ops");
Daniel Berlin283a6082017-03-01 19:59:26 +0000143DEBUG_COUNTER(VNCounter, "newgvn-vn",
Craig Topper9cd976d2017-08-10 17:48:11 +0000144 "Controls which instructions are value numbered");
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000145DEBUG_COUNTER(PHIOfOpsCounter, "newgvn-phi",
Craig Topper9cd976d2017-08-10 17:48:11 +0000146 "Controls which instructions we create phi of ops for");
Daniel Berlin1316a942017-04-06 18:52:50 +0000147// Currently store defining access refinement is too slow due to basicaa being
148// egregiously slow. This flag lets us keep it working while we work on this
149// issue.
150static cl::opt<bool> EnableStoreRefinement("enable-store-refinement",
151 cl::init(false), cl::Hidden);
152
Chad Rosiera5508e32017-08-10 14:12:57 +0000153/// Currently, the generation "phi of ops" can result in correctness issues.
Daniel Berlin94090dd2017-09-02 02:18:44 +0000154static cl::opt<bool> EnablePhiOfOps("enable-phi-of-ops", cl::init(true),
Chad Rosiera5508e32017-08-10 14:12:57 +0000155 cl::Hidden);
156
Davide Italiano7e274e02016-12-22 16:03:48 +0000157//===----------------------------------------------------------------------===//
158// GVN Pass
159//===----------------------------------------------------------------------===//
160
161// Anchor methods.
162namespace llvm {
163namespace GVNExpression {
Eugene Zelenko99241d72017-10-20 21:47:29 +0000164
Daniel Berlin85f91b02016-12-26 20:06:58 +0000165Expression::~Expression() = default;
166BasicExpression::~BasicExpression() = default;
167CallExpression::~CallExpression() = default;
168LoadExpression::~LoadExpression() = default;
169StoreExpression::~StoreExpression() = default;
170AggregateValueExpression::~AggregateValueExpression() = default;
171PHIExpression::~PHIExpression() = default;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000172
173} // end namespace GVNExpression
174} // end namespace llvm
Davide Italiano7e274e02016-12-22 16:03:48 +0000175
Benjamin Kramer49a49fe2017-08-20 13:03:48 +0000176namespace {
Eugene Zelenko99241d72017-10-20 21:47:29 +0000177
Daniel Berlin2f72b192017-04-14 02:53:37 +0000178// Tarjan's SCC finding algorithm with Nuutila's improvements
179// SCCIterator is actually fairly complex for the simple thing we want.
180// It also wants to hand us SCC's that are unrelated to the phi node we ask
181// about, and have us process them there or risk redoing work.
182// Graph traits over a filter iterator also doesn't work that well here.
Daniel Berlin9d0042b2017-04-18 20:15:47 +0000183// This SCC finder is specialized to walk use-def chains, and only follows
184// instructions,
Daniel Berlin2f72b192017-04-14 02:53:37 +0000185// not generic values (arguments, etc).
186struct TarjanSCC {
Daniel Berlin2f72b192017-04-14 02:53:37 +0000187 TarjanSCC() : Components(1) {}
188
189 void Start(const Instruction *Start) {
190 if (Root.lookup(Start) == 0)
191 FindSCC(Start);
192 }
193
194 const SmallPtrSetImpl<const Value *> &getComponentFor(const Value *V) const {
195 unsigned ComponentID = ValueToComponent.lookup(V);
196
197 assert(ComponentID > 0 &&
198 "Asking for a component for a value we never processed");
199 return Components[ComponentID];
200 }
201
202private:
203 void FindSCC(const Instruction *I) {
204 Root[I] = ++DFSNum;
205 // Store the DFS Number we had before it possibly gets incremented.
206 unsigned int OurDFS = DFSNum;
207 for (auto &Op : I->operands()) {
208 if (auto *InstOp = dyn_cast<Instruction>(Op)) {
209 if (Root.lookup(Op) == 0)
210 FindSCC(InstOp);
211 if (!InComponent.count(Op))
212 Root[I] = std::min(Root.lookup(I), Root.lookup(Op));
213 }
214 }
Daniel Berlin9d0042b2017-04-18 20:15:47 +0000215 // See if we really were the root of a component, by seeing if we still have
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000216 // our DFSNumber. If we do, we are the root of the component, and we have
217 // completed a component. If we do not, we are not the root of a component,
218 // and belong on the component stack.
Daniel Berlin2f72b192017-04-14 02:53:37 +0000219 if (Root.lookup(I) == OurDFS) {
220 unsigned ComponentID = Components.size();
221 Components.resize(Components.size() + 1);
222 auto &Component = Components.back();
223 Component.insert(I);
224 DEBUG(dbgs() << "Component root is " << *I << "\n");
225 InComponent.insert(I);
226 ValueToComponent[I] = ComponentID;
227 // Pop a component off the stack and label it.
228 while (!Stack.empty() && Root.lookup(Stack.back()) >= OurDFS) {
229 auto *Member = Stack.back();
230 DEBUG(dbgs() << "Component member is " << *Member << "\n");
231 Component.insert(Member);
232 InComponent.insert(Member);
233 ValueToComponent[Member] = ComponentID;
234 Stack.pop_back();
235 }
236 } else {
237 // Part of a component, push to stack
238 Stack.push_back(I);
239 }
240 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000241
Daniel Berlin2f72b192017-04-14 02:53:37 +0000242 unsigned int DFSNum = 1;
243 SmallPtrSet<const Value *, 8> InComponent;
244 DenseMap<const Value *, unsigned int> Root;
245 SmallVector<const Value *, 8> Stack;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000246
Daniel Berlin2f72b192017-04-14 02:53:37 +0000247 // Store the components as vector of ptr sets, because we need the topo order
248 // of SCC's, but not individual member order
249 SmallVector<SmallPtrSet<const Value *, 8>, 8> Components;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000250
Daniel Berlin2f72b192017-04-14 02:53:37 +0000251 DenseMap<const Value *, unsigned> ValueToComponent;
252};
Eugene Zelenko99241d72017-10-20 21:47:29 +0000253
Davide Italiano7e274e02016-12-22 16:03:48 +0000254// Congruence classes represent the set of expressions/instructions
255// that are all the same *during some scope in the function*.
256// That is, because of the way we perform equality propagation, and
257// because of memory value numbering, it is not correct to assume
258// you can willy-nilly replace any member with any other at any
259// point in the function.
260//
261// For any Value in the Member set, it is valid to replace any dominated member
262// with that Value.
263//
Daniel Berlin1316a942017-04-06 18:52:50 +0000264// Every congruence class has a leader, and the leader is used to symbolize
265// instructions in a canonical way (IE every operand of an instruction that is a
266// member of the same congruence class will always be replaced with leader
267// during symbolization). To simplify symbolization, we keep the leader as a
268// constant if class can be proved to be a constant value. Otherwise, the
269// leader is the member of the value set with the smallest DFS number. Each
270// congruence class also has a defining expression, though the expression may be
271// null. If it exists, it can be used for forward propagation and reassociation
272// of values.
273
274// For memory, we also track a representative MemoryAccess, and a set of memory
275// members for MemoryPhis (which have no real instructions). Note that for
276// memory, it seems tempting to try to split the memory members into a
277// MemoryCongruenceClass or something. Unfortunately, this does not work
278// easily. The value numbering of a given memory expression depends on the
279// leader of the memory congruence class, and the leader of memory congruence
280// class depends on the value numbering of a given memory expression. This
281// leads to wasted propagation, and in some cases, missed optimization. For
282// example: If we had value numbered two stores together before, but now do not,
283// we move them to a new value congruence class. This in turn will move at one
284// of the memorydefs to a new memory congruence class. Which in turn, affects
285// the value numbering of the stores we just value numbered (because the memory
286// congruence class is part of the value number). So while theoretically
287// possible to split them up, it turns out to be *incredibly* complicated to get
288// it to work right, because of the interdependency. While structurally
289// slightly messier, it is algorithmically much simpler and faster to do what we
Daniel Berlina8236562017-04-07 18:38:09 +0000290// do here, and track them both at once in the same class.
291// Note: The default iterators for this class iterate over values
292class CongruenceClass {
293public:
294 using MemberType = Value;
295 using MemberSet = SmallPtrSet<MemberType *, 4>;
296 using MemoryMemberType = MemoryPhi;
297 using MemoryMemberSet = SmallPtrSet<const MemoryMemberType *, 2>;
298
299 explicit CongruenceClass(unsigned ID) : ID(ID) {}
300 CongruenceClass(unsigned ID, Value *Leader, const Expression *E)
301 : ID(ID), RepLeader(Leader), DefiningExpr(E) {}
Eugene Zelenko99241d72017-10-20 21:47:29 +0000302
Daniel Berlina8236562017-04-07 18:38:09 +0000303 unsigned getID() const { return ID; }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000304
Daniel Berlina8236562017-04-07 18:38:09 +0000305 // True if this class has no members left. This is mainly used for assertion
306 // purposes, and for skipping empty classes.
307 bool isDead() const {
308 // If it's both dead from a value perspective, and dead from a memory
309 // perspective, it's really dead.
310 return empty() && memory_empty();
311 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000312
Daniel Berlina8236562017-04-07 18:38:09 +0000313 // Leader functions
314 Value *getLeader() const { return RepLeader; }
315 void setLeader(Value *Leader) { RepLeader = Leader; }
316 const std::pair<Value *, unsigned int> &getNextLeader() const {
317 return NextLeader;
318 }
319 void resetNextLeader() { NextLeader = {nullptr, ~0}; }
Daniel Berlina8236562017-04-07 18:38:09 +0000320 void addPossibleNextLeader(std::pair<Value *, unsigned int> LeaderPair) {
321 if (LeaderPair.second < NextLeader.second)
322 NextLeader = LeaderPair;
323 }
324
325 Value *getStoredValue() const { return RepStoredValue; }
326 void setStoredValue(Value *Leader) { RepStoredValue = Leader; }
327 const MemoryAccess *getMemoryLeader() const { return RepMemoryAccess; }
328 void setMemoryLeader(const MemoryAccess *Leader) { RepMemoryAccess = Leader; }
329
330 // Forward propagation info
331 const Expression *getDefiningExpr() const { return DefiningExpr; }
Daniel Berlina8236562017-04-07 18:38:09 +0000332
333 // Value member set
334 bool empty() const { return Members.empty(); }
335 unsigned size() const { return Members.size(); }
336 MemberSet::const_iterator begin() const { return Members.begin(); }
337 MemberSet::const_iterator end() const { return Members.end(); }
338 void insert(MemberType *M) { Members.insert(M); }
339 void erase(MemberType *M) { Members.erase(M); }
340 void swap(MemberSet &Other) { Members.swap(Other); }
341
342 // Memory member set
343 bool memory_empty() const { return MemoryMembers.empty(); }
344 unsigned memory_size() const { return MemoryMembers.size(); }
345 MemoryMemberSet::const_iterator memory_begin() const {
346 return MemoryMembers.begin();
347 }
348 MemoryMemberSet::const_iterator memory_end() const {
349 return MemoryMembers.end();
350 }
351 iterator_range<MemoryMemberSet::const_iterator> memory() const {
352 return make_range(memory_begin(), memory_end());
353 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000354
Daniel Berlina8236562017-04-07 18:38:09 +0000355 void memory_insert(const MemoryMemberType *M) { MemoryMembers.insert(M); }
356 void memory_erase(const MemoryMemberType *M) { MemoryMembers.erase(M); }
357
358 // Store count
359 unsigned getStoreCount() const { return StoreCount; }
360 void incStoreCount() { ++StoreCount; }
361 void decStoreCount() {
362 assert(StoreCount != 0 && "Store count went negative");
363 --StoreCount;
364 }
365
Davide Italianodc435322017-05-10 19:57:43 +0000366 // True if this class has no memory members.
367 bool definesNoMemory() const { return StoreCount == 0 && memory_empty(); }
368
Daniel Berlina8236562017-04-07 18:38:09 +0000369 // Return true if two congruence classes are equivalent to each other. This
370 // means
371 // that every field but the ID number and the dead field are equivalent.
372 bool isEquivalentTo(const CongruenceClass *Other) const {
373 if (!Other)
374 return false;
375 if (this == Other)
376 return true;
377
378 if (std::tie(StoreCount, RepLeader, RepStoredValue, RepMemoryAccess) !=
379 std::tie(Other->StoreCount, Other->RepLeader, Other->RepStoredValue,
380 Other->RepMemoryAccess))
381 return false;
382 if (DefiningExpr != Other->DefiningExpr)
383 if (!DefiningExpr || !Other->DefiningExpr ||
384 *DefiningExpr != *Other->DefiningExpr)
385 return false;
386 // We need some ordered set
387 std::set<Value *> AMembers(Members.begin(), Members.end());
388 std::set<Value *> BMembers(Members.begin(), Members.end());
389 return AMembers == BMembers;
390 }
391
392private:
Davide Italiano7e274e02016-12-22 16:03:48 +0000393 unsigned ID;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000394
Davide Italiano7e274e02016-12-22 16:03:48 +0000395 // Representative leader.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000396 Value *RepLeader = nullptr;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000397
Daniel Berlina8236562017-04-07 18:38:09 +0000398 // The most dominating leader after our current leader, because the member set
399 // is not sorted and is expensive to keep sorted all the time.
400 std::pair<Value *, unsigned int> NextLeader = {nullptr, ~0U};
Eugene Zelenko99241d72017-10-20 21:47:29 +0000401
Daniel Berlin1316a942017-04-06 18:52:50 +0000402 // If this is represented by a store, the value of the store.
Daniel Berlin26addef2017-01-20 21:04:30 +0000403 Value *RepStoredValue = nullptr;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000404
Daniel Berlin1316a942017-04-06 18:52:50 +0000405 // If this class contains MemoryDefs or MemoryPhis, this is the leading memory
406 // access.
407 const MemoryAccess *RepMemoryAccess = nullptr;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000408
Davide Italiano7e274e02016-12-22 16:03:48 +0000409 // Defining Expression.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000410 const Expression *DefiningExpr = nullptr;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000411
Davide Italiano7e274e02016-12-22 16:03:48 +0000412 // Actual members of this class.
413 MemberSet Members;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000414
Daniel Berlin1316a942017-04-06 18:52:50 +0000415 // This is the set of MemoryPhis that exist in the class. MemoryDefs and
416 // MemoryUses have real instructions representing them, so we only need to
417 // track MemoryPhis here.
418 MemoryMemberSet MemoryMembers;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000419
Daniel Berlinf6eba4b2017-01-11 20:22:36 +0000420 // Number of stores in this congruence class.
421 // This is used so we can detect store equivalence changes properly.
Davide Italianoeac05f62017-01-11 23:41:24 +0000422 int StoreCount = 0;
Davide Italiano7e274e02016-12-22 16:03:48 +0000423};
Eugene Zelenko99241d72017-10-20 21:47:29 +0000424
425} // end anonymous namespace
Davide Italiano7e274e02016-12-22 16:03:48 +0000426
427namespace llvm {
Eugene Zelenko99241d72017-10-20 21:47:29 +0000428
Daniel Berlineafdd862017-06-06 17:15:28 +0000429struct ExactEqualsExpression {
430 const Expression &E;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000431
Daniel Berlineafdd862017-06-06 17:15:28 +0000432 explicit ExactEqualsExpression(const Expression &E) : E(E) {}
Eugene Zelenko99241d72017-10-20 21:47:29 +0000433
Daniel Berlineafdd862017-06-06 17:15:28 +0000434 hash_code getComputedHash() const { return E.getComputedHash(); }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000435
Daniel Berlineafdd862017-06-06 17:15:28 +0000436 bool operator==(const Expression &Other) const {
437 return E.exactlyEquals(Other);
438 }
439};
440
Daniel Berlin85f91b02016-12-26 20:06:58 +0000441template <> struct DenseMapInfo<const Expression *> {
442 static const Expression *getEmptyKey() {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000443 auto Val = static_cast<uintptr_t>(-1);
Daniel Berlin85f91b02016-12-26 20:06:58 +0000444 Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable;
445 return reinterpret_cast<const Expression *>(Val);
446 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000447
Daniel Berlin85f91b02016-12-26 20:06:58 +0000448 static const Expression *getTombstoneKey() {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000449 auto Val = static_cast<uintptr_t>(~1U);
Daniel Berlin85f91b02016-12-26 20:06:58 +0000450 Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable;
451 return reinterpret_cast<const Expression *>(Val);
452 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000453
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000454 static unsigned getHashValue(const Expression *E) {
Daniel Berlineafdd862017-06-06 17:15:28 +0000455 return E->getComputedHash();
Daniel Berlin85f91b02016-12-26 20:06:58 +0000456 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000457
Daniel Berlineafdd862017-06-06 17:15:28 +0000458 static unsigned getHashValue(const ExactEqualsExpression &E) {
459 return E.getComputedHash();
460 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000461
Daniel Berlineafdd862017-06-06 17:15:28 +0000462 static bool isEqual(const ExactEqualsExpression &LHS, const Expression *RHS) {
463 if (RHS == getTombstoneKey() || RHS == getEmptyKey())
464 return false;
465 return LHS == *RHS;
466 }
467
Daniel Berlin85f91b02016-12-26 20:06:58 +0000468 static bool isEqual(const Expression *LHS, const Expression *RHS) {
469 if (LHS == RHS)
470 return true;
471 if (LHS == getTombstoneKey() || RHS == getTombstoneKey() ||
472 LHS == getEmptyKey() || RHS == getEmptyKey())
473 return false;
Daniel Berlin2aa5dc12017-05-30 06:58:18 +0000474 // Compare hashes before equality. This is *not* what the hashtable does,
475 // since it is computing it modulo the number of buckets, whereas we are
476 // using the full hash keyspace. Since the hashes are precomputed, this
477 // check is *much* faster than equality.
478 if (LHS->getComputedHash() != RHS->getComputedHash())
479 return false;
Daniel Berlin85f91b02016-12-26 20:06:58 +0000480 return *LHS == *RHS;
481 }
482};
Eugene Zelenko99241d72017-10-20 21:47:29 +0000483
Davide Italiano7e274e02016-12-22 16:03:48 +0000484} // end namespace llvm
485
Benjamin Kramerefcf06f2017-02-11 11:06:55 +0000486namespace {
Eugene Zelenko99241d72017-10-20 21:47:29 +0000487
Daniel Berlin64e68992017-03-12 04:46:45 +0000488class NewGVN {
489 Function &F;
Davide Italiano7e274e02016-12-22 16:03:48 +0000490 DominatorTree *DT;
Daniel Berlin64e68992017-03-12 04:46:45 +0000491 const TargetLibraryInfo *TLI;
Davide Italiano7e274e02016-12-22 16:03:48 +0000492 AliasAnalysis *AA;
493 MemorySSA *MSSA;
494 MemorySSAWalker *MSSAWalker;
Daniel Berlin64e68992017-03-12 04:46:45 +0000495 const DataLayout &DL;
Daniel Berlinf7d95802017-02-18 23:06:50 +0000496 std::unique_ptr<PredicateInfo> PredInfo;
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000497
498 // These are the only two things the create* functions should have
499 // side-effects on due to allocating memory.
500 mutable BumpPtrAllocator ExpressionAllocator;
501 mutable ArrayRecycler<Value *> ArgRecycler;
502 mutable TarjanSCC SCCFinder;
Daniel Berlinede130d2017-04-26 20:56:14 +0000503 const SimplifyQuery SQ;
Davide Italiano7e274e02016-12-22 16:03:48 +0000504
Daniel Berlin1c087672017-02-11 15:07:01 +0000505 // Number of function arguments, used by ranking
506 unsigned int NumFuncArgs;
507
Daniel Berlin2f72b192017-04-14 02:53:37 +0000508 // RPOOrdering of basic blocks
509 DenseMap<const DomTreeNode *, unsigned> RPOOrdering;
510
Davide Italiano7e274e02016-12-22 16:03:48 +0000511 // Congruence class info.
Daniel Berlinb79f5362017-02-11 12:48:50 +0000512
513 // This class is called INITIAL in the paper. It is the class everything
514 // startsout in, and represents any value. Being an optimistic analysis,
Daniel Berlin5c338ff2017-03-10 19:05:04 +0000515 // anything in the TOP class has the value TOP, which is indeterminate and
Daniel Berlinb79f5362017-02-11 12:48:50 +0000516 // equivalent to everything.
Daniel Berlin5c338ff2017-03-10 19:05:04 +0000517 CongruenceClass *TOPClass;
Davide Italiano7e274e02016-12-22 16:03:48 +0000518 std::vector<CongruenceClass *> CongruenceClasses;
519 unsigned NextCongruenceNum;
520
521 // Value Mappings.
522 DenseMap<Value *, CongruenceClass *> ValueToClass;
523 DenseMap<Value *, const Expression *> ValueToExpression;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000524
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000525 // Value PHI handling, used to make equivalence between phi(op, op) and
526 // op(phi, phi).
527 // These mappings just store various data that would normally be part of the
528 // IR.
Daniel Berlin9b926e92017-09-30 23:51:53 +0000529 SmallPtrSet<const Instruction *, 8> PHINodeUses;
530
Daniel Berlin94090dd2017-09-02 02:18:44 +0000531 DenseMap<const Value *, bool> OpSafeForPHIOfOps;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000532
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000533 // Map a temporary instruction we created to a parent block.
534 DenseMap<const Value *, BasicBlock *> TempToBlock;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000535
Davide Italiano5974c312017-08-03 21:17:49 +0000536 // Map between the already in-program instructions and the temporary phis we
537 // created that they are known equivalent to.
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000538 DenseMap<const Value *, PHINode *> RealToTemp;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000539
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000540 // In order to know when we should re-process instructions that have
541 // phi-of-ops, we track the set of expressions that they needed as
542 // leaders. When we discover new leaders for those expressions, we process the
543 // associated phi-of-op instructions again in case they have changed. The
544 // other way they may change is if they had leaders, and those leaders
545 // disappear. However, at the point they have leaders, there are uses of the
546 // relevant operands in the created phi node, and so they will get reprocessed
547 // through the normal user marking we perform.
548 mutable DenseMap<const Value *, SmallPtrSet<Value *, 2>> AdditionalUsers;
549 DenseMap<const Expression *, SmallPtrSet<Instruction *, 2>>
550 ExpressionToPhiOfOps;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000551
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000552 // Map from temporary operation to MemoryAccess.
553 DenseMap<const Instruction *, MemoryUseOrDef *> TempToMemory;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000554
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000555 // Set of all temporary instructions we created.
Davide Italiano5974c312017-08-03 21:17:49 +0000556 // Note: This will include instructions that were just created during value
557 // numbering. The way to test if something is using them is to check
558 // RealToTemp.
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000559 DenseSet<Instruction *> AllTempInstructions;
Davide Italiano7e274e02016-12-22 16:03:48 +0000560
Daniel Berlin9b926e92017-09-30 23:51:53 +0000561 // This is the set of instructions to revisit on a reachability change. At
562 // the end of the main iteration loop it will contain at least all the phi of
563 // ops instructions that will be changed to phis, as well as regular phis.
564 // During the iteration loop, it may contain other things, such as phi of ops
565 // instructions that used edge reachability to reach a result, and so need to
566 // be revisited when the edge changes, independent of whether the phi they
567 // depended on changes.
568 DenseMap<BasicBlock *, SparseBitVector<>> RevisitOnReachabilityChange;
569
Daniel Berlinf7d95802017-02-18 23:06:50 +0000570 // Mapping from predicate info we used to the instructions we used it with.
571 // In order to correctly ensure propagation, we must keep track of what
572 // comparisons we used, so that when the values of the comparisons change, we
573 // propagate the information to the places we used the comparison.
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000574 mutable DenseMap<const Value *, SmallPtrSet<Instruction *, 2>>
575 PredicateToUsers;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000576
Daniel Berlin1316a942017-04-06 18:52:50 +0000577 // the same reasoning as PredicateToUsers. When we skip MemoryAccesses for
578 // stores, we no longer can rely solely on the def-use chains of MemorySSA.
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000579 mutable DenseMap<const MemoryAccess *, SmallPtrSet<MemoryAccess *, 2>>
580 MemoryToUsers;
Daniel Berlinf7d95802017-02-18 23:06:50 +0000581
Daniel Berlind7c12ee2016-12-25 22:23:49 +0000582 // A table storing which memorydefs/phis represent a memory state provably
583 // equivalent to another memory state.
584 // We could use the congruence class machinery, but the MemoryAccess's are
585 // abstract memory states, so they can only ever be equivalent to each other,
586 // and not to constants, etc.
Daniel Berlin1ea5f322017-01-26 22:21:48 +0000587 DenseMap<const MemoryAccess *, CongruenceClass *> MemoryAccessToClass;
Daniel Berlind7c12ee2016-12-25 22:23:49 +0000588
Daniel Berlin1316a942017-04-06 18:52:50 +0000589 // We could, if we wanted, build MemoryPhiExpressions and
590 // MemoryVariableExpressions, etc, and value number them the same way we value
591 // number phi expressions. For the moment, this seems like overkill. They
592 // can only exist in one of three states: they can be TOP (equal to
593 // everything), Equivalent to something else, or unique. Because we do not
594 // create expressions for them, we need to simulate leader change not just
595 // when they change class, but when they change state. Note: We can do the
596 // same thing for phis, and avoid having phi expressions if we wanted, We
597 // should eventually unify in one direction or the other, so this is a little
598 // bit of an experiment in which turns out easier to maintain.
599 enum MemoryPhiState { MPS_Invalid, MPS_TOP, MPS_Equivalent, MPS_Unique };
600 DenseMap<const MemoryPhi *, MemoryPhiState> MemoryPhiState;
601
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000602 enum InstCycleState { ICS_Unknown, ICS_CycleFree, ICS_Cycle };
603 mutable DenseMap<const Instruction *, InstCycleState> InstCycleState;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000604
Davide Italiano7e274e02016-12-22 16:03:48 +0000605 // Expression to class mapping.
Piotr Padlewskie4047b82016-12-28 19:29:26 +0000606 using ExpressionClassMap = DenseMap<const Expression *, CongruenceClass *>;
Davide Italiano7e274e02016-12-22 16:03:48 +0000607 ExpressionClassMap ExpressionToClass;
608
Daniel Berline021d2d2017-05-19 20:22:20 +0000609 // We have a single expression that represents currently DeadExpressions.
610 // For dead expressions we can prove will stay dead, we mark them with
611 // DFS number zero. However, it's possible in the case of phi nodes
612 // for us to assume/prove all arguments are dead during fixpointing.
613 // We use DeadExpression for that case.
614 DeadExpression *SingletonDeadExpression = nullptr;
615
Davide Italiano7e274e02016-12-22 16:03:48 +0000616 // Which values have changed as a result of leader changes.
Daniel Berlin3a1bd022017-01-11 20:22:05 +0000617 SmallPtrSet<Value *, 8> LeaderChanges;
Davide Italiano7e274e02016-12-22 16:03:48 +0000618
619 // Reachability info.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000620 using BlockEdge = BasicBlockEdge;
Davide Italiano7e274e02016-12-22 16:03:48 +0000621 DenseSet<BlockEdge> ReachableEdges;
622 SmallPtrSet<const BasicBlock *, 8> ReachableBlocks;
623
624 // This is a bitvector because, on larger functions, we may have
625 // thousands of touched instructions at once (entire blocks,
626 // instructions with hundreds of uses, etc). Even with optimization
627 // for when we mark whole blocks as touched, when this was a
628 // SmallPtrSet or DenseSet, for some functions, we spent >20% of all
629 // the time in GVN just managing this list. The bitvector, on the
630 // other hand, efficiently supports test/set/clear of both
631 // individual and ranges, as well as "find next element" This
632 // enables us to use it as a worklist with essentially 0 cost.
633 BitVector TouchedInstructions;
634
635 DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange;
Davide Italiano7e274e02016-12-22 16:03:48 +0000636
637#ifndef NDEBUG
638 // Debugging for how many times each block and instruction got processed.
639 DenseMap<const Value *, unsigned> ProcessedCount;
640#endif
641
642 // DFS info.
Davide Italiano71f2d9c2017-01-20 23:29:28 +0000643 // This contains a mapping from Instructions to DFS numbers.
644 // The numbering starts at 1. An instruction with DFS number zero
645 // means that the instruction is dead.
Davide Italiano7e274e02016-12-22 16:03:48 +0000646 DenseMap<const Value *, unsigned> InstrDFS;
Davide Italiano71f2d9c2017-01-20 23:29:28 +0000647
648 // This contains the mapping DFS numbers to instructions.
Daniel Berlin1f31fe522016-12-27 09:20:36 +0000649 SmallVector<Value *, 32> DFSToInstr;
Davide Italiano7e274e02016-12-22 16:03:48 +0000650
651 // Deletion info.
652 SmallPtrSet<Instruction *, 8> InstructionsToErase;
653
654public:
Daniel Berlin64e68992017-03-12 04:46:45 +0000655 NewGVN(Function &F, DominatorTree *DT, AssumptionCache *AC,
656 TargetLibraryInfo *TLI, AliasAnalysis *AA, MemorySSA *MSSA,
657 const DataLayout &DL)
Daniel Berlin4d0fe642017-04-28 19:55:38 +0000658 : F(F), DT(DT), TLI(TLI), AA(AA), MSSA(MSSA), DL(DL),
Daniel Berlinede130d2017-04-26 20:56:14 +0000659 PredInfo(make_unique<PredicateInfo>(F, *DT, *AC)), SQ(DL, TLI, DT, AC) {
660 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000661
Daniel Berlin64e68992017-03-12 04:46:45 +0000662 bool runGVN();
Davide Italiano7e274e02016-12-22 16:03:48 +0000663
664private:
Davide Italiano7e274e02016-12-22 16:03:48 +0000665 // Expression handling.
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000666 const Expression *createExpression(Instruction *) const;
Daniel Berlin54a92fc2017-09-05 02:17:42 +0000667 const Expression *createBinaryExpression(unsigned, Type *, Value *, Value *,
668 Instruction *) const;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000669
Daniel Berlinc1305af2017-09-30 23:51:54 +0000670 // Our canonical form for phi arguments is a pair of incoming value, incoming
671 // basic block.
Eugene Zelenko99241d72017-10-20 21:47:29 +0000672 using ValPair = std::pair<Value *, BasicBlock *>;
673
Daniel Berlinc1305af2017-09-30 23:51:54 +0000674 PHIExpression *createPHIExpression(ArrayRef<ValPair>, const Instruction *,
675 BasicBlock *, bool &HasBackEdge,
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000676 bool &OriginalOpsConstant) const;
Daniel Berline021d2d2017-05-19 20:22:20 +0000677 const DeadExpression *createDeadExpression() const;
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000678 const VariableExpression *createVariableExpression(Value *) const;
679 const ConstantExpression *createConstantExpression(Constant *) const;
680 const Expression *createVariableOrConstant(Value *V) const;
681 const UnknownExpression *createUnknownExpression(Instruction *) const;
Daniel Berlin1316a942017-04-06 18:52:50 +0000682 const StoreExpression *createStoreExpression(StoreInst *,
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000683 const MemoryAccess *) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000684 LoadExpression *createLoadExpression(Type *, Value *, LoadInst *,
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000685 const MemoryAccess *) const;
686 const CallExpression *createCallExpression(CallInst *,
687 const MemoryAccess *) const;
688 const AggregateValueExpression *
689 createAggregateValueExpression(Instruction *) const;
690 bool setBasicExpressionInfo(Instruction *, BasicExpression *) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000691
692 // Congruence class handling.
693 CongruenceClass *createCongruenceClass(Value *Leader, const Expression *E) {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +0000694 auto *result = new CongruenceClass(NextCongruenceNum++, Leader, E);
Piotr Padlewski6c37d292016-12-28 23:24:02 +0000695 CongruenceClasses.emplace_back(result);
Davide Italiano7e274e02016-12-22 16:03:48 +0000696 return result;
697 }
698
Daniel Berlin1316a942017-04-06 18:52:50 +0000699 CongruenceClass *createMemoryClass(MemoryAccess *MA) {
700 auto *CC = createCongruenceClass(nullptr, nullptr);
Daniel Berlina8236562017-04-07 18:38:09 +0000701 CC->setMemoryLeader(MA);
Daniel Berlin1316a942017-04-06 18:52:50 +0000702 return CC;
703 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000704
Daniel Berlin1316a942017-04-06 18:52:50 +0000705 CongruenceClass *ensureLeaderOfMemoryClass(MemoryAccess *MA) {
706 auto *CC = getMemoryClass(MA);
Daniel Berlina8236562017-04-07 18:38:09 +0000707 if (CC->getMemoryLeader() != MA)
Daniel Berlin1316a942017-04-06 18:52:50 +0000708 CC = createMemoryClass(MA);
709 return CC;
710 }
711
Davide Italiano7e274e02016-12-22 16:03:48 +0000712 CongruenceClass *createSingletonCongruenceClass(Value *Member) {
Davide Italiano0e714802016-12-28 14:00:11 +0000713 CongruenceClass *CClass = createCongruenceClass(Member, nullptr);
Daniel Berlina8236562017-04-07 18:38:09 +0000714 CClass->insert(Member);
Davide Italiano7e274e02016-12-22 16:03:48 +0000715 ValueToClass[Member] = CClass;
716 return CClass;
717 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000718
Davide Italiano7e274e02016-12-22 16:03:48 +0000719 void initializeCongruenceClasses(Function &F);
Daniel Berlin9b926e92017-09-30 23:51:53 +0000720 const Expression *makePossiblePHIOfOps(Instruction *,
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000721 SmallPtrSetImpl<Value *> &);
Daniel Berlin94090dd2017-09-02 02:18:44 +0000722 Value *findLeaderForInst(Instruction *ValueOp,
723 SmallPtrSetImpl<Value *> &Visited,
724 MemoryAccess *MemAccess, Instruction *OrigInst,
725 BasicBlock *PredBB);
Daniel Berlin08dd5822017-10-06 01:33:06 +0000726 bool OpIsSafeForPHIOfOpsHelper(Value *V, const BasicBlock *PHIBlock,
727 SmallPtrSetImpl<const Value *> &Visited,
728 SmallVectorImpl<Instruction *> &Worklist);
729 bool OpIsSafeForPHIOfOps(Value *Op, const BasicBlock *PHIBlock,
Daniel Berlin94090dd2017-09-02 02:18:44 +0000730 SmallPtrSetImpl<const Value *> &);
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000731 void addPhiOfOps(PHINode *Op, BasicBlock *BB, Instruction *ExistingValue);
Davide Italiano5974c312017-08-03 21:17:49 +0000732 void removePhiOfOps(Instruction *I, PHINode *PHITemp);
Davide Italiano7e274e02016-12-22 16:03:48 +0000733
Daniel Berlind7c12ee2016-12-25 22:23:49 +0000734 // Value number an Instruction or MemoryPhi.
735 void valueNumberMemoryPhi(MemoryPhi *);
736 void valueNumberInstruction(Instruction *);
737
Davide Italiano7e274e02016-12-22 16:03:48 +0000738 // Symbolic evaluation.
739 const Expression *checkSimplificationResults(Expression *, Instruction *,
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000740 Value *) const;
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000741 const Expression *performSymbolicEvaluation(Value *,
742 SmallPtrSetImpl<Value *> &) const;
Daniel Berlin07daac82017-04-02 13:23:44 +0000743 const Expression *performSymbolicLoadCoercion(Type *, Value *, LoadInst *,
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000744 Instruction *,
745 MemoryAccess *) const;
746 const Expression *performSymbolicLoadEvaluation(Instruction *) const;
747 const Expression *performSymbolicStoreEvaluation(Instruction *) const;
748 const Expression *performSymbolicCallEvaluation(Instruction *) const;
Daniel Berlinc1305af2017-09-30 23:51:54 +0000749 void sortPHIOps(MutableArrayRef<ValPair> Ops) const;
750 const Expression *performSymbolicPHIEvaluation(ArrayRef<ValPair>,
751 Instruction *I,
752 BasicBlock *PHIBlock) const;
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000753 const Expression *performSymbolicAggrValueEvaluation(Instruction *) const;
754 const Expression *performSymbolicCmpEvaluation(Instruction *) const;
755 const Expression *performSymbolicPredicateInfoEvaluation(Instruction *) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000756
757 // Congruence finding.
Daniel Berlin9d0796e2017-03-24 05:30:34 +0000758 bool someEquivalentDominates(const Instruction *, const Instruction *) const;
Daniel Berlin203f47b2017-01-31 22:31:53 +0000759 Value *lookupOperandLeader(Value *) const;
Daniel Berlin94090dd2017-09-02 02:18:44 +0000760 CongruenceClass *getClassForExpression(const Expression *E) const;
Daniel Berlinc0431fd2017-01-13 22:40:01 +0000761 void performCongruenceFinding(Instruction *, const Expression *);
Daniel Berlin1316a942017-04-06 18:52:50 +0000762 void moveValueToNewCongruenceClass(Instruction *, const Expression *,
763 CongruenceClass *, CongruenceClass *);
764 void moveMemoryToNewCongruenceClass(Instruction *, MemoryAccess *,
765 CongruenceClass *, CongruenceClass *);
766 Value *getNextValueLeader(CongruenceClass *) const;
767 const MemoryAccess *getNextMemoryLeader(CongruenceClass *) const;
768 bool setMemoryClass(const MemoryAccess *From, CongruenceClass *To);
769 CongruenceClass *getMemoryClass(const MemoryAccess *MA) const;
770 const MemoryAccess *lookupMemoryLeader(const MemoryAccess *) const;
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000771 bool isMemoryAccessTOP(const MemoryAccess *) const;
Daniel Berlin1316a942017-04-06 18:52:50 +0000772
Daniel Berlin1c087672017-02-11 15:07:01 +0000773 // Ranking
774 unsigned int getRank(const Value *) const;
775 bool shouldSwapOperands(const Value *, const Value *) const;
776
Davide Italiano7e274e02016-12-22 16:03:48 +0000777 // Reachability handling.
778 void updateReachableEdge(BasicBlock *, BasicBlock *);
779 void processOutgoingEdges(TerminatorInst *, BasicBlock *);
Daniel Berlin97718e62017-01-31 22:32:03 +0000780 Value *findConditionEquivalence(Value *) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000781
782 // Elimination.
783 struct ValueDFS;
Daniel Berlina8236562017-04-07 18:38:09 +0000784 void convertClassToDFSOrdered(const CongruenceClass &,
Daniel Berline3e69e12017-03-10 00:32:33 +0000785 SmallVectorImpl<ValueDFS> &,
786 DenseMap<const Value *, unsigned int> &,
Daniel Berlina8236562017-04-07 18:38:09 +0000787 SmallPtrSetImpl<Instruction *> &) const;
788 void convertClassToLoadsAndStores(const CongruenceClass &,
789 SmallVectorImpl<ValueDFS> &) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000790
791 bool eliminateInstructions(Function &);
792 void replaceInstruction(Instruction *, Value *);
793 void markInstructionForDeletion(Instruction *);
794 void deleteInstructionsInBlock(BasicBlock *);
Daniel Berlin4ad7e8d2017-09-05 02:17:40 +0000795 Value *findPHIOfOpsLeader(const Expression *, const Instruction *,
796 const BasicBlock *) const;
797
Davide Italiano7e274e02016-12-22 16:03:48 +0000798 // New instruction creation.
Eugene Zelenko99241d72017-10-20 21:47:29 +0000799 void handleNewInstruction(Instruction *) {}
Daniel Berlin32f8d562017-01-07 16:55:14 +0000800
801 // Various instruction touch utilities
Daniel Berlin0207cca2017-05-21 23:41:56 +0000802 template <typename Map, typename KeyType, typename Func>
803 void for_each_found(Map &, const KeyType &, Func);
804 template <typename Map, typename KeyType>
805 void touchAndErase(Map &, const KeyType &);
Davide Italiano7e274e02016-12-22 16:03:48 +0000806 void markUsersTouched(Value *);
Daniel Berlin1316a942017-04-06 18:52:50 +0000807 void markMemoryUsersTouched(const MemoryAccess *);
808 void markMemoryDefTouched(const MemoryAccess *);
Daniel Berlinf7d95802017-02-18 23:06:50 +0000809 void markPredicateUsersTouched(Instruction *);
Daniel Berlin1316a942017-04-06 18:52:50 +0000810 void markValueLeaderChangeTouched(CongruenceClass *CC);
811 void markMemoryLeaderChangeTouched(CongruenceClass *CC);
Daniel Berlin2aa5dc12017-05-30 06:58:18 +0000812 void markPhiOfOpsChanged(const Expression *E);
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000813 void addPredicateUsers(const PredicateBase *, Instruction *) const;
814 void addMemoryUsers(const MemoryAccess *To, MemoryAccess *U) const;
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000815 void addAdditionalUsers(Value *To, Value *User) const;
Davide Italiano7e274e02016-12-22 16:03:48 +0000816
Daniel Berlin06329a92017-03-18 15:41:40 +0000817 // Main loop of value numbering
818 void iterateTouchedInstructions();
819
Davide Italiano7e274e02016-12-22 16:03:48 +0000820 // Utilities.
821 void cleanupTables();
822 std::pair<unsigned, unsigned> assignDFSNumbers(BasicBlock *, unsigned);
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000823 void updateProcessedCount(const Value *V);
Daniel Berlinf6eba4b2017-01-11 20:22:36 +0000824 void verifyMemoryCongruency() const;
Daniel Berlin06329a92017-03-18 15:41:40 +0000825 void verifyIterationSettled(Function &F);
Daniel Berlin45403572017-05-16 19:58:47 +0000826 void verifyStoreExpressions() const;
Davide Italianoeab0de22017-05-18 23:22:44 +0000827 bool singleReachablePHIPath(SmallPtrSet<const MemoryAccess *, 8> &,
828 const MemoryAccess *, const MemoryAccess *) const;
Daniel Berlin06329a92017-03-18 15:41:40 +0000829 BasicBlock *getBlockForValue(Value *V) const;
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000830 void deleteExpression(const Expression *E) const;
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000831 MemoryUseOrDef *getMemoryAccess(const Instruction *) const;
832 MemoryAccess *getDefiningAccess(const MemoryAccess *) const;
833 MemoryPhi *getMemoryAccess(const BasicBlock *) const;
834 template <class T, class Range> T *getMinDFSOfRange(const Range &) const;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000835
Daniel Berlin21279bd2017-04-06 18:52:58 +0000836 unsigned InstrToDFSNum(const Value *V) const {
Daniel Berlin1316a942017-04-06 18:52:50 +0000837 assert(isa<Instruction>(V) && "This should not be used for MemoryAccesses");
838 return InstrDFS.lookup(V);
839 }
840
Daniel Berlin21279bd2017-04-06 18:52:58 +0000841 unsigned InstrToDFSNum(const MemoryAccess *MA) const {
842 return MemoryToDFSNum(MA);
843 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000844
Daniel Berlin21279bd2017-04-06 18:52:58 +0000845 Value *InstrFromDFSNum(unsigned DFSNum) { return DFSToInstr[DFSNum]; }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000846
Daniel Berlin21279bd2017-04-06 18:52:58 +0000847 // Given a MemoryAccess, return the relevant instruction DFS number. Note:
848 // This deliberately takes a value so it can be used with Use's, which will
849 // auto-convert to Value's but not to MemoryAccess's.
850 unsigned MemoryToDFSNum(const Value *MA) const {
851 assert(isa<MemoryAccess>(MA) &&
852 "This should not be used with instructions");
853 return isa<MemoryUseOrDef>(MA)
854 ? InstrToDFSNum(cast<MemoryUseOrDef>(MA)->getMemoryInst())
855 : InstrDFS.lookup(MA);
Daniel Berlin1316a942017-04-06 18:52:50 +0000856 }
Eugene Zelenko99241d72017-10-20 21:47:29 +0000857
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000858 bool isCycleFree(const Instruction *) const;
859 bool isBackedge(BasicBlock *From, BasicBlock *To) const;
Eugene Zelenko99241d72017-10-20 21:47:29 +0000860
Daniel Berlin06329a92017-03-18 15:41:40 +0000861 // Debug counter info. When verifying, we have to reset the value numbering
862 // debug counter to the same state it started in to get the same results.
863 std::pair<int, int> StartingVNCounter;
Davide Italiano7e274e02016-12-22 16:03:48 +0000864};
Eugene Zelenko99241d72017-10-20 21:47:29 +0000865
Benjamin Kramerefcf06f2017-02-11 11:06:55 +0000866} // end anonymous namespace
Davide Italiano7e274e02016-12-22 16:03:48 +0000867
Davide Italianob1114092016-12-28 13:37:17 +0000868template <typename T>
869static bool equalsLoadStoreHelper(const T &LHS, const Expression &RHS) {
Daniel Berlin9b498492017-04-01 09:44:29 +0000870 if (!isa<LoadExpression>(RHS) && !isa<StoreExpression>(RHS))
Davide Italiano7e274e02016-12-22 16:03:48 +0000871 return false;
Daniel Berlin9b498492017-04-01 09:44:29 +0000872 return LHS.MemoryExpression::equals(RHS);
Davide Italiano7e274e02016-12-22 16:03:48 +0000873}
874
Davide Italianob1114092016-12-28 13:37:17 +0000875bool LoadExpression::equals(const Expression &Other) const {
876 return equalsLoadStoreHelper(*this, Other);
877}
Davide Italiano7e274e02016-12-22 16:03:48 +0000878
Davide Italianob1114092016-12-28 13:37:17 +0000879bool StoreExpression::equals(const Expression &Other) const {
Daniel Berlin9b498492017-04-01 09:44:29 +0000880 if (!equalsLoadStoreHelper(*this, Other))
881 return false;
Daniel Berlin26addef2017-01-20 21:04:30 +0000882 // Make sure that store vs store includes the value operand.
Daniel Berlin9b498492017-04-01 09:44:29 +0000883 if (const auto *S = dyn_cast<StoreExpression>(&Other))
884 if (getStoredValue() != S->getStoredValue())
885 return false;
886 return true;
Davide Italiano7e274e02016-12-22 16:03:48 +0000887}
888
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000889// Determine if the edge From->To is a backedge
890bool NewGVN::isBackedge(BasicBlock *From, BasicBlock *To) const {
Davide Italianoc2f73b72017-08-02 04:05:49 +0000891 return From == To ||
892 RPOOrdering.lookup(DT->getNode(From)) >=
893 RPOOrdering.lookup(DT->getNode(To));
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000894}
895
Davide Italiano7e274e02016-12-22 16:03:48 +0000896#ifndef NDEBUG
897static std::string getBlockName(const BasicBlock *B) {
Davide Italiano0e714802016-12-28 14:00:11 +0000898 return DOTGraphTraits<const Function *>::getSimpleNodeLabel(B, nullptr);
Davide Italiano7e274e02016-12-22 16:03:48 +0000899}
900#endif
901
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000902// Get a MemoryAccess for an instruction, fake or real.
903MemoryUseOrDef *NewGVN::getMemoryAccess(const Instruction *I) const {
904 auto *Result = MSSA->getMemoryAccess(I);
905 return Result ? Result : TempToMemory.lookup(I);
906}
907
908// Get a MemoryPhi for a basic block. These are all real.
909MemoryPhi *NewGVN::getMemoryAccess(const BasicBlock *BB) const {
910 return MSSA->getMemoryAccess(BB);
911}
912
Daniel Berlin06329a92017-03-18 15:41:40 +0000913// Get the basic block from an instruction/memory value.
914BasicBlock *NewGVN::getBlockForValue(Value *V) const {
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000915 if (auto *I = dyn_cast<Instruction>(V)) {
916 auto *Parent = I->getParent();
917 if (Parent)
918 return Parent;
919 Parent = TempToBlock.lookup(V);
920 assert(Parent && "Every fake instruction should have a block");
921 return Parent;
922 }
923
924 auto *MP = dyn_cast<MemoryPhi>(V);
925 assert(MP && "Should have been an instruction or a MemoryPhi");
926 return MP->getBlock();
Daniel Berlin06329a92017-03-18 15:41:40 +0000927}
928
Daniel Berlin0e900112017-03-24 06:33:48 +0000929// Delete a definitely dead expression, so it can be reused by the expression
930// allocator. Some of these are not in creation functions, so we have to accept
931// const versions.
Daniel Berlin6604a2f2017-05-09 16:40:04 +0000932void NewGVN::deleteExpression(const Expression *E) const {
Daniel Berlin0e900112017-03-24 06:33:48 +0000933 assert(isa<BasicExpression>(E));
934 auto *BE = cast<BasicExpression>(E);
935 const_cast<BasicExpression *>(BE)->deallocateOperands(ArgRecycler);
936 ExpressionAllocator.Deallocate(E);
937}
Daniel Berlin1a582582017-09-05 02:17:41 +0000938
Daniel Berlinf9c94552017-09-05 02:17:43 +0000939// If V is a predicateinfo copy, get the thing it is a copy of.
940static Value *getCopyOf(const Value *V) {
Daniel Berlin1a582582017-09-05 02:17:41 +0000941 if (auto *II = dyn_cast<IntrinsicInst>(V))
Daniel Berlinf9c94552017-09-05 02:17:43 +0000942 if (II->getIntrinsicID() == Intrinsic::ssa_copy)
943 return II->getOperand(0);
944 return nullptr;
945}
946
947// Return true if V is really PN, even accounting for predicateinfo copies.
948static bool isCopyOfPHI(const Value *V, const PHINode *PN) {
949 return V == PN || getCopyOf(V) == PN;
950}
951
952static bool isCopyOfAPHI(const Value *V) {
953 auto *CO = getCopyOf(V);
954 return CO && isa<PHINode>(CO);
Daniel Berlin1a582582017-09-05 02:17:41 +0000955}
956
Daniel Berlinc1305af2017-09-30 23:51:54 +0000957// Sort PHI Operands into a canonical order. What we use here is an RPO
958// order. The BlockInstRange numbers are generated in an RPO walk of the basic
959// blocks.
960void NewGVN::sortPHIOps(MutableArrayRef<ValPair> Ops) const {
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +0000961 llvm::sort(Ops.begin(), Ops.end(),
962 [&](const ValPair &P1, const ValPair &P2) {
Daniel Berlinc1305af2017-09-30 23:51:54 +0000963 return BlockInstRange.lookup(P1.second).first <
964 BlockInstRange.lookup(P2.second).first;
965 });
966}
967
Daniel Berlin9b926e92017-09-30 23:51:53 +0000968// Return true if V is a value that will always be available (IE can
969// be placed anywhere) in the function. We don't do globals here
970// because they are often worse to put in place.
971static bool alwaysAvailable(Value *V) {
972 return isa<Constant>(V) || isa<Argument>(V);
973}
974
Daniel Berlinc1305af2017-09-30 23:51:54 +0000975// Create a PHIExpression from an array of {incoming edge, value} pairs. I is
976// the original instruction we are creating a PHIExpression for (but may not be
977// a phi node). We require, as an invariant, that all the PHIOperands in the
978// same block are sorted the same way. sortPHIOps will sort them into a
979// canonical order.
980PHIExpression *NewGVN::createPHIExpression(ArrayRef<ValPair> PHIOperands,
981 const Instruction *I,
982 BasicBlock *PHIBlock,
983 bool &HasBackedge,
Daniel Berlinb527b2c2017-05-19 19:01:27 +0000984 bool &OriginalOpsConstant) const {
Daniel Berlinc1305af2017-09-30 23:51:54 +0000985 unsigned NumOps = PHIOperands.size();
986 auto *E = new (ExpressionAllocator) PHIExpression(NumOps, PHIBlock);
Davide Italiano7e274e02016-12-22 16:03:48 +0000987
988 E->allocateOperands(ArgRecycler, ExpressionAllocator);
Daniel Berlinc1305af2017-09-30 23:51:54 +0000989 E->setType(PHIOperands.begin()->first->getType());
990 E->setOpcode(Instruction::PHI);
Davide Italianod6bb8ca2017-05-09 16:58:28 +0000991
Davide Italianob3886dd2017-01-25 23:37:49 +0000992 // Filter out unreachable phi operands.
Daniel Berlinc1305af2017-09-30 23:51:54 +0000993 auto Filtered = make_filter_range(PHIOperands, [&](const ValPair &P) {
994 auto *BB = P.second;
995 if (auto *PHIOp = dyn_cast<PHINode>(I))
996 if (isCopyOfPHI(P.first, PHIOp))
997 return false;
Daniel Berlinf9c94552017-09-05 02:17:43 +0000998 if (!ReachableEdges.count({BB, PHIBlock}))
Daniel Berline67c3222017-05-25 15:44:20 +0000999 return false;
1000 // Things in TOPClass are equivalent to everything.
Daniel Berlinc1305af2017-09-30 23:51:54 +00001001 if (ValueToClass.lookup(P.first) == TOPClass)
Daniel Berline67c3222017-05-25 15:44:20 +00001002 return false;
Daniel Berlinc1305af2017-09-30 23:51:54 +00001003 OriginalOpsConstant = OriginalOpsConstant && isa<Constant>(P.first);
Daniel Berlinf9c94552017-09-05 02:17:43 +00001004 HasBackedge = HasBackedge || isBackedge(BB, PHIBlock);
Daniel Berlinc1305af2017-09-30 23:51:54 +00001005 return lookupOperandLeader(P.first) != I;
Davide Italianob3886dd2017-01-25 23:37:49 +00001006 });
Daniel Berlinc1305af2017-09-30 23:51:54 +00001007 std::transform(Filtered.begin(), Filtered.end(), op_inserter(E),
1008 [&](const ValPair &P) -> Value * {
1009 return lookupOperandLeader(P.first);
1010 });
Davide Italiano7e274e02016-12-22 16:03:48 +00001011 return E;
1012}
1013
1014// Set basic expression info (Arguments, type, opcode) for Expression
1015// E from Instruction I in block B.
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001016bool NewGVN::setBasicExpressionInfo(Instruction *I, BasicExpression *E) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001017 bool AllConstant = true;
1018 if (auto *GEP = dyn_cast<GetElementPtrInst>(I))
1019 E->setType(GEP->getSourceElementType());
1020 else
1021 E->setType(I->getType());
1022 E->setOpcode(I->getOpcode());
1023 E->allocateOperands(ArgRecycler, ExpressionAllocator);
1024
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00001025 // Transform the operand array into an operand leader array, and keep track of
1026 // whether all members are constant.
1027 std::transform(I->op_begin(), I->op_end(), op_inserter(E), [&](Value *O) {
Daniel Berlin203f47b2017-01-31 22:31:53 +00001028 auto Operand = lookupOperandLeader(O);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001029 AllConstant = AllConstant && isa<Constant>(Operand);
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00001030 return Operand;
1031 });
1032
Davide Italiano7e274e02016-12-22 16:03:48 +00001033 return AllConstant;
1034}
1035
1036const Expression *NewGVN::createBinaryExpression(unsigned Opcode, Type *T,
Daniel Berlin54a92fc2017-09-05 02:17:42 +00001037 Value *Arg1, Value *Arg2,
1038 Instruction *I) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001039 auto *E = new (ExpressionAllocator) BasicExpression(2);
Davide Italiano7e274e02016-12-22 16:03:48 +00001040
1041 E->setType(T);
1042 E->setOpcode(Opcode);
1043 E->allocateOperands(ArgRecycler, ExpressionAllocator);
1044 if (Instruction::isCommutative(Opcode)) {
1045 // Ensure that commutative instructions that only differ by a permutation
1046 // of their operands get the same value number by sorting the operand value
1047 // numbers. Since all commutative instructions have two operands it is more
1048 // efficient to sort by hand rather than using, say, std::sort.
Daniel Berlin1c087672017-02-11 15:07:01 +00001049 if (shouldSwapOperands(Arg1, Arg2))
Davide Italiano7e274e02016-12-22 16:03:48 +00001050 std::swap(Arg1, Arg2);
1051 }
Daniel Berlin203f47b2017-01-31 22:31:53 +00001052 E->op_push_back(lookupOperandLeader(Arg1));
1053 E->op_push_back(lookupOperandLeader(Arg2));
Davide Italiano7e274e02016-12-22 16:03:48 +00001054
Daniel Berlinede130d2017-04-26 20:56:14 +00001055 Value *V = SimplifyBinOp(Opcode, E->getOperand(0), E->getOperand(1), SQ);
Daniel Berlin54a92fc2017-09-05 02:17:42 +00001056 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
Davide Italiano7e274e02016-12-22 16:03:48 +00001057 return SimplifiedE;
1058 return E;
1059}
1060
1061// Take a Value returned by simplification of Expression E/Instruction
1062// I, and see if it resulted in a simpler expression. If so, return
1063// that expression.
Davide Italiano7e274e02016-12-22 16:03:48 +00001064const Expression *NewGVN::checkSimplificationResults(Expression *E,
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001065 Instruction *I,
1066 Value *V) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001067 if (!V)
1068 return nullptr;
1069 if (auto *C = dyn_cast<Constant>(V)) {
1070 if (I)
1071 DEBUG(dbgs() << "Simplified " << *I << " to "
1072 << " constant " << *C << "\n");
1073 NumGVNOpsSimplified++;
1074 assert(isa<BasicExpression>(E) &&
1075 "We should always have had a basic expression here");
Daniel Berlin0e900112017-03-24 06:33:48 +00001076 deleteExpression(E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001077 return createConstantExpression(C);
1078 } else if (isa<Argument>(V) || isa<GlobalVariable>(V)) {
1079 if (I)
1080 DEBUG(dbgs() << "Simplified " << *I << " to "
1081 << " variable " << *V << "\n");
Daniel Berlin0e900112017-03-24 06:33:48 +00001082 deleteExpression(E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001083 return createVariableExpression(V);
1084 }
1085
1086 CongruenceClass *CC = ValueToClass.lookup(V);
Daniel Berlin7ef26da2017-08-30 19:52:39 +00001087 if (CC) {
1088 if (CC->getLeader() && CC->getLeader() != I) {
Daniel Berlin94090dd2017-09-02 02:18:44 +00001089 // Don't add temporary instructions to the user lists.
1090 if (!AllTempInstructions.count(I))
1091 addAdditionalUsers(V, I);
Daniel Berlin7ef26da2017-08-30 19:52:39 +00001092 return createVariableOrConstant(CC->getLeader());
Daniel Berlinc8ed4042017-05-30 06:42:29 +00001093 }
Daniel Berlin7ef26da2017-08-30 19:52:39 +00001094 if (CC->getDefiningExpr()) {
1095 // If we simplified to something else, we need to communicate
1096 // that we're users of the value we simplified to.
1097 if (I != V) {
1098 // Don't add temporary instructions to the user lists.
1099 if (!AllTempInstructions.count(I))
1100 addAdditionalUsers(V, I);
1101 }
1102
1103 if (I)
1104 DEBUG(dbgs() << "Simplified " << *I << " to "
1105 << " expression " << *CC->getDefiningExpr() << "\n");
1106 NumGVNOpsSimplified++;
1107 deleteExpression(E);
1108 return CC->getDefiningExpr();
1109 }
Davide Italiano7e274e02016-12-22 16:03:48 +00001110 }
Daniel Berlin7ef26da2017-08-30 19:52:39 +00001111
Davide Italiano7e274e02016-12-22 16:03:48 +00001112 return nullptr;
1113}
1114
Daniel Berlin94090dd2017-09-02 02:18:44 +00001115// Create a value expression from the instruction I, replacing operands with
1116// their leaders.
1117
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001118const Expression *NewGVN::createExpression(Instruction *I) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001119 auto *E = new (ExpressionAllocator) BasicExpression(I->getNumOperands());
Davide Italiano7e274e02016-12-22 16:03:48 +00001120
Daniel Berlin97718e62017-01-31 22:32:03 +00001121 bool AllConstant = setBasicExpressionInfo(I, E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001122
1123 if (I->isCommutative()) {
1124 // Ensure that commutative instructions that only differ by a permutation
1125 // of their operands get the same value number by sorting the operand value
1126 // numbers. Since all commutative instructions have two operands it is more
1127 // efficient to sort by hand rather than using, say, std::sort.
1128 assert(I->getNumOperands() == 2 && "Unsupported commutative instruction!");
Daniel Berlin508a1de2017-02-12 23:24:42 +00001129 if (shouldSwapOperands(E->getOperand(0), E->getOperand(1)))
Davide Italiano7e274e02016-12-22 16:03:48 +00001130 E->swapOperands(0, 1);
1131 }
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001132 // Perform simplification.
Davide Italiano7e274e02016-12-22 16:03:48 +00001133 if (auto *CI = dyn_cast<CmpInst>(I)) {
1134 // Sort the operand value numbers so x<y and y>x get the same value
1135 // number.
1136 CmpInst::Predicate Predicate = CI->getPredicate();
Daniel Berlin1c087672017-02-11 15:07:01 +00001137 if (shouldSwapOperands(E->getOperand(0), E->getOperand(1))) {
Davide Italiano7e274e02016-12-22 16:03:48 +00001138 E->swapOperands(0, 1);
1139 Predicate = CmpInst::getSwappedPredicate(Predicate);
1140 }
1141 E->setOpcode((CI->getOpcode() << 8) | Predicate);
1142 // TODO: 25% of our time is spent in SimplifyCmpInst with pointer operands
Davide Italiano7e274e02016-12-22 16:03:48 +00001143 assert(I->getOperand(0)->getType() == I->getOperand(1)->getType() &&
1144 "Wrong types on cmp instruction");
Daniel Berlin97718e62017-01-31 22:32:03 +00001145 assert((E->getOperand(0)->getType() == I->getOperand(0)->getType() &&
1146 E->getOperand(1)->getType() == I->getOperand(1)->getType()));
Daniel Berlinede130d2017-04-26 20:56:14 +00001147 Value *V =
1148 SimplifyCmpInst(Predicate, E->getOperand(0), E->getOperand(1), SQ);
Daniel Berlinff12c922017-01-31 22:32:01 +00001149 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1150 return SimplifiedE;
Davide Italiano7e274e02016-12-22 16:03:48 +00001151 } else if (isa<SelectInst>(I)) {
1152 if (isa<Constant>(E->getOperand(0)) ||
Daniel Berlinf9486032017-08-24 02:43:17 +00001153 E->getOperand(1) == E->getOperand(2)) {
Daniel Berlin97718e62017-01-31 22:32:03 +00001154 assert(E->getOperand(1)->getType() == I->getOperand(1)->getType() &&
1155 E->getOperand(2)->getType() == I->getOperand(2)->getType());
Davide Italiano7e274e02016-12-22 16:03:48 +00001156 Value *V = SimplifySelectInst(E->getOperand(0), E->getOperand(1),
Daniel Berlinede130d2017-04-26 20:56:14 +00001157 E->getOperand(2), SQ);
Davide Italiano7e274e02016-12-22 16:03:48 +00001158 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1159 return SimplifiedE;
1160 }
1161 } else if (I->isBinaryOp()) {
Daniel Berlinede130d2017-04-26 20:56:14 +00001162 Value *V =
1163 SimplifyBinOp(E->getOpcode(), E->getOperand(0), E->getOperand(1), SQ);
Davide Italiano7e274e02016-12-22 16:03:48 +00001164 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1165 return SimplifiedE;
1166 } else if (auto *BI = dyn_cast<BitCastInst>(I)) {
Daniel Berlin4d0fe642017-04-28 19:55:38 +00001167 Value *V =
1168 SimplifyCastInst(BI->getOpcode(), BI->getOperand(0), BI->getType(), SQ);
Davide Italiano7e274e02016-12-22 16:03:48 +00001169 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1170 return SimplifiedE;
1171 } else if (isa<GetElementPtrInst>(I)) {
Daniel Berlinede130d2017-04-26 20:56:14 +00001172 Value *V = SimplifyGEPInst(
1173 E->getType(), ArrayRef<Value *>(E->op_begin(), E->op_end()), SQ);
Davide Italiano7e274e02016-12-22 16:03:48 +00001174 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1175 return SimplifiedE;
1176 } else if (AllConstant) {
1177 // We don't bother trying to simplify unless all of the operands
1178 // were constant.
1179 // TODO: There are a lot of Simplify*'s we could call here, if we
1180 // wanted to. The original motivating case for this code was a
1181 // zext i1 false to i8, which we don't have an interface to
1182 // simplify (IE there is no SimplifyZExt).
1183
1184 SmallVector<Constant *, 8> C;
1185 for (Value *Arg : E->operands())
Piotr Padlewski6c37d292016-12-28 23:24:02 +00001186 C.emplace_back(cast<Constant>(Arg));
Davide Italiano7e274e02016-12-22 16:03:48 +00001187
Daniel Berlin64e68992017-03-12 04:46:45 +00001188 if (Value *V = ConstantFoldInstOperands(I, C, DL, TLI))
Davide Italiano7e274e02016-12-22 16:03:48 +00001189 if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1190 return SimplifiedE;
1191 }
1192 return E;
1193}
1194
1195const AggregateValueExpression *
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001196NewGVN::createAggregateValueExpression(Instruction *I) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001197 if (auto *II = dyn_cast<InsertValueInst>(I)) {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001198 auto *E = new (ExpressionAllocator)
Davide Italiano7e274e02016-12-22 16:03:48 +00001199 AggregateValueExpression(I->getNumOperands(), II->getNumIndices());
Daniel Berlin97718e62017-01-31 22:32:03 +00001200 setBasicExpressionInfo(I, E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001201 E->allocateIntOperands(ExpressionAllocator);
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00001202 std::copy(II->idx_begin(), II->idx_end(), int_op_inserter(E));
Davide Italiano7e274e02016-12-22 16:03:48 +00001203 return E;
Davide Italiano7e274e02016-12-22 16:03:48 +00001204 } else if (auto *EI = dyn_cast<ExtractValueInst>(I)) {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001205 auto *E = new (ExpressionAllocator)
Davide Italiano7e274e02016-12-22 16:03:48 +00001206 AggregateValueExpression(I->getNumOperands(), EI->getNumIndices());
Daniel Berlin97718e62017-01-31 22:32:03 +00001207 setBasicExpressionInfo(EI, E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001208 E->allocateIntOperands(ExpressionAllocator);
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00001209 std::copy(EI->idx_begin(), EI->idx_end(), int_op_inserter(E));
Davide Italiano7e274e02016-12-22 16:03:48 +00001210 return E;
1211 }
1212 llvm_unreachable("Unhandled type of aggregate value operation");
1213}
1214
Daniel Berline021d2d2017-05-19 20:22:20 +00001215const DeadExpression *NewGVN::createDeadExpression() const {
1216 // DeadExpression has no arguments and all DeadExpression's are the same,
1217 // so we only need one of them.
1218 return SingletonDeadExpression;
1219}
1220
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001221const VariableExpression *NewGVN::createVariableExpression(Value *V) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001222 auto *E = new (ExpressionAllocator) VariableExpression(V);
Davide Italiano7e274e02016-12-22 16:03:48 +00001223 E->setOpcode(V->getValueID());
1224 return E;
1225}
1226
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001227const Expression *NewGVN::createVariableOrConstant(Value *V) const {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001228 if (auto *C = dyn_cast<Constant>(V))
1229 return createConstantExpression(C);
1230 return createVariableExpression(V);
1231}
1232
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001233const ConstantExpression *NewGVN::createConstantExpression(Constant *C) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001234 auto *E = new (ExpressionAllocator) ConstantExpression(C);
Davide Italiano7e274e02016-12-22 16:03:48 +00001235 E->setOpcode(C->getValueID());
1236 return E;
1237}
1238
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001239const UnknownExpression *NewGVN::createUnknownExpression(Instruction *I) const {
Daniel Berlin02c6b172017-01-02 18:00:53 +00001240 auto *E = new (ExpressionAllocator) UnknownExpression(I);
1241 E->setOpcode(I->getOpcode());
1242 return E;
1243}
1244
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001245const CallExpression *
1246NewGVN::createCallExpression(CallInst *CI, const MemoryAccess *MA) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001247 // FIXME: Add operand bundles for calls.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001248 auto *E =
Daniel Berlin1316a942017-04-06 18:52:50 +00001249 new (ExpressionAllocator) CallExpression(CI->getNumOperands(), CI, MA);
Daniel Berlin97718e62017-01-31 22:32:03 +00001250 setBasicExpressionInfo(CI, E);
Davide Italiano7e274e02016-12-22 16:03:48 +00001251 return E;
1252}
1253
Daniel Berlin9d0796e2017-03-24 05:30:34 +00001254// Return true if some equivalent of instruction Inst dominates instruction U.
1255bool NewGVN::someEquivalentDominates(const Instruction *Inst,
1256 const Instruction *U) const {
1257 auto *CC = ValueToClass.lookup(Inst);
Daniel Berlin9b926e92017-09-30 23:51:53 +00001258 // This must be an instruction because we are only called from phi nodes
Daniel Berlinffc30782017-03-24 06:33:51 +00001259 // in the case that the value it needs to check against is an instruction.
1260
1261 // The most likely candiates for dominance are the leader and the next leader.
1262 // The leader or nextleader will dominate in all cases where there is an
1263 // equivalent that is higher up in the dom tree.
1264 // We can't *only* check them, however, because the
1265 // dominator tree could have an infinite number of non-dominating siblings
1266 // with instructions that are in the right congruence class.
1267 // A
1268 // B C D E F G
1269 // |
1270 // H
1271 // Instruction U could be in H, with equivalents in every other sibling.
1272 // Depending on the rpo order picked, the leader could be the equivalent in
1273 // any of these siblings.
1274 if (!CC)
1275 return false;
Daniel Berlin9b926e92017-09-30 23:51:53 +00001276 if (alwaysAvailable(CC->getLeader()))
1277 return true;
Daniel Berlina8236562017-04-07 18:38:09 +00001278 if (DT->dominates(cast<Instruction>(CC->getLeader()), U))
Daniel Berlinffc30782017-03-24 06:33:51 +00001279 return true;
Daniel Berlina8236562017-04-07 18:38:09 +00001280 if (CC->getNextLeader().first &&
1281 DT->dominates(cast<Instruction>(CC->getNextLeader().first), U))
Daniel Berlinffc30782017-03-24 06:33:51 +00001282 return true;
Daniel Berlina8236562017-04-07 18:38:09 +00001283 return llvm::any_of(*CC, [&](const Value *Member) {
1284 return Member != CC->getLeader() &&
Daniel Berlinffc30782017-03-24 06:33:51 +00001285 DT->dominates(cast<Instruction>(Member), U);
1286 });
Daniel Berlin9d0796e2017-03-24 05:30:34 +00001287}
1288
Davide Italiano7e274e02016-12-22 16:03:48 +00001289// See if we have a congruence class and leader for this operand, and if so,
1290// return it. Otherwise, return the operand itself.
Daniel Berlin203f47b2017-01-31 22:31:53 +00001291Value *NewGVN::lookupOperandLeader(Value *V) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001292 CongruenceClass *CC = ValueToClass.lookup(V);
Daniel Berlinb79f5362017-02-11 12:48:50 +00001293 if (CC) {
Daniel Berline021d2d2017-05-19 20:22:20 +00001294 // Everything in TOP is represented by undef, as it can be any value.
Daniel Berlinb79f5362017-02-11 12:48:50 +00001295 // We do have to make sure we get the type right though, so we can't set the
1296 // RepLeader to undef.
Daniel Berlin5c338ff2017-03-10 19:05:04 +00001297 if (CC == TOPClass)
Daniel Berlinb79f5362017-02-11 12:48:50 +00001298 return UndefValue::get(V->getType());
Daniel Berlina8236562017-04-07 18:38:09 +00001299 return CC->getStoredValue() ? CC->getStoredValue() : CC->getLeader();
Daniel Berlinb79f5362017-02-11 12:48:50 +00001300 }
1301
Davide Italiano7e274e02016-12-22 16:03:48 +00001302 return V;
1303}
1304
Daniel Berlin1316a942017-04-06 18:52:50 +00001305const MemoryAccess *NewGVN::lookupMemoryLeader(const MemoryAccess *MA) const {
1306 auto *CC = getMemoryClass(MA);
Daniel Berlina8236562017-04-07 18:38:09 +00001307 assert(CC->getMemoryLeader() &&
Davide Italianob60f6e02017-05-12 15:25:56 +00001308 "Every MemoryAccess should be mapped to a congruence class with a "
1309 "representative memory access");
Daniel Berlina8236562017-04-07 18:38:09 +00001310 return CC->getMemoryLeader();
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001311}
1312
Daniel Berlinc4796862017-01-27 02:37:11 +00001313// Return true if the MemoryAccess is really equivalent to everything. This is
1314// equivalent to the lattice value "TOP" in most lattices. This is the initial
Daniel Berlin1316a942017-04-06 18:52:50 +00001315// state of all MemoryAccesses.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001316bool NewGVN::isMemoryAccessTOP(const MemoryAccess *MA) const {
Daniel Berlin1316a942017-04-06 18:52:50 +00001317 return getMemoryClass(MA) == TOPClass;
1318}
1319
Davide Italiano7e274e02016-12-22 16:03:48 +00001320LoadExpression *NewGVN::createLoadExpression(Type *LoadType, Value *PointerOp,
Daniel Berlin1316a942017-04-06 18:52:50 +00001321 LoadInst *LI,
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001322 const MemoryAccess *MA) const {
Daniel Berlin1316a942017-04-06 18:52:50 +00001323 auto *E =
1324 new (ExpressionAllocator) LoadExpression(1, LI, lookupMemoryLeader(MA));
Davide Italiano7e274e02016-12-22 16:03:48 +00001325 E->allocateOperands(ArgRecycler, ExpressionAllocator);
1326 E->setType(LoadType);
1327
1328 // Give store and loads same opcode so they value number together.
1329 E->setOpcode(0);
Daniel Berlin1316a942017-04-06 18:52:50 +00001330 E->op_push_back(PointerOp);
Davide Italiano7e274e02016-12-22 16:03:48 +00001331 if (LI)
1332 E->setAlignment(LI->getAlignment());
1333
1334 // TODO: Value number heap versions. We may be able to discover
1335 // things alias analysis can't on it's own (IE that a store and a
1336 // load have the same value, and thus, it isn't clobbering the load).
1337 return E;
1338}
1339
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001340const StoreExpression *
1341NewGVN::createStoreExpression(StoreInst *SI, const MemoryAccess *MA) const {
Daniel Berlin203f47b2017-01-31 22:31:53 +00001342 auto *StoredValueLeader = lookupOperandLeader(SI->getValueOperand());
Daniel Berlin26addef2017-01-20 21:04:30 +00001343 auto *E = new (ExpressionAllocator)
Daniel Berlin1316a942017-04-06 18:52:50 +00001344 StoreExpression(SI->getNumOperands(), SI, StoredValueLeader, MA);
Davide Italiano7e274e02016-12-22 16:03:48 +00001345 E->allocateOperands(ArgRecycler, ExpressionAllocator);
1346 E->setType(SI->getValueOperand()->getType());
1347
1348 // Give store and loads same opcode so they value number together.
1349 E->setOpcode(0);
Daniel Berlin203f47b2017-01-31 22:31:53 +00001350 E->op_push_back(lookupOperandLeader(SI->getPointerOperand()));
Davide Italiano7e274e02016-12-22 16:03:48 +00001351
1352 // TODO: Value number heap versions. We may be able to discover
1353 // things alias analysis can't on it's own (IE that a store and a
1354 // load have the same value, and thus, it isn't clobbering the load).
1355 return E;
1356}
1357
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001358const Expression *NewGVN::performSymbolicStoreEvaluation(Instruction *I) const {
Daniel Berlin589cecc2017-01-02 18:00:46 +00001359 // Unlike loads, we never try to eliminate stores, so we do not check if they
1360 // are simple and avoid value numbering them.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001361 auto *SI = cast<StoreInst>(I);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001362 auto *StoreAccess = getMemoryAccess(SI);
Daniel Berlinc4796862017-01-27 02:37:11 +00001363 // Get the expression, if any, for the RHS of the MemoryDef.
Daniel Berlin1316a942017-04-06 18:52:50 +00001364 const MemoryAccess *StoreRHS = StoreAccess->getDefiningAccess();
1365 if (EnableStoreRefinement)
1366 StoreRHS = MSSAWalker->getClobberingMemoryAccess(StoreAccess);
1367 // If we bypassed the use-def chains, make sure we add a use.
Daniel Berlinde269f42017-08-26 07:37:11 +00001368 StoreRHS = lookupMemoryLeader(StoreRHS);
Daniel Berlin1316a942017-04-06 18:52:50 +00001369 if (StoreRHS != StoreAccess->getDefiningAccess())
1370 addMemoryUsers(StoreRHS, StoreAccess);
Daniel Berlinc4796862017-01-27 02:37:11 +00001371 // If we are defined by ourselves, use the live on entry def.
1372 if (StoreRHS == StoreAccess)
1373 StoreRHS = MSSA->getLiveOnEntryDef();
1374
Daniel Berlin589cecc2017-01-02 18:00:46 +00001375 if (SI->isSimple()) {
Daniel Berlinc4796862017-01-27 02:37:11 +00001376 // See if we are defined by a previous store expression, it already has a
1377 // value, and it's the same value as our current store. FIXME: Right now, we
1378 // only do this for simple stores, we should expand to cover memcpys, etc.
Daniel Berlin1316a942017-04-06 18:52:50 +00001379 const auto *LastStore = createStoreExpression(SI, StoreRHS);
1380 const auto *LastCC = ExpressionToClass.lookup(LastStore);
Daniel Berlin36b08b22017-06-19 00:24:00 +00001381 // We really want to check whether the expression we matched was a store. No
1382 // easy way to do that. However, we can check that the class we found has a
1383 // store, which, assuming the value numbering state is not corrupt, is
1384 // sufficient, because we must also be equivalent to that store's expression
1385 // for it to be in the same class as the load.
1386 if (LastCC && LastCC->getStoredValue() == LastStore->getStoredValue())
Daniel Berlin1316a942017-04-06 18:52:50 +00001387 return LastStore;
Daniel Berlinc4796862017-01-27 02:37:11 +00001388 // Also check if our value operand is defined by a load of the same memory
Daniel Berlin1316a942017-04-06 18:52:50 +00001389 // location, and the memory state is the same as it was then (otherwise, it
1390 // could have been overwritten later. See test32 in
1391 // transforms/DeadStoreElimination/simple.ll).
Daniel Berlin36b08b22017-06-19 00:24:00 +00001392 if (auto *LI = dyn_cast<LoadInst>(LastStore->getStoredValue()))
Daniel Berlin203f47b2017-01-31 22:31:53 +00001393 if ((lookupOperandLeader(LI->getPointerOperand()) ==
Daniel Berlin36b08b22017-06-19 00:24:00 +00001394 LastStore->getOperand(0)) &&
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001395 (lookupMemoryLeader(getMemoryAccess(LI)->getDefiningAccess()) ==
Daniel Berlin1316a942017-04-06 18:52:50 +00001396 StoreRHS))
Daniel Berlin36b08b22017-06-19 00:24:00 +00001397 return LastStore;
1398 deleteExpression(LastStore);
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001399 }
Daniel Berlin1316a942017-04-06 18:52:50 +00001400
1401 // If the store is not equivalent to anything, value number it as a store that
1402 // produces a unique memory state (instead of using it's MemoryUse, we use
1403 // it's MemoryDef).
Daniel Berlin97718e62017-01-31 22:32:03 +00001404 return createStoreExpression(SI, StoreAccess);
Davide Italiano7e274e02016-12-22 16:03:48 +00001405}
1406
Daniel Berlin07daac82017-04-02 13:23:44 +00001407// See if we can extract the value of a loaded pointer from a load, a store, or
1408// a memory instruction.
1409const Expression *
1410NewGVN::performSymbolicLoadCoercion(Type *LoadType, Value *LoadPtr,
1411 LoadInst *LI, Instruction *DepInst,
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001412 MemoryAccess *DefiningAccess) const {
Daniel Berlin07daac82017-04-02 13:23:44 +00001413 assert((!LI || LI->isSimple()) && "Not a simple load");
1414 if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) {
1415 // Can't forward from non-atomic to atomic without violating memory model.
1416 // Also don't need to coerce if they are the same type, we will just
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001417 // propagate.
Daniel Berlin07daac82017-04-02 13:23:44 +00001418 if (LI->isAtomic() > DepSI->isAtomic() ||
1419 LoadType == DepSI->getValueOperand()->getType())
1420 return nullptr;
1421 int Offset = analyzeLoadFromClobberingStore(LoadType, LoadPtr, DepSI, DL);
1422 if (Offset >= 0) {
1423 if (auto *C = dyn_cast<Constant>(
1424 lookupOperandLeader(DepSI->getValueOperand()))) {
1425 DEBUG(dbgs() << "Coercing load from store " << *DepSI << " to constant "
1426 << *C << "\n");
1427 return createConstantExpression(
1428 getConstantStoreValueForLoad(C, Offset, LoadType, DL));
1429 }
1430 }
Davide Italiano9bdccb32017-08-26 22:31:10 +00001431 } else if (auto *DepLI = dyn_cast<LoadInst>(DepInst)) {
Daniel Berlin07daac82017-04-02 13:23:44 +00001432 // Can't forward from non-atomic to atomic without violating memory model.
1433 if (LI->isAtomic() > DepLI->isAtomic())
1434 return nullptr;
1435 int Offset = analyzeLoadFromClobberingLoad(LoadType, LoadPtr, DepLI, DL);
1436 if (Offset >= 0) {
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001437 // We can coerce a constant load into a load.
Daniel Berlin07daac82017-04-02 13:23:44 +00001438 if (auto *C = dyn_cast<Constant>(lookupOperandLeader(DepLI)))
1439 if (auto *PossibleConstant =
1440 getConstantLoadValueForLoad(C, Offset, LoadType, DL)) {
1441 DEBUG(dbgs() << "Coercing load from load " << *LI << " to constant "
1442 << *PossibleConstant << "\n");
1443 return createConstantExpression(PossibleConstant);
1444 }
1445 }
Davide Italiano9bdccb32017-08-26 22:31:10 +00001446 } else if (auto *DepMI = dyn_cast<MemIntrinsic>(DepInst)) {
Daniel Berlin07daac82017-04-02 13:23:44 +00001447 int Offset = analyzeLoadFromClobberingMemInst(LoadType, LoadPtr, DepMI, DL);
1448 if (Offset >= 0) {
1449 if (auto *PossibleConstant =
1450 getConstantMemInstValueForLoad(DepMI, Offset, LoadType, DL)) {
1451 DEBUG(dbgs() << "Coercing load from meminst " << *DepMI
1452 << " to constant " << *PossibleConstant << "\n");
1453 return createConstantExpression(PossibleConstant);
1454 }
1455 }
1456 }
1457
1458 // All of the below are only true if the loaded pointer is produced
1459 // by the dependent instruction.
1460 if (LoadPtr != lookupOperandLeader(DepInst) &&
1461 !AA->isMustAlias(LoadPtr, DepInst))
1462 return nullptr;
1463 // If this load really doesn't depend on anything, then we must be loading an
1464 // undef value. This can happen when loading for a fresh allocation with no
1465 // intervening stores, for example. Note that this is only true in the case
1466 // that the result of the allocation is pointer equal to the load ptr.
1467 if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI)) {
1468 return createConstantExpression(UndefValue::get(LoadType));
1469 }
1470 // If this load occurs either right after a lifetime begin,
1471 // then the loaded value is undefined.
1472 else if (auto *II = dyn_cast<IntrinsicInst>(DepInst)) {
1473 if (II->getIntrinsicID() == Intrinsic::lifetime_start)
1474 return createConstantExpression(UndefValue::get(LoadType));
1475 }
1476 // If this load follows a calloc (which zero initializes memory),
1477 // then the loaded value is zero
1478 else if (isCallocLikeFn(DepInst, TLI)) {
1479 return createConstantExpression(Constant::getNullValue(LoadType));
1480 }
1481
1482 return nullptr;
1483}
1484
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001485const Expression *NewGVN::performSymbolicLoadEvaluation(Instruction *I) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001486 auto *LI = cast<LoadInst>(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00001487
1488 // We can eliminate in favor of non-simple loads, but we won't be able to
Daniel Berlin589cecc2017-01-02 18:00:46 +00001489 // eliminate the loads themselves.
Davide Italiano7e274e02016-12-22 16:03:48 +00001490 if (!LI->isSimple())
1491 return nullptr;
1492
Daniel Berlin203f47b2017-01-31 22:31:53 +00001493 Value *LoadAddressLeader = lookupOperandLeader(LI->getPointerOperand());
Davide Italiano7e274e02016-12-22 16:03:48 +00001494 // Load of undef is undef.
1495 if (isa<UndefValue>(LoadAddressLeader))
1496 return createConstantExpression(UndefValue::get(LI->getType()));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001497 MemoryAccess *OriginalAccess = getMemoryAccess(I);
1498 MemoryAccess *DefiningAccess =
1499 MSSAWalker->getClobberingMemoryAccess(OriginalAccess);
Davide Italiano7e274e02016-12-22 16:03:48 +00001500
1501 if (!MSSA->isLiveOnEntryDef(DefiningAccess)) {
1502 if (auto *MD = dyn_cast<MemoryDef>(DefiningAccess)) {
1503 Instruction *DefiningInst = MD->getMemoryInst();
1504 // If the defining instruction is not reachable, replace with undef.
1505 if (!ReachableBlocks.count(DefiningInst->getParent()))
1506 return createConstantExpression(UndefValue::get(LI->getType()));
Daniel Berlin07daac82017-04-02 13:23:44 +00001507 // This will handle stores and memory insts. We only do if it the
1508 // defining access has a different type, or it is a pointer produced by
1509 // certain memory operations that cause the memory to have a fixed value
1510 // (IE things like calloc).
Daniel Berlin5845e052017-04-06 18:52:53 +00001511 if (const auto *CoercionResult =
1512 performSymbolicLoadCoercion(LI->getType(), LoadAddressLeader, LI,
1513 DefiningInst, DefiningAccess))
Daniel Berlin07daac82017-04-02 13:23:44 +00001514 return CoercionResult;
Davide Italiano7e274e02016-12-22 16:03:48 +00001515 }
1516 }
1517
Daniel Berlin94090dd2017-09-02 02:18:44 +00001518 const auto *LE = createLoadExpression(LI->getType(), LoadAddressLeader, LI,
1519 DefiningAccess);
Daniel Berlinde269f42017-08-26 07:37:11 +00001520 // If our MemoryLeader is not our defining access, add a use to the
1521 // MemoryLeader, so that we get reprocessed when it changes.
1522 if (LE->getMemoryLeader() != DefiningAccess)
1523 addMemoryUsers(LE->getMemoryLeader(), OriginalAccess);
1524 return LE;
Davide Italiano7e274e02016-12-22 16:03:48 +00001525}
1526
Daniel Berlinf7d95802017-02-18 23:06:50 +00001527const Expression *
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001528NewGVN::performSymbolicPredicateInfoEvaluation(Instruction *I) const {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001529 auto *PI = PredInfo->getPredicateInfoFor(I);
1530 if (!PI)
1531 return nullptr;
1532
1533 DEBUG(dbgs() << "Found predicate info from instruction !\n");
Daniel Berlinfccbda92017-02-22 22:20:58 +00001534
1535 auto *PWC = dyn_cast<PredicateWithCondition>(PI);
1536 if (!PWC)
Daniel Berlinf7d95802017-02-18 23:06:50 +00001537 return nullptr;
1538
Daniel Berlinfccbda92017-02-22 22:20:58 +00001539 auto *CopyOf = I->getOperand(0);
1540 auto *Cond = PWC->Condition;
1541
Daniel Berlinf7d95802017-02-18 23:06:50 +00001542 // If this a copy of the condition, it must be either true or false depending
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001543 // on the predicate info type and edge.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001544 if (CopyOf == Cond) {
Daniel Berlinfccbda92017-02-22 22:20:58 +00001545 // We should not need to add predicate users because the predicate info is
1546 // already a use of this operand.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001547 if (isa<PredicateAssume>(PI))
1548 return createConstantExpression(ConstantInt::getTrue(Cond->getType()));
1549 if (auto *PBranch = dyn_cast<PredicateBranch>(PI)) {
1550 if (PBranch->TrueEdge)
1551 return createConstantExpression(ConstantInt::getTrue(Cond->getType()));
1552 return createConstantExpression(ConstantInt::getFalse(Cond->getType()));
1553 }
Daniel Berlinfccbda92017-02-22 22:20:58 +00001554 if (auto *PSwitch = dyn_cast<PredicateSwitch>(PI))
1555 return createConstantExpression(cast<Constant>(PSwitch->CaseValue));
Daniel Berlinf7d95802017-02-18 23:06:50 +00001556 }
Daniel Berlinfccbda92017-02-22 22:20:58 +00001557
Daniel Berlinf7d95802017-02-18 23:06:50 +00001558 // Not a copy of the condition, so see what the predicates tell us about this
1559 // value. First, though, we check to make sure the value is actually a copy
1560 // of one of the condition operands. It's possible, in certain cases, for it
1561 // to be a copy of a predicateinfo copy. In particular, if two branch
1562 // operations use the same condition, and one branch dominates the other, we
1563 // will end up with a copy of a copy. This is currently a small deficiency in
Daniel Berlinfccbda92017-02-22 22:20:58 +00001564 // predicateinfo. What will end up happening here is that we will value
Daniel Berlinf7d95802017-02-18 23:06:50 +00001565 // number both copies the same anyway.
Daniel Berlinfccbda92017-02-22 22:20:58 +00001566
1567 // Everything below relies on the condition being a comparison.
1568 auto *Cmp = dyn_cast<CmpInst>(Cond);
1569 if (!Cmp)
1570 return nullptr;
1571
1572 if (CopyOf != Cmp->getOperand(0) && CopyOf != Cmp->getOperand(1)) {
Davide Italianoc43a9f82017-05-12 15:28:12 +00001573 DEBUG(dbgs() << "Copy is not of any condition operands!\n");
Daniel Berlinf7d95802017-02-18 23:06:50 +00001574 return nullptr;
1575 }
Daniel Berlinfccbda92017-02-22 22:20:58 +00001576 Value *FirstOp = lookupOperandLeader(Cmp->getOperand(0));
1577 Value *SecondOp = lookupOperandLeader(Cmp->getOperand(1));
Daniel Berlinf7d95802017-02-18 23:06:50 +00001578 bool SwappedOps = false;
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001579 // Sort the ops.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001580 if (shouldSwapOperands(FirstOp, SecondOp)) {
1581 std::swap(FirstOp, SecondOp);
1582 SwappedOps = true;
1583 }
Daniel Berlinf7d95802017-02-18 23:06:50 +00001584 CmpInst::Predicate Predicate =
1585 SwappedOps ? Cmp->getSwappedPredicate() : Cmp->getPredicate();
1586
1587 if (isa<PredicateAssume>(PI)) {
1588 // If the comparison is true when the operands are equal, then we know the
1589 // operands are equal, because assumes must always be true.
1590 if (CmpInst::isTrueWhenEqual(Predicate)) {
1591 addPredicateUsers(PI, I);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001592 addAdditionalUsers(Cmp->getOperand(0), I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001593 return createVariableOrConstant(FirstOp);
1594 }
1595 }
1596 if (const auto *PBranch = dyn_cast<PredicateBranch>(PI)) {
1597 // If we are *not* a copy of the comparison, we may equal to the other
1598 // operand when the predicate implies something about equality of
1599 // operations. In particular, if the comparison is true/false when the
1600 // operands are equal, and we are on the right edge, we know this operation
1601 // is equal to something.
1602 if ((PBranch->TrueEdge && Predicate == CmpInst::ICMP_EQ) ||
1603 (!PBranch->TrueEdge && Predicate == CmpInst::ICMP_NE)) {
1604 addPredicateUsers(PI, I);
Daniel Berlin23fec572017-08-30 19:53:23 +00001605 addAdditionalUsers(SwappedOps ? Cmp->getOperand(1) : Cmp->getOperand(0),
1606 I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001607 return createVariableOrConstant(FirstOp);
1608 }
1609 // Handle the special case of floating point.
1610 if (((PBranch->TrueEdge && Predicate == CmpInst::FCMP_OEQ) ||
1611 (!PBranch->TrueEdge && Predicate == CmpInst::FCMP_UNE)) &&
1612 isa<ConstantFP>(FirstOp) && !cast<ConstantFP>(FirstOp)->isZero()) {
1613 addPredicateUsers(PI, I);
Daniel Berlin23fec572017-08-30 19:53:23 +00001614 addAdditionalUsers(SwappedOps ? Cmp->getOperand(1) : Cmp->getOperand(0),
1615 I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001616 return createConstantExpression(cast<Constant>(FirstOp));
1617 }
1618 }
1619 return nullptr;
1620}
1621
Davide Italiano7e274e02016-12-22 16:03:48 +00001622// Evaluate read only and pure calls, and create an expression result.
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001623const Expression *NewGVN::performSymbolicCallEvaluation(Instruction *I) const {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001624 auto *CI = cast<CallInst>(I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001625 if (auto *II = dyn_cast<IntrinsicInst>(I)) {
1626 // Instrinsics with the returned attribute are copies of arguments.
1627 if (auto *ReturnedValue = II->getReturnedArgOperand()) {
1628 if (II->getIntrinsicID() == Intrinsic::ssa_copy)
1629 if (const auto *Result = performSymbolicPredicateInfoEvaluation(I))
1630 return Result;
1631 return createVariableOrConstant(ReturnedValue);
1632 }
1633 }
1634 if (AA->doesNotAccessMemory(CI)) {
Daniel Berlina8236562017-04-07 18:38:09 +00001635 return createCallExpression(CI, TOPClass->getMemoryLeader());
Daniel Berlinf7d95802017-02-18 23:06:50 +00001636 } else if (AA->onlyReadsMemory(CI)) {
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00001637 MemoryAccess *DefiningAccess = MSSAWalker->getClobberingMemoryAccess(CI);
Daniel Berlin1316a942017-04-06 18:52:50 +00001638 return createCallExpression(CI, DefiningAccess);
Davide Italianob2225492016-12-27 18:15:39 +00001639 }
1640 return nullptr;
Davide Italiano7e274e02016-12-22 16:03:48 +00001641}
1642
Daniel Berlin1316a942017-04-06 18:52:50 +00001643// Retrieve the memory class for a given MemoryAccess.
1644CongruenceClass *NewGVN::getMemoryClass(const MemoryAccess *MA) const {
Daniel Berlin1316a942017-04-06 18:52:50 +00001645 auto *Result = MemoryAccessToClass.lookup(MA);
1646 assert(Result && "Should have found memory class");
1647 return Result;
1648}
1649
1650// Update the MemoryAccess equivalence table to say that From is equal to To,
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001651// and return true if this is different from what already existed in the table.
Daniel Berlin1316a942017-04-06 18:52:50 +00001652bool NewGVN::setMemoryClass(const MemoryAccess *From,
1653 CongruenceClass *NewClass) {
1654 assert(NewClass &&
1655 "Every MemoryAccess should be getting mapped to a non-null class");
Daniel Berlin1ea5f322017-01-26 22:21:48 +00001656 DEBUG(dbgs() << "Setting " << *From);
Daniel Berlin1316a942017-04-06 18:52:50 +00001657 DEBUG(dbgs() << " equivalent to congruence class ");
Daniel Berlina8236562017-04-07 18:38:09 +00001658 DEBUG(dbgs() << NewClass->getID() << " with current MemoryAccess leader ");
Davide Italianob7a66982017-05-09 20:02:48 +00001659 DEBUG(dbgs() << *NewClass->getMemoryLeader() << "\n");
Daniel Berlin1ea5f322017-01-26 22:21:48 +00001660
1661 auto LookupResult = MemoryAccessToClass.find(From);
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001662 bool Changed = false;
1663 // If it's already in the table, see if the value changed.
Daniel Berlin1ea5f322017-01-26 22:21:48 +00001664 if (LookupResult != MemoryAccessToClass.end()) {
Daniel Berlin1316a942017-04-06 18:52:50 +00001665 auto *OldClass = LookupResult->second;
1666 if (OldClass != NewClass) {
1667 // If this is a phi, we have to handle memory member updates.
1668 if (auto *MP = dyn_cast<MemoryPhi>(From)) {
Daniel Berlina8236562017-04-07 18:38:09 +00001669 OldClass->memory_erase(MP);
1670 NewClass->memory_insert(MP);
Daniel Berlin1316a942017-04-06 18:52:50 +00001671 // This may have killed the class if it had no non-memory members
Daniel Berlina8236562017-04-07 18:38:09 +00001672 if (OldClass->getMemoryLeader() == From) {
Davide Italiano41f5c7b2017-05-12 15:22:45 +00001673 if (OldClass->definesNoMemory()) {
Daniel Berlina8236562017-04-07 18:38:09 +00001674 OldClass->setMemoryLeader(nullptr);
Daniel Berlin1316a942017-04-06 18:52:50 +00001675 } else {
Daniel Berlina8236562017-04-07 18:38:09 +00001676 OldClass->setMemoryLeader(getNextMemoryLeader(OldClass));
Daniel Berlin1316a942017-04-06 18:52:50 +00001677 DEBUG(dbgs() << "Memory class leader change for class "
Daniel Berlina8236562017-04-07 18:38:09 +00001678 << OldClass->getID() << " to "
1679 << *OldClass->getMemoryLeader()
Daniel Berlin1316a942017-04-06 18:52:50 +00001680 << " due to removal of a memory member " << *From
1681 << "\n");
1682 markMemoryLeaderChangeTouched(OldClass);
1683 }
1684 }
1685 }
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001686 // It wasn't equivalent before, and now it is.
Daniel Berlin1316a942017-04-06 18:52:50 +00001687 LookupResult->second = NewClass;
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001688 Changed = true;
1689 }
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001690 }
Daniel Berlin589cecc2017-01-02 18:00:46 +00001691
Daniel Berlind7c12ee2016-12-25 22:23:49 +00001692 return Changed;
1693}
Daniel Berlin0e900112017-03-24 06:33:48 +00001694
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001695// Determine if a instruction is cycle-free. That means the values in the
1696// instruction don't depend on any expressions that can change value as a result
1697// of the instruction. For example, a non-cycle free instruction would be v =
1698// phi(0, v+1).
1699bool NewGVN::isCycleFree(const Instruction *I) const {
1700 // In order to compute cycle-freeness, we do SCC finding on the instruction,
1701 // and see what kind of SCC it ends up in. If it is a singleton, it is
1702 // cycle-free. If it is not in a singleton, it is only cycle free if the
1703 // other members are all phi nodes (as they do not compute anything, they are
1704 // copies).
1705 auto ICS = InstCycleState.lookup(I);
1706 if (ICS == ICS_Unknown) {
1707 SCCFinder.Start(I);
1708 auto &SCC = SCCFinder.getComponentFor(I);
Hiroshi Inouebcadfee2018-04-12 05:53:20 +00001709 // It's cycle free if it's size 1 or the SCC is *only* phi nodes.
Daniel Berlin2f72b192017-04-14 02:53:37 +00001710 if (SCC.size() == 1)
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001711 InstCycleState.insert({I, ICS_CycleFree});
Daniel Berlin2f72b192017-04-14 02:53:37 +00001712 else {
Daniel Berlinf9c94552017-09-05 02:17:43 +00001713 bool AllPhis = llvm::all_of(SCC, [](const Value *V) {
1714 return isa<PHINode>(V) || isCopyOfAPHI(V);
1715 });
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001716 ICS = AllPhis ? ICS_CycleFree : ICS_Cycle;
Daniel Berlin2f72b192017-04-14 02:53:37 +00001717 for (auto *Member : SCC)
1718 if (auto *MemberPhi = dyn_cast<PHINode>(Member))
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001719 InstCycleState.insert({MemberPhi, ICS});
Daniel Berlin2f72b192017-04-14 02:53:37 +00001720 }
1721 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001722 if (ICS == ICS_Cycle)
Daniel Berlin2f72b192017-04-14 02:53:37 +00001723 return false;
1724 return true;
1725}
1726
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001727// Evaluate PHI nodes symbolically and create an expression result.
Daniel Berlinc1305af2017-09-30 23:51:54 +00001728const Expression *
1729NewGVN::performSymbolicPHIEvaluation(ArrayRef<ValPair> PHIOps,
1730 Instruction *I,
1731 BasicBlock *PHIBlock) const {
Daniel Berlin2f72b192017-04-14 02:53:37 +00001732 // True if one of the incoming phi edges is a backedge.
1733 bool HasBackedge = false;
1734 // All constant tracks the state of whether all the *original* phi operands
Daniel Berline021d2d2017-05-19 20:22:20 +00001735 // This is really shorthand for "this phi cannot cycle due to forward
1736 // change in value of the phi is guaranteed not to later change the value of
1737 // the phi. IE it can't be v = phi(undef, v+1)
Daniel Berlinf9c94552017-09-05 02:17:43 +00001738 bool OriginalOpsConstant = true;
Daniel Berlinc1305af2017-09-30 23:51:54 +00001739 auto *E = cast<PHIExpression>(createPHIExpression(
1740 PHIOps, I, PHIBlock, HasBackedge, OriginalOpsConstant));
Daniel Berlind92e7f92017-01-07 00:01:42 +00001741 // We match the semantics of SimplifyPhiNode from InstructionSimplify here.
Davide Italiano839c7e62017-05-02 21:11:40 +00001742 // See if all arguments are the same.
Daniel Berlind92e7f92017-01-07 00:01:42 +00001743 // We track if any were undef because they need special handling.
1744 bool HasUndef = false;
Daniel Berline021d2d2017-05-19 20:22:20 +00001745 auto Filtered = make_filter_range(E->operands(), [&](Value *Arg) {
Daniel Berlind92e7f92017-01-07 00:01:42 +00001746 if (isa<UndefValue>(Arg)) {
1747 HasUndef = true;
1748 return false;
1749 }
1750 return true;
1751 });
Daniel Berline021d2d2017-05-19 20:22:20 +00001752 // If we are left with no operands, it's dead.
Daniel Berlind92e7f92017-01-07 00:01:42 +00001753 if (Filtered.begin() == Filtered.end()) {
Daniel Berline67c3222017-05-25 15:44:20 +00001754 // If it has undef at this point, it means there are no-non-undef arguments,
1755 // and thus, the value of the phi node must be undef.
1756 if (HasUndef) {
1757 DEBUG(dbgs() << "PHI Node " << *I
1758 << " has no non-undef arguments, valuing it as undef\n");
1759 return createConstantExpression(UndefValue::get(I->getType()));
1760 }
1761
Daniel Berline021d2d2017-05-19 20:22:20 +00001762 DEBUG(dbgs() << "No arguments of PHI node " << *I << " are live\n");
Daniel Berlin0e900112017-03-24 06:33:48 +00001763 deleteExpression(E);
Daniel Berline021d2d2017-05-19 20:22:20 +00001764 return createDeadExpression();
Davide Italiano7e274e02016-12-22 16:03:48 +00001765 }
Daniel Berlind92e7f92017-01-07 00:01:42 +00001766 Value *AllSameValue = *(Filtered.begin());
1767 ++Filtered.begin();
1768 // Can't use std::equal here, sadly, because filter.begin moves.
Daniel Berlinf9c94552017-09-05 02:17:43 +00001769 if (llvm::all_of(Filtered, [&](Value *Arg) { return Arg == AllSameValue; })) {
Daniel Berlind92e7f92017-01-07 00:01:42 +00001770 // In LLVM's non-standard representation of phi nodes, it's possible to have
1771 // phi nodes with cycles (IE dependent on other phis that are .... dependent
1772 // on the original phi node), especially in weird CFG's where some arguments
1773 // are unreachable, or uninitialized along certain paths. This can cause
1774 // infinite loops during evaluation. We work around this by not trying to
1775 // really evaluate them independently, but instead using a variable
1776 // expression to say if one is equivalent to the other.
1777 // We also special case undef, so that if we have an undef, we can't use the
1778 // common value unless it dominates the phi block.
1779 if (HasUndef) {
Daniel Berlin2f72b192017-04-14 02:53:37 +00001780 // If we have undef and at least one other value, this is really a
1781 // multivalued phi, and we need to know if it's cycle free in order to
1782 // evaluate whether we can ignore the undef. The other parts of this are
1783 // just shortcuts. If there is no backedge, or all operands are
Daniel Berlinf9c94552017-09-05 02:17:43 +00001784 // constants, it also must be cycle free.
1785 if (HasBackedge && !OriginalOpsConstant &&
Daniel Berline67c3222017-05-25 15:44:20 +00001786 !isa<UndefValue>(AllSameValue) && !isCycleFree(I))
Daniel Berlin2f72b192017-04-14 02:53:37 +00001787 return E;
1788
Daniel Berlind92e7f92017-01-07 00:01:42 +00001789 // Only have to check for instructions
Davide Italiano1b97fc32017-01-07 02:05:50 +00001790 if (auto *AllSameInst = dyn_cast<Instruction>(AllSameValue))
Daniel Berlin9d0796e2017-03-24 05:30:34 +00001791 if (!someEquivalentDominates(AllSameInst, I))
Daniel Berlind92e7f92017-01-07 00:01:42 +00001792 return E;
Davide Italiano7e274e02016-12-22 16:03:48 +00001793 }
Daniel Berlineafdd862017-06-06 17:15:28 +00001794 // Can't simplify to something that comes later in the iteration.
1795 // Otherwise, when and if it changes congruence class, we will never catch
1796 // up. We will always be a class behind it.
1797 if (isa<Instruction>(AllSameValue) &&
1798 InstrToDFSNum(AllSameValue) > InstrToDFSNum(I))
1799 return E;
Davide Italiano7e274e02016-12-22 16:03:48 +00001800 NumGVNPhisAllSame++;
1801 DEBUG(dbgs() << "Simplified PHI node " << *I << " to " << *AllSameValue
1802 << "\n");
Daniel Berlin0e900112017-03-24 06:33:48 +00001803 deleteExpression(E);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001804 return createVariableOrConstant(AllSameValue);
Davide Italiano7e274e02016-12-22 16:03:48 +00001805 }
1806 return E;
1807}
1808
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001809const Expression *
1810NewGVN::performSymbolicAggrValueEvaluation(Instruction *I) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00001811 if (auto *EI = dyn_cast<ExtractValueInst>(I)) {
1812 auto *II = dyn_cast<IntrinsicInst>(EI->getAggregateOperand());
1813 if (II && EI->getNumIndices() == 1 && *EI->idx_begin() == 0) {
1814 unsigned Opcode = 0;
1815 // EI might be an extract from one of our recognised intrinsics. If it
1816 // is we'll synthesize a semantically equivalent expression instead on
1817 // an extract value expression.
1818 switch (II->getIntrinsicID()) {
1819 case Intrinsic::sadd_with_overflow:
1820 case Intrinsic::uadd_with_overflow:
1821 Opcode = Instruction::Add;
1822 break;
1823 case Intrinsic::ssub_with_overflow:
1824 case Intrinsic::usub_with_overflow:
1825 Opcode = Instruction::Sub;
1826 break;
1827 case Intrinsic::smul_with_overflow:
1828 case Intrinsic::umul_with_overflow:
1829 Opcode = Instruction::Mul;
1830 break;
1831 default:
1832 break;
1833 }
1834
1835 if (Opcode != 0) {
1836 // Intrinsic recognized. Grab its args to finish building the
1837 // expression.
1838 assert(II->getNumArgOperands() == 2 &&
1839 "Expect two args for recognised intrinsics.");
Daniel Berlin54a92fc2017-09-05 02:17:42 +00001840 return createBinaryExpression(Opcode, EI->getType(),
1841 II->getArgOperand(0),
1842 II->getArgOperand(1), I);
Davide Italiano7e274e02016-12-22 16:03:48 +00001843 }
1844 }
1845 }
1846
Daniel Berlin97718e62017-01-31 22:32:03 +00001847 return createAggregateValueExpression(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00001848}
Eugene Zelenko99241d72017-10-20 21:47:29 +00001849
Daniel Berlin6604a2f2017-05-09 16:40:04 +00001850const Expression *NewGVN::performSymbolicCmpEvaluation(Instruction *I) const {
Chad Rosier4d852592017-08-08 18:41:49 +00001851 assert(isa<CmpInst>(I) && "Expected a cmp instruction.");
1852
1853 auto *CI = cast<CmpInst>(I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00001854 // See if our operands are equal to those of a previous predicate, and if so,
1855 // if it implies true or false.
Daniel Berlinc22aafe2017-01-31 22:31:58 +00001856 auto Op0 = lookupOperandLeader(CI->getOperand(0));
1857 auto Op1 = lookupOperandLeader(CI->getOperand(1));
Daniel Berlinf7d95802017-02-18 23:06:50 +00001858 auto OurPredicate = CI->getPredicate();
Daniel Berlin0350a872017-03-04 00:44:43 +00001859 if (shouldSwapOperands(Op0, Op1)) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001860 std::swap(Op0, Op1);
1861 OurPredicate = CI->getSwappedPredicate();
1862 }
1863
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001864 // Avoid processing the same info twice.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001865 const PredicateBase *LastPredInfo = nullptr;
Daniel Berlinf7d95802017-02-18 23:06:50 +00001866 // See if we know something about the comparison itself, like it is the target
1867 // of an assume.
1868 auto *CmpPI = PredInfo->getPredicateInfoFor(I);
1869 if (dyn_cast_or_null<PredicateAssume>(CmpPI))
1870 return createConstantExpression(ConstantInt::getTrue(CI->getType()));
1871
Daniel Berlinc22aafe2017-01-31 22:31:58 +00001872 if (Op0 == Op1) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001873 // This condition does not depend on predicates, no need to add users
Daniel Berlinc22aafe2017-01-31 22:31:58 +00001874 if (CI->isTrueWhenEqual())
1875 return createConstantExpression(ConstantInt::getTrue(CI->getType()));
1876 else if (CI->isFalseWhenEqual())
1877 return createConstantExpression(ConstantInt::getFalse(CI->getType()));
1878 }
Daniel Berlinf7d95802017-02-18 23:06:50 +00001879
1880 // NOTE: Because we are comparing both operands here and below, and using
1881 // previous comparisons, we rely on fact that predicateinfo knows to mark
1882 // comparisons that use renamed operands as users of the earlier comparisons.
1883 // It is *not* enough to just mark predicateinfo renamed operands as users of
1884 // the earlier comparisons, because the *other* operand may have changed in a
1885 // previous iteration.
1886 // Example:
1887 // icmp slt %a, %b
1888 // %b.0 = ssa.copy(%b)
1889 // false branch:
1890 // icmp slt %c, %b.0
1891
1892 // %c and %a may start out equal, and thus, the code below will say the second
1893 // %icmp is false. c may become equal to something else, and in that case the
1894 // %second icmp *must* be reexamined, but would not if only the renamed
1895 // %operands are considered users of the icmp.
1896
1897 // *Currently* we only check one level of comparisons back, and only mark one
Sanjay Patel7cf745c2017-08-03 15:18:27 +00001898 // level back as touched when changes happen. If you modify this code to look
Daniel Berlinf7d95802017-02-18 23:06:50 +00001899 // back farther through comparisons, you *must* mark the appropriate
1900 // comparisons as users in PredicateInfo.cpp, or you will cause bugs. See if
1901 // we know something just from the operands themselves
1902
1903 // See if our operands have predicate info, so that we may be able to derive
1904 // something from a previous comparison.
1905 for (const auto &Op : CI->operands()) {
1906 auto *PI = PredInfo->getPredicateInfoFor(Op);
1907 if (const auto *PBranch = dyn_cast_or_null<PredicateBranch>(PI)) {
1908 if (PI == LastPredInfo)
1909 continue;
1910 LastPredInfo = PI;
Daniel Berlin86932102017-09-01 19:20:18 +00001911 // In phi of ops cases, we may have predicate info that we are evaluating
1912 // in a different context.
1913 if (!DT->dominates(PBranch->To, getBlockForValue(I)))
1914 continue;
1915 // TODO: Along the false edge, we may know more things too, like
1916 // icmp of
Daniel Berlinf7d95802017-02-18 23:06:50 +00001917 // same operands is false.
Daniel Berlin86932102017-09-01 19:20:18 +00001918 // TODO: We only handle actual comparison conditions below, not
1919 // and/or.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001920 auto *BranchCond = dyn_cast<CmpInst>(PBranch->Condition);
1921 if (!BranchCond)
1922 continue;
1923 auto *BranchOp0 = lookupOperandLeader(BranchCond->getOperand(0));
1924 auto *BranchOp1 = lookupOperandLeader(BranchCond->getOperand(1));
1925 auto BranchPredicate = BranchCond->getPredicate();
Daniel Berlin0350a872017-03-04 00:44:43 +00001926 if (shouldSwapOperands(BranchOp0, BranchOp1)) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001927 std::swap(BranchOp0, BranchOp1);
1928 BranchPredicate = BranchCond->getSwappedPredicate();
1929 }
1930 if (BranchOp0 == Op0 && BranchOp1 == Op1) {
1931 if (PBranch->TrueEdge) {
1932 // If we know the previous predicate is true and we are in the true
1933 // edge then we may be implied true or false.
Davide Italiano2dfd46b2017-05-01 22:26:28 +00001934 if (CmpInst::isImpliedTrueByMatchingCmp(BranchPredicate,
1935 OurPredicate)) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001936 addPredicateUsers(PI, I);
1937 return createConstantExpression(
1938 ConstantInt::getTrue(CI->getType()));
1939 }
1940
Davide Italiano2dfd46b2017-05-01 22:26:28 +00001941 if (CmpInst::isImpliedFalseByMatchingCmp(BranchPredicate,
1942 OurPredicate)) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00001943 addPredicateUsers(PI, I);
1944 return createConstantExpression(
1945 ConstantInt::getFalse(CI->getType()));
1946 }
Daniel Berlinf7d95802017-02-18 23:06:50 +00001947 } else {
1948 // Just handle the ne and eq cases, where if we have the same
1949 // operands, we may know something.
1950 if (BranchPredicate == OurPredicate) {
1951 addPredicateUsers(PI, I);
1952 // Same predicate, same ops,we know it was false, so this is false.
1953 return createConstantExpression(
1954 ConstantInt::getFalse(CI->getType()));
1955 } else if (BranchPredicate ==
1956 CmpInst::getInversePredicate(OurPredicate)) {
1957 addPredicateUsers(PI, I);
1958 // Inverse predicate, we know the other was false, so this is true.
Daniel Berlinf7d95802017-02-18 23:06:50 +00001959 return createConstantExpression(
1960 ConstantInt::getTrue(CI->getType()));
1961 }
1962 }
1963 }
1964 }
1965 }
1966 // Create expression will take care of simplifyCmpInst
Daniel Berlin97718e62017-01-31 22:32:03 +00001967 return createExpression(I);
Daniel Berlinc22aafe2017-01-31 22:31:58 +00001968}
Davide Italiano7e274e02016-12-22 16:03:48 +00001969
1970// Substitute and symbolize the value before value numbering.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00001971const Expression *
1972NewGVN::performSymbolicEvaluation(Value *V,
1973 SmallPtrSetImpl<Value *> &Visited) const {
Davide Italiano0e714802016-12-28 14:00:11 +00001974 const Expression *E = nullptr;
Davide Italiano7e274e02016-12-22 16:03:48 +00001975 if (auto *C = dyn_cast<Constant>(V))
1976 E = createConstantExpression(C);
1977 else if (isa<Argument>(V) || isa<GlobalVariable>(V)) {
1978 E = createVariableExpression(V);
1979 } else {
1980 // TODO: memory intrinsics.
1981 // TODO: Some day, we should do the forward propagation and reassociation
1982 // parts of the algorithm.
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00001983 auto *I = cast<Instruction>(V);
Davide Italiano7e274e02016-12-22 16:03:48 +00001984 switch (I->getOpcode()) {
1985 case Instruction::ExtractValue:
1986 case Instruction::InsertValue:
Daniel Berlin97718e62017-01-31 22:32:03 +00001987 E = performSymbolicAggrValueEvaluation(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00001988 break;
Daniel Berlinc1305af2017-09-30 23:51:54 +00001989 case Instruction::PHI: {
1990 SmallVector<ValPair, 3> Ops;
1991 auto *PN = cast<PHINode>(I);
1992 for (unsigned i = 0; i < PN->getNumOperands(); ++i)
1993 Ops.push_back({PN->getIncomingValue(i), PN->getIncomingBlock(i)});
1994 // Sort to ensure the invariant createPHIExpression requires is met.
1995 sortPHIOps(Ops);
1996 E = performSymbolicPHIEvaluation(Ops, I, getBlockForValue(I));
1997 } break;
Davide Italiano7e274e02016-12-22 16:03:48 +00001998 case Instruction::Call:
Daniel Berlin97718e62017-01-31 22:32:03 +00001999 E = performSymbolicCallEvaluation(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002000 break;
2001 case Instruction::Store:
Daniel Berlin97718e62017-01-31 22:32:03 +00002002 E = performSymbolicStoreEvaluation(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002003 break;
2004 case Instruction::Load:
Daniel Berlin97718e62017-01-31 22:32:03 +00002005 E = performSymbolicLoadEvaluation(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002006 break;
Eugene Zelenko99241d72017-10-20 21:47:29 +00002007 case Instruction::BitCast:
Daniel Berlin97718e62017-01-31 22:32:03 +00002008 E = createExpression(I);
Eugene Zelenko99241d72017-10-20 21:47:29 +00002009 break;
Daniel Berlinc22aafe2017-01-31 22:31:58 +00002010 case Instruction::ICmp:
Eugene Zelenko99241d72017-10-20 21:47:29 +00002011 case Instruction::FCmp:
Daniel Berlin97718e62017-01-31 22:32:03 +00002012 E = performSymbolicCmpEvaluation(I);
Eugene Zelenko99241d72017-10-20 21:47:29 +00002013 break;
Davide Italiano7e274e02016-12-22 16:03:48 +00002014 case Instruction::Add:
2015 case Instruction::FAdd:
2016 case Instruction::Sub:
2017 case Instruction::FSub:
2018 case Instruction::Mul:
2019 case Instruction::FMul:
2020 case Instruction::UDiv:
2021 case Instruction::SDiv:
2022 case Instruction::FDiv:
2023 case Instruction::URem:
2024 case Instruction::SRem:
2025 case Instruction::FRem:
2026 case Instruction::Shl:
2027 case Instruction::LShr:
2028 case Instruction::AShr:
2029 case Instruction::And:
2030 case Instruction::Or:
2031 case Instruction::Xor:
Davide Italiano7e274e02016-12-22 16:03:48 +00002032 case Instruction::Trunc:
2033 case Instruction::ZExt:
2034 case Instruction::SExt:
2035 case Instruction::FPToUI:
2036 case Instruction::FPToSI:
2037 case Instruction::UIToFP:
2038 case Instruction::SIToFP:
2039 case Instruction::FPTrunc:
2040 case Instruction::FPExt:
2041 case Instruction::PtrToInt:
2042 case Instruction::IntToPtr:
2043 case Instruction::Select:
2044 case Instruction::ExtractElement:
2045 case Instruction::InsertElement:
2046 case Instruction::ShuffleVector:
2047 case Instruction::GetElementPtr:
Daniel Berlin97718e62017-01-31 22:32:03 +00002048 E = createExpression(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002049 break;
2050 default:
2051 return nullptr;
2052 }
2053 }
Davide Italiano7e274e02016-12-22 16:03:48 +00002054 return E;
2055}
2056
Daniel Berlin0207cca2017-05-21 23:41:56 +00002057// Look up a container in a map, and then call a function for each thing in the
2058// found container.
2059template <typename Map, typename KeyType, typename Func>
2060void NewGVN::for_each_found(Map &M, const KeyType &Key, Func F) {
2061 const auto Result = M.find_as(Key);
2062 if (Result != M.end())
2063 for (typename Map::mapped_type::value_type Mapped : Result->second)
2064 F(Mapped);
2065}
2066
2067// Look up a container of values/instructions in a map, and touch all the
2068// instructions in the container. Then erase value from the map.
2069template <typename Map, typename KeyType>
2070void NewGVN::touchAndErase(Map &M, const KeyType &Key) {
2071 const auto Result = M.find_as(Key);
2072 if (Result != M.end()) {
2073 for (const typename Map::mapped_type::value_type Mapped : Result->second)
2074 TouchedInstructions.set(InstrToDFSNum(Mapped));
2075 M.erase(Result);
2076 }
2077}
2078
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002079void NewGVN::addAdditionalUsers(Value *To, Value *User) const {
Daniel Berlin54a92fc2017-09-05 02:17:42 +00002080 assert(User && To != User);
Daniel Berlinbe3e7ba2017-05-31 01:47:32 +00002081 if (isa<Instruction>(To))
2082 AdditionalUsers[To].insert(User);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002083}
2084
Davide Italiano7e274e02016-12-22 16:03:48 +00002085void NewGVN::markUsersTouched(Value *V) {
2086 // Now mark the users as touched.
Daniel Berline0bd37e2016-12-29 22:15:12 +00002087 for (auto *User : V->users()) {
2088 assert(isa<Instruction>(User) && "Use of value not within an instruction?");
Daniel Berlin21279bd2017-04-06 18:52:58 +00002089 TouchedInstructions.set(InstrToDFSNum(User));
Davide Italiano7e274e02016-12-22 16:03:48 +00002090 }
Daniel Berlin0207cca2017-05-21 23:41:56 +00002091 touchAndErase(AdditionalUsers, V);
Davide Italiano7e274e02016-12-22 16:03:48 +00002092}
2093
Daniel Berlin6604a2f2017-05-09 16:40:04 +00002094void NewGVN::addMemoryUsers(const MemoryAccess *To, MemoryAccess *U) const {
Daniel Berlin1316a942017-04-06 18:52:50 +00002095 DEBUG(dbgs() << "Adding memory user " << *U << " to " << *To << "\n");
2096 MemoryToUsers[To].insert(U);
2097}
2098
2099void NewGVN::markMemoryDefTouched(const MemoryAccess *MA) {
Daniel Berlin21279bd2017-04-06 18:52:58 +00002100 TouchedInstructions.set(MemoryToDFSNum(MA));
Daniel Berlin1316a942017-04-06 18:52:50 +00002101}
2102
2103void NewGVN::markMemoryUsersTouched(const MemoryAccess *MA) {
2104 if (isa<MemoryUse>(MA))
2105 return;
2106 for (auto U : MA->users())
Daniel Berlin21279bd2017-04-06 18:52:58 +00002107 TouchedInstructions.set(MemoryToDFSNum(U));
Daniel Berlin0207cca2017-05-21 23:41:56 +00002108 touchAndErase(MemoryToUsers, MA);
Davide Italiano7e274e02016-12-22 16:03:48 +00002109}
2110
Daniel Berlinf7d95802017-02-18 23:06:50 +00002111// Add I to the set of users of a given predicate.
Daniel Berlin6604a2f2017-05-09 16:40:04 +00002112void NewGVN::addPredicateUsers(const PredicateBase *PB, Instruction *I) const {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002113 // Don't add temporary instructions to the user lists.
2114 if (AllTempInstructions.count(I))
2115 return;
2116
Daniel Berlinf7d95802017-02-18 23:06:50 +00002117 if (auto *PBranch = dyn_cast<PredicateBranch>(PB))
2118 PredicateToUsers[PBranch->Condition].insert(I);
2119 else if (auto *PAssume = dyn_cast<PredicateBranch>(PB))
2120 PredicateToUsers[PAssume->Condition].insert(I);
2121}
2122
2123// Touch all the predicates that depend on this instruction.
2124void NewGVN::markPredicateUsersTouched(Instruction *I) {
Daniel Berlin0207cca2017-05-21 23:41:56 +00002125 touchAndErase(PredicateToUsers, I);
Daniel Berlinf7d95802017-02-18 23:06:50 +00002126}
2127
Daniel Berlin1316a942017-04-06 18:52:50 +00002128// Mark users affected by a memory leader change.
2129void NewGVN::markMemoryLeaderChangeTouched(CongruenceClass *CC) {
Daniel Berlina8236562017-04-07 18:38:09 +00002130 for (auto M : CC->memory())
Daniel Berlin1316a942017-04-06 18:52:50 +00002131 markMemoryDefTouched(M);
2132}
2133
Daniel Berlin32f8d562017-01-07 16:55:14 +00002134// Touch the instructions that need to be updated after a congruence class has a
2135// leader change, and mark changed values.
Daniel Berlin1316a942017-04-06 18:52:50 +00002136void NewGVN::markValueLeaderChangeTouched(CongruenceClass *CC) {
Daniel Berlina8236562017-04-07 18:38:09 +00002137 for (auto M : *CC) {
Daniel Berlin32f8d562017-01-07 16:55:14 +00002138 if (auto *I = dyn_cast<Instruction>(M))
Daniel Berlin21279bd2017-04-06 18:52:58 +00002139 TouchedInstructions.set(InstrToDFSNum(I));
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002140 LeaderChanges.insert(M);
2141 }
2142}
2143
Daniel Berlin1316a942017-04-06 18:52:50 +00002144// Give a range of things that have instruction DFS numbers, this will return
2145// the member of the range with the smallest dfs number.
2146template <class T, class Range>
2147T *NewGVN::getMinDFSOfRange(const Range &R) const {
2148 std::pair<T *, unsigned> MinDFS = {nullptr, ~0U};
2149 for (const auto X : R) {
Daniel Berlin21279bd2017-04-06 18:52:58 +00002150 auto DFSNum = InstrToDFSNum(X);
Daniel Berlin1316a942017-04-06 18:52:50 +00002151 if (DFSNum < MinDFS.second)
2152 MinDFS = {X, DFSNum};
2153 }
2154 return MinDFS.first;
2155}
2156
2157// This function returns the MemoryAccess that should be the next leader of
2158// congruence class CC, under the assumption that the current leader is going to
2159// disappear.
2160const MemoryAccess *NewGVN::getNextMemoryLeader(CongruenceClass *CC) const {
2161 // TODO: If this ends up to slow, we can maintain a next memory leader like we
2162 // do for regular leaders.
Daniel Berlinde269f42017-08-26 07:37:11 +00002163 // Make sure there will be a leader to find.
Davide Italianodc435322017-05-10 19:57:43 +00002164 assert(!CC->definesNoMemory() && "Can't get next leader if there is none");
Daniel Berlina8236562017-04-07 18:38:09 +00002165 if (CC->getStoreCount() > 0) {
2166 if (auto *NL = dyn_cast_or_null<StoreInst>(CC->getNextLeader().first))
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002167 return getMemoryAccess(NL);
Daniel Berlin1316a942017-04-06 18:52:50 +00002168 // Find the store with the minimum DFS number.
2169 auto *V = getMinDFSOfRange<Value>(make_filter_range(
Daniel Berlina8236562017-04-07 18:38:09 +00002170 *CC, [&](const Value *V) { return isa<StoreInst>(V); }));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002171 return getMemoryAccess(cast<StoreInst>(V));
Daniel Berlin1316a942017-04-06 18:52:50 +00002172 }
Daniel Berlina8236562017-04-07 18:38:09 +00002173 assert(CC->getStoreCount() == 0);
Daniel Berlin1316a942017-04-06 18:52:50 +00002174
2175 // Given our assertion, hitting this part must mean
Daniel Berlina8236562017-04-07 18:38:09 +00002176 // !OldClass->memory_empty()
2177 if (CC->memory_size() == 1)
2178 return *CC->memory_begin();
2179 return getMinDFSOfRange<const MemoryPhi>(CC->memory());
Daniel Berlin1316a942017-04-06 18:52:50 +00002180}
2181
2182// This function returns the next value leader of a congruence class, under the
2183// assumption that the current leader is going away. This should end up being
2184// the next most dominating member.
2185Value *NewGVN::getNextValueLeader(CongruenceClass *CC) const {
2186 // We don't need to sort members if there is only 1, and we don't care about
2187 // sorting the TOP class because everything either gets out of it or is
2188 // unreachable.
2189
Daniel Berlina8236562017-04-07 18:38:09 +00002190 if (CC->size() == 1 || CC == TOPClass) {
2191 return *(CC->begin());
2192 } else if (CC->getNextLeader().first) {
Daniel Berlin1316a942017-04-06 18:52:50 +00002193 ++NumGVNAvoidedSortedLeaderChanges;
Daniel Berlina8236562017-04-07 18:38:09 +00002194 return CC->getNextLeader().first;
Daniel Berlin1316a942017-04-06 18:52:50 +00002195 } else {
2196 ++NumGVNSortedLeaderChanges;
2197 // NOTE: If this ends up to slow, we can maintain a dual structure for
2198 // member testing/insertion, or keep things mostly sorted, and sort only
2199 // here, or use SparseBitVector or ....
Daniel Berlina8236562017-04-07 18:38:09 +00002200 return getMinDFSOfRange<Value>(*CC);
Daniel Berlin1316a942017-04-06 18:52:50 +00002201 }
2202}
2203
2204// Move a MemoryAccess, currently in OldClass, to NewClass, including updates to
2205// the memory members, etc for the move.
2206//
2207// The invariants of this function are:
2208//
Davide Italianofb4544c2017-07-11 19:15:36 +00002209// - I must be moving to NewClass from OldClass
2210// - The StoreCount of OldClass and NewClass is expected to have been updated
Hiroshi Inoue9ff23802018-04-09 04:37:53 +00002211// for I already if it is a store.
Davide Italianofb4544c2017-07-11 19:15:36 +00002212// - The OldClass memory leader has not been updated yet if I was the leader.
Daniel Berlin1316a942017-04-06 18:52:50 +00002213void NewGVN::moveMemoryToNewCongruenceClass(Instruction *I,
2214 MemoryAccess *InstMA,
2215 CongruenceClass *OldClass,
2216 CongruenceClass *NewClass) {
2217 // If the leader is I, and we had a represenative MemoryAccess, it should
2218 // be the MemoryAccess of OldClass.
Davide Italianof58a30232017-04-10 23:08:35 +00002219 assert((!InstMA || !OldClass->getMemoryLeader() ||
2220 OldClass->getLeader() != I ||
Davide Italianoee1c8212017-07-11 19:49:12 +00002221 MemoryAccessToClass.lookup(OldClass->getMemoryLeader()) ==
2222 MemoryAccessToClass.lookup(InstMA)) &&
Davide Italianof58a30232017-04-10 23:08:35 +00002223 "Representative MemoryAccess mismatch");
Daniel Berlin1316a942017-04-06 18:52:50 +00002224 // First, see what happens to the new class
Daniel Berlina8236562017-04-07 18:38:09 +00002225 if (!NewClass->getMemoryLeader()) {
Daniel Berlin1316a942017-04-06 18:52:50 +00002226 // Should be a new class, or a store becoming a leader of a new class.
Daniel Berlina8236562017-04-07 18:38:09 +00002227 assert(NewClass->size() == 1 ||
2228 (isa<StoreInst>(I) && NewClass->getStoreCount() == 1));
2229 NewClass->setMemoryLeader(InstMA);
Daniel Berlin1316a942017-04-06 18:52:50 +00002230 // Mark it touched if we didn't just create a singleton
Daniel Berlina8236562017-04-07 18:38:09 +00002231 DEBUG(dbgs() << "Memory class leader change for class " << NewClass->getID()
Daniel Berlin1316a942017-04-06 18:52:50 +00002232 << " due to new memory instruction becoming leader\n");
2233 markMemoryLeaderChangeTouched(NewClass);
2234 }
2235 setMemoryClass(InstMA, NewClass);
2236 // Now, fixup the old class if necessary
Daniel Berlina8236562017-04-07 18:38:09 +00002237 if (OldClass->getMemoryLeader() == InstMA) {
Davide Italianodc435322017-05-10 19:57:43 +00002238 if (!OldClass->definesNoMemory()) {
Daniel Berlina8236562017-04-07 18:38:09 +00002239 OldClass->setMemoryLeader(getNextMemoryLeader(OldClass));
2240 DEBUG(dbgs() << "Memory class leader change for class "
2241 << OldClass->getID() << " to "
2242 << *OldClass->getMemoryLeader()
Daniel Berlin1316a942017-04-06 18:52:50 +00002243 << " due to removal of old leader " << *InstMA << "\n");
2244 markMemoryLeaderChangeTouched(OldClass);
2245 } else
Daniel Berlina8236562017-04-07 18:38:09 +00002246 OldClass->setMemoryLeader(nullptr);
Daniel Berlin1316a942017-04-06 18:52:50 +00002247 }
2248}
2249
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002250// Move a value, currently in OldClass, to be part of NewClass
Daniel Berlin1316a942017-04-06 18:52:50 +00002251// Update OldClass and NewClass for the move (including changing leaders, etc).
2252void NewGVN::moveValueToNewCongruenceClass(Instruction *I, const Expression *E,
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002253 CongruenceClass *OldClass,
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002254 CongruenceClass *NewClass) {
Daniel Berlina8236562017-04-07 18:38:09 +00002255 if (I == OldClass->getNextLeader().first)
2256 OldClass->resetNextLeader();
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002257
Daniel Berlinff152002017-05-19 19:01:24 +00002258 OldClass->erase(I);
2259 NewClass->insert(I);
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002260
Daniel Berlina8236562017-04-07 18:38:09 +00002261 if (NewClass->getLeader() != I)
2262 NewClass->addPossibleNextLeader({I, InstrToDFSNum(I)});
Daniel Berlin1316a942017-04-06 18:52:50 +00002263 // Handle our special casing of stores.
Daniel Berlin1ea5f322017-01-26 22:21:48 +00002264 if (auto *SI = dyn_cast<StoreInst>(I)) {
Daniel Berlina8236562017-04-07 18:38:09 +00002265 OldClass->decStoreCount();
2266 // Okay, so when do we want to make a store a leader of a class?
2267 // If we have a store defined by an earlier load, we want the earlier load
2268 // to lead the class.
2269 // If we have a store defined by something else, we want the store to lead
2270 // the class so everything else gets the "something else" as a value.
Daniel Berlin1316a942017-04-06 18:52:50 +00002271 // If we have a store as the single member of the class, we want the store
Daniel Berlina8236562017-04-07 18:38:09 +00002272 // as the leader
2273 if (NewClass->getStoreCount() == 0 && !NewClass->getStoredValue()) {
Daniel Berlin1316a942017-04-06 18:52:50 +00002274 // If it's a store expression we are using, it means we are not equivalent
2275 // to something earlier.
Daniel Berlin629e1ff2017-05-16 06:06:15 +00002276 if (auto *SE = dyn_cast<StoreExpression>(E)) {
Daniel Berlin629e1ff2017-05-16 06:06:15 +00002277 NewClass->setStoredValue(SE->getStoredValue());
Daniel Berlin1316a942017-04-06 18:52:50 +00002278 markValueLeaderChangeTouched(NewClass);
2279 // Shift the new class leader to be the store
Daniel Berlina8236562017-04-07 18:38:09 +00002280 DEBUG(dbgs() << "Changing leader of congruence class "
2281 << NewClass->getID() << " from " << *NewClass->getLeader()
2282 << " to " << *SI << " because store joined class\n");
Daniel Berlin1316a942017-04-06 18:52:50 +00002283 // If we changed the leader, we have to mark it changed because we don't
Davide Italiano67b0e532017-07-11 19:19:45 +00002284 // know what it will do to symbolic evaluation.
Daniel Berlina8236562017-04-07 18:38:09 +00002285 NewClass->setLeader(SI);
Daniel Berlin1316a942017-04-06 18:52:50 +00002286 }
2287 // We rely on the code below handling the MemoryAccess change.
2288 }
Daniel Berlina8236562017-04-07 18:38:09 +00002289 NewClass->incStoreCount();
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002290 }
Daniel Berlin1316a942017-04-06 18:52:50 +00002291 // True if there is no memory instructions left in a class that had memory
2292 // instructions before.
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002293
Daniel Berlin1316a942017-04-06 18:52:50 +00002294 // If it's not a memory use, set the MemoryAccess equivalence
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002295 auto *InstMA = dyn_cast_or_null<MemoryDef>(getMemoryAccess(I));
Daniel Berlin1316a942017-04-06 18:52:50 +00002296 if (InstMA)
2297 moveMemoryToNewCongruenceClass(I, InstMA, OldClass, NewClass);
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002298 ValueToClass[I] = NewClass;
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002299 // See if we destroyed the class or need to swap leaders.
Daniel Berlina8236562017-04-07 18:38:09 +00002300 if (OldClass->empty() && OldClass != TOPClass) {
2301 if (OldClass->getDefiningExpr()) {
Daniel Berlin629e1ff2017-05-16 06:06:15 +00002302 DEBUG(dbgs() << "Erasing expression " << *OldClass->getDefiningExpr()
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002303 << " from table\n");
Daniel Berlineafdd862017-06-06 17:15:28 +00002304 // We erase it as an exact expression to make sure we don't just erase an
2305 // equivalent one.
2306 auto Iter = ExpressionToClass.find_as(
2307 ExactEqualsExpression(*OldClass->getDefiningExpr()));
2308 if (Iter != ExpressionToClass.end())
2309 ExpressionToClass.erase(Iter);
2310#ifdef EXPENSIVE_CHECKS
2311 assert(
2312 (*OldClass->getDefiningExpr() != *E || ExpressionToClass.lookup(E)) &&
2313 "We erased the expression we just inserted, which should not happen");
2314#endif
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002315 }
Daniel Berlina8236562017-04-07 18:38:09 +00002316 } else if (OldClass->getLeader() == I) {
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002317 // When the leader changes, the value numbering of
2318 // everything may change due to symbolization changes, so we need to
2319 // reprocess.
Daniel Berlina8236562017-04-07 18:38:09 +00002320 DEBUG(dbgs() << "Value class leader change for class " << OldClass->getID()
Daniel Berlin1316a942017-04-06 18:52:50 +00002321 << "\n");
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002322 ++NumGVNLeaderChanges;
Daniel Berlin26addef2017-01-20 21:04:30 +00002323 // Destroy the stored value if there are no more stores to represent it.
Daniel Berlin1316a942017-04-06 18:52:50 +00002324 // Note that this is basically clean up for the expression removal that
2325 // happens below. If we remove stores from a class, we may leave it as a
2326 // class of equivalent memory phis.
Daniel Berlina8236562017-04-07 18:38:09 +00002327 if (OldClass->getStoreCount() == 0) {
2328 if (OldClass->getStoredValue())
2329 OldClass->setStoredValue(nullptr);
Daniel Berlin1ea5f322017-01-26 22:21:48 +00002330 }
Daniel Berlina8236562017-04-07 18:38:09 +00002331 OldClass->setLeader(getNextValueLeader(OldClass));
2332 OldClass->resetNextLeader();
Daniel Berlin1316a942017-04-06 18:52:50 +00002333 markValueLeaderChangeTouched(OldClass);
Daniel Berlin32f8d562017-01-07 16:55:14 +00002334 }
2335}
2336
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002337// For a given expression, mark the phi of ops instructions that could have
2338// changed as a result.
Daniel Berlin2aa5dc12017-05-30 06:58:18 +00002339void NewGVN::markPhiOfOpsChanged(const Expression *E) {
Daniel Berlind36c27b2017-09-30 23:51:55 +00002340 touchAndErase(ExpressionToPhiOfOps, E);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002341}
Daniel Berlin0207cca2017-05-21 23:41:56 +00002342
Davide Italiano7e274e02016-12-22 16:03:48 +00002343// Perform congruence finding on a given value numbering expression.
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002344void NewGVN::performCongruenceFinding(Instruction *I, const Expression *E) {
Davide Italiano7e274e02016-12-22 16:03:48 +00002345 // This is guaranteed to return something, since it will at least find
Daniel Berlinb79f5362017-02-11 12:48:50 +00002346 // TOP.
Daniel Berline021d2d2017-05-19 20:22:20 +00002347
2348 CongruenceClass *IClass = ValueToClass.lookup(I);
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002349 assert(IClass && "Should have found a IClass");
Davide Italiano7e274e02016-12-22 16:03:48 +00002350 // Dead classes should have been eliminated from the mapping.
Daniel Berlin1316a942017-04-06 18:52:50 +00002351 assert(!IClass->isDead() && "Found a dead class");
Davide Italiano7e274e02016-12-22 16:03:48 +00002352
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002353 CongruenceClass *EClass = nullptr;
Daniel Berlin02c6b172017-01-02 18:00:53 +00002354 if (const auto *VE = dyn_cast<VariableExpression>(E)) {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002355 EClass = ValueToClass.lookup(VE->getVariableValue());
Daniel Berline021d2d2017-05-19 20:22:20 +00002356 } else if (isa<DeadExpression>(E)) {
2357 EClass = TOPClass;
2358 }
2359 if (!EClass) {
Daniel Berlin2aa5dc12017-05-30 06:58:18 +00002360 auto lookupResult = ExpressionToClass.insert({E, nullptr});
Davide Italiano7e274e02016-12-22 16:03:48 +00002361
2362 // If it's not in the value table, create a new congruence class.
2363 if (lookupResult.second) {
Davide Italiano0e714802016-12-28 14:00:11 +00002364 CongruenceClass *NewClass = createCongruenceClass(nullptr, E);
Davide Italiano7e274e02016-12-22 16:03:48 +00002365 auto place = lookupResult.first;
2366 place->second = NewClass;
2367
2368 // Constants and variables should always be made the leader.
Daniel Berlin32f8d562017-01-07 16:55:14 +00002369 if (const auto *CE = dyn_cast<ConstantExpression>(E)) {
Daniel Berlina8236562017-04-07 18:38:09 +00002370 NewClass->setLeader(CE->getConstantValue());
Daniel Berlin32f8d562017-01-07 16:55:14 +00002371 } else if (const auto *SE = dyn_cast<StoreExpression>(E)) {
2372 StoreInst *SI = SE->getStoreInst();
Daniel Berlina8236562017-04-07 18:38:09 +00002373 NewClass->setLeader(SI);
Daniel Berlin629e1ff2017-05-16 06:06:15 +00002374 NewClass->setStoredValue(SE->getStoredValue());
Daniel Berlin1ea5f322017-01-26 22:21:48 +00002375 // The RepMemoryAccess field will be filled in properly by the
2376 // moveValueToNewCongruenceClass call.
Daniel Berlin32f8d562017-01-07 16:55:14 +00002377 } else {
Daniel Berlina8236562017-04-07 18:38:09 +00002378 NewClass->setLeader(I);
Daniel Berlin32f8d562017-01-07 16:55:14 +00002379 }
2380 assert(!isa<VariableExpression>(E) &&
2381 "VariableExpression should have been handled already");
Davide Italiano7e274e02016-12-22 16:03:48 +00002382
2383 EClass = NewClass;
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002384 DEBUG(dbgs() << "Created new congruence class for " << *I
Daniel Berlina8236562017-04-07 18:38:09 +00002385 << " using expression " << *E << " at " << NewClass->getID()
2386 << " and leader " << *(NewClass->getLeader()));
2387 if (NewClass->getStoredValue())
2388 DEBUG(dbgs() << " and stored value " << *(NewClass->getStoredValue()));
Daniel Berlin26addef2017-01-20 21:04:30 +00002389 DEBUG(dbgs() << "\n");
Davide Italiano7e274e02016-12-22 16:03:48 +00002390 } else {
2391 EClass = lookupResult.first->second;
Daniel Berlin589cecc2017-01-02 18:00:46 +00002392 if (isa<ConstantExpression>(E))
Davide Italianof58a30232017-04-10 23:08:35 +00002393 assert((isa<Constant>(EClass->getLeader()) ||
2394 (EClass->getStoredValue() &&
2395 isa<Constant>(EClass->getStoredValue()))) &&
2396 "Any class with a constant expression should have a "
2397 "constant leader");
Daniel Berlin589cecc2017-01-02 18:00:46 +00002398
Davide Italiano7e274e02016-12-22 16:03:48 +00002399 assert(EClass && "Somehow don't have an eclass");
2400
Daniel Berlin1316a942017-04-06 18:52:50 +00002401 assert(!EClass->isDead() && "We accidentally looked up a dead class");
Davide Italiano7e274e02016-12-22 16:03:48 +00002402 }
2403 }
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002404 bool ClassChanged = IClass != EClass;
2405 bool LeaderChanged = LeaderChanges.erase(I);
Daniel Berlin3a1bd022017-01-11 20:22:05 +00002406 if (ClassChanged || LeaderChanged) {
Daniel Berlina8236562017-04-07 18:38:09 +00002407 DEBUG(dbgs() << "New class " << EClass->getID() << " for expression " << *E
Davide Italiano7e274e02016-12-22 16:03:48 +00002408 << "\n");
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002409 if (ClassChanged) {
Daniel Berlin1316a942017-04-06 18:52:50 +00002410 moveValueToNewCongruenceClass(I, E, IClass, EClass);
Daniel Berlin2aa5dc12017-05-30 06:58:18 +00002411 markPhiOfOpsChanged(E);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002412 }
2413
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002414 markUsersTouched(I);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002415 if (MemoryAccess *MA = getMemoryAccess(I))
Daniel Berlinc0431fd2017-01-13 22:40:01 +00002416 markMemoryUsersTouched(MA);
Daniel Berlinf7d95802017-02-18 23:06:50 +00002417 if (auto *CI = dyn_cast<CmpInst>(I))
2418 markPredicateUsersTouched(CI);
Davide Italiano7e274e02016-12-22 16:03:48 +00002419 }
Daniel Berlin45403572017-05-16 19:58:47 +00002420 // If we changed the class of the store, we want to ensure nothing finds the
2421 // old store expression. In particular, loads do not compare against stored
2422 // value, so they will find old store expressions (and associated class
2423 // mappings) if we leave them in the table.
Davide Italianoee49f492017-05-19 04:06:10 +00002424 if (ClassChanged && isa<StoreInst>(I)) {
Daniel Berlin45403572017-05-16 19:58:47 +00002425 auto *OldE = ValueToExpression.lookup(I);
2426 // It could just be that the old class died. We don't want to erase it if we
2427 // just moved classes.
Daniel Berlineafdd862017-06-06 17:15:28 +00002428 if (OldE && isa<StoreExpression>(OldE) && *E != *OldE) {
2429 // Erase this as an exact expression to ensure we don't erase expressions
2430 // equivalent to it.
2431 auto Iter = ExpressionToClass.find_as(ExactEqualsExpression(*OldE));
2432 if (Iter != ExpressionToClass.end())
2433 ExpressionToClass.erase(Iter);
2434 }
Daniel Berlin45403572017-05-16 19:58:47 +00002435 }
2436 ValueToExpression[I] = E;
Davide Italiano7e274e02016-12-22 16:03:48 +00002437}
2438
2439// Process the fact that Edge (from, to) is reachable, including marking
2440// any newly reachable blocks and instructions for processing.
2441void NewGVN::updateReachableEdge(BasicBlock *From, BasicBlock *To) {
2442 // Check if the Edge was reachable before.
2443 if (ReachableEdges.insert({From, To}).second) {
2444 // If this block wasn't reachable before, all instructions are touched.
2445 if (ReachableBlocks.insert(To).second) {
2446 DEBUG(dbgs() << "Block " << getBlockName(To) << " marked reachable\n");
2447 const auto &InstRange = BlockInstRange.lookup(To);
2448 TouchedInstructions.set(InstRange.first, InstRange.second);
2449 } else {
2450 DEBUG(dbgs() << "Block " << getBlockName(To)
2451 << " was reachable, but new edge {" << getBlockName(From)
2452 << "," << getBlockName(To) << "} to it found\n");
2453
2454 // We've made an edge reachable to an existing block, which may
2455 // impact predicates. Otherwise, only mark the phi nodes as touched, as
2456 // they are the only thing that depend on new edges. Anything using their
2457 // values will get propagated to if necessary.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002458 if (MemoryAccess *MemPhi = getMemoryAccess(To))
Daniel Berlin21279bd2017-04-06 18:52:58 +00002459 TouchedInstructions.set(InstrToDFSNum(MemPhi));
Daniel Berlin589cecc2017-01-02 18:00:46 +00002460
Daniel Berlin9b926e92017-09-30 23:51:53 +00002461 // FIXME: We should just add a union op on a Bitvector and
2462 // SparseBitVector. We can do it word by word faster than we are doing it
2463 // here.
2464 for (auto InstNum : RevisitOnReachabilityChange[To])
2465 TouchedInstructions.set(InstNum);
Davide Italiano7e274e02016-12-22 16:03:48 +00002466 }
2467 }
2468}
2469
2470// Given a predicate condition (from a switch, cmp, or whatever) and a block,
2471// see if we know some constant value for it already.
Daniel Berlin97718e62017-01-31 22:32:03 +00002472Value *NewGVN::findConditionEquivalence(Value *Cond) const {
Daniel Berlin203f47b2017-01-31 22:31:53 +00002473 auto Result = lookupOperandLeader(Cond);
Davide Italianodaa9c0e2017-06-19 16:46:15 +00002474 return isa<Constant>(Result) ? Result : nullptr;
Davide Italiano7e274e02016-12-22 16:03:48 +00002475}
2476
2477// Process the outgoing edges of a block for reachability.
2478void NewGVN::processOutgoingEdges(TerminatorInst *TI, BasicBlock *B) {
2479 // Evaluate reachability of terminator instruction.
2480 BranchInst *BR;
2481 if ((BR = dyn_cast<BranchInst>(TI)) && BR->isConditional()) {
2482 Value *Cond = BR->getCondition();
Daniel Berlin97718e62017-01-31 22:32:03 +00002483 Value *CondEvaluated = findConditionEquivalence(Cond);
Davide Italiano7e274e02016-12-22 16:03:48 +00002484 if (!CondEvaluated) {
2485 if (auto *I = dyn_cast<Instruction>(Cond)) {
Daniel Berlin97718e62017-01-31 22:32:03 +00002486 const Expression *E = createExpression(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002487 if (const auto *CE = dyn_cast<ConstantExpression>(E)) {
2488 CondEvaluated = CE->getConstantValue();
2489 }
2490 } else if (isa<ConstantInt>(Cond)) {
2491 CondEvaluated = Cond;
2492 }
2493 }
2494 ConstantInt *CI;
2495 BasicBlock *TrueSucc = BR->getSuccessor(0);
2496 BasicBlock *FalseSucc = BR->getSuccessor(1);
2497 if (CondEvaluated && (CI = dyn_cast<ConstantInt>(CondEvaluated))) {
2498 if (CI->isOne()) {
2499 DEBUG(dbgs() << "Condition for Terminator " << *TI
2500 << " evaluated to true\n");
2501 updateReachableEdge(B, TrueSucc);
2502 } else if (CI->isZero()) {
2503 DEBUG(dbgs() << "Condition for Terminator " << *TI
2504 << " evaluated to false\n");
2505 updateReachableEdge(B, FalseSucc);
2506 }
2507 } else {
2508 updateReachableEdge(B, TrueSucc);
2509 updateReachableEdge(B, FalseSucc);
2510 }
2511 } else if (auto *SI = dyn_cast<SwitchInst>(TI)) {
2512 // For switches, propagate the case values into the case
2513 // destinations.
2514
2515 // Remember how many outgoing edges there are to every successor.
2516 SmallDenseMap<BasicBlock *, unsigned, 16> SwitchEdges;
2517
Davide Italiano7e274e02016-12-22 16:03:48 +00002518 Value *SwitchCond = SI->getCondition();
Daniel Berlin97718e62017-01-31 22:32:03 +00002519 Value *CondEvaluated = findConditionEquivalence(SwitchCond);
Davide Italiano7e274e02016-12-22 16:03:48 +00002520 // See if we were able to turn this switch statement into a constant.
2521 if (CondEvaluated && isa<ConstantInt>(CondEvaluated)) {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00002522 auto *CondVal = cast<ConstantInt>(CondEvaluated);
Davide Italiano7e274e02016-12-22 16:03:48 +00002523 // We should be able to get case value for this.
Chandler Carruth927d8e62017-04-12 07:27:28 +00002524 auto Case = *SI->findCaseValue(CondVal);
2525 if (Case.getCaseSuccessor() == SI->getDefaultDest()) {
Davide Italiano7e274e02016-12-22 16:03:48 +00002526 // We proved the value is outside of the range of the case.
2527 // We can't do anything other than mark the default dest as reachable,
2528 // and go home.
2529 updateReachableEdge(B, SI->getDefaultDest());
2530 return;
2531 }
2532 // Now get where it goes and mark it reachable.
Chandler Carruth927d8e62017-04-12 07:27:28 +00002533 BasicBlock *TargetBlock = Case.getCaseSuccessor();
Davide Italiano7e274e02016-12-22 16:03:48 +00002534 updateReachableEdge(B, TargetBlock);
Davide Italiano7e274e02016-12-22 16:03:48 +00002535 } else {
2536 for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) {
2537 BasicBlock *TargetBlock = SI->getSuccessor(i);
2538 ++SwitchEdges[TargetBlock];
2539 updateReachableEdge(B, TargetBlock);
2540 }
2541 }
2542 } else {
2543 // Otherwise this is either unconditional, or a type we have no
2544 // idea about. Just mark successors as reachable.
2545 for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
2546 BasicBlock *TargetBlock = TI->getSuccessor(i);
2547 updateReachableEdge(B, TargetBlock);
2548 }
Daniel Berlin589cecc2017-01-02 18:00:46 +00002549
2550 // This also may be a memory defining terminator, in which case, set it
Daniel Berlin1316a942017-04-06 18:52:50 +00002551 // equivalent only to itself.
2552 //
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002553 auto *MA = getMemoryAccess(TI);
Daniel Berlin1316a942017-04-06 18:52:50 +00002554 if (MA && !isa<MemoryUse>(MA)) {
2555 auto *CC = ensureLeaderOfMemoryClass(MA);
2556 if (setMemoryClass(MA, CC))
2557 markMemoryUsersTouched(MA);
2558 }
Davide Italiano7e274e02016-12-22 16:03:48 +00002559 }
2560}
2561
Davide Italiano5974c312017-08-03 21:17:49 +00002562// Remove the PHI of Ops PHI for I
2563void NewGVN::removePhiOfOps(Instruction *I, PHINode *PHITemp) {
2564 InstrDFS.erase(PHITemp);
2565 // It's still a temp instruction. We keep it in the array so it gets erased.
Daniel Berlin9b926e92017-09-30 23:51:53 +00002566 // However, it's no longer used by I, or in the block
Davide Italiano5974c312017-08-03 21:17:49 +00002567 TempToBlock.erase(PHITemp);
2568 RealToTemp.erase(I);
Daniel Berlin9b926e92017-09-30 23:51:53 +00002569 // We don't remove the users from the phi node uses. This wastes a little
2570 // time, but such is life. We could use two sets to track which were there
2571 // are the start of NewGVN, and which were added, but right nowt he cost of
2572 // tracking is more than the cost of checking for more phi of ops.
Davide Italiano5974c312017-08-03 21:17:49 +00002573}
2574
2575// Add PHI Op in BB as a PHI of operations version of ExistingValue.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002576void NewGVN::addPhiOfOps(PHINode *Op, BasicBlock *BB,
2577 Instruction *ExistingValue) {
2578 InstrDFS[Op] = InstrToDFSNum(ExistingValue);
2579 AllTempInstructions.insert(Op);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002580 TempToBlock[Op] = BB;
Daniel Berlinb779db72017-06-29 17:01:10 +00002581 RealToTemp[ExistingValue] = Op;
Daniel Berlin9b926e92017-09-30 23:51:53 +00002582 // Add all users to phi node use, as they are now uses of the phi of ops phis
2583 // and may themselves be phi of ops.
2584 for (auto *U : ExistingValue->users())
2585 if (auto *UI = dyn_cast<Instruction>(U))
2586 PHINodeUses.insert(UI);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002587}
2588
2589static bool okayForPHIOfOps(const Instruction *I) {
Chad Rosiera5508e32017-08-10 14:12:57 +00002590 if (!EnablePhiOfOps)
2591 return false;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002592 return isa<BinaryOperator>(I) || isa<SelectInst>(I) || isa<CmpInst>(I) ||
2593 isa<LoadInst>(I);
2594}
2595
Daniel Berlin08dd5822017-10-06 01:33:06 +00002596bool NewGVN::OpIsSafeForPHIOfOpsHelper(
2597 Value *V, const BasicBlock *PHIBlock,
2598 SmallPtrSetImpl<const Value *> &Visited,
2599 SmallVectorImpl<Instruction *> &Worklist) {
2600
Daniel Berlin94090dd2017-09-02 02:18:44 +00002601 if (!isa<Instruction>(V))
2602 return true;
2603 auto OISIt = OpSafeForPHIOfOps.find(V);
2604 if (OISIt != OpSafeForPHIOfOps.end())
2605 return OISIt->second;
Daniel Berlinde6958e2017-09-30 23:51:04 +00002606
Daniel Berlin08dd5822017-10-06 01:33:06 +00002607 // Keep walking until we either dominate the phi block, or hit a phi, or run
2608 // out of things to check.
Daniel Berlin94090dd2017-09-02 02:18:44 +00002609 if (DT->properlyDominates(getBlockForValue(V), PHIBlock)) {
2610 OpSafeForPHIOfOps.insert({V, true});
2611 return true;
2612 }
2613 // PHI in the same block.
2614 if (isa<PHINode>(V) && getBlockForValue(V) == PHIBlock) {
2615 OpSafeForPHIOfOps.insert({V, false});
2616 return false;
2617 }
Daniel Berlinde6958e2017-09-30 23:51:04 +00002618
Daniel Berlinde6958e2017-09-30 23:51:04 +00002619 auto *OrigI = cast<Instruction>(V);
2620 for (auto *Op : OrigI->operand_values()) {
Daniel Berlin94090dd2017-09-02 02:18:44 +00002621 if (!isa<Instruction>(Op))
2622 continue;
Daniel Berlinde6958e2017-09-30 23:51:04 +00002623 // Stop now if we find an unsafe operand.
2624 auto OISIt = OpSafeForPHIOfOps.find(OrigI);
Daniel Berlin94090dd2017-09-02 02:18:44 +00002625 if (OISIt != OpSafeForPHIOfOps.end()) {
2626 if (!OISIt->second) {
2627 OpSafeForPHIOfOps.insert({V, false});
2628 return false;
2629 }
Daniel Berlin94090dd2017-09-02 02:18:44 +00002630 continue;
Daniel Berlinde6958e2017-09-30 23:51:04 +00002631 }
Daniel Berlin08dd5822017-10-06 01:33:06 +00002632 if (!Visited.insert(Op).second)
2633 continue;
Daniel Berlinde6958e2017-09-30 23:51:04 +00002634 Worklist.push_back(cast<Instruction>(Op));
2635 }
Daniel Berlin08dd5822017-10-06 01:33:06 +00002636 return true;
2637}
Daniel Berlinde6958e2017-09-30 23:51:04 +00002638
Daniel Berlin08dd5822017-10-06 01:33:06 +00002639// Return true if this operand will be safe to use for phi of ops.
2640//
2641// The reason some operands are unsafe is that we are not trying to recursively
2642// translate everything back through phi nodes. We actually expect some lookups
2643// of expressions to fail. In particular, a lookup where the expression cannot
2644// exist in the predecessor. This is true even if the expression, as shown, can
2645// be determined to be constant.
2646bool NewGVN::OpIsSafeForPHIOfOps(Value *V, const BasicBlock *PHIBlock,
2647 SmallPtrSetImpl<const Value *> &Visited) {
2648 SmallVector<Instruction *, 4> Worklist;
2649 if (!OpIsSafeForPHIOfOpsHelper(V, PHIBlock, Visited, Worklist))
2650 return false;
Daniel Berlinde6958e2017-09-30 23:51:04 +00002651 while (!Worklist.empty()) {
2652 auto *I = Worklist.pop_back_val();
Daniel Berlin08dd5822017-10-06 01:33:06 +00002653 if (!OpIsSafeForPHIOfOpsHelper(I, PHIBlock, Visited, Worklist))
Daniel Berlin94090dd2017-09-02 02:18:44 +00002654 return false;
Daniel Berlin94090dd2017-09-02 02:18:44 +00002655 }
2656 OpSafeForPHIOfOps.insert({V, true});
2657 return true;
2658}
2659
2660// Try to find a leader for instruction TransInst, which is a phi translated
2661// version of something in our original program. Visited is used to ensure we
2662// don't infinite loop during translations of cycles. OrigInst is the
2663// instruction in the original program, and PredBB is the predecessor we
2664// translated it through.
2665Value *NewGVN::findLeaderForInst(Instruction *TransInst,
2666 SmallPtrSetImpl<Value *> &Visited,
2667 MemoryAccess *MemAccess, Instruction *OrigInst,
2668 BasicBlock *PredBB) {
2669 unsigned IDFSNum = InstrToDFSNum(OrigInst);
2670 // Make sure it's marked as a temporary instruction.
2671 AllTempInstructions.insert(TransInst);
2672 // and make sure anything that tries to add it's DFS number is
2673 // redirected to the instruction we are making a phi of ops
2674 // for.
2675 TempToBlock.insert({TransInst, PredBB});
2676 InstrDFS.insert({TransInst, IDFSNum});
2677
2678 const Expression *E = performSymbolicEvaluation(TransInst, Visited);
2679 InstrDFS.erase(TransInst);
2680 AllTempInstructions.erase(TransInst);
2681 TempToBlock.erase(TransInst);
2682 if (MemAccess)
2683 TempToMemory.erase(TransInst);
2684 if (!E)
2685 return nullptr;
Daniel Berlin4ad7e8d2017-09-05 02:17:40 +00002686 auto *FoundVal = findPHIOfOpsLeader(E, OrigInst, PredBB);
2687 if (!FoundVal) {
Daniel Berlin94090dd2017-09-02 02:18:44 +00002688 ExpressionToPhiOfOps[E].insert(OrigInst);
2689 DEBUG(dbgs() << "Cannot find phi of ops operand for " << *TransInst
2690 << " in block " << getBlockName(PredBB) << "\n");
2691 return nullptr;
2692 }
2693 if (auto *SI = dyn_cast<StoreInst>(FoundVal))
2694 FoundVal = SI->getValueOperand();
2695 return FoundVal;
2696}
2697
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002698// When we see an instruction that is an op of phis, generate the equivalent phi
2699// of ops form.
2700const Expression *
Daniel Berlin9b926e92017-09-30 23:51:53 +00002701NewGVN::makePossiblePHIOfOps(Instruction *I,
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002702 SmallPtrSetImpl<Value *> &Visited) {
2703 if (!okayForPHIOfOps(I))
2704 return nullptr;
2705
2706 if (!Visited.insert(I).second)
2707 return nullptr;
2708 // For now, we require the instruction be cycle free because we don't
2709 // *always* create a phi of ops for instructions that could be done as phi
2710 // of ops, we only do it if we think it is useful. If we did do it all the
2711 // time, we could remove the cycle free check.
2712 if (!isCycleFree(I))
2713 return nullptr;
2714
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002715 SmallPtrSet<const Value *, 8> ProcessedPHIs;
2716 // TODO: We don't do phi translation on memory accesses because it's
2717 // complicated. For a load, we'd need to be able to simulate a new memoryuse,
2718 // which we don't have a good way of doing ATM.
2719 auto *MemAccess = getMemoryAccess(I);
2720 // If the memory operation is defined by a memory operation this block that
2721 // isn't a MemoryPhi, transforming the pointer backwards through a scalar phi
2722 // can't help, as it would still be killed by that memory operation.
2723 if (MemAccess && !isa<MemoryPhi>(MemAccess->getDefiningAccess()) &&
2724 MemAccess->getDefiningAccess()->getBlock() == I->getParent())
2725 return nullptr;
2726
Daniel Berlin94090dd2017-09-02 02:18:44 +00002727 SmallPtrSet<const Value *, 10> VisitedOps;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002728 // Convert op of phis to phi of ops
Daniel Berlin9b926e92017-09-30 23:51:53 +00002729 for (auto *Op : I->operand_values()) {
2730 if (!isa<PHINode>(Op)) {
2731 auto *ValuePHI = RealToTemp.lookup(Op);
2732 if (!ValuePHI)
2733 continue;
2734 DEBUG(dbgs() << "Found possible dependent phi of ops\n");
2735 Op = ValuePHI;
2736 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002737 auto *OpPHI = cast<PHINode>(Op);
2738 // No point in doing this for one-operand phis.
2739 if (OpPHI->getNumOperands() == 1)
2740 continue;
2741 if (!DebugCounter::shouldExecute(PHIOfOpsCounter))
2742 return nullptr;
Daniel Berlinc1305af2017-09-30 23:51:54 +00002743 SmallVector<ValPair, 4> Ops;
Daniel Berlind36c27b2017-09-30 23:51:55 +00002744 SmallPtrSet<Value *, 4> Deps;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002745 auto *PHIBlock = getBlockForValue(OpPHI);
Daniel Berlin9b926e92017-09-30 23:51:53 +00002746 RevisitOnReachabilityChange[PHIBlock].reset(InstrToDFSNum(I));
2747 for (unsigned PredNum = 0; PredNum < OpPHI->getNumOperands(); ++PredNum) {
2748 auto *PredBB = OpPHI->getIncomingBlock(PredNum);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002749 Value *FoundVal = nullptr;
2750 // We could just skip unreachable edges entirely but it's tricky to do
2751 // with rewriting existing phi nodes.
2752 if (ReachableEdges.count({PredBB, PHIBlock})) {
Daniel Berlin9b926e92017-09-30 23:51:53 +00002753 // Clone the instruction, create an expression from it that is
2754 // translated back into the predecessor, and see if we have a leader.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002755 Instruction *ValueOp = I->clone();
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002756 if (MemAccess)
Daniel Berlinc8ed4042017-05-30 06:42:29 +00002757 TempToMemory.insert({ValueOp, MemAccess});
Daniel Berlin94090dd2017-09-02 02:18:44 +00002758 bool SafeForPHIOfOps = true;
2759 VisitedOps.clear();
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002760 for (auto &Op : ValueOp->operands()) {
Daniel Berlin94090dd2017-09-02 02:18:44 +00002761 auto *OrigOp = &*Op;
Daniel Berlin9b926e92017-09-30 23:51:53 +00002762 // When these operand changes, it could change whether there is a
Daniel Berlind36c27b2017-09-30 23:51:55 +00002763 // leader for us or not, so we have to add additional users.
Daniel Berlin9b926e92017-09-30 23:51:53 +00002764 if (isa<PHINode>(Op)) {
2765 Op = Op->DoPHITranslation(PHIBlock, PredBB);
2766 if (Op != OrigOp && Op != I)
Daniel Berlind36c27b2017-09-30 23:51:55 +00002767 Deps.insert(Op);
Daniel Berlin9b926e92017-09-30 23:51:53 +00002768 } else if (auto *ValuePHI = RealToTemp.lookup(Op)) {
2769 if (getBlockForValue(ValuePHI) == PHIBlock)
Davide Italiano834b4512017-10-30 20:20:16 +00002770 Op = ValuePHI->getIncomingValueForBlock(PredBB);
Daniel Berlin9b926e92017-09-30 23:51:53 +00002771 }
Daniel Berlin94090dd2017-09-02 02:18:44 +00002772 // If we phi-translated the op, it must be safe.
Daniel Berlin08dd5822017-10-06 01:33:06 +00002773 SafeForPHIOfOps =
2774 SafeForPHIOfOps &&
2775 (Op != OrigOp || OpIsSafeForPHIOfOps(Op, PHIBlock, VisitedOps));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002776 }
Daniel Berlinc1305af2017-09-30 23:51:54 +00002777 // FIXME: For those things that are not safe we could generate
Daniel Berlin94090dd2017-09-02 02:18:44 +00002778 // expressions all the way down, and see if this comes out to a
2779 // constant. For anything where that is true, and unsafe, we should
2780 // have made a phi-of-ops (or value numbered it equivalent to something)
2781 // for the pieces already.
2782 FoundVal = !SafeForPHIOfOps ? nullptr
2783 : findLeaderForInst(ValueOp, Visited,
2784 MemAccess, I, PredBB);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002785 ValueOp->deleteValue();
Daniel Berlin94090dd2017-09-02 02:18:44 +00002786 if (!FoundVal)
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002787 return nullptr;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002788 } else {
2789 DEBUG(dbgs() << "Skipping phi of ops operand for incoming block "
2790 << getBlockName(PredBB)
2791 << " because the block is unreachable\n");
2792 FoundVal = UndefValue::get(I->getType());
Daniel Berlin9b926e92017-09-30 23:51:53 +00002793 RevisitOnReachabilityChange[PHIBlock].set(InstrToDFSNum(I));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002794 }
2795
2796 Ops.push_back({FoundVal, PredBB});
2797 DEBUG(dbgs() << "Found phi of ops operand " << *FoundVal << " in "
2798 << getBlockName(PredBB) << "\n");
2799 }
Daniel Berlind36c27b2017-09-30 23:51:55 +00002800 for (auto Dep : Deps)
2801 addAdditionalUsers(Dep, I);
Daniel Berlinc1305af2017-09-30 23:51:54 +00002802 sortPHIOps(Ops);
2803 auto *E = performSymbolicPHIEvaluation(Ops, I, PHIBlock);
2804 if (isa<ConstantExpression>(E) || isa<VariableExpression>(E)) {
2805 DEBUG(dbgs()
2806 << "Not creating real PHI of ops because it simplified to existing "
2807 "value or constant\n");
2808 return E;
2809 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002810 auto *ValuePHI = RealToTemp.lookup(I);
2811 bool NewPHI = false;
2812 if (!ValuePHI) {
Daniel Berlin94090dd2017-09-02 02:18:44 +00002813 ValuePHI =
2814 PHINode::Create(I->getType(), OpPHI->getNumOperands(), "phiofops");
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002815 addPhiOfOps(ValuePHI, PHIBlock, I);
2816 NewPHI = true;
2817 NumGVNPHIOfOpsCreated++;
2818 }
2819 if (NewPHI) {
2820 for (auto PHIOp : Ops)
2821 ValuePHI->addIncoming(PHIOp.first, PHIOp.second);
2822 } else {
Florian Hahn1807c512018-02-27 09:34:51 +00002823 TempToBlock[ValuePHI] = PHIBlock;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002824 unsigned int i = 0;
2825 for (auto PHIOp : Ops) {
2826 ValuePHI->setIncomingValue(i, PHIOp.first);
2827 ValuePHI->setIncomingBlock(i, PHIOp.second);
2828 ++i;
2829 }
2830 }
Daniel Berlin9b926e92017-09-30 23:51:53 +00002831 RevisitOnReachabilityChange[PHIBlock].set(InstrToDFSNum(I));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002832 DEBUG(dbgs() << "Created phi of ops " << *ValuePHI << " for " << *I
2833 << "\n");
Daniel Berlinc1305af2017-09-30 23:51:54 +00002834
2835 return E;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002836 }
2837 return nullptr;
2838}
2839
Daniel Berlin5c338ff2017-03-10 19:05:04 +00002840// The algorithm initially places the values of the routine in the TOP
2841// congruence class. The leader of TOP is the undetermined value `undef`.
2842// When the algorithm has finished, values still in TOP are unreachable.
Davide Italiano7e274e02016-12-22 16:03:48 +00002843void NewGVN::initializeCongruenceClasses(Function &F) {
Daniel Berlin1316a942017-04-06 18:52:50 +00002844 NextCongruenceNum = 0;
2845
2846 // Note that even though we use the live on entry def as a representative
2847 // MemoryAccess, it is *not* the same as the actual live on entry def. We
2848 // have no real equivalemnt to undef for MemoryAccesses, and so we really
2849 // should be checking whether the MemoryAccess is top if we want to know if it
2850 // is equivalent to everything. Otherwise, what this really signifies is that
2851 // the access "it reaches all the way back to the beginning of the function"
2852
Daniel Berlin5c338ff2017-03-10 19:05:04 +00002853 // Initialize all other instructions to be in TOP class.
Daniel Berlin5c338ff2017-03-10 19:05:04 +00002854 TOPClass = createCongruenceClass(nullptr, nullptr);
Daniel Berlina8236562017-04-07 18:38:09 +00002855 TOPClass->setMemoryLeader(MSSA->getLiveOnEntryDef());
Daniel Berlin1316a942017-04-06 18:52:50 +00002856 // The live on entry def gets put into it's own class
2857 MemoryAccessToClass[MSSA->getLiveOnEntryDef()] =
2858 createMemoryClass(MSSA->getLiveOnEntryDef());
Daniel Berlin589cecc2017-01-02 18:00:46 +00002859
Daniel Berlinec9deb72017-04-18 17:06:11 +00002860 for (auto DTN : nodes(DT)) {
2861 BasicBlock *BB = DTN->getBlock();
Daniel Berlin1316a942017-04-06 18:52:50 +00002862 // All MemoryAccesses are equivalent to live on entry to start. They must
2863 // be initialized to something so that initial changes are noticed. For
2864 // the maximal answer, we initialize them all to be the same as
2865 // liveOnEntry.
Daniel Berlinec9deb72017-04-18 17:06:11 +00002866 auto *MemoryBlockDefs = MSSA->getBlockDefs(BB);
Daniel Berlin1316a942017-04-06 18:52:50 +00002867 if (MemoryBlockDefs)
2868 for (const auto &Def : *MemoryBlockDefs) {
2869 MemoryAccessToClass[&Def] = TOPClass;
2870 auto *MD = dyn_cast<MemoryDef>(&Def);
2871 // Insert the memory phis into the member list.
2872 if (!MD) {
2873 const MemoryPhi *MP = cast<MemoryPhi>(&Def);
Daniel Berlina8236562017-04-07 18:38:09 +00002874 TOPClass->memory_insert(MP);
Daniel Berlin1316a942017-04-06 18:52:50 +00002875 MemoryPhiState.insert({MP, MPS_TOP});
2876 }
2877
2878 if (MD && isa<StoreInst>(MD->getMemoryInst()))
Daniel Berlina8236562017-04-07 18:38:09 +00002879 TOPClass->incStoreCount();
Daniel Berlin1316a942017-04-06 18:52:50 +00002880 }
Daniel Berlin9b926e92017-09-30 23:51:53 +00002881
2882 // FIXME: This is trying to discover which instructions are uses of phi
2883 // nodes. We should move this into one of the myriad of places that walk
2884 // all the operands already.
Daniel Berlinec9deb72017-04-18 17:06:11 +00002885 for (auto &I : *BB) {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002886 if (isa<PHINode>(&I))
2887 for (auto *U : I.users())
2888 if (auto *UInst = dyn_cast<Instruction>(U))
2889 if (InstrToDFSNum(UInst) != 0 && okayForPHIOfOps(UInst))
2890 PHINodeUses.insert(UInst);
Daniel Berlin22a4a012017-02-11 15:20:15 +00002891 // Don't insert void terminators into the class. We don't value number
Daniel Berlin5c338ff2017-03-10 19:05:04 +00002892 // them, and they just end up sitting in TOP.
Daniel Berlin22a4a012017-02-11 15:20:15 +00002893 if (isa<TerminatorInst>(I) && I.getType()->isVoidTy())
2894 continue;
Daniel Berlina8236562017-04-07 18:38:09 +00002895 TOPClass->insert(&I);
Daniel Berlin5c338ff2017-03-10 19:05:04 +00002896 ValueToClass[&I] = TOPClass;
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00002897 }
Daniel Berlin589cecc2017-01-02 18:00:46 +00002898 }
Davide Italiano7e274e02016-12-22 16:03:48 +00002899
2900 // Initialize arguments to be in their own unique congruence classes
2901 for (auto &FA : F.args())
2902 createSingletonCongruenceClass(&FA);
2903}
2904
2905void NewGVN::cleanupTables() {
2906 for (unsigned i = 0, e = CongruenceClasses.size(); i != e; ++i) {
Daniel Berlina8236562017-04-07 18:38:09 +00002907 DEBUG(dbgs() << "Congruence class " << CongruenceClasses[i]->getID()
2908 << " has " << CongruenceClasses[i]->size() << " members\n");
Davide Italiano7e274e02016-12-22 16:03:48 +00002909 // Make sure we delete the congruence class (probably worth switching to
2910 // a unique_ptr at some point.
2911 delete CongruenceClasses[i];
Davide Italiano0e714802016-12-28 14:00:11 +00002912 CongruenceClasses[i] = nullptr;
Davide Italiano7e274e02016-12-22 16:03:48 +00002913 }
2914
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002915 // Destroy the value expressions
2916 SmallVector<Instruction *, 8> TempInst(AllTempInstructions.begin(),
2917 AllTempInstructions.end());
2918 AllTempInstructions.clear();
2919
2920 // We have to drop all references for everything first, so there are no uses
2921 // left as we delete them.
2922 for (auto *I : TempInst) {
2923 I->dropAllReferences();
2924 }
2925
2926 while (!TempInst.empty()) {
2927 auto *I = TempInst.back();
2928 TempInst.pop_back();
2929 I->deleteValue();
2930 }
2931
Davide Italiano7e274e02016-12-22 16:03:48 +00002932 ValueToClass.clear();
2933 ArgRecycler.clear(ExpressionAllocator);
2934 ExpressionAllocator.Reset();
2935 CongruenceClasses.clear();
2936 ExpressionToClass.clear();
2937 ValueToExpression.clear();
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002938 RealToTemp.clear();
2939 AdditionalUsers.clear();
2940 ExpressionToPhiOfOps.clear();
2941 TempToBlock.clear();
2942 TempToMemory.clear();
Daniel Berlin94090dd2017-09-02 02:18:44 +00002943 PHINodeUses.clear();
2944 OpSafeForPHIOfOps.clear();
Davide Italiano7e274e02016-12-22 16:03:48 +00002945 ReachableBlocks.clear();
2946 ReachableEdges.clear();
2947#ifndef NDEBUG
2948 ProcessedCount.clear();
2949#endif
Davide Italiano7e274e02016-12-22 16:03:48 +00002950 InstrDFS.clear();
2951 InstructionsToErase.clear();
Davide Italiano7e274e02016-12-22 16:03:48 +00002952 DFSToInstr.clear();
2953 BlockInstRange.clear();
2954 TouchedInstructions.clear();
Daniel Berlin1ea5f322017-01-26 22:21:48 +00002955 MemoryAccessToClass.clear();
Daniel Berlinf7d95802017-02-18 23:06:50 +00002956 PredicateToUsers.clear();
Daniel Berlin1316a942017-04-06 18:52:50 +00002957 MemoryToUsers.clear();
Daniel Berlin9b926e92017-09-30 23:51:53 +00002958 RevisitOnReachabilityChange.clear();
Davide Italiano7e274e02016-12-22 16:03:48 +00002959}
2960
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002961// Assign local DFS number mapping to instructions, and leave space for Value
2962// PHI's.
Davide Italiano7e274e02016-12-22 16:03:48 +00002963std::pair<unsigned, unsigned> NewGVN::assignDFSNumbers(BasicBlock *B,
2964 unsigned Start) {
2965 unsigned End = Start;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002966 if (MemoryAccess *MemPhi = getMemoryAccess(B)) {
Daniel Berlind7c12ee2016-12-25 22:23:49 +00002967 InstrDFS[MemPhi] = End++;
Piotr Padlewski6c37d292016-12-28 23:24:02 +00002968 DFSToInstr.emplace_back(MemPhi);
Daniel Berlind7c12ee2016-12-25 22:23:49 +00002969 }
2970
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002971 // Then the real block goes next.
Davide Italiano7e274e02016-12-22 16:03:48 +00002972 for (auto &I : *B) {
Daniel Berlin856fa142017-03-06 18:42:27 +00002973 // There's no need to call isInstructionTriviallyDead more than once on
2974 // an instruction. Therefore, once we know that an instruction is dead
2975 // we change its DFS number so that it doesn't get value numbered.
2976 if (isInstructionTriviallyDead(&I, TLI)) {
2977 InstrDFS[&I] = 0;
2978 DEBUG(dbgs() << "Skipping trivially dead instruction " << I << "\n");
2979 markInstructionForDeletion(&I);
2980 continue;
2981 }
Daniel Berlin9b926e92017-09-30 23:51:53 +00002982 if (isa<PHINode>(&I))
2983 RevisitOnReachabilityChange[B].set(End);
Davide Italiano7e274e02016-12-22 16:03:48 +00002984 InstrDFS[&I] = End++;
Piotr Padlewski6c37d292016-12-28 23:24:02 +00002985 DFSToInstr.emplace_back(&I);
Davide Italiano7e274e02016-12-22 16:03:48 +00002986 }
2987
2988 // All of the range functions taken half-open ranges (open on the end side).
2989 // So we do not subtract one from count, because at this point it is one
2990 // greater than the last instruction.
2991 return std::make_pair(Start, End);
2992}
2993
Daniel Berlinb527b2c2017-05-19 19:01:27 +00002994void NewGVN::updateProcessedCount(const Value *V) {
Davide Italiano7e274e02016-12-22 16:03:48 +00002995#ifndef NDEBUG
2996 if (ProcessedCount.count(V) == 0) {
2997 ProcessedCount.insert({V, 1});
2998 } else {
Davide Italiano7cf29dc2017-01-14 20:13:18 +00002999 ++ProcessedCount[V];
Davide Italiano7e274e02016-12-22 16:03:48 +00003000 assert(ProcessedCount[V] < 100 &&
Davide Italiano75e39f92016-12-30 15:01:17 +00003001 "Seem to have processed the same Value a lot");
Davide Italiano7e274e02016-12-22 16:03:48 +00003002 }
3003#endif
3004}
Eugene Zelenko99241d72017-10-20 21:47:29 +00003005
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003006// Evaluate MemoryPhi nodes symbolically, just like PHI nodes
3007void NewGVN::valueNumberMemoryPhi(MemoryPhi *MP) {
3008 // If all the arguments are the same, the MemoryPhi has the same value as the
Daniel Berlind130b6c2017-05-21 23:41:58 +00003009 // argument. Filter out unreachable blocks and self phis from our operands.
3010 // TODO: We could do cycle-checking on the memory phis to allow valueizing for
3011 // self-phi checking.
Daniel Berlin41b39162017-03-18 15:41:36 +00003012 const BasicBlock *PHIBlock = MP->getBlock();
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003013 auto Filtered = make_filter_range(MP->operands(), [&](const Use &U) {
Daniel Berlind130b6c2017-05-21 23:41:58 +00003014 return cast<MemoryAccess>(U) != MP &&
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003015 !isMemoryAccessTOP(cast<MemoryAccess>(U)) &&
Daniel Berlin41b39162017-03-18 15:41:36 +00003016 ReachableEdges.count({MP->getIncomingBlock(U), PHIBlock});
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003017 });
Daniel Berlinc4796862017-01-27 02:37:11 +00003018 // If all that is left is nothing, our memoryphi is undef. We keep it as
3019 // InitialClass. Note: The only case this should happen is if we have at
3020 // least one self-argument.
3021 if (Filtered.begin() == Filtered.end()) {
Daniel Berlin1316a942017-04-06 18:52:50 +00003022 if (setMemoryClass(MP, TOPClass))
Daniel Berlinc4796862017-01-27 02:37:11 +00003023 markMemoryUsersTouched(MP);
3024 return;
3025 }
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003026
3027 // Transform the remaining operands into operand leaders.
3028 // FIXME: mapped_iterator should have a range version.
3029 auto LookupFunc = [&](const Use &U) {
Daniel Berlin1316a942017-04-06 18:52:50 +00003030 return lookupMemoryLeader(cast<MemoryAccess>(U));
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003031 };
3032 auto MappedBegin = map_iterator(Filtered.begin(), LookupFunc);
3033 auto MappedEnd = map_iterator(Filtered.end(), LookupFunc);
3034
3035 // and now check if all the elements are equal.
3036 // Sadly, we can't use std::equals since these are random access iterators.
Daniel Berlin1316a942017-04-06 18:52:50 +00003037 const auto *AllSameValue = *MappedBegin;
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003038 ++MappedBegin;
3039 bool AllEqual = std::all_of(
3040 MappedBegin, MappedEnd,
3041 [&AllSameValue](const MemoryAccess *V) { return V == AllSameValue; });
3042
3043 if (AllEqual)
3044 DEBUG(dbgs() << "Memory Phi value numbered to " << *AllSameValue << "\n");
3045 else
3046 DEBUG(dbgs() << "Memory Phi value numbered to itself\n");
Daniel Berlin1316a942017-04-06 18:52:50 +00003047 // If it's equal to something, it's in that class. Otherwise, it has to be in
3048 // a class where it is the leader (other things may be equivalent to it, but
3049 // it needs to start off in its own class, which means it must have been the
3050 // leader, and it can't have stopped being the leader because it was never
3051 // removed).
3052 CongruenceClass *CC =
3053 AllEqual ? getMemoryClass(AllSameValue) : ensureLeaderOfMemoryClass(MP);
3054 auto OldState = MemoryPhiState.lookup(MP);
3055 assert(OldState != MPS_Invalid && "Invalid memory phi state");
3056 auto NewState = AllEqual ? MPS_Equivalent : MPS_Unique;
3057 MemoryPhiState[MP] = NewState;
3058 if (setMemoryClass(MP, CC) || OldState != NewState)
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003059 markMemoryUsersTouched(MP);
3060}
3061
3062// Value number a single instruction, symbolically evaluating, performing
3063// congruence finding, and updating mappings.
3064void NewGVN::valueNumberInstruction(Instruction *I) {
3065 DEBUG(dbgs() << "Processing instruction " << *I << "\n");
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003066 if (!I->isTerminator()) {
Daniel Berlin283a6082017-03-01 19:59:26 +00003067 const Expression *Symbolized = nullptr;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003068 SmallPtrSet<Value *, 2> Visited;
Daniel Berlin283a6082017-03-01 19:59:26 +00003069 if (DebugCounter::shouldExecute(VNCounter)) {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003070 Symbolized = performSymbolicEvaluation(I, Visited);
3071 // Make a phi of ops if necessary
3072 if (Symbolized && !isa<ConstantExpression>(Symbolized) &&
3073 !isa<VariableExpression>(Symbolized) && PHINodeUses.count(I)) {
Daniel Berlin9b926e92017-09-30 23:51:53 +00003074 auto *PHIE = makePossiblePHIOfOps(I, Visited);
Davide Italiano5974c312017-08-03 21:17:49 +00003075 // If we created a phi of ops, use it.
3076 // If we couldn't create one, make sure we don't leave one lying around
3077 if (PHIE) {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003078 Symbolized = PHIE;
Davide Italiano5974c312017-08-03 21:17:49 +00003079 } else if (auto *Op = RealToTemp.lookup(I)) {
3080 removePhiOfOps(I, Op);
3081 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003082 }
Daniel Berlin283a6082017-03-01 19:59:26 +00003083 } else {
Daniel Berlin343576a2017-03-06 18:42:39 +00003084 // Mark the instruction as unused so we don't value number it again.
3085 InstrDFS[I] = 0;
Daniel Berlin283a6082017-03-01 19:59:26 +00003086 }
Daniel Berlin02c6b172017-01-02 18:00:53 +00003087 // If we couldn't come up with a symbolic expression, use the unknown
3088 // expression
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003089 if (Symbolized == nullptr)
Daniel Berlin02c6b172017-01-02 18:00:53 +00003090 Symbolized = createUnknownExpression(I);
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003091 performCongruenceFinding(I, Symbolized);
3092 } else {
Daniel Berlin02c6b172017-01-02 18:00:53 +00003093 // Handle terminators that return values. All of them produce values we
Daniel Berlinb79f5362017-02-11 12:48:50 +00003094 // don't currently understand. We don't place non-value producing
3095 // terminators in a class.
Daniel Berlin25f05b02017-01-02 18:22:38 +00003096 if (!I->getType()->isVoidTy()) {
Daniel Berlin02c6b172017-01-02 18:00:53 +00003097 auto *Symbolized = createUnknownExpression(I);
3098 performCongruenceFinding(I, Symbolized);
3099 }
Daniel Berlind7c12ee2016-12-25 22:23:49 +00003100 processOutgoingEdges(dyn_cast<TerminatorInst>(I), I->getParent());
3101 }
3102}
Davide Italiano7e274e02016-12-22 16:03:48 +00003103
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003104// Check if there is a path, using single or equal argument phi nodes, from
3105// First to Second.
Davide Italianoeab0de22017-05-18 23:22:44 +00003106bool NewGVN::singleReachablePHIPath(
3107 SmallPtrSet<const MemoryAccess *, 8> &Visited, const MemoryAccess *First,
3108 const MemoryAccess *Second) const {
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003109 if (First == Second)
3110 return true;
Daniel Berlin871ecd92017-04-01 09:44:24 +00003111 if (MSSA->isLiveOnEntryDef(First))
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003112 return false;
Daniel Berlin1316a942017-04-06 18:52:50 +00003113
Davide Italianoeab0de22017-05-18 23:22:44 +00003114 // This is not perfect, but as we're just verifying here, we can live with
3115 // the loss of precision. The real solution would be that of doing strongly
3116 // connected component finding in this routine, and it's probably not worth
3117 // the complexity for the time being. So, we just keep a set of visited
3118 // MemoryAccess and return true when we hit a cycle.
3119 if (Visited.count(First))
3120 return true;
3121 Visited.insert(First);
3122
Daniel Berlin871ecd92017-04-01 09:44:24 +00003123 const auto *EndDef = First;
Daniel Berlin3082b8e2017-04-05 17:26:25 +00003124 for (auto *ChainDef : optimized_def_chain(First)) {
Daniel Berlin871ecd92017-04-01 09:44:24 +00003125 if (ChainDef == Second)
3126 return true;
3127 if (MSSA->isLiveOnEntryDef(ChainDef))
3128 return false;
3129 EndDef = ChainDef;
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003130 }
Daniel Berlin871ecd92017-04-01 09:44:24 +00003131 auto *MP = cast<MemoryPhi>(EndDef);
3132 auto ReachableOperandPred = [&](const Use &U) {
3133 return ReachableEdges.count({MP->getIncomingBlock(U), MP->getBlock()});
3134 };
3135 auto FilteredPhiArgs =
3136 make_filter_range(MP->operands(), ReachableOperandPred);
3137 SmallVector<const Value *, 32> OperandList;
3138 std::copy(FilteredPhiArgs.begin(), FilteredPhiArgs.end(),
3139 std::back_inserter(OperandList));
3140 bool Okay = OperandList.size() == 1;
3141 if (!Okay)
3142 Okay =
3143 std::equal(OperandList.begin(), OperandList.end(), OperandList.begin());
3144 if (Okay)
Davide Italianoeab0de22017-05-18 23:22:44 +00003145 return singleReachablePHIPath(Visited, cast<MemoryAccess>(OperandList[0]),
3146 Second);
Daniel Berlin871ecd92017-04-01 09:44:24 +00003147 return false;
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003148}
3149
Daniel Berlin589cecc2017-01-02 18:00:46 +00003150// Verify the that the memory equivalence table makes sense relative to the
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003151// congruence classes. Note that this checking is not perfect, and is currently
Davide Italianoed67f192017-01-14 20:15:04 +00003152// subject to very rare false negatives. It is only useful for
3153// testing/debugging.
Daniel Berlinf6eba4b2017-01-11 20:22:36 +00003154void NewGVN::verifyMemoryCongruency() const {
Davide Italianoe9781e72017-03-25 02:40:02 +00003155#ifndef NDEBUG
Daniel Berlin1316a942017-04-06 18:52:50 +00003156 // Verify that the memory table equivalence and memory member set match
3157 for (const auto *CC : CongruenceClasses) {
3158 if (CC == TOPClass || CC->isDead())
3159 continue;
Daniel Berlina8236562017-04-07 18:38:09 +00003160 if (CC->getStoreCount() != 0) {
Davide Italianof58a30232017-04-10 23:08:35 +00003161 assert((CC->getStoredValue() || !isa<StoreInst>(CC->getLeader())) &&
Davide Italiano94bf7842017-05-04 17:26:15 +00003162 "Any class with a store as a leader should have a "
3163 "representative stored value");
Daniel Berlina8236562017-04-07 18:38:09 +00003164 assert(CC->getMemoryLeader() &&
Davide Italiano94bf7842017-05-04 17:26:15 +00003165 "Any congruence class with a store should have a "
3166 "representative access");
Daniel Berlin1316a942017-04-06 18:52:50 +00003167 }
3168
Daniel Berlina8236562017-04-07 18:38:09 +00003169 if (CC->getMemoryLeader())
3170 assert(MemoryAccessToClass.lookup(CC->getMemoryLeader()) == CC &&
Daniel Berlin1316a942017-04-06 18:52:50 +00003171 "Representative MemoryAccess does not appear to be reverse "
3172 "mapped properly");
Daniel Berlina8236562017-04-07 18:38:09 +00003173 for (auto M : CC->memory())
Daniel Berlin1316a942017-04-06 18:52:50 +00003174 assert(MemoryAccessToClass.lookup(M) == CC &&
3175 "Memory member does not appear to be reverse mapped properly");
3176 }
3177
3178 // Anything equivalent in the MemoryAccess table should be in the same
Daniel Berlin589cecc2017-01-02 18:00:46 +00003179 // congruence class.
3180
3181 // Filter out the unreachable and trivially dead entries, because they may
3182 // never have been updated if the instructions were not processed.
3183 auto ReachableAccessPred =
Daniel Berlin1ea5f322017-01-26 22:21:48 +00003184 [&](const std::pair<const MemoryAccess *, CongruenceClass *> Pair) {
Daniel Berlin589cecc2017-01-02 18:00:46 +00003185 bool Result = ReachableBlocks.count(Pair.first->getBlock());
Daniel Berlin9d0042b2017-04-18 20:15:47 +00003186 if (!Result || MSSA->isLiveOnEntryDef(Pair.first) ||
3187 MemoryToDFSNum(Pair.first) == 0)
Daniel Berlin589cecc2017-01-02 18:00:46 +00003188 return false;
3189 if (auto *MemDef = dyn_cast<MemoryDef>(Pair.first))
3190 return !isInstructionTriviallyDead(MemDef->getMemoryInst());
Davide Italiano6e7a2122017-05-15 18:50:53 +00003191
3192 // We could have phi nodes which operands are all trivially dead,
3193 // so we don't process them.
3194 if (auto *MemPHI = dyn_cast<MemoryPhi>(Pair.first)) {
3195 for (auto &U : MemPHI->incoming_values()) {
Daniel Berlinc1305af2017-09-30 23:51:54 +00003196 if (auto *I = dyn_cast<Instruction>(&*U)) {
Davide Italiano6e7a2122017-05-15 18:50:53 +00003197 if (!isInstructionTriviallyDead(I))
3198 return true;
3199 }
3200 }
3201 return false;
3202 }
3203
Daniel Berlin589cecc2017-01-02 18:00:46 +00003204 return true;
3205 };
3206
Daniel Berlin1ea5f322017-01-26 22:21:48 +00003207 auto Filtered = make_filter_range(MemoryAccessToClass, ReachableAccessPred);
Daniel Berlin589cecc2017-01-02 18:00:46 +00003208 for (auto KV : Filtered) {
Daniel Berlin589cecc2017-01-02 18:00:46 +00003209 if (auto *FirstMUD = dyn_cast<MemoryUseOrDef>(KV.first)) {
Daniel Berlina8236562017-04-07 18:38:09 +00003210 auto *SecondMUD = dyn_cast<MemoryUseOrDef>(KV.second->getMemoryLeader());
Davide Italianoeab0de22017-05-18 23:22:44 +00003211 if (FirstMUD && SecondMUD) {
3212 SmallPtrSet<const MemoryAccess *, 8> VisitedMAS;
3213 assert((singleReachablePHIPath(VisitedMAS, FirstMUD, SecondMUD) ||
Davide Italianoed67f192017-01-14 20:15:04 +00003214 ValueToClass.lookup(FirstMUD->getMemoryInst()) ==
3215 ValueToClass.lookup(SecondMUD->getMemoryInst())) &&
3216 "The instructions for these memory operations should have "
3217 "been in the same congruence class or reachable through"
3218 "a single argument phi");
Davide Italianoeab0de22017-05-18 23:22:44 +00003219 }
Daniel Berlin589cecc2017-01-02 18:00:46 +00003220 } else if (auto *FirstMP = dyn_cast<MemoryPhi>(KV.first)) {
Daniel Berlin589cecc2017-01-02 18:00:46 +00003221 // We can only sanely verify that MemoryDefs in the operand list all have
3222 // the same class.
3223 auto ReachableOperandPred = [&](const Use &U) {
Daniel Berlin41b39162017-03-18 15:41:36 +00003224 return ReachableEdges.count(
3225 {FirstMP->getIncomingBlock(U), FirstMP->getBlock()}) &&
Daniel Berlin589cecc2017-01-02 18:00:46 +00003226 isa<MemoryDef>(U);
3227
3228 };
3229 // All arguments should in the same class, ignoring unreachable arguments
3230 auto FilteredPhiArgs =
3231 make_filter_range(FirstMP->operands(), ReachableOperandPred);
3232 SmallVector<const CongruenceClass *, 16> PhiOpClasses;
3233 std::transform(FilteredPhiArgs.begin(), FilteredPhiArgs.end(),
3234 std::back_inserter(PhiOpClasses), [&](const Use &U) {
3235 const MemoryDef *MD = cast<MemoryDef>(U);
3236 return ValueToClass.lookup(MD->getMemoryInst());
3237 });
3238 assert(std::equal(PhiOpClasses.begin(), PhiOpClasses.end(),
3239 PhiOpClasses.begin()) &&
3240 "All MemoryPhi arguments should be in the same class");
3241 }
3242 }
Davide Italianoe9781e72017-03-25 02:40:02 +00003243#endif
Daniel Berlin589cecc2017-01-02 18:00:46 +00003244}
3245
Daniel Berlin06329a92017-03-18 15:41:40 +00003246// Verify that the sparse propagation we did actually found the maximal fixpoint
3247// We do this by storing the value to class mapping, touching all instructions,
3248// and redoing the iteration to see if anything changed.
3249void NewGVN::verifyIterationSettled(Function &F) {
Daniel Berlinf7d95802017-02-18 23:06:50 +00003250#ifndef NDEBUG
Daniel Berlin1316a942017-04-06 18:52:50 +00003251 DEBUG(dbgs() << "Beginning iteration verification\n");
Daniel Berlin06329a92017-03-18 15:41:40 +00003252 if (DebugCounter::isCounterSet(VNCounter))
3253 DebugCounter::setCounterValue(VNCounter, StartingVNCounter);
3254
3255 // Note that we have to store the actual classes, as we may change existing
3256 // classes during iteration. This is because our memory iteration propagation
3257 // is not perfect, and so may waste a little work. But it should generate
3258 // exactly the same congruence classes we have now, with different IDs.
3259 std::map<const Value *, CongruenceClass> BeforeIteration;
3260
3261 for (auto &KV : ValueToClass) {
3262 if (auto *I = dyn_cast<Instruction>(KV.first))
3263 // Skip unused/dead instructions.
Daniel Berlin21279bd2017-04-06 18:52:58 +00003264 if (InstrToDFSNum(I) == 0)
Daniel Berlinf7d95802017-02-18 23:06:50 +00003265 continue;
Daniel Berlin06329a92017-03-18 15:41:40 +00003266 BeforeIteration.insert({KV.first, *KV.second});
3267 }
3268
3269 TouchedInstructions.set();
3270 TouchedInstructions.reset(0);
3271 iterateTouchedInstructions();
3272 DenseSet<std::pair<const CongruenceClass *, const CongruenceClass *>>
3273 EqualClasses;
3274 for (const auto &KV : ValueToClass) {
3275 if (auto *I = dyn_cast<Instruction>(KV.first))
3276 // Skip unused/dead instructions.
Daniel Berlin21279bd2017-04-06 18:52:58 +00003277 if (InstrToDFSNum(I) == 0)
Daniel Berlin06329a92017-03-18 15:41:40 +00003278 continue;
3279 // We could sink these uses, but i think this adds a bit of clarity here as
3280 // to what we are comparing.
3281 auto *BeforeCC = &BeforeIteration.find(KV.first)->second;
3282 auto *AfterCC = KV.second;
3283 // Note that the classes can't change at this point, so we memoize the set
3284 // that are equal.
3285 if (!EqualClasses.count({BeforeCC, AfterCC})) {
Daniel Berlina8236562017-04-07 18:38:09 +00003286 assert(BeforeCC->isEquivalentTo(AfterCC) &&
Daniel Berlin06329a92017-03-18 15:41:40 +00003287 "Value number changed after main loop completed!");
3288 EqualClasses.insert({BeforeCC, AfterCC});
Daniel Berlinf7d95802017-02-18 23:06:50 +00003289 }
3290 }
3291#endif
3292}
3293
Daniel Berlin45403572017-05-16 19:58:47 +00003294// Verify that for each store expression in the expression to class mapping,
3295// only the latest appears, and multiple ones do not appear.
3296// Because loads do not use the stored value when doing equality with stores,
3297// if we don't erase the old store expressions from the table, a load can find
3298// a no-longer valid StoreExpression.
3299void NewGVN::verifyStoreExpressions() const {
Daniel Berlin6c66e9a2017-05-16 20:02:45 +00003300#ifndef NDEBUG
Daniel Berlin36b08b22017-06-19 00:24:00 +00003301 // This is the only use of this, and it's not worth defining a complicated
3302 // densemapinfo hash/equality function for it.
3303 std::set<
3304 std::pair<const Value *,
3305 std::tuple<const Value *, const CongruenceClass *, Value *>>>
3306 StoreExpressionSet;
Daniel Berlin45403572017-05-16 19:58:47 +00003307 for (const auto &KV : ExpressionToClass) {
3308 if (auto *SE = dyn_cast<StoreExpression>(KV.first)) {
3309 // Make sure a version that will conflict with loads is not already there
Daniel Berlin36b08b22017-06-19 00:24:00 +00003310 auto Res = StoreExpressionSet.insert(
3311 {SE->getOperand(0), std::make_tuple(SE->getMemoryLeader(), KV.second,
3312 SE->getStoredValue())});
3313 bool Okay = Res.second;
3314 // It's okay to have the same expression already in there if it is
3315 // identical in nature.
3316 // This can happen when the leader of the stored value changes over time.
Davide Italiano0ec715b2017-06-20 22:57:40 +00003317 if (!Okay)
3318 Okay = (std::get<1>(Res.first->second) == KV.second) &&
3319 (lookupOperandLeader(std::get<2>(Res.first->second)) ==
3320 lookupOperandLeader(SE->getStoredValue()));
Daniel Berlin36b08b22017-06-19 00:24:00 +00003321 assert(Okay && "Stored expression conflict exists in expression table");
Daniel Berlin45403572017-05-16 19:58:47 +00003322 auto *ValueExpr = ValueToExpression.lookup(SE->getStoreInst());
3323 assert(ValueExpr && ValueExpr->equals(*SE) &&
3324 "StoreExpression in ExpressionToClass is not latest "
3325 "StoreExpression for value");
3326 }
3327 }
Daniel Berlin6c66e9a2017-05-16 20:02:45 +00003328#endif
Daniel Berlin45403572017-05-16 19:58:47 +00003329}
3330
Daniel Berlin06329a92017-03-18 15:41:40 +00003331// This is the main value numbering loop, it iterates over the initial touched
3332// instruction set, propagating value numbers, marking things touched, etc,
3333// until the set of touched instructions is completely empty.
3334void NewGVN::iterateTouchedInstructions() {
3335 unsigned int Iterations = 0;
3336 // Figure out where touchedinstructions starts
3337 int FirstInstr = TouchedInstructions.find_first();
3338 // Nothing set, nothing to iterate, just return.
3339 if (FirstInstr == -1)
3340 return;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003341 const BasicBlock *LastBlock = getBlockForValue(InstrFromDFSNum(FirstInstr));
Daniel Berlin06329a92017-03-18 15:41:40 +00003342 while (TouchedInstructions.any()) {
3343 ++Iterations;
3344 // Walk through all the instructions in all the blocks in RPO.
3345 // TODO: As we hit a new block, we should push and pop equalities into a
3346 // table lookupOperandLeader can use, to catch things PredicateInfo
3347 // might miss, like edge-only equivalences.
Francis Visoiu Mistrihb52e0362017-05-17 01:07:53 +00003348 for (unsigned InstrNum : TouchedInstructions.set_bits()) {
Daniel Berlin06329a92017-03-18 15:41:40 +00003349
3350 // This instruction was found to be dead. We don't bother looking
3351 // at it again.
3352 if (InstrNum == 0) {
3353 TouchedInstructions.reset(InstrNum);
3354 continue;
3355 }
3356
Daniel Berlin21279bd2017-04-06 18:52:58 +00003357 Value *V = InstrFromDFSNum(InstrNum);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003358 const BasicBlock *CurrBlock = getBlockForValue(V);
Daniel Berlin06329a92017-03-18 15:41:40 +00003359
3360 // If we hit a new block, do reachability processing.
3361 if (CurrBlock != LastBlock) {
3362 LastBlock = CurrBlock;
3363 bool BlockReachable = ReachableBlocks.count(CurrBlock);
3364 const auto &CurrInstRange = BlockInstRange.lookup(CurrBlock);
3365
3366 // If it's not reachable, erase any touched instructions and move on.
3367 if (!BlockReachable) {
3368 TouchedInstructions.reset(CurrInstRange.first, CurrInstRange.second);
3369 DEBUG(dbgs() << "Skipping instructions in block "
3370 << getBlockName(CurrBlock)
3371 << " because it is unreachable\n");
3372 continue;
3373 }
3374 updateProcessedCount(CurrBlock);
3375 }
Daniel Berlineafdd862017-06-06 17:15:28 +00003376 // Reset after processing (because we may mark ourselves as touched when
3377 // we propagate equalities).
3378 TouchedInstructions.reset(InstrNum);
Daniel Berlin06329a92017-03-18 15:41:40 +00003379
3380 if (auto *MP = dyn_cast<MemoryPhi>(V)) {
3381 DEBUG(dbgs() << "Processing MemoryPhi " << *MP << "\n");
3382 valueNumberMemoryPhi(MP);
3383 } else if (auto *I = dyn_cast<Instruction>(V)) {
3384 valueNumberInstruction(I);
3385 } else {
3386 llvm_unreachable("Should have been a MemoryPhi or Instruction");
3387 }
3388 updateProcessedCount(V);
Daniel Berlin06329a92017-03-18 15:41:40 +00003389 }
3390 }
3391 NumGVNMaxIterations = std::max(NumGVNMaxIterations.getValue(), Iterations);
3392}
3393
Daniel Berlin85f91b02016-12-26 20:06:58 +00003394// This is the main transformation entry point.
Daniel Berlin64e68992017-03-12 04:46:45 +00003395bool NewGVN::runGVN() {
Daniel Berlin06329a92017-03-18 15:41:40 +00003396 if (DebugCounter::isCounterSet(VNCounter))
3397 StartingVNCounter = DebugCounter::getCounterValue(VNCounter);
Davide Italiano7e274e02016-12-22 16:03:48 +00003398 bool Changed = false;
Daniel Berlin1529bb92017-02-11 15:13:49 +00003399 NumFuncArgs = F.arg_size();
Davide Italiano7e274e02016-12-22 16:03:48 +00003400 MSSAWalker = MSSA->getWalker();
Daniel Berline021d2d2017-05-19 20:22:20 +00003401 SingletonDeadExpression = new (ExpressionAllocator) DeadExpression();
Davide Italiano7e274e02016-12-22 16:03:48 +00003402
3403 // Count number of instructions for sizing of hash tables, and come
3404 // up with a global dfs numbering for instructions.
Daniel Berline0bd37e2016-12-29 22:15:12 +00003405 unsigned ICount = 1;
3406 // Add an empty instruction to account for the fact that we start at 1
3407 DFSToInstr.emplace_back(nullptr);
Daniel Berlinf7d95802017-02-18 23:06:50 +00003408 // Note: We want ideal RPO traversal of the blocks, which is not quite the
3409 // same as dominator tree order, particularly with regard whether backedges
3410 // get visited first or second, given a block with multiple successors.
Davide Italiano7e274e02016-12-22 16:03:48 +00003411 // If we visit in the wrong order, we will end up performing N times as many
3412 // iterations.
Daniel Berlin6658cc92016-12-29 01:12:36 +00003413 // The dominator tree does guarantee that, for a given dom tree node, it's
3414 // parent must occur before it in the RPO ordering. Thus, we only need to sort
3415 // the siblings.
Davide Italiano7e274e02016-12-22 16:03:48 +00003416 ReversePostOrderTraversal<Function *> RPOT(&F);
Daniel Berlin6658cc92016-12-29 01:12:36 +00003417 unsigned Counter = 0;
Davide Italiano7e274e02016-12-22 16:03:48 +00003418 for (auto &B : RPOT) {
Daniel Berlin6658cc92016-12-29 01:12:36 +00003419 auto *Node = DT->getNode(B);
3420 assert(Node && "RPO and Dominator tree should have same reachability");
3421 RPOOrdering[Node] = ++Counter;
3422 }
3423 // Sort dominator tree children arrays into RPO.
3424 for (auto &B : RPOT) {
3425 auto *Node = DT->getNode(B);
3426 if (Node->getChildren().size() > 1)
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00003427 llvm::sort(Node->begin(), Node->end(),
3428 [&](const DomTreeNode *A, const DomTreeNode *B) {
3429 return RPOOrdering[A] < RPOOrdering[B];
3430 });
Daniel Berlin6658cc92016-12-29 01:12:36 +00003431 }
3432
3433 // Now a standard depth first ordering of the domtree is equivalent to RPO.
Daniel Berlinec9deb72017-04-18 17:06:11 +00003434 for (auto DTN : depth_first(DT->getRootNode())) {
3435 BasicBlock *B = DTN->getBlock();
Davide Italiano7e274e02016-12-22 16:03:48 +00003436 const auto &BlockRange = assignDFSNumbers(B, ICount);
3437 BlockInstRange.insert({B, BlockRange});
3438 ICount += BlockRange.second - BlockRange.first;
3439 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003440 initializeCongruenceClasses(F);
Davide Italiano7e274e02016-12-22 16:03:48 +00003441
Daniel Berline0bd37e2016-12-29 22:15:12 +00003442 TouchedInstructions.resize(ICount);
Davide Italiano7e274e02016-12-22 16:03:48 +00003443 // Ensure we don't end up resizing the expressionToClass map, as
3444 // that can be quite expensive. At most, we have one expression per
3445 // instruction.
Daniel Berline0bd37e2016-12-29 22:15:12 +00003446 ExpressionToClass.reserve(ICount);
Davide Italiano7e274e02016-12-22 16:03:48 +00003447
3448 // Initialize the touched instructions to include the entry block.
3449 const auto &InstRange = BlockInstRange.lookup(&F.getEntryBlock());
3450 TouchedInstructions.set(InstRange.first, InstRange.second);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003451 DEBUG(dbgs() << "Block " << getBlockName(&F.getEntryBlock())
3452 << " marked reachable\n");
Davide Italiano7e274e02016-12-22 16:03:48 +00003453 ReachableBlocks.insert(&F.getEntryBlock());
3454
Daniel Berlin06329a92017-03-18 15:41:40 +00003455 iterateTouchedInstructions();
Daniel Berlin589cecc2017-01-02 18:00:46 +00003456 verifyMemoryCongruency();
Daniel Berlin06329a92017-03-18 15:41:40 +00003457 verifyIterationSettled(F);
Daniel Berlin45403572017-05-16 19:58:47 +00003458 verifyStoreExpressions();
Daniel Berlinf7d95802017-02-18 23:06:50 +00003459
Davide Italiano7e274e02016-12-22 16:03:48 +00003460 Changed |= eliminateInstructions(F);
3461
3462 // Delete all instructions marked for deletion.
3463 for (Instruction *ToErase : InstructionsToErase) {
3464 if (!ToErase->use_empty())
3465 ToErase->replaceAllUsesWith(UndefValue::get(ToErase->getType()));
3466
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003467 if (ToErase->getParent())
3468 ToErase->eraseFromParent();
Davide Italiano7e274e02016-12-22 16:03:48 +00003469 }
3470
3471 // Delete all unreachable blocks.
Daniel Berlin85f91b02016-12-26 20:06:58 +00003472 auto UnreachableBlockPred = [&](const BasicBlock &BB) {
3473 return !ReachableBlocks.count(&BB);
3474 };
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003475
3476 for (auto &BB : make_filter_range(F, UnreachableBlockPred)) {
3477 DEBUG(dbgs() << "We believe block " << getBlockName(&BB)
Daniel Berlin85f91b02016-12-26 20:06:58 +00003478 << " is unreachable\n");
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003479 deleteInstructionsInBlock(&BB);
3480 Changed = true;
Davide Italiano7e274e02016-12-22 16:03:48 +00003481 }
3482
3483 cleanupTables();
3484 return Changed;
3485}
3486
Davide Italiano7e274e02016-12-22 16:03:48 +00003487struct NewGVN::ValueDFS {
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00003488 int DFSIn = 0;
3489 int DFSOut = 0;
3490 int LocalNum = 0;
Eugene Zelenko99241d72017-10-20 21:47:29 +00003491
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003492 // Only one of Def and U will be set.
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003493 // The bool in the Def tells us whether the Def is the stored value of a
3494 // store.
3495 PointerIntPair<Value *, 1, bool> Def;
Piotr Padlewskifc5727b2016-12-28 19:17:17 +00003496 Use *U = nullptr;
Eugene Zelenko99241d72017-10-20 21:47:29 +00003497
Davide Italiano7e274e02016-12-22 16:03:48 +00003498 bool operator<(const ValueDFS &Other) const {
3499 // It's not enough that any given field be less than - we have sets
3500 // of fields that need to be evaluated together to give a proper ordering.
3501 // For example, if you have;
3502 // DFS (1, 3)
3503 // Val 0
3504 // DFS (1, 2)
3505 // Val 50
3506 // We want the second to be less than the first, but if we just go field
3507 // by field, we will get to Val 0 < Val 50 and say the first is less than
3508 // the second. We only want it to be less than if the DFS orders are equal.
3509 //
3510 // Each LLVM instruction only produces one value, and thus the lowest-level
3511 // differentiator that really matters for the stack (and what we use as as a
3512 // replacement) is the local dfs number.
Daniel Berlin85f91b02016-12-26 20:06:58 +00003513 // Everything else in the structure is instruction level, and only affects
3514 // the order in which we will replace operands of a given instruction.
Davide Italiano7e274e02016-12-22 16:03:48 +00003515 //
3516 // For a given instruction (IE things with equal dfsin, dfsout, localnum),
3517 // the order of replacement of uses does not matter.
3518 // IE given,
3519 // a = 5
3520 // b = a + a
Daniel Berlin85f91b02016-12-26 20:06:58 +00003521 // When you hit b, you will have two valuedfs with the same dfsin, out, and
3522 // localnum.
Davide Italiano7e274e02016-12-22 16:03:48 +00003523 // The .val will be the same as well.
3524 // The .u's will be different.
Daniel Berlin85f91b02016-12-26 20:06:58 +00003525 // You will replace both, and it does not matter what order you replace them
3526 // in (IE whether you replace operand 2, then operand 1, or operand 1, then
3527 // operand 2).
3528 // Similarly for the case of same dfsin, dfsout, localnum, but different
3529 // .val's
Davide Italiano7e274e02016-12-22 16:03:48 +00003530 // a = 5
3531 // b = 6
3532 // c = a + b
Daniel Berlin85f91b02016-12-26 20:06:58 +00003533 // in c, we will a valuedfs for a, and one for b,with everything the same
3534 // but .val and .u.
Davide Italiano7e274e02016-12-22 16:03:48 +00003535 // It does not matter what order we replace these operands in.
3536 // You will always end up with the same IR, and this is guaranteed.
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003537 return std::tie(DFSIn, DFSOut, LocalNum, Def, U) <
3538 std::tie(Other.DFSIn, Other.DFSOut, Other.LocalNum, Other.Def,
Davide Italiano7e274e02016-12-22 16:03:48 +00003539 Other.U);
3540 }
3541};
3542
Daniel Berlinc4796862017-01-27 02:37:11 +00003543// This function converts the set of members for a congruence class from values,
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003544// to sets of defs and uses with associated DFS info. The total number of
Daniel Berline3e69e12017-03-10 00:32:33 +00003545// reachable uses for each value is stored in UseCount, and instructions that
3546// seem
3547// dead (have no non-dead uses) are stored in ProbablyDead.
3548void NewGVN::convertClassToDFSOrdered(
Daniel Berlina8236562017-04-07 18:38:09 +00003549 const CongruenceClass &Dense, SmallVectorImpl<ValueDFS> &DFSOrderedSet,
Daniel Berline3e69e12017-03-10 00:32:33 +00003550 DenseMap<const Value *, unsigned int> &UseCounts,
Daniel Berlina8236562017-04-07 18:38:09 +00003551 SmallPtrSetImpl<Instruction *> &ProbablyDead) const {
Davide Italiano7e274e02016-12-22 16:03:48 +00003552 for (auto D : Dense) {
3553 // First add the value.
3554 BasicBlock *BB = getBlockForValue(D);
3555 // Constants are handled prior to ever calling this function, so
3556 // we should only be left with instructions as members.
Chandler Carruthee086762016-12-23 01:38:06 +00003557 assert(BB && "Should have figured out a basic block for value");
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003558 ValueDFS VDDef;
Daniel Berlinb66164c2017-01-14 00:24:23 +00003559 DomTreeNode *DomNode = DT->getNode(BB);
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003560 VDDef.DFSIn = DomNode->getDFSNumIn();
3561 VDDef.DFSOut = DomNode->getDFSNumOut();
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003562 // If it's a store, use the leader of the value operand, if it's always
3563 // available, or the value operand. TODO: We could do dominance checks to
3564 // find a dominating leader, but not worth it ATM.
Daniel Berlin26addef2017-01-20 21:04:30 +00003565 if (auto *SI = dyn_cast<StoreInst>(D)) {
Daniel Berlin808e3ff2017-01-31 22:31:56 +00003566 auto Leader = lookupOperandLeader(SI->getValueOperand());
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003567 if (alwaysAvailable(Leader)) {
3568 VDDef.Def.setPointer(Leader);
3569 } else {
3570 VDDef.Def.setPointer(SI->getValueOperand());
3571 VDDef.Def.setInt(true);
3572 }
Daniel Berlin26addef2017-01-20 21:04:30 +00003573 } else {
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003574 VDDef.Def.setPointer(D);
Daniel Berlin26addef2017-01-20 21:04:30 +00003575 }
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003576 assert(isa<Instruction>(D) &&
3577 "The dense set member should always be an instruction");
Daniel Berline3e69e12017-03-10 00:32:33 +00003578 Instruction *Def = cast<Instruction>(D);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003579 VDDef.LocalNum = InstrToDFSNum(D);
3580 DFSOrderedSet.push_back(VDDef);
3581 // If there is a phi node equivalent, add it
3582 if (auto *PN = RealToTemp.lookup(Def)) {
3583 auto *PHIE =
3584 dyn_cast_or_null<PHIExpression>(ValueToExpression.lookup(Def));
3585 if (PHIE) {
3586 VDDef.Def.setInt(false);
3587 VDDef.Def.setPointer(PN);
3588 VDDef.LocalNum = 0;
3589 DFSOrderedSet.push_back(VDDef);
3590 }
3591 }
3592
Daniel Berline3e69e12017-03-10 00:32:33 +00003593 unsigned int UseCount = 0;
Daniel Berlinb66164c2017-01-14 00:24:23 +00003594 // Now add the uses.
Daniel Berline3e69e12017-03-10 00:32:33 +00003595 for (auto &U : Def->uses()) {
Davide Italiano7e274e02016-12-22 16:03:48 +00003596 if (auto *I = dyn_cast<Instruction>(U.getUser())) {
Daniel Berline3e69e12017-03-10 00:32:33 +00003597 // Don't try to replace into dead uses
3598 if (InstructionsToErase.count(I))
3599 continue;
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003600 ValueDFS VDUse;
Davide Italiano7e274e02016-12-22 16:03:48 +00003601 // Put the phi node uses in the incoming block.
3602 BasicBlock *IBlock;
3603 if (auto *P = dyn_cast<PHINode>(I)) {
3604 IBlock = P->getIncomingBlock(U);
3605 // Make phi node users appear last in the incoming block
3606 // they are from.
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003607 VDUse.LocalNum = InstrDFS.size() + 1;
Davide Italiano7e274e02016-12-22 16:03:48 +00003608 } else {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003609 IBlock = getBlockForValue(I);
Daniel Berlin21279bd2017-04-06 18:52:58 +00003610 VDUse.LocalNum = InstrToDFSNum(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00003611 }
Davide Italianoccbbc832017-01-26 00:42:42 +00003612
3613 // Skip uses in unreachable blocks, as we're going
3614 // to delete them.
3615 if (ReachableBlocks.count(IBlock) == 0)
3616 continue;
3617
Daniel Berlinb66164c2017-01-14 00:24:23 +00003618 DomTreeNode *DomNode = DT->getNode(IBlock);
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003619 VDUse.DFSIn = DomNode->getDFSNumIn();
3620 VDUse.DFSOut = DomNode->getDFSNumOut();
3621 VDUse.U = &U;
Daniel Berline3e69e12017-03-10 00:32:33 +00003622 ++UseCount;
Daniel Berlinc0e008d2017-03-10 00:32:26 +00003623 DFSOrderedSet.emplace_back(VDUse);
Davide Italiano7e274e02016-12-22 16:03:48 +00003624 }
3625 }
Daniel Berline3e69e12017-03-10 00:32:33 +00003626
3627 // If there are no uses, it's probably dead (but it may have side-effects,
3628 // so not definitely dead. Otherwise, store the number of uses so we can
3629 // track if it becomes dead later).
3630 if (UseCount == 0)
3631 ProbablyDead.insert(Def);
3632 else
3633 UseCounts[Def] = UseCount;
Davide Italiano7e274e02016-12-22 16:03:48 +00003634 }
3635}
3636
Daniel Berlinc4796862017-01-27 02:37:11 +00003637// This function converts the set of members for a congruence class from values,
3638// to the set of defs for loads and stores, with associated DFS info.
Daniel Berline3e69e12017-03-10 00:32:33 +00003639void NewGVN::convertClassToLoadsAndStores(
Daniel Berlina8236562017-04-07 18:38:09 +00003640 const CongruenceClass &Dense,
3641 SmallVectorImpl<ValueDFS> &LoadsAndStores) const {
Daniel Berlinc4796862017-01-27 02:37:11 +00003642 for (auto D : Dense) {
3643 if (!isa<LoadInst>(D) && !isa<StoreInst>(D))
3644 continue;
3645
3646 BasicBlock *BB = getBlockForValue(D);
3647 ValueDFS VD;
3648 DomTreeNode *DomNode = DT->getNode(BB);
3649 VD.DFSIn = DomNode->getDFSNumIn();
3650 VD.DFSOut = DomNode->getDFSNumOut();
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003651 VD.Def.setPointer(D);
Daniel Berlinc4796862017-01-27 02:37:11 +00003652
3653 // If it's an instruction, use the real local dfs number.
3654 if (auto *I = dyn_cast<Instruction>(D))
Daniel Berlin21279bd2017-04-06 18:52:58 +00003655 VD.LocalNum = InstrToDFSNum(I);
Daniel Berlinc4796862017-01-27 02:37:11 +00003656 else
3657 llvm_unreachable("Should have been an instruction");
3658
3659 LoadsAndStores.emplace_back(VD);
3660 }
3661}
3662
Davide Italiano7e274e02016-12-22 16:03:48 +00003663static void patchReplacementInstruction(Instruction *I, Value *Repl) {
Daniel Berlin4d547962017-02-12 23:24:45 +00003664 auto *ReplInst = dyn_cast<Instruction>(Repl);
Daniel Berlin86eab152017-02-12 22:25:20 +00003665 if (!ReplInst)
3666 return;
3667
Davide Italiano7e274e02016-12-22 16:03:48 +00003668 // Patch the replacement so that it is not more restrictive than the value
3669 // being replaced.
Daniel Berlin86eab152017-02-12 22:25:20 +00003670 // Note that if 'I' is a load being replaced by some operation,
3671 // for example, by an arithmetic operation, then andIRFlags()
3672 // would just erase all math flags from the original arithmetic
3673 // operation, which is clearly not wanted and not needed.
3674 if (!isa<LoadInst>(I))
3675 ReplInst->andIRFlags(I);
Davide Italiano7e274e02016-12-22 16:03:48 +00003676
Daniel Berlin86eab152017-02-12 22:25:20 +00003677 // FIXME: If both the original and replacement value are part of the
3678 // same control-flow region (meaning that the execution of one
3679 // guarantees the execution of the other), then we can combine the
3680 // noalias scopes here and do better than the general conservative
3681 // answer used in combineMetadata().
Davide Italiano7e274e02016-12-22 16:03:48 +00003682
Daniel Berlin86eab152017-02-12 22:25:20 +00003683 // In general, GVN unifies expressions over different control-flow
3684 // regions, and so we need a conservative combination of the noalias
3685 // scopes.
3686 static const unsigned KnownIDs[] = {
3687 LLVMContext::MD_tbaa, LLVMContext::MD_alias_scope,
3688 LLVMContext::MD_noalias, LLVMContext::MD_range,
3689 LLVMContext::MD_fpmath, LLVMContext::MD_invariant_load,
3690 LLVMContext::MD_invariant_group};
3691 combineMetadata(ReplInst, I, KnownIDs);
Davide Italiano7e274e02016-12-22 16:03:48 +00003692}
3693
3694static void patchAndReplaceAllUsesWith(Instruction *I, Value *Repl) {
3695 patchReplacementInstruction(I, Repl);
3696 I->replaceAllUsesWith(Repl);
3697}
3698
3699void NewGVN::deleteInstructionsInBlock(BasicBlock *BB) {
3700 DEBUG(dbgs() << " BasicBlock Dead:" << *BB);
3701 ++NumGVNBlocksDeleted;
3702
Daniel Berline19f0e02017-01-30 17:06:55 +00003703 // Delete the instructions backwards, as it has a reduced likelihood of having
3704 // to update as many def-use and use-def chains. Start after the terminator.
3705 auto StartPoint = BB->rbegin();
3706 ++StartPoint;
3707 // Note that we explicitly recalculate BB->rend() on each iteration,
3708 // as it may change when we remove the first instruction.
3709 for (BasicBlock::reverse_iterator I(StartPoint); I != BB->rend();) {
3710 Instruction &Inst = *I++;
3711 if (!Inst.use_empty())
3712 Inst.replaceAllUsesWith(UndefValue::get(Inst.getType()));
3713 if (isa<LandingPadInst>(Inst))
3714 continue;
3715
3716 Inst.eraseFromParent();
3717 ++NumGVNInstrDeleted;
3718 }
Daniel Berlina53a7222017-01-30 18:12:56 +00003719 // Now insert something that simplifycfg will turn into an unreachable.
3720 Type *Int8Ty = Type::getInt8Ty(BB->getContext());
3721 new StoreInst(UndefValue::get(Int8Ty),
3722 Constant::getNullValue(Int8Ty->getPointerTo()),
3723 BB->getTerminator());
Davide Italiano7e274e02016-12-22 16:03:48 +00003724}
3725
3726void NewGVN::markInstructionForDeletion(Instruction *I) {
3727 DEBUG(dbgs() << "Marking " << *I << " for deletion\n");
3728 InstructionsToErase.insert(I);
3729}
3730
3731void NewGVN::replaceInstruction(Instruction *I, Value *V) {
Davide Italiano7e274e02016-12-22 16:03:48 +00003732 DEBUG(dbgs() << "Replacing " << *I << " with " << *V << "\n");
3733 patchAndReplaceAllUsesWith(I, V);
3734 // We save the actual erasing to avoid invalidating memory
3735 // dependencies until we are done with everything.
3736 markInstructionForDeletion(I);
3737}
3738
3739namespace {
3740
3741// This is a stack that contains both the value and dfs info of where
3742// that value is valid.
3743class ValueDFSStack {
3744public:
3745 Value *back() const { return ValueStack.back(); }
3746 std::pair<int, int> dfs_back() const { return DFSStack.back(); }
3747
3748 void push_back(Value *V, int DFSIn, int DFSOut) {
Piotr Padlewski6c37d292016-12-28 23:24:02 +00003749 ValueStack.emplace_back(V);
Davide Italiano7e274e02016-12-22 16:03:48 +00003750 DFSStack.emplace_back(DFSIn, DFSOut);
3751 }
Eugene Zelenko99241d72017-10-20 21:47:29 +00003752
Davide Italiano7e274e02016-12-22 16:03:48 +00003753 bool empty() const { return DFSStack.empty(); }
Eugene Zelenko99241d72017-10-20 21:47:29 +00003754
Davide Italiano7e274e02016-12-22 16:03:48 +00003755 bool isInScope(int DFSIn, int DFSOut) const {
3756 if (empty())
3757 return false;
3758 return DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second;
3759 }
3760
3761 void popUntilDFSScope(int DFSIn, int DFSOut) {
3762
3763 // These two should always be in sync at this point.
3764 assert(ValueStack.size() == DFSStack.size() &&
3765 "Mismatch between ValueStack and DFSStack");
3766 while (
3767 !DFSStack.empty() &&
3768 !(DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second)) {
3769 DFSStack.pop_back();
3770 ValueStack.pop_back();
3771 }
3772 }
3773
3774private:
3775 SmallVector<Value *, 8> ValueStack;
3776 SmallVector<std::pair<int, int>, 8> DFSStack;
3777};
Eugene Zelenko99241d72017-10-20 21:47:29 +00003778
3779} // end anonymous namespace
Daniel Berlin04443432017-01-07 03:23:47 +00003780
Daniel Berlin94090dd2017-09-02 02:18:44 +00003781// Given an expression, get the congruence class for it.
3782CongruenceClass *NewGVN::getClassForExpression(const Expression *E) const {
3783 if (auto *VE = dyn_cast<VariableExpression>(E))
3784 return ValueToClass.lookup(VE->getVariableValue());
3785 else if (isa<DeadExpression>(E))
3786 return TOPClass;
3787 return ExpressionToClass.lookup(E);
3788}
3789
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003790// Given a value and a basic block we are trying to see if it is available in,
3791// see if the value has a leader available in that block.
Daniel Berlin94090dd2017-09-02 02:18:44 +00003792Value *NewGVN::findPHIOfOpsLeader(const Expression *E,
Daniel Berlin4ad7e8d2017-09-05 02:17:40 +00003793 const Instruction *OrigInst,
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003794 const BasicBlock *BB) const {
3795 // It would already be constant if we could make it constant
3796 if (auto *CE = dyn_cast<ConstantExpression>(E))
3797 return CE->getConstantValue();
Daniel Berlin94090dd2017-09-02 02:18:44 +00003798 if (auto *VE = dyn_cast<VariableExpression>(E)) {
3799 auto *V = VE->getVariableValue();
3800 if (alwaysAvailable(V) || DT->dominates(getBlockForValue(V), BB))
3801 return VE->getVariableValue();
3802 }
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003803
Daniel Berlin94090dd2017-09-02 02:18:44 +00003804 auto *CC = getClassForExpression(E);
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003805 if (!CC)
3806 return nullptr;
3807 if (alwaysAvailable(CC->getLeader()))
3808 return CC->getLeader();
3809
3810 for (auto Member : *CC) {
3811 auto *MemberInst = dyn_cast<Instruction>(Member);
Daniel Berlin4ad7e8d2017-09-05 02:17:40 +00003812 if (MemberInst == OrigInst)
3813 continue;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003814 // Anything that isn't an instruction is always available.
3815 if (!MemberInst)
3816 return Member;
Daniel Berlin94090dd2017-09-02 02:18:44 +00003817 if (DT->dominates(getBlockForValue(MemberInst), BB))
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003818 return Member;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003819 }
3820 return nullptr;
3821}
3822
Davide Italiano7e274e02016-12-22 16:03:48 +00003823bool NewGVN::eliminateInstructions(Function &F) {
3824 // This is a non-standard eliminator. The normal way to eliminate is
3825 // to walk the dominator tree in order, keeping track of available
3826 // values, and eliminating them. However, this is mildly
3827 // pointless. It requires doing lookups on every instruction,
3828 // regardless of whether we will ever eliminate it. For
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003829 // instructions part of most singleton congruence classes, we know we
3830 // will never eliminate them.
Davide Italiano7e274e02016-12-22 16:03:48 +00003831
3832 // Instead, this eliminator looks at the congruence classes directly, sorts
3833 // them into a DFS ordering of the dominator tree, and then we just
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003834 // perform elimination straight on the sets by walking the congruence
Davide Italiano7e274e02016-12-22 16:03:48 +00003835 // class member uses in order, and eliminate the ones dominated by the
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003836 // last member. This is worst case O(E log E) where E = number of
3837 // instructions in a single congruence class. In theory, this is all
3838 // instructions. In practice, it is much faster, as most instructions are
3839 // either in singleton congruence classes or can't possibly be eliminated
3840 // anyway (if there are no overlapping DFS ranges in class).
Davide Italiano7e274e02016-12-22 16:03:48 +00003841 // When we find something not dominated, it becomes the new leader
Daniel Berlin85cbc8c2016-12-26 19:57:25 +00003842 // for elimination purposes.
3843 // TODO: If we wanted to be faster, We could remove any members with no
3844 // overlapping ranges while sorting, as we will never eliminate anything
3845 // with those members, as they don't dominate anything else in our set.
3846
Davide Italiano7e274e02016-12-22 16:03:48 +00003847 bool AnythingReplaced = false;
3848
3849 // Since we are going to walk the domtree anyway, and we can't guarantee the
3850 // DFS numbers are updated, we compute some ourselves.
3851 DT->updateDFSNumbers();
3852
Daniel Berlin0207cca2017-05-21 23:41:56 +00003853 // Go through all of our phi nodes, and kill the arguments associated with
3854 // unreachable edges.
Daniel Berlin9b926e92017-09-30 23:51:53 +00003855 auto ReplaceUnreachablePHIArgs = [&](PHINode *PHI, BasicBlock *BB) {
3856 for (auto &Operand : PHI->incoming_values())
3857 if (!ReachableEdges.count({PHI->getIncomingBlock(Operand), BB})) {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003858 DEBUG(dbgs() << "Replacing incoming value of " << PHI << " for block "
Daniel Berlin9b926e92017-09-30 23:51:53 +00003859 << getBlockName(PHI->getIncomingBlock(Operand))
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003860 << " with undef due to it being unreachable\n");
Daniel Berlin9b926e92017-09-30 23:51:53 +00003861 Operand.set(UndefValue::get(PHI->getType()));
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003862 }
3863 };
Daniel Berlin9b926e92017-09-30 23:51:53 +00003864 // Replace unreachable phi arguments.
3865 // At this point, RevisitOnReachabilityChange only contains:
3866 //
3867 // 1. PHIs
3868 // 2. Temporaries that will convert to PHIs
3869 // 3. Operations that are affected by an unreachable edge but do not fit into
3870 // 1 or 2 (rare).
3871 // So it is a slight overshoot of what we want. We could make it exact by
3872 // using two SparseBitVectors per block.
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003873 DenseMap<const BasicBlock *, unsigned> ReachablePredCount;
Daniel Berlin9b926e92017-09-30 23:51:53 +00003874 for (auto &KV : ReachableEdges)
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003875 ReachablePredCount[KV.getEnd()]++;
Daniel Berlin9b926e92017-09-30 23:51:53 +00003876 for (auto &BBPair : RevisitOnReachabilityChange) {
3877 for (auto InstNum : BBPair.second) {
3878 auto *Inst = InstrFromDFSNum(InstNum);
3879 auto *PHI = dyn_cast<PHINode>(Inst);
3880 PHI = PHI ? PHI : dyn_cast_or_null<PHINode>(RealToTemp.lookup(Inst));
3881 if (!PHI)
3882 continue;
3883 auto *BB = BBPair.first;
3884 if (ReachablePredCount.lookup(BB) != PHI->getNumIncomingValues())
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003885 ReplaceUnreachablePHIArgs(PHI, BB);
Davide Italiano7e274e02016-12-22 16:03:48 +00003886 }
Daniel Berlin9b926e92017-09-30 23:51:53 +00003887 }
Davide Italiano7e274e02016-12-22 16:03:48 +00003888
Daniel Berline3e69e12017-03-10 00:32:33 +00003889 // Map to store the use counts
3890 DenseMap<const Value *, unsigned int> UseCounts;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003891 for (auto *CC : reverse(CongruenceClasses)) {
Daniel Berline67c3222017-05-25 15:44:20 +00003892 DEBUG(dbgs() << "Eliminating in congruence class " << CC->getID() << "\n");
Daniel Berlinc4796862017-01-27 02:37:11 +00003893 // Track the equivalent store info so we can decide whether to try
3894 // dead store elimination.
3895 SmallVector<ValueDFS, 8> PossibleDeadStores;
Daniel Berline3e69e12017-03-10 00:32:33 +00003896 SmallPtrSet<Instruction *, 8> ProbablyDead;
Daniel Berlina8236562017-04-07 18:38:09 +00003897 if (CC->isDead() || CC->empty())
Davide Italiano7e274e02016-12-22 16:03:48 +00003898 continue;
Daniel Berlin5c338ff2017-03-10 19:05:04 +00003899 // Everything still in the TOP class is unreachable or dead.
3900 if (CC == TOPClass) {
Daniel Berline021d2d2017-05-19 20:22:20 +00003901 for (auto M : *CC) {
3902 auto *VTE = ValueToExpression.lookup(M);
3903 if (VTE && isa<DeadExpression>(VTE))
3904 markInstructionForDeletion(cast<Instruction>(M));
Daniel Berlinb79f5362017-02-11 12:48:50 +00003905 assert((!ReachableBlocks.count(cast<Instruction>(M)->getParent()) ||
3906 InstructionsToErase.count(cast<Instruction>(M))) &&
Daniel Berlin5c338ff2017-03-10 19:05:04 +00003907 "Everything in TOP should be unreachable or dead at this "
Daniel Berlinb79f5362017-02-11 12:48:50 +00003908 "point");
Daniel Berline021d2d2017-05-19 20:22:20 +00003909 }
Daniel Berlinb79f5362017-02-11 12:48:50 +00003910 continue;
3911 }
3912
Daniel Berlina8236562017-04-07 18:38:09 +00003913 assert(CC->getLeader() && "We should have had a leader");
Davide Italiano7e274e02016-12-22 16:03:48 +00003914 // If this is a leader that is always available, and it's a
3915 // constant or has no equivalences, just replace everything with
3916 // it. We then update the congruence class with whatever members
3917 // are left.
Daniel Berlina8236562017-04-07 18:38:09 +00003918 Value *Leader =
3919 CC->getStoredValue() ? CC->getStoredValue() : CC->getLeader();
Daniel Berlin26addef2017-01-20 21:04:30 +00003920 if (alwaysAvailable(Leader)) {
Daniel Berlin08fe6e02017-04-06 18:52:55 +00003921 CongruenceClass::MemberSet MembersLeft;
Daniel Berlina8236562017-04-07 18:38:09 +00003922 for (auto M : *CC) {
Davide Italiano7e274e02016-12-22 16:03:48 +00003923 Value *Member = M;
Davide Italiano7e274e02016-12-22 16:03:48 +00003924 // Void things have no uses we can replace.
Daniel Berlin08fe6e02017-04-06 18:52:55 +00003925 if (Member == Leader || !isa<Instruction>(Member) ||
3926 Member->getType()->isVoidTy()) {
Davide Italiano7e274e02016-12-22 16:03:48 +00003927 MembersLeft.insert(Member);
3928 continue;
3929 }
Daniel Berlin26addef2017-01-20 21:04:30 +00003930 DEBUG(dbgs() << "Found replacement " << *(Leader) << " for " << *Member
3931 << "\n");
Daniel Berlin08fe6e02017-04-06 18:52:55 +00003932 auto *I = cast<Instruction>(Member);
3933 assert(Leader != I && "About to accidentally remove our leader");
3934 replaceInstruction(I, Leader);
3935 AnythingReplaced = true;
Davide Italiano7e274e02016-12-22 16:03:48 +00003936 }
Daniel Berlina8236562017-04-07 18:38:09 +00003937 CC->swap(MembersLeft);
Davide Italiano7e274e02016-12-22 16:03:48 +00003938 } else {
Davide Italiano7e274e02016-12-22 16:03:48 +00003939 // If this is a singleton, we can skip it.
Davide Italiano5974c312017-08-03 21:17:49 +00003940 if (CC->size() != 1 || RealToTemp.count(Leader)) {
Davide Italiano7e274e02016-12-22 16:03:48 +00003941 // This is a stack because equality replacement/etc may place
3942 // constants in the middle of the member list, and we want to use
3943 // those constant values in preference to the current leader, over
3944 // the scope of those constants.
3945 ValueDFSStack EliminationStack;
3946
3947 // Convert the members to DFS ordered sets and then merge them.
Daniel Berlin2f1fbcc2017-01-09 05:34:19 +00003948 SmallVector<ValueDFS, 8> DFSOrderedSet;
Daniel Berlina8236562017-04-07 18:38:09 +00003949 convertClassToDFSOrdered(*CC, DFSOrderedSet, UseCounts, ProbablyDead);
Davide Italiano7e274e02016-12-22 16:03:48 +00003950
3951 // Sort the whole thing.
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00003952 llvm::sort(DFSOrderedSet.begin(), DFSOrderedSet.end());
Daniel Berlin2f1fbcc2017-01-09 05:34:19 +00003953 for (auto &VD : DFSOrderedSet) {
3954 int MemberDFSIn = VD.DFSIn;
3955 int MemberDFSOut = VD.DFSOut;
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00003956 Value *Def = VD.Def.getPointer();
3957 bool FromStore = VD.Def.getInt();
Daniel Berline3e69e12017-03-10 00:32:33 +00003958 Use *U = VD.U;
Daniel Berlinc4796862017-01-27 02:37:11 +00003959 // We ignore void things because we can't get a value from them.
Daniel Berline3e69e12017-03-10 00:32:33 +00003960 if (Def && Def->getType()->isVoidTy())
Daniel Berlinc4796862017-01-27 02:37:11 +00003961 continue;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00003962 auto *DefInst = dyn_cast_or_null<Instruction>(Def);
3963 if (DefInst && AllTempInstructions.count(DefInst)) {
3964 auto *PN = cast<PHINode>(DefInst);
3965
3966 // If this is a value phi and that's the expression we used, insert
3967 // it into the program
3968 // remove from temp instruction list.
3969 AllTempInstructions.erase(PN);
3970 auto *DefBlock = getBlockForValue(Def);
3971 DEBUG(dbgs() << "Inserting fully real phi of ops" << *Def
3972 << " into block "
3973 << getBlockName(getBlockForValue(Def)) << "\n");
3974 PN->insertBefore(&DefBlock->front());
3975 Def = PN;
3976 NumGVNPHIOfOpsEliminations++;
3977 }
Davide Italiano7e274e02016-12-22 16:03:48 +00003978
3979 if (EliminationStack.empty()) {
3980 DEBUG(dbgs() << "Elimination Stack is empty\n");
3981 } else {
3982 DEBUG(dbgs() << "Elimination Stack Top DFS numbers are ("
3983 << EliminationStack.dfs_back().first << ","
3984 << EliminationStack.dfs_back().second << ")\n");
3985 }
Davide Italiano7e274e02016-12-22 16:03:48 +00003986
3987 DEBUG(dbgs() << "Current DFS numbers are (" << MemberDFSIn << ","
3988 << MemberDFSOut << ")\n");
3989 // First, we see if we are out of scope or empty. If so,
3990 // and there equivalences, we try to replace the top of
3991 // stack with equivalences (if it's on the stack, it must
3992 // not have been eliminated yet).
3993 // Then we synchronize to our current scope, by
3994 // popping until we are back within a DFS scope that
3995 // dominates the current member.
3996 // Then, what happens depends on a few factors
3997 // If the stack is now empty, we need to push
3998 // If we have a constant or a local equivalence we want to
3999 // start using, we also push.
4000 // Otherwise, we walk along, processing members who are
4001 // dominated by this scope, and eliminate them.
Daniel Berline3e69e12017-03-10 00:32:33 +00004002 bool ShouldPush = Def && EliminationStack.empty();
Davide Italiano7e274e02016-12-22 16:03:48 +00004003 bool OutOfScope =
4004 !EliminationStack.isInScope(MemberDFSIn, MemberDFSOut);
4005
4006 if (OutOfScope || ShouldPush) {
4007 // Sync to our current scope.
4008 EliminationStack.popUntilDFSScope(MemberDFSIn, MemberDFSOut);
Daniel Berline3e69e12017-03-10 00:32:33 +00004009 bool ShouldPush = Def && EliminationStack.empty();
Davide Italiano7e274e02016-12-22 16:03:48 +00004010 if (ShouldPush) {
Daniel Berline3e69e12017-03-10 00:32:33 +00004011 EliminationStack.push_back(Def, MemberDFSIn, MemberDFSOut);
Davide Italiano7e274e02016-12-22 16:03:48 +00004012 }
4013 }
4014
Daniel Berline3e69e12017-03-10 00:32:33 +00004015 // Skip the Def's, we only want to eliminate on their uses. But mark
4016 // dominated defs as dead.
4017 if (Def) {
4018 // For anything in this case, what and how we value number
4019 // guarantees that any side-effets that would have occurred (ie
4020 // throwing, etc) can be proven to either still occur (because it's
4021 // dominated by something that has the same side-effects), or never
4022 // occur. Otherwise, we would not have been able to prove it value
4023 // equivalent to something else. For these things, we can just mark
4024 // it all dead. Note that this is different from the "ProbablyDead"
4025 // set, which may not be dominated by anything, and thus, are only
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00004026 // easy to prove dead if they are also side-effect free. Note that
4027 // because stores are put in terms of the stored value, we skip
4028 // stored values here. If the stored value is really dead, it will
4029 // still be marked for deletion when we process it in its own class.
Daniel Berline3e69e12017-03-10 00:32:33 +00004030 if (!EliminationStack.empty() && Def != EliminationStack.back() &&
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00004031 isa<Instruction>(Def) && !FromStore)
Daniel Berline3e69e12017-03-10 00:32:33 +00004032 markInstructionForDeletion(cast<Instruction>(Def));
4033 continue;
4034 }
4035 // At this point, we know it is a Use we are trying to possibly
4036 // replace.
4037
4038 assert(isa<Instruction>(U->get()) &&
4039 "Current def should have been an instruction");
4040 assert(isa<Instruction>(U->getUser()) &&
4041 "Current user should have been an instruction");
4042
4043 // If the thing we are replacing into is already marked to be dead,
4044 // this use is dead. Note that this is true regardless of whether
4045 // we have anything dominating the use or not. We do this here
4046 // because we are already walking all the uses anyway.
4047 Instruction *InstUse = cast<Instruction>(U->getUser());
4048 if (InstructionsToErase.count(InstUse)) {
4049 auto &UseCount = UseCounts[U->get()];
4050 if (--UseCount == 0) {
4051 ProbablyDead.insert(cast<Instruction>(U->get()));
4052 }
Daniel Berlinc0e008d2017-03-10 00:32:26 +00004053 }
4054
Davide Italiano7e274e02016-12-22 16:03:48 +00004055 // If we get to this point, and the stack is empty we must have a use
Daniel Berline3e69e12017-03-10 00:32:33 +00004056 // with nothing we can use to eliminate this use, so just skip it.
Davide Italiano7e274e02016-12-22 16:03:48 +00004057 if (EliminationStack.empty())
4058 continue;
4059
Daniel Berlinc0e008d2017-03-10 00:32:26 +00004060 Value *DominatingLeader = EliminationStack.back();
Davide Italiano7e274e02016-12-22 16:03:48 +00004061
Davide Italianoa76e5fa2017-05-18 21:43:23 +00004062 auto *II = dyn_cast<IntrinsicInst>(DominatingLeader);
Daniel Berlin56cca742018-01-09 20:12:42 +00004063 bool isSSACopy = II && II->getIntrinsicID() == Intrinsic::ssa_copy;
4064 if (isSSACopy)
Davide Italianoa76e5fa2017-05-18 21:43:23 +00004065 DominatingLeader = II->getOperand(0);
4066
Daniel Berlind92e7f92017-01-07 00:01:42 +00004067 // Don't replace our existing users with ourselves.
Daniel Berline3e69e12017-03-10 00:32:33 +00004068 if (U->get() == DominatingLeader)
Davide Italiano7e274e02016-12-22 16:03:48 +00004069 continue;
Daniel Berlinc0e008d2017-03-10 00:32:26 +00004070 DEBUG(dbgs() << "Found replacement " << *DominatingLeader << " for "
Daniel Berline3e69e12017-03-10 00:32:33 +00004071 << *U->get() << " in " << *(U->getUser()) << "\n");
Davide Italiano7e274e02016-12-22 16:03:48 +00004072
4073 // If we replaced something in an instruction, handle the patching of
Daniel Berline3e69e12017-03-10 00:32:33 +00004074 // metadata. Skip this if we are replacing predicateinfo with its
4075 // original operand, as we already know we can just drop it.
4076 auto *ReplacedInst = cast<Instruction>(U->get());
Daniel Berlinc0e008d2017-03-10 00:32:26 +00004077 auto *PI = PredInfo->getPredicateInfoFor(ReplacedInst);
4078 if (!PI || DominatingLeader != PI->OriginalOp)
4079 patchReplacementInstruction(ReplacedInst, DominatingLeader);
Daniel Berline3e69e12017-03-10 00:32:33 +00004080 U->set(DominatingLeader);
4081 // This is now a use of the dominating leader, which means if the
4082 // dominating leader was dead, it's now live!
4083 auto &LeaderUseCount = UseCounts[DominatingLeader];
4084 // It's about to be alive again.
4085 if (LeaderUseCount == 0 && isa<Instruction>(DominatingLeader))
4086 ProbablyDead.erase(cast<Instruction>(DominatingLeader));
Daniel Berlin56cca742018-01-09 20:12:42 +00004087 // Copy instructions, however, are still dead beacuse we use their
4088 // operand as the leader.
4089 if (LeaderUseCount == 0 && isSSACopy)
Davide Italianoa76e5fa2017-05-18 21:43:23 +00004090 ProbablyDead.insert(II);
Daniel Berline3e69e12017-03-10 00:32:33 +00004091 ++LeaderUseCount;
Davide Italiano7e274e02016-12-22 16:03:48 +00004092 AnythingReplaced = true;
4093 }
4094 }
4095 }
4096
Daniel Berline3e69e12017-03-10 00:32:33 +00004097 // At this point, anything still in the ProbablyDead set is actually dead if
4098 // would be trivially dead.
4099 for (auto *I : ProbablyDead)
4100 if (wouldInstructionBeTriviallyDead(I))
4101 markInstructionForDeletion(I);
4102
Davide Italiano7e274e02016-12-22 16:03:48 +00004103 // Cleanup the congruence class.
Daniel Berlin08fe6e02017-04-06 18:52:55 +00004104 CongruenceClass::MemberSet MembersLeft;
Daniel Berlina8236562017-04-07 18:38:09 +00004105 for (auto *Member : *CC)
Daniel Berlin08fe6e02017-04-06 18:52:55 +00004106 if (!isa<Instruction>(Member) ||
4107 !InstructionsToErase.count(cast<Instruction>(Member)))
Davide Italiano7e274e02016-12-22 16:03:48 +00004108 MembersLeft.insert(Member);
Daniel Berlina8236562017-04-07 18:38:09 +00004109 CC->swap(MembersLeft);
Daniel Berlinc4796862017-01-27 02:37:11 +00004110
4111 // If we have possible dead stores to look at, try to eliminate them.
Daniel Berlina8236562017-04-07 18:38:09 +00004112 if (CC->getStoreCount() > 0) {
4113 convertClassToLoadsAndStores(*CC, PossibleDeadStores);
Mandeep Singh Grang636d94d2018-04-13 19:47:57 +00004114 llvm::sort(PossibleDeadStores.begin(), PossibleDeadStores.end());
Daniel Berlinc4796862017-01-27 02:37:11 +00004115 ValueDFSStack EliminationStack;
4116 for (auto &VD : PossibleDeadStores) {
4117 int MemberDFSIn = VD.DFSIn;
4118 int MemberDFSOut = VD.DFSOut;
Daniel Berlin9a9c9ff2017-04-01 09:44:33 +00004119 Instruction *Member = cast<Instruction>(VD.Def.getPointer());
Daniel Berlinc4796862017-01-27 02:37:11 +00004120 if (EliminationStack.empty() ||
4121 !EliminationStack.isInScope(MemberDFSIn, MemberDFSOut)) {
4122 // Sync to our current scope.
4123 EliminationStack.popUntilDFSScope(MemberDFSIn, MemberDFSOut);
4124 if (EliminationStack.empty()) {
4125 EliminationStack.push_back(Member, MemberDFSIn, MemberDFSOut);
4126 continue;
4127 }
4128 }
4129 // We already did load elimination, so nothing to do here.
4130 if (isa<LoadInst>(Member))
4131 continue;
4132 assert(!EliminationStack.empty());
4133 Instruction *Leader = cast<Instruction>(EliminationStack.back());
Richard Trieu0b79aa32017-01-27 06:06:05 +00004134 (void)Leader;
Daniel Berlinc4796862017-01-27 02:37:11 +00004135 assert(DT->dominates(Leader->getParent(), Member->getParent()));
4136 // Member is dominater by Leader, and thus dead
4137 DEBUG(dbgs() << "Marking dead store " << *Member
4138 << " that is dominated by " << *Leader << "\n");
4139 markInstructionForDeletion(Member);
Daniel Berlina8236562017-04-07 18:38:09 +00004140 CC->erase(Member);
Daniel Berlinc4796862017-01-27 02:37:11 +00004141 ++NumGVNDeadStores;
4142 }
4143 }
Davide Italiano7e274e02016-12-22 16:03:48 +00004144 }
Davide Italiano7e274e02016-12-22 16:03:48 +00004145 return AnythingReplaced;
4146}
Daniel Berlin1c087672017-02-11 15:07:01 +00004147
4148// This function provides global ranking of operations so that we can place them
4149// in a canonical order. Note that rank alone is not necessarily enough for a
4150// complete ordering, as constants all have the same rank. However, generally,
4151// we will simplify an operation with all constants so that it doesn't matter
4152// what order they appear in.
4153unsigned int NewGVN::getRank(const Value *V) const {
Daniel Berlinb527b2c2017-05-19 19:01:27 +00004154 // Prefer constants to undef to anything else
4155 // Undef is a constant, have to check it first.
4156 // Prefer smaller constants to constantexprs
4157 if (isa<ConstantExpr>(V))
4158 return 2;
Daniel Berlinb355c4f2017-02-18 23:06:47 +00004159 if (isa<UndefValue>(V))
Daniel Berlinb355c4f2017-02-18 23:06:47 +00004160 return 1;
Daniel Berlinb527b2c2017-05-19 19:01:27 +00004161 if (isa<Constant>(V))
4162 return 0;
Daniel Berlin1c087672017-02-11 15:07:01 +00004163 else if (auto *A = dyn_cast<Argument>(V))
Daniel Berlinb527b2c2017-05-19 19:01:27 +00004164 return 3 + A->getArgNo();
Daniel Berlin1c087672017-02-11 15:07:01 +00004165
Daniel Berlinb355c4f2017-02-18 23:06:47 +00004166 // Need to shift the instruction DFS by number of arguments + 3 to account for
Daniel Berlin1c087672017-02-11 15:07:01 +00004167 // the constant and argument ranking above.
Daniel Berlin21279bd2017-04-06 18:52:58 +00004168 unsigned Result = InstrToDFSNum(V);
Daniel Berlin1c087672017-02-11 15:07:01 +00004169 if (Result > 0)
Daniel Berlinb527b2c2017-05-19 19:01:27 +00004170 return 4 + NumFuncArgs + Result;
Daniel Berlin1c087672017-02-11 15:07:01 +00004171 // Unreachable or something else, just return a really large number.
4172 return ~0;
4173}
4174
4175// This is a function that says whether two commutative operations should
4176// have their order swapped when canonicalizing.
4177bool NewGVN::shouldSwapOperands(const Value *A, const Value *B) const {
4178 // Because we only care about a total ordering, and don't rewrite expressions
4179 // in this order, we order by rank, which will give a strict weak ordering to
Daniel Berlinb355c4f2017-02-18 23:06:47 +00004180 // everything but constants, and then we order by pointer address.
Daniel Berlinf7d95802017-02-18 23:06:50 +00004181 return std::make_pair(getRank(A), A) > std::make_pair(getRank(B), B);
Daniel Berlin1c087672017-02-11 15:07:01 +00004182}
Daniel Berlin64e68992017-03-12 04:46:45 +00004183
Benjamin Kramerdebb3c32017-05-26 20:09:00 +00004184namespace {
Eugene Zelenko99241d72017-10-20 21:47:29 +00004185
Daniel Berlin64e68992017-03-12 04:46:45 +00004186class NewGVNLegacyPass : public FunctionPass {
4187public:
Eugene Zelenko99241d72017-10-20 21:47:29 +00004188 // Pass identification, replacement for typeid.
4189 static char ID;
4190
Daniel Berlin64e68992017-03-12 04:46:45 +00004191 NewGVNLegacyPass() : FunctionPass(ID) {
4192 initializeNewGVNLegacyPassPass(*PassRegistry::getPassRegistry());
4193 }
Eugene Zelenko99241d72017-10-20 21:47:29 +00004194
Daniel Berlin64e68992017-03-12 04:46:45 +00004195 bool runOnFunction(Function &F) override;
4196
4197private:
4198 void getAnalysisUsage(AnalysisUsage &AU) const override {
4199 AU.addRequired<AssumptionCacheTracker>();
4200 AU.addRequired<DominatorTreeWrapperPass>();
4201 AU.addRequired<TargetLibraryInfoWrapperPass>();
4202 AU.addRequired<MemorySSAWrapperPass>();
4203 AU.addRequired<AAResultsWrapperPass>();
4204 AU.addPreserved<DominatorTreeWrapperPass>();
4205 AU.addPreserved<GlobalsAAWrapperPass>();
4206 }
4207};
Eugene Zelenko99241d72017-10-20 21:47:29 +00004208
4209} // end anonymous namespace
Daniel Berlin64e68992017-03-12 04:46:45 +00004210
4211bool NewGVNLegacyPass::runOnFunction(Function &F) {
4212 if (skipFunction(F))
4213 return false;
4214 return NewGVN(F, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
4215 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F),
4216 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(),
4217 &getAnalysis<AAResultsWrapperPass>().getAAResults(),
4218 &getAnalysis<MemorySSAWrapperPass>().getMSSA(),
4219 F.getParent()->getDataLayout())
4220 .runGVN();
4221}
4222
Eugene Zelenko99241d72017-10-20 21:47:29 +00004223char NewGVNLegacyPass::ID = 0;
4224
Daniel Berlin64e68992017-03-12 04:46:45 +00004225INITIALIZE_PASS_BEGIN(NewGVNLegacyPass, "newgvn", "Global Value Numbering",
4226 false, false)
4227INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
4228INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
4229INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
4230INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
4231INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
4232INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
4233INITIALIZE_PASS_END(NewGVNLegacyPass, "newgvn", "Global Value Numbering", false,
4234 false)
4235
Daniel Berlin64e68992017-03-12 04:46:45 +00004236// createGVNPass - The public interface to this file.
4237FunctionPass *llvm::createNewGVNPass() { return new NewGVNLegacyPass(); }
4238
4239PreservedAnalyses NewGVNPass::run(Function &F, AnalysisManager<Function> &AM) {
4240 // Apparently the order in which we get these results matter for
4241 // the old GVN (see Chandler's comment in GVN.cpp). I'll keep
4242 // the same order here, just in case.
4243 auto &AC = AM.getResult<AssumptionAnalysis>(F);
4244 auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
4245 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
4246 auto &AA = AM.getResult<AAManager>(F);
4247 auto &MSSA = AM.getResult<MemorySSAAnalysis>(F).getMSSA();
4248 bool Changed =
4249 NewGVN(F, &DT, &AC, &TLI, &AA, &MSSA, F.getParent()->getDataLayout())
4250 .runGVN();
4251 if (!Changed)
4252 return PreservedAnalyses::all();
4253 PreservedAnalyses PA;
4254 PA.preserve<DominatorTreeAnalysis>();
4255 PA.preserve<GlobalsAA>();
4256 return PA;
4257}