1 //===- NewGVN.cpp - Global Value Numbering Pass ---------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 /// \file
10 /// This file implements the new LLVM's Global Value Numbering pass.
11 /// GVN partitions values computed by a function into congruence classes.
12 /// Values ending up in the same congruence class are guaranteed to be the same
13 /// for every execution of the program. In that respect, congruency is a
14 /// compile-time approximation of equivalence of values at runtime.
15 /// The algorithm implemented here uses a sparse formulation and it's based
16 /// on the ideas described in the paper:
17 /// "A Sparse Algorithm for Predicated Global Value Numbering" from
18 /// Karthik Gargi.
19 ///
20 /// A brief overview of the algorithm: The algorithm is essentially the same as
21 /// the standard RPO value numbering algorithm (a good reference is the paper
22 /// "SCC based value numbering" by L. Taylor Simpson) with one major difference:
23 /// The RPO algorithm proceeds, on every iteration, to process every reachable
24 /// block and every instruction in that block.  This is because the standard RPO
25 /// algorithm does not track what things have the same value number, it only
26 /// tracks what the value number of a given operation is (the mapping is
27 /// operation -> value number).  Thus, when a value number of an operation
28 /// changes, it must reprocess everything to ensure all uses of a value number
29 /// get updated properly.  In constrast, the sparse algorithm we use *also*
30 /// tracks what operations have a given value number (IE it also tracks the
31 /// reverse mapping from value number -> operations with that value number), so
32 /// that it only needs to reprocess the instructions that are affected when
33 /// something's value number changes.  The vast majority of complexity and code
34 /// in this file is devoted to tracking what value numbers could change for what
35 /// instructions when various things happen.  The rest of the algorithm is
36 /// devoted to performing symbolic evaluation, forward propagation, and
37 /// simplification of operations based on the value numbers deduced so far
38 ///
39 /// In order to make the GVN mostly-complete, we use a technique derived from
40 /// "Detection of Redundant Expressions: A Complete and Polynomial-time
41 /// Algorithm in SSA" by R.R. Pai.  The source of incompleteness in most SSA
42 /// based GVN algorithms is related to their inability to detect equivalence
43 /// between phi of ops (IE phi(a+b, c+d)) and op of phis (phi(a,c) + phi(b, d)).
44 /// We resolve this issue by generating the equivalent "phi of ops" form for
45 /// each op of phis we see, in a way that only takes polynomial time to resolve.
46 ///
47 /// We also do not perform elimination by using any published algorithm.  All
48 /// published algorithms are O(Instructions). Instead, we use a technique that
49 /// is O(number of operations with the same value number), enabling us to skip
50 /// trying to eliminate things that have unique value numbers.
51 //
52 //===----------------------------------------------------------------------===//
53 
54 #include "llvm/Transforms/Scalar/NewGVN.h"
55 #include "llvm/ADT/ArrayRef.h"
56 #include "llvm/ADT/BitVector.h"
57 #include "llvm/ADT/DenseMap.h"
58 #include "llvm/ADT/DenseMapInfo.h"
59 #include "llvm/ADT/DenseSet.h"
60 #include "llvm/ADT/DepthFirstIterator.h"
61 #include "llvm/ADT/GraphTraits.h"
62 #include "llvm/ADT/Hashing.h"
63 #include "llvm/ADT/PointerIntPair.h"
64 #include "llvm/ADT/PostOrderIterator.h"
65 #include "llvm/ADT/SmallPtrSet.h"
66 #include "llvm/ADT/SmallVector.h"
67 #include "llvm/ADT/SparseBitVector.h"
68 #include "llvm/ADT/Statistic.h"
69 #include "llvm/ADT/iterator_range.h"
70 #include "llvm/Analysis/AliasAnalysis.h"
71 #include "llvm/Analysis/AssumptionCache.h"
72 #include "llvm/Analysis/CFGPrinter.h"
73 #include "llvm/Analysis/ConstantFolding.h"
74 #include "llvm/Analysis/GlobalsModRef.h"
75 #include "llvm/Analysis/InstructionSimplify.h"
76 #include "llvm/Analysis/MemoryBuiltins.h"
77 #include "llvm/Analysis/MemorySSA.h"
78 #include "llvm/Analysis/TargetLibraryInfo.h"
79 #include "llvm/IR/Argument.h"
80 #include "llvm/IR/BasicBlock.h"
81 #include "llvm/IR/Constant.h"
82 #include "llvm/IR/Constants.h"
83 #include "llvm/IR/Dominators.h"
84 #include "llvm/IR/Function.h"
85 #include "llvm/IR/InstrTypes.h"
86 #include "llvm/IR/Instruction.h"
87 #include "llvm/IR/Instructions.h"
88 #include "llvm/IR/IntrinsicInst.h"
89 #include "llvm/IR/Intrinsics.h"
90 #include "llvm/IR/LLVMContext.h"
91 #include "llvm/IR/PatternMatch.h"
92 #include "llvm/IR/Type.h"
93 #include "llvm/IR/Use.h"
94 #include "llvm/IR/User.h"
95 #include "llvm/IR/Value.h"
96 #include "llvm/InitializePasses.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"
103 #include "llvm/Support/DebugCounter.h"
104 #include "llvm/Support/ErrorHandling.h"
105 #include "llvm/Support/PointerLikeTypeTraits.h"
106 #include "llvm/Support/raw_ostream.h"
107 #include "llvm/Transforms/Scalar.h"
108 #include "llvm/Transforms/Scalar/GVNExpression.h"
109 #include "llvm/Transforms/Utils/AssumeBundleBuilder.h"
110 #include "llvm/Transforms/Utils/Local.h"
111 #include "llvm/Transforms/Utils/PredicateInfo.h"
112 #include "llvm/Transforms/Utils/VNCoercion.h"
113 #include <algorithm>
114 #include <cassert>
115 #include <cstdint>
116 #include <iterator>
117 #include <map>
118 #include <memory>
119 #include <set>
120 #include <string>
121 #include <tuple>
122 #include <utility>
123 #include <vector>
124 
125 using namespace llvm;
126 using namespace llvm::GVNExpression;
127 using namespace llvm::VNCoercion;
128 using namespace llvm::PatternMatch;
129 
130 #define DEBUG_TYPE "newgvn"
131 
132 STATISTIC(NumGVNInstrDeleted, "Number of instructions deleted");
133 STATISTIC(NumGVNBlocksDeleted, "Number of blocks deleted");
134 STATISTIC(NumGVNOpsSimplified, "Number of Expressions simplified");
135 STATISTIC(NumGVNPhisAllSame, "Number of PHIs whos arguments are all the same");
136 STATISTIC(NumGVNMaxIterations,
137           "Maximum Number of iterations it took to converge GVN");
138 STATISTIC(NumGVNLeaderChanges, "Number of leader changes");
139 STATISTIC(NumGVNSortedLeaderChanges, "Number of sorted leader changes");
140 STATISTIC(NumGVNAvoidedSortedLeaderChanges,
141           "Number of avoided sorted leader changes");
142 STATISTIC(NumGVNDeadStores, "Number of redundant/dead stores eliminated");
143 STATISTIC(NumGVNPHIOfOpsCreated, "Number of PHI of ops created");
144 STATISTIC(NumGVNPHIOfOpsEliminations,
145           "Number of things eliminated using PHI of ops");
146 DEBUG_COUNTER(VNCounter, "newgvn-vn",
147               "Controls which instructions are value numbered");
148 DEBUG_COUNTER(PHIOfOpsCounter, "newgvn-phi",
149               "Controls which instructions we create phi of ops for");
150 // Currently store defining access refinement is too slow due to basicaa being
151 // egregiously slow.  This flag lets us keep it working while we work on this
152 // issue.
153 static cl::opt<bool> EnableStoreRefinement("enable-store-refinement",
154                                            cl::init(false), cl::Hidden);
155 
156 /// Currently, the generation "phi of ops" can result in correctness issues.
157 static cl::opt<bool> EnablePhiOfOps("enable-phi-of-ops", cl::init(true),
158                                     cl::Hidden);
159 
160 //===----------------------------------------------------------------------===//
161 //                                GVN Pass
162 //===----------------------------------------------------------------------===//
163 
164 // Anchor methods.
165 namespace llvm {
166 namespace GVNExpression {
167 
168 Expression::~Expression() = default;
169 BasicExpression::~BasicExpression() = default;
170 CallExpression::~CallExpression() = default;
171 LoadExpression::~LoadExpression() = default;
172 StoreExpression::~StoreExpression() = default;
173 AggregateValueExpression::~AggregateValueExpression() = default;
174 PHIExpression::~PHIExpression() = default;
175 
176 } // end namespace GVNExpression
177 } // end namespace llvm
178 
179 namespace {
180 
181 // Tarjan's SCC finding algorithm with Nuutila's improvements
182 // SCCIterator is actually fairly complex for the simple thing we want.
183 // It also wants to hand us SCC's that are unrelated to the phi node we ask
184 // about, and have us process them there or risk redoing work.
185 // Graph traits over a filter iterator also doesn't work that well here.
186 // This SCC finder is specialized to walk use-def chains, and only follows
187 // instructions,
188 // not generic values (arguments, etc).
189 struct TarjanSCC {
190   TarjanSCC() : Components(1) {}
191 
192   void Start(const Instruction *Start) {
193     if (Root.lookup(Start) == 0)
194       FindSCC(Start);
195   }
196 
197   const SmallPtrSetImpl<const Value *> &getComponentFor(const Value *V) const {
198     unsigned ComponentID = ValueToComponent.lookup(V);
199 
200     assert(ComponentID > 0 &&
201            "Asking for a component for a value we never processed");
202     return Components[ComponentID];
203   }
204 
205 private:
206   void FindSCC(const Instruction *I) {
207     Root[I] = ++DFSNum;
208     // Store the DFS Number we had before it possibly gets incremented.
209     unsigned int OurDFS = DFSNum;
210     for (auto &Op : I->operands()) {
211       if (auto *InstOp = dyn_cast<Instruction>(Op)) {
212         if (Root.lookup(Op) == 0)
213           FindSCC(InstOp);
214         if (!InComponent.count(Op))
215           Root[I] = std::min(Root.lookup(I), Root.lookup(Op));
216       }
217     }
218     // See if we really were the root of a component, by seeing if we still have
219     // our DFSNumber.  If we do, we are the root of the component, and we have
220     // completed a component. If we do not, we are not the root of a component,
221     // and belong on the component stack.
222     if (Root.lookup(I) == OurDFS) {
223       unsigned ComponentID = Components.size();
224       Components.resize(Components.size() + 1);
225       auto &Component = Components.back();
226       Component.insert(I);
227       LLVM_DEBUG(dbgs() << "Component root is " << *I << "\n");
228       InComponent.insert(I);
229       ValueToComponent[I] = ComponentID;
230       // Pop a component off the stack and label it.
231       while (!Stack.empty() && Root.lookup(Stack.back()) >= OurDFS) {
232         auto *Member = Stack.back();
233         LLVM_DEBUG(dbgs() << "Component member is " << *Member << "\n");
234         Component.insert(Member);
235         InComponent.insert(Member);
236         ValueToComponent[Member] = ComponentID;
237         Stack.pop_back();
238       }
239     } else {
240       // Part of a component, push to stack
241       Stack.push_back(I);
242     }
243   }
244 
245   unsigned int DFSNum = 1;
246   SmallPtrSet<const Value *, 8> InComponent;
247   DenseMap<const Value *, unsigned int> Root;
248   SmallVector<const Value *, 8> Stack;
249 
250   // Store the components as vector of ptr sets, because we need the topo order
251   // of SCC's, but not individual member order
252   SmallVector<SmallPtrSet<const Value *, 8>, 8> Components;
253 
254   DenseMap<const Value *, unsigned> ValueToComponent;
255 };
256 
257 // Congruence classes represent the set of expressions/instructions
258 // that are all the same *during some scope in the function*.
259 // That is, because of the way we perform equality propagation, and
260 // because of memory value numbering, it is not correct to assume
261 // you can willy-nilly replace any member with any other at any
262 // point in the function.
263 //
264 // For any Value in the Member set, it is valid to replace any dominated member
265 // with that Value.
266 //
267 // Every congruence class has a leader, and the leader is used to symbolize
268 // instructions in a canonical way (IE every operand of an instruction that is a
269 // member of the same congruence class will always be replaced with leader
270 // during symbolization).  To simplify symbolization, we keep the leader as a
271 // constant if class can be proved to be a constant value.  Otherwise, the
272 // leader is the member of the value set with the smallest DFS number.  Each
273 // congruence class also has a defining expression, though the expression may be
274 // null.  If it exists, it can be used for forward propagation and reassociation
275 // of values.
276 
277 // For memory, we also track a representative MemoryAccess, and a set of memory
278 // members for MemoryPhis (which have no real instructions). Note that for
279 // memory, it seems tempting to try to split the memory members into a
280 // MemoryCongruenceClass or something.  Unfortunately, this does not work
281 // easily.  The value numbering of a given memory expression depends on the
282 // leader of the memory congruence class, and the leader of memory congruence
283 // class depends on the value numbering of a given memory expression.  This
284 // leads to wasted propagation, and in some cases, missed optimization.  For
285 // example: If we had value numbered two stores together before, but now do not,
286 // we move them to a new value congruence class.  This in turn will move at one
287 // of the memorydefs to a new memory congruence class.  Which in turn, affects
288 // the value numbering of the stores we just value numbered (because the memory
289 // congruence class is part of the value number).  So while theoretically
290 // possible to split them up, it turns out to be *incredibly* complicated to get
291 // it to work right, because of the interdependency.  While structurally
292 // slightly messier, it is algorithmically much simpler and faster to do what we
293 // do here, and track them both at once in the same class.
294 // Note: The default iterators for this class iterate over values
295 class CongruenceClass {
296 public:
297   using MemberType = Value;
298   using MemberSet = SmallPtrSet<MemberType *, 4>;
299   using MemoryMemberType = MemoryPhi;
300   using MemoryMemberSet = SmallPtrSet<const MemoryMemberType *, 2>;
301 
302   explicit CongruenceClass(unsigned ID) : ID(ID) {}
303   CongruenceClass(unsigned ID, Value *Leader, const Expression *E)
304       : ID(ID), RepLeader(Leader), DefiningExpr(E) {}
305 
306   unsigned getID() const { return ID; }
307 
308   // True if this class has no members left.  This is mainly used for assertion
309   // purposes, and for skipping empty classes.
310   bool isDead() const {
311     // If it's both dead from a value perspective, and dead from a memory
312     // perspective, it's really dead.
313     return empty() && memory_empty();
314   }
315 
316   // Leader functions
317   Value *getLeader() const { return RepLeader; }
318   void setLeader(Value *Leader) { RepLeader = Leader; }
319   const std::pair<Value *, unsigned int> &getNextLeader() const {
320     return NextLeader;
321   }
322   void resetNextLeader() { NextLeader = {nullptr, ~0}; }
323   void addPossibleNextLeader(std::pair<Value *, unsigned int> LeaderPair) {
324     if (LeaderPair.second < NextLeader.second)
325       NextLeader = LeaderPair;
326   }
327 
328   Value *getStoredValue() const { return RepStoredValue; }
329   void setStoredValue(Value *Leader) { RepStoredValue = Leader; }
330   const MemoryAccess *getMemoryLeader() const { return RepMemoryAccess; }
331   void setMemoryLeader(const MemoryAccess *Leader) { RepMemoryAccess = Leader; }
332 
333   // Forward propagation info
334   const Expression *getDefiningExpr() const { return DefiningExpr; }
335 
336   // Value member set
337   bool empty() const { return Members.empty(); }
338   unsigned size() const { return Members.size(); }
339   MemberSet::const_iterator begin() const { return Members.begin(); }
340   MemberSet::const_iterator end() const { return Members.end(); }
341   void insert(MemberType *M) { Members.insert(M); }
342   void erase(MemberType *M) { Members.erase(M); }
343   void swap(MemberSet &Other) { Members.swap(Other); }
344 
345   // Memory member set
346   bool memory_empty() const { return MemoryMembers.empty(); }
347   unsigned memory_size() const { return MemoryMembers.size(); }
348   MemoryMemberSet::const_iterator memory_begin() const {
349     return MemoryMembers.begin();
350   }
351   MemoryMemberSet::const_iterator memory_end() const {
352     return MemoryMembers.end();
353   }
354   iterator_range<MemoryMemberSet::const_iterator> memory() const {
355     return make_range(memory_begin(), memory_end());
356   }
357 
358   void memory_insert(const MemoryMemberType *M) { MemoryMembers.insert(M); }
359   void memory_erase(const MemoryMemberType *M) { MemoryMembers.erase(M); }
360 
361   // Store count
362   unsigned getStoreCount() const { return StoreCount; }
363   void incStoreCount() { ++StoreCount; }
364   void decStoreCount() {
365     assert(StoreCount != 0 && "Store count went negative");
366     --StoreCount;
367   }
368 
369   // True if this class has no memory members.
370   bool definesNoMemory() const { return StoreCount == 0 && memory_empty(); }
371 
372   // Return true if two congruence classes are equivalent to each other. This
373   // means that every field but the ID number and the dead field are equivalent.
374   bool isEquivalentTo(const CongruenceClass *Other) const {
375     if (!Other)
376       return false;
377     if (this == Other)
378       return true;
379 
380     if (std::tie(StoreCount, RepLeader, RepStoredValue, RepMemoryAccess) !=
381         std::tie(Other->StoreCount, Other->RepLeader, Other->RepStoredValue,
382                  Other->RepMemoryAccess))
383       return false;
384     if (DefiningExpr != Other->DefiningExpr)
385       if (!DefiningExpr || !Other->DefiningExpr ||
386           *DefiningExpr != *Other->DefiningExpr)
387         return false;
388 
389     if (Members.size() != Other->Members.size())
390       return false;
391 
392     return all_of(Members,
393                   [&](const Value *V) { return Other->Members.count(V); });
394   }
395 
396 private:
397   unsigned ID;
398 
399   // Representative leader.
400   Value *RepLeader = nullptr;
401 
402   // The most dominating leader after our current leader, because the member set
403   // is not sorted and is expensive to keep sorted all the time.
404   std::pair<Value *, unsigned int> NextLeader = {nullptr, ~0U};
405 
406   // If this is represented by a store, the value of the store.
407   Value *RepStoredValue = nullptr;
408 
409   // If this class contains MemoryDefs or MemoryPhis, this is the leading memory
410   // access.
411   const MemoryAccess *RepMemoryAccess = nullptr;
412 
413   // Defining Expression.
414   const Expression *DefiningExpr = nullptr;
415 
416   // Actual members of this class.
417   MemberSet Members;
418 
419   // This is the set of MemoryPhis that exist in the class. MemoryDefs and
420   // MemoryUses have real instructions representing them, so we only need to
421   // track MemoryPhis here.
422   MemoryMemberSet MemoryMembers;
423 
424   // Number of stores in this congruence class.
425   // This is used so we can detect store equivalence changes properly.
426   int StoreCount = 0;
427 };
428 
429 } // end anonymous namespace
430 
431 namespace llvm {
432 
433 struct ExactEqualsExpression {
434   const Expression &E;
435 
436   explicit ExactEqualsExpression(const Expression &E) : E(E) {}
437 
438   hash_code getComputedHash() const { return E.getComputedHash(); }
439 
440   bool operator==(const Expression &Other) const {
441     return E.exactlyEquals(Other);
442   }
443 };
444 
445 template <> struct DenseMapInfo<const Expression *> {
446   static const Expression *getEmptyKey() {
447     auto Val = static_cast<uintptr_t>(-1);
448     Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable;
449     return reinterpret_cast<const Expression *>(Val);
450   }
451 
452   static const Expression *getTombstoneKey() {
453     auto Val = static_cast<uintptr_t>(~1U);
454     Val <<= PointerLikeTypeTraits<const Expression *>::NumLowBitsAvailable;
455     return reinterpret_cast<const Expression *>(Val);
456   }
457 
458   static unsigned getHashValue(const Expression *E) {
459     return E->getComputedHash();
460   }
461 
462   static unsigned getHashValue(const ExactEqualsExpression &E) {
463     return E.getComputedHash();
464   }
465 
466   static bool isEqual(const ExactEqualsExpression &LHS, const Expression *RHS) {
467     if (RHS == getTombstoneKey() || RHS == getEmptyKey())
468       return false;
469     return LHS == *RHS;
470   }
471 
472   static bool isEqual(const Expression *LHS, const Expression *RHS) {
473     if (LHS == RHS)
474       return true;
475     if (LHS == getTombstoneKey() || RHS == getTombstoneKey() ||
476         LHS == getEmptyKey() || RHS == getEmptyKey())
477       return false;
478     // Compare hashes before equality.  This is *not* what the hashtable does,
479     // since it is computing it modulo the number of buckets, whereas we are
480     // using the full hash keyspace.  Since the hashes are precomputed, this
481     // check is *much* faster than equality.
482     if (LHS->getComputedHash() != RHS->getComputedHash())
483       return false;
484     return *LHS == *RHS;
485   }
486 };
487 
488 } // end namespace llvm
489 
490 namespace {
491 
492 class NewGVN {
493   Function &F;
494   DominatorTree *DT = nullptr;
495   const TargetLibraryInfo *TLI = nullptr;
496   AliasAnalysis *AA = nullptr;
497   MemorySSA *MSSA = nullptr;
498   MemorySSAWalker *MSSAWalker = nullptr;
499   AssumptionCache *AC = nullptr;
500   const DataLayout &DL;
501   std::unique_ptr<PredicateInfo> PredInfo;
502 
503   // These are the only two things the create* functions should have
504   // side-effects on due to allocating memory.
505   mutable BumpPtrAllocator ExpressionAllocator;
506   mutable ArrayRecycler<Value *> ArgRecycler;
507   mutable TarjanSCC SCCFinder;
508   const SimplifyQuery SQ;
509 
510   // Number of function arguments, used by ranking
511   unsigned int NumFuncArgs = 0;
512 
513   // RPOOrdering of basic blocks
514   DenseMap<const DomTreeNode *, unsigned> RPOOrdering;
515 
516   // Congruence class info.
517 
518   // This class is called INITIAL in the paper. It is the class everything
519   // startsout in, and represents any value. Being an optimistic analysis,
520   // anything in the TOP class has the value TOP, which is indeterminate and
521   // equivalent to everything.
522   CongruenceClass *TOPClass = nullptr;
523   std::vector<CongruenceClass *> CongruenceClasses;
524   unsigned NextCongruenceNum = 0;
525 
526   // Value Mappings.
527   DenseMap<Value *, CongruenceClass *> ValueToClass;
528   DenseMap<Value *, const Expression *> ValueToExpression;
529 
530   // Value PHI handling, used to make equivalence between phi(op, op) and
531   // op(phi, phi).
532   // These mappings just store various data that would normally be part of the
533   // IR.
534   SmallPtrSet<const Instruction *, 8> PHINodeUses;
535 
536   DenseMap<const Value *, bool> OpSafeForPHIOfOps;
537 
538   // Map a temporary instruction we created to a parent block.
539   DenseMap<const Value *, BasicBlock *> TempToBlock;
540 
541   // Map between the already in-program instructions and the temporary phis we
542   // created that they are known equivalent to.
543   DenseMap<const Value *, PHINode *> RealToTemp;
544 
545   // In order to know when we should re-process instructions that have
546   // phi-of-ops, we track the set of expressions that they needed as
547   // leaders. When we discover new leaders for those expressions, we process the
548   // associated phi-of-op instructions again in case they have changed.  The
549   // other way they may change is if they had leaders, and those leaders
550   // disappear.  However, at the point they have leaders, there are uses of the
551   // relevant operands in the created phi node, and so they will get reprocessed
552   // through the normal user marking we perform.
553   mutable DenseMap<const Value *, SmallPtrSet<Value *, 2>> AdditionalUsers;
554   DenseMap<const Expression *, SmallPtrSet<Instruction *, 2>>
555       ExpressionToPhiOfOps;
556 
557   // Map from temporary operation to MemoryAccess.
558   DenseMap<const Instruction *, MemoryUseOrDef *> TempToMemory;
559 
560   // Set of all temporary instructions we created.
561   // Note: This will include instructions that were just created during value
562   // numbering.  The way to test if something is using them is to check
563   // RealToTemp.
564   DenseSet<Instruction *> AllTempInstructions;
565 
566   // This is the set of instructions to revisit on a reachability change.  At
567   // the end of the main iteration loop it will contain at least all the phi of
568   // ops instructions that will be changed to phis, as well as regular phis.
569   // During the iteration loop, it may contain other things, such as phi of ops
570   // instructions that used edge reachability to reach a result, and so need to
571   // be revisited when the edge changes, independent of whether the phi they
572   // depended on changes.
573   DenseMap<BasicBlock *, SparseBitVector<>> RevisitOnReachabilityChange;
574 
575   // Mapping from predicate info we used to the instructions we used it with.
576   // In order to correctly ensure propagation, we must keep track of what
577   // comparisons we used, so that when the values of the comparisons change, we
578   // propagate the information to the places we used the comparison.
579   mutable DenseMap<const Value *, SmallPtrSet<Instruction *, 2>>
580       PredicateToUsers;
581 
582   // the same reasoning as PredicateToUsers.  When we skip MemoryAccesses for
583   // stores, we no longer can rely solely on the def-use chains of MemorySSA.
584   mutable DenseMap<const MemoryAccess *, SmallPtrSet<MemoryAccess *, 2>>
585       MemoryToUsers;
586 
587   // A table storing which memorydefs/phis represent a memory state provably
588   // equivalent to another memory state.
589   // We could use the congruence class machinery, but the MemoryAccess's are
590   // abstract memory states, so they can only ever be equivalent to each other,
591   // and not to constants, etc.
592   DenseMap<const MemoryAccess *, CongruenceClass *> MemoryAccessToClass;
593 
594   // We could, if we wanted, build MemoryPhiExpressions and
595   // MemoryVariableExpressions, etc, and value number them the same way we value
596   // number phi expressions.  For the moment, this seems like overkill.  They
597   // can only exist in one of three states: they can be TOP (equal to
598   // everything), Equivalent to something else, or unique.  Because we do not
599   // create expressions for them, we need to simulate leader change not just
600   // when they change class, but when they change state.  Note: We can do the
601   // same thing for phis, and avoid having phi expressions if we wanted, We
602   // should eventually unify in one direction or the other, so this is a little
603   // bit of an experiment in which turns out easier to maintain.
604   enum MemoryPhiState { MPS_Invalid, MPS_TOP, MPS_Equivalent, MPS_Unique };
605   DenseMap<const MemoryPhi *, MemoryPhiState> MemoryPhiState;
606 
607   enum InstCycleState { ICS_Unknown, ICS_CycleFree, ICS_Cycle };
608   mutable DenseMap<const Instruction *, InstCycleState> InstCycleState;
609 
610   // Expression to class mapping.
611   using ExpressionClassMap = DenseMap<const Expression *, CongruenceClass *>;
612   ExpressionClassMap ExpressionToClass;
613 
614   // We have a single expression that represents currently DeadExpressions.
615   // For dead expressions we can prove will stay dead, we mark them with
616   // DFS number zero.  However, it's possible in the case of phi nodes
617   // for us to assume/prove all arguments are dead during fixpointing.
618   // We use DeadExpression for that case.
619   DeadExpression *SingletonDeadExpression = nullptr;
620 
621   // Which values have changed as a result of leader changes.
622   SmallPtrSet<Value *, 8> LeaderChanges;
623 
624   // Reachability info.
625   using BlockEdge = BasicBlockEdge;
626   DenseSet<BlockEdge> ReachableEdges;
627   SmallPtrSet<const BasicBlock *, 8> ReachableBlocks;
628 
629   // This is a bitvector because, on larger functions, we may have
630   // thousands of touched instructions at once (entire blocks,
631   // instructions with hundreds of uses, etc).  Even with optimization
632   // for when we mark whole blocks as touched, when this was a
633   // SmallPtrSet or DenseSet, for some functions, we spent >20% of all
634   // the time in GVN just managing this list.  The bitvector, on the
635   // other hand, efficiently supports test/set/clear of both
636   // individual and ranges, as well as "find next element" This
637   // enables us to use it as a worklist with essentially 0 cost.
638   BitVector TouchedInstructions;
639 
640   DenseMap<const BasicBlock *, std::pair<unsigned, unsigned>> BlockInstRange;
641 
642 #ifndef NDEBUG
643   // Debugging for how many times each block and instruction got processed.
644   DenseMap<const Value *, unsigned> ProcessedCount;
645 #endif
646 
647   // DFS info.
648   // This contains a mapping from Instructions to DFS numbers.
649   // The numbering starts at 1. An instruction with DFS number zero
650   // means that the instruction is dead.
651   DenseMap<const Value *, unsigned> InstrDFS;
652 
653   // This contains the mapping DFS numbers to instructions.
654   SmallVector<Value *, 32> DFSToInstr;
655 
656   // Deletion info.
657   SmallPtrSet<Instruction *, 8> InstructionsToErase;
658 
659 public:
660   NewGVN(Function &F, DominatorTree *DT, AssumptionCache *AC,
661          TargetLibraryInfo *TLI, AliasAnalysis *AA, MemorySSA *MSSA,
662          const DataLayout &DL)
663       : F(F), DT(DT), TLI(TLI), AA(AA), MSSA(MSSA), AC(AC), DL(DL),
664         PredInfo(std::make_unique<PredicateInfo>(F, *DT, *AC)),
665         SQ(DL, TLI, DT, AC, /*CtxI=*/nullptr, /*UseInstrInfo=*/false,
666            /*CanUseUndef=*/false) {}
667 
668   bool runGVN();
669 
670 private:
671   // Expression handling.
672   const Expression *createExpression(Instruction *) const;
673   const Expression *createBinaryExpression(unsigned, Type *, Value *, Value *,
674                                            Instruction *) const;
675 
676   // Our canonical form for phi arguments is a pair of incoming value, incoming
677   // basic block.
678   using ValPair = std::pair<Value *, BasicBlock *>;
679 
680   PHIExpression *createPHIExpression(ArrayRef<ValPair>, const Instruction *,
681                                      BasicBlock *, bool &HasBackEdge,
682                                      bool &OriginalOpsConstant) const;
683   const DeadExpression *createDeadExpression() const;
684   const VariableExpression *createVariableExpression(Value *) const;
685   const ConstantExpression *createConstantExpression(Constant *) const;
686   const Expression *createVariableOrConstant(Value *V) const;
687   const UnknownExpression *createUnknownExpression(Instruction *) const;
688   const StoreExpression *createStoreExpression(StoreInst *,
689                                                const MemoryAccess *) const;
690   LoadExpression *createLoadExpression(Type *, Value *, LoadInst *,
691                                        const MemoryAccess *) const;
692   const CallExpression *createCallExpression(CallInst *,
693                                              const MemoryAccess *) const;
694   const AggregateValueExpression *
695   createAggregateValueExpression(Instruction *) const;
696   bool setBasicExpressionInfo(Instruction *, BasicExpression *) const;
697 
698   // Congruence class handling.
699   CongruenceClass *createCongruenceClass(Value *Leader, const Expression *E) {
700     auto *result = new CongruenceClass(NextCongruenceNum++, Leader, E);
701     CongruenceClasses.emplace_back(result);
702     return result;
703   }
704 
705   CongruenceClass *createMemoryClass(MemoryAccess *MA) {
706     auto *CC = createCongruenceClass(nullptr, nullptr);
707     CC->setMemoryLeader(MA);
708     return CC;
709   }
710 
711   CongruenceClass *ensureLeaderOfMemoryClass(MemoryAccess *MA) {
712     auto *CC = getMemoryClass(MA);
713     if (CC->getMemoryLeader() != MA)
714       CC = createMemoryClass(MA);
715     return CC;
716   }
717 
718   CongruenceClass *createSingletonCongruenceClass(Value *Member) {
719     CongruenceClass *CClass = createCongruenceClass(Member, nullptr);
720     CClass->insert(Member);
721     ValueToClass[Member] = CClass;
722     return CClass;
723   }
724 
725   void initializeCongruenceClasses(Function &F);
726   const Expression *makePossiblePHIOfOps(Instruction *,
727                                          SmallPtrSetImpl<Value *> &);
728   Value *findLeaderForInst(Instruction *ValueOp,
729                            SmallPtrSetImpl<Value *> &Visited,
730                            MemoryAccess *MemAccess, Instruction *OrigInst,
731                            BasicBlock *PredBB);
732   bool OpIsSafeForPHIOfOpsHelper(Value *V, const BasicBlock *PHIBlock,
733                                  SmallPtrSetImpl<const Value *> &Visited,
734                                  SmallVectorImpl<Instruction *> &Worklist);
735   bool OpIsSafeForPHIOfOps(Value *Op, const BasicBlock *PHIBlock,
736                            SmallPtrSetImpl<const Value *> &);
737   void addPhiOfOps(PHINode *Op, BasicBlock *BB, Instruction *ExistingValue);
738   void removePhiOfOps(Instruction *I, PHINode *PHITemp);
739 
740   // Value number an Instruction or MemoryPhi.
741   void valueNumberMemoryPhi(MemoryPhi *);
742   void valueNumberInstruction(Instruction *);
743 
744   // Symbolic evaluation.
745   const Expression *checkSimplificationResults(Expression *, Instruction *,
746                                                Value *) const;
747   const Expression *performSymbolicEvaluation(Value *,
748                                               SmallPtrSetImpl<Value *> &) const;
749   const Expression *performSymbolicLoadCoercion(Type *, Value *, LoadInst *,
750                                                 Instruction *,
751                                                 MemoryAccess *) const;
752   const Expression *performSymbolicLoadEvaluation(Instruction *) const;
753   const Expression *performSymbolicStoreEvaluation(Instruction *) const;
754   const Expression *performSymbolicCallEvaluation(Instruction *) const;
755   void sortPHIOps(MutableArrayRef<ValPair> Ops) const;
756   const Expression *performSymbolicPHIEvaluation(ArrayRef<ValPair>,
757                                                  Instruction *I,
758                                                  BasicBlock *PHIBlock) const;
759   const Expression *performSymbolicAggrValueEvaluation(Instruction *) const;
760   const Expression *performSymbolicCmpEvaluation(Instruction *) const;
761   const Expression *performSymbolicPredicateInfoEvaluation(Instruction *) const;
762 
763   // Congruence finding.
764   bool someEquivalentDominates(const Instruction *, const Instruction *) const;
765   Value *lookupOperandLeader(Value *) const;
766   CongruenceClass *getClassForExpression(const Expression *E) const;
767   void performCongruenceFinding(Instruction *, const Expression *);
768   void moveValueToNewCongruenceClass(Instruction *, const Expression *,
769                                      CongruenceClass *, CongruenceClass *);
770   void moveMemoryToNewCongruenceClass(Instruction *, MemoryAccess *,
771                                       CongruenceClass *, CongruenceClass *);
772   Value *getNextValueLeader(CongruenceClass *) const;
773   const MemoryAccess *getNextMemoryLeader(CongruenceClass *) const;
774   bool setMemoryClass(const MemoryAccess *From, CongruenceClass *To);
775   CongruenceClass *getMemoryClass(const MemoryAccess *MA) const;
776   const MemoryAccess *lookupMemoryLeader(const MemoryAccess *) const;
777   bool isMemoryAccessTOP(const MemoryAccess *) const;
778 
779   // Ranking
780   unsigned int getRank(const Value *) const;
781   bool shouldSwapOperands(const Value *, const Value *) const;
782 
783   // Reachability handling.
784   void updateReachableEdge(BasicBlock *, BasicBlock *);
785   void processOutgoingEdges(Instruction *, BasicBlock *);
786   Value *findConditionEquivalence(Value *) const;
787 
788   // Elimination.
789   struct ValueDFS;
790   void convertClassToDFSOrdered(const CongruenceClass &,
791                                 SmallVectorImpl<ValueDFS> &,
792                                 DenseMap<const Value *, unsigned int> &,
793                                 SmallPtrSetImpl<Instruction *> &) const;
794   void convertClassToLoadsAndStores(const CongruenceClass &,
795                                     SmallVectorImpl<ValueDFS> &) const;
796 
797   bool eliminateInstructions(Function &);
798   void replaceInstruction(Instruction *, Value *);
799   void markInstructionForDeletion(Instruction *);
800   void deleteInstructionsInBlock(BasicBlock *);
801   Value *findPHIOfOpsLeader(const Expression *, const Instruction *,
802                             const BasicBlock *) const;
803 
804   // Various instruction touch utilities
805   template <typename Map, typename KeyType, typename Func>
806   void for_each_found(Map &, const KeyType &, Func);
807   template <typename Map, typename KeyType>
808   void touchAndErase(Map &, const KeyType &);
809   void markUsersTouched(Value *);
810   void markMemoryUsersTouched(const MemoryAccess *);
811   void markMemoryDefTouched(const MemoryAccess *);
812   void markPredicateUsersTouched(Instruction *);
813   void markValueLeaderChangeTouched(CongruenceClass *CC);
814   void markMemoryLeaderChangeTouched(CongruenceClass *CC);
815   void markPhiOfOpsChanged(const Expression *E);
816   void addPredicateUsers(const PredicateBase *, Instruction *) const;
817   void addMemoryUsers(const MemoryAccess *To, MemoryAccess *U) const;
818   void addAdditionalUsers(Value *To, Value *User) const;
819 
820   // Main loop of value numbering
821   void iterateTouchedInstructions();
822 
823   // Utilities.
824   void cleanupTables();
825   std::pair<unsigned, unsigned> assignDFSNumbers(BasicBlock *, unsigned);
826   void updateProcessedCount(const Value *V);
827   void verifyMemoryCongruency() const;
828   void verifyIterationSettled(Function &F);
829   void verifyStoreExpressions() const;
830   bool singleReachablePHIPath(SmallPtrSet<const MemoryAccess *, 8> &,
831                               const MemoryAccess *, const MemoryAccess *) const;
832   BasicBlock *getBlockForValue(Value *V) const;
833   void deleteExpression(const Expression *E) const;
834   MemoryUseOrDef *getMemoryAccess(const Instruction *) const;
835   MemoryPhi *getMemoryAccess(const BasicBlock *) const;
836   template <class T, class Range> T *getMinDFSOfRange(const Range &) const;
837 
838   unsigned InstrToDFSNum(const Value *V) const {
839     assert(isa<Instruction>(V) && "This should not be used for MemoryAccesses");
840     return InstrDFS.lookup(V);
841   }
842 
843   unsigned InstrToDFSNum(const MemoryAccess *MA) const {
844     return MemoryToDFSNum(MA);
845   }
846 
847   Value *InstrFromDFSNum(unsigned DFSNum) { return DFSToInstr[DFSNum]; }
848 
849   // Given a MemoryAccess, return the relevant instruction DFS number.  Note:
850   // This deliberately takes a value so it can be used with Use's, which will
851   // auto-convert to Value's but not to MemoryAccess's.
852   unsigned MemoryToDFSNum(const Value *MA) const {
853     assert(isa<MemoryAccess>(MA) &&
854            "This should not be used with instructions");
855     return isa<MemoryUseOrDef>(MA)
856                ? InstrToDFSNum(cast<MemoryUseOrDef>(MA)->getMemoryInst())
857                : InstrDFS.lookup(MA);
858   }
859 
860   bool isCycleFree(const Instruction *) const;
861   bool isBackedge(BasicBlock *From, BasicBlock *To) const;
862 
863   // Debug counter info.  When verifying, we have to reset the value numbering
864   // debug counter to the same state it started in to get the same results.
865   int64_t StartingVNCounter = 0;
866 };
867 
868 } // end anonymous namespace
869 
870 template <typename T>
871 static bool equalsLoadStoreHelper(const T &LHS, const Expression &RHS) {
872   if (!isa<LoadExpression>(RHS) && !isa<StoreExpression>(RHS))
873     return false;
874   return LHS.MemoryExpression::equals(RHS);
875 }
876 
877 bool LoadExpression::equals(const Expression &Other) const {
878   return equalsLoadStoreHelper(*this, Other);
879 }
880 
881 bool StoreExpression::equals(const Expression &Other) const {
882   if (!equalsLoadStoreHelper(*this, Other))
883     return false;
884   // Make sure that store vs store includes the value operand.
885   if (const auto *S = dyn_cast<StoreExpression>(&Other))
886     if (getStoredValue() != S->getStoredValue())
887       return false;
888   return true;
889 }
890 
891 // Determine if the edge From->To is a backedge
892 bool NewGVN::isBackedge(BasicBlock *From, BasicBlock *To) const {
893   return From == To ||
894          RPOOrdering.lookup(DT->getNode(From)) >=
895              RPOOrdering.lookup(DT->getNode(To));
896 }
897 
898 #ifndef NDEBUG
899 static std::string getBlockName(const BasicBlock *B) {
900   return DOTGraphTraits<DOTFuncInfo *>::getSimpleNodeLabel(B, nullptr);
901 }
902 #endif
903 
904 // Get a MemoryAccess for an instruction, fake or real.
905 MemoryUseOrDef *NewGVN::getMemoryAccess(const Instruction *I) const {
906   auto *Result = MSSA->getMemoryAccess(I);
907   return Result ? Result : TempToMemory.lookup(I);
908 }
909 
910 // Get a MemoryPhi for a basic block. These are all real.
911 MemoryPhi *NewGVN::getMemoryAccess(const BasicBlock *BB) const {
912   return MSSA->getMemoryAccess(BB);
913 }
914 
915 // Get the basic block from an instruction/memory value.
916 BasicBlock *NewGVN::getBlockForValue(Value *V) const {
917   if (auto *I = dyn_cast<Instruction>(V)) {
918     auto *Parent = I->getParent();
919     if (Parent)
920       return Parent;
921     Parent = TempToBlock.lookup(V);
922     assert(Parent && "Every fake instruction should have a block");
923     return Parent;
924   }
925 
926   auto *MP = dyn_cast<MemoryPhi>(V);
927   assert(MP && "Should have been an instruction or a MemoryPhi");
928   return MP->getBlock();
929 }
930 
931 // Delete a definitely dead expression, so it can be reused by the expression
932 // allocator.  Some of these are not in creation functions, so we have to accept
933 // const versions.
934 void NewGVN::deleteExpression(const Expression *E) const {
935   assert(isa<BasicExpression>(E));
936   auto *BE = cast<BasicExpression>(E);
937   const_cast<BasicExpression *>(BE)->deallocateOperands(ArgRecycler);
938   ExpressionAllocator.Deallocate(E);
939 }
940 
941 // If V is a predicateinfo copy, get the thing it is a copy of.
942 static Value *getCopyOf(const Value *V) {
943   if (auto *II = dyn_cast<IntrinsicInst>(V))
944     if (II->getIntrinsicID() == Intrinsic::ssa_copy)
945       return II->getOperand(0);
946   return nullptr;
947 }
948 
949 // Return true if V is really PN, even accounting for predicateinfo copies.
950 static bool isCopyOfPHI(const Value *V, const PHINode *PN) {
951   return V == PN || getCopyOf(V) == PN;
952 }
953 
954 static bool isCopyOfAPHI(const Value *V) {
955   auto *CO = getCopyOf(V);
956   return CO && isa<PHINode>(CO);
957 }
958 
959 // Sort PHI Operands into a canonical order.  What we use here is an RPO
960 // order. The BlockInstRange numbers are generated in an RPO walk of the basic
961 // blocks.
962 void NewGVN::sortPHIOps(MutableArrayRef<ValPair> Ops) const {
963   llvm::sort(Ops, [&](const ValPair &P1, const ValPair &P2) {
964     return BlockInstRange.lookup(P1.second).first <
965            BlockInstRange.lookup(P2.second).first;
966   });
967 }
968 
969 // Return true if V is a value that will always be available (IE can
970 // be placed anywhere) in the function.  We don't do globals here
971 // because they are often worse to put in place.
972 static bool alwaysAvailable(Value *V) {
973   return isa<Constant>(V) || isa<Argument>(V);
974 }
975 
976 // Create a PHIExpression from an array of {incoming edge, value} pairs.  I is
977 // the original instruction we are creating a PHIExpression for (but may not be
978 // a phi node). We require, as an invariant, that all the PHIOperands in the
979 // same block are sorted the same way. sortPHIOps will sort them into a
980 // canonical order.
981 PHIExpression *NewGVN::createPHIExpression(ArrayRef<ValPair> PHIOperands,
982                                            const Instruction *I,
983                                            BasicBlock *PHIBlock,
984                                            bool &HasBackedge,
985                                            bool &OriginalOpsConstant) const {
986   unsigned NumOps = PHIOperands.size();
987   auto *E = new (ExpressionAllocator) PHIExpression(NumOps, PHIBlock);
988 
989   E->allocateOperands(ArgRecycler, ExpressionAllocator);
990   E->setType(PHIOperands.begin()->first->getType());
991   E->setOpcode(Instruction::PHI);
992 
993   // Filter out unreachable phi operands.
994   auto Filtered = make_filter_range(PHIOperands, [&](const ValPair &P) {
995     auto *BB = P.second;
996     if (auto *PHIOp = dyn_cast<PHINode>(I))
997       if (isCopyOfPHI(P.first, PHIOp))
998         return false;
999     if (!ReachableEdges.count({BB, PHIBlock}))
1000       return false;
1001     // Things in TOPClass are equivalent to everything.
1002     if (ValueToClass.lookup(P.first) == TOPClass)
1003       return false;
1004     OriginalOpsConstant = OriginalOpsConstant && isa<Constant>(P.first);
1005     HasBackedge = HasBackedge || isBackedge(BB, PHIBlock);
1006     return lookupOperandLeader(P.first) != I;
1007   });
1008   std::transform(Filtered.begin(), Filtered.end(), op_inserter(E),
1009                  [&](const ValPair &P) -> Value * {
1010                    return lookupOperandLeader(P.first);
1011                  });
1012   return E;
1013 }
1014 
1015 // Set basic expression info (Arguments, type, opcode) for Expression
1016 // E from Instruction I in block B.
1017 bool NewGVN::setBasicExpressionInfo(Instruction *I, BasicExpression *E) const {
1018   bool AllConstant = true;
1019   if (auto *GEP = dyn_cast<GetElementPtrInst>(I))
1020     E->setType(GEP->getSourceElementType());
1021   else
1022     E->setType(I->getType());
1023   E->setOpcode(I->getOpcode());
1024   E->allocateOperands(ArgRecycler, ExpressionAllocator);
1025 
1026   // Transform the operand array into an operand leader array, and keep track of
1027   // whether all members are constant.
1028   std::transform(I->op_begin(), I->op_end(), op_inserter(E), [&](Value *O) {
1029     auto Operand = lookupOperandLeader(O);
1030     AllConstant = AllConstant && isa<Constant>(Operand);
1031     return Operand;
1032   });
1033 
1034   return AllConstant;
1035 }
1036 
1037 const Expression *NewGVN::createBinaryExpression(unsigned Opcode, Type *T,
1038                                                  Value *Arg1, Value *Arg2,
1039                                                  Instruction *I) const {
1040   auto *E = new (ExpressionAllocator) BasicExpression(2);
1041 
1042   E->setType(T);
1043   E->setOpcode(Opcode);
1044   E->allocateOperands(ArgRecycler, ExpressionAllocator);
1045   if (Instruction::isCommutative(Opcode)) {
1046     // Ensure that commutative instructions that only differ by a permutation
1047     // of their operands get the same value number by sorting the operand value
1048     // numbers.  Since all commutative instructions have two operands it is more
1049     // efficient to sort by hand rather than using, say, std::sort.
1050     if (shouldSwapOperands(Arg1, Arg2))
1051       std::swap(Arg1, Arg2);
1052   }
1053   E->op_push_back(lookupOperandLeader(Arg1));
1054   E->op_push_back(lookupOperandLeader(Arg2));
1055 
1056   Value *V = SimplifyBinOp(Opcode, E->getOperand(0), E->getOperand(1), SQ);
1057   if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1058     return SimplifiedE;
1059   return E;
1060 }
1061 
1062 // Take a Value returned by simplification of Expression E/Instruction
1063 // I, and see if it resulted in a simpler expression. If so, return
1064 // that expression.
1065 const Expression *NewGVN::checkSimplificationResults(Expression *E,
1066                                                      Instruction *I,
1067                                                      Value *V) const {
1068   if (!V)
1069     return nullptr;
1070   if (auto *C = dyn_cast<Constant>(V)) {
1071     if (I)
1072       LLVM_DEBUG(dbgs() << "Simplified " << *I << " to "
1073                         << " constant " << *C << "\n");
1074     NumGVNOpsSimplified++;
1075     assert(isa<BasicExpression>(E) &&
1076            "We should always have had a basic expression here");
1077     deleteExpression(E);
1078     return createConstantExpression(C);
1079   } else if (isa<Argument>(V) || isa<GlobalVariable>(V)) {
1080     if (I)
1081       LLVM_DEBUG(dbgs() << "Simplified " << *I << " to "
1082                         << " variable " << *V << "\n");
1083     deleteExpression(E);
1084     return createVariableExpression(V);
1085   }
1086 
1087   CongruenceClass *CC = ValueToClass.lookup(V);
1088   if (CC) {
1089     if (CC->getLeader() && CC->getLeader() != I) {
1090       // If we simplified to something else, we need to communicate
1091       // that we're users of the value we simplified to.
1092       if (I != V) {
1093         // Don't add temporary instructions to the user lists.
1094         if (!AllTempInstructions.count(I))
1095           addAdditionalUsers(V, I);
1096       }
1097       return createVariableOrConstant(CC->getLeader());
1098     }
1099     if (CC->getDefiningExpr()) {
1100       // If we simplified to something else, we need to communicate
1101       // that we're users of the value we simplified to.
1102       if (I != V) {
1103         // Don't add temporary instructions to the user lists.
1104         if (!AllTempInstructions.count(I))
1105           addAdditionalUsers(V, I);
1106       }
1107 
1108       if (I)
1109         LLVM_DEBUG(dbgs() << "Simplified " << *I << " to "
1110                           << " expression " << *CC->getDefiningExpr() << "\n");
1111       NumGVNOpsSimplified++;
1112       deleteExpression(E);
1113       return CC->getDefiningExpr();
1114     }
1115   }
1116 
1117   return nullptr;
1118 }
1119 
1120 // Create a value expression from the instruction I, replacing operands with
1121 // their leaders.
1122 
1123 const Expression *NewGVN::createExpression(Instruction *I) const {
1124   auto *E = new (ExpressionAllocator) BasicExpression(I->getNumOperands());
1125 
1126   bool AllConstant = setBasicExpressionInfo(I, E);
1127 
1128   if (I->isCommutative()) {
1129     // Ensure that commutative instructions that only differ by a permutation
1130     // of their operands get the same value number by sorting the operand value
1131     // numbers.  Since all commutative instructions have two operands it is more
1132     // efficient to sort by hand rather than using, say, std::sort.
1133     assert(I->getNumOperands() == 2 && "Unsupported commutative instruction!");
1134     if (shouldSwapOperands(E->getOperand(0), E->getOperand(1)))
1135       E->swapOperands(0, 1);
1136   }
1137   // Perform simplification.
1138   if (auto *CI = dyn_cast<CmpInst>(I)) {
1139     // Sort the operand value numbers so x<y and y>x get the same value
1140     // number.
1141     CmpInst::Predicate Predicate = CI->getPredicate();
1142     if (shouldSwapOperands(E->getOperand(0), E->getOperand(1))) {
1143       E->swapOperands(0, 1);
1144       Predicate = CmpInst::getSwappedPredicate(Predicate);
1145     }
1146     E->setOpcode((CI->getOpcode() << 8) | Predicate);
1147     // TODO: 25% of our time is spent in SimplifyCmpInst with pointer operands
1148     assert(I->getOperand(0)->getType() == I->getOperand(1)->getType() &&
1149            "Wrong types on cmp instruction");
1150     assert((E->getOperand(0)->getType() == I->getOperand(0)->getType() &&
1151             E->getOperand(1)->getType() == I->getOperand(1)->getType()));
1152     Value *V =
1153         SimplifyCmpInst(Predicate, E->getOperand(0), E->getOperand(1), SQ);
1154     if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1155       return SimplifiedE;
1156   } else if (isa<SelectInst>(I)) {
1157     if (isa<Constant>(E->getOperand(0)) ||
1158         E->getOperand(1) == E->getOperand(2)) {
1159       assert(E->getOperand(1)->getType() == I->getOperand(1)->getType() &&
1160              E->getOperand(2)->getType() == I->getOperand(2)->getType());
1161       Value *V = SimplifySelectInst(E->getOperand(0), E->getOperand(1),
1162                                     E->getOperand(2), SQ);
1163       if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1164         return SimplifiedE;
1165     }
1166   } else if (I->isBinaryOp()) {
1167     Value *V =
1168         SimplifyBinOp(E->getOpcode(), E->getOperand(0), E->getOperand(1), SQ);
1169     if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1170       return SimplifiedE;
1171   } else if (auto *CI = dyn_cast<CastInst>(I)) {
1172     Value *V =
1173         SimplifyCastInst(CI->getOpcode(), E->getOperand(0), CI->getType(), SQ);
1174     if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1175       return SimplifiedE;
1176   } else if (isa<GetElementPtrInst>(I)) {
1177     Value *V = SimplifyGEPInst(
1178         E->getType(), ArrayRef<Value *>(E->op_begin(), E->op_end()), SQ);
1179     if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1180       return SimplifiedE;
1181   } else if (AllConstant) {
1182     // We don't bother trying to simplify unless all of the operands
1183     // were constant.
1184     // TODO: There are a lot of Simplify*'s we could call here, if we
1185     // wanted to.  The original motivating case for this code was a
1186     // zext i1 false to i8, which we don't have an interface to
1187     // simplify (IE there is no SimplifyZExt).
1188 
1189     SmallVector<Constant *, 8> C;
1190     for (Value *Arg : E->operands())
1191       C.emplace_back(cast<Constant>(Arg));
1192 
1193     if (Value *V = ConstantFoldInstOperands(I, C, DL, TLI))
1194       if (const Expression *SimplifiedE = checkSimplificationResults(E, I, V))
1195         return SimplifiedE;
1196   }
1197   return E;
1198 }
1199 
1200 const AggregateValueExpression *
1201 NewGVN::createAggregateValueExpression(Instruction *I) const {
1202   if (auto *II = dyn_cast<InsertValueInst>(I)) {
1203     auto *E = new (ExpressionAllocator)
1204         AggregateValueExpression(I->getNumOperands(), II->getNumIndices());
1205     setBasicExpressionInfo(I, E);
1206     E->allocateIntOperands(ExpressionAllocator);
1207     std::copy(II->idx_begin(), II->idx_end(), int_op_inserter(E));
1208     return E;
1209   } else if (auto *EI = dyn_cast<ExtractValueInst>(I)) {
1210     auto *E = new (ExpressionAllocator)
1211         AggregateValueExpression(I->getNumOperands(), EI->getNumIndices());
1212     setBasicExpressionInfo(EI, E);
1213     E->allocateIntOperands(ExpressionAllocator);
1214     std::copy(EI->idx_begin(), EI->idx_end(), int_op_inserter(E));
1215     return E;
1216   }
1217   llvm_unreachable("Unhandled type of aggregate value operation");
1218 }
1219 
1220 const DeadExpression *NewGVN::createDeadExpression() const {
1221   // DeadExpression has no arguments and all DeadExpression's are the same,
1222   // so we only need one of them.
1223   return SingletonDeadExpression;
1224 }
1225 
1226 const VariableExpression *NewGVN::createVariableExpression(Value *V) const {
1227   auto *E = new (ExpressionAllocator) VariableExpression(V);
1228   E->setOpcode(V->getValueID());
1229   return E;
1230 }
1231 
1232 const Expression *NewGVN::createVariableOrConstant(Value *V) const {
1233   if (auto *C = dyn_cast<Constant>(V))
1234     return createConstantExpression(C);
1235   return createVariableExpression(V);
1236 }
1237 
1238 const ConstantExpression *NewGVN::createConstantExpression(Constant *C) const {
1239   auto *E = new (ExpressionAllocator) ConstantExpression(C);
1240   E->setOpcode(C->getValueID());
1241   return E;
1242 }
1243 
1244 const UnknownExpression *NewGVN::createUnknownExpression(Instruction *I) const {
1245   auto *E = new (ExpressionAllocator) UnknownExpression(I);
1246   E->setOpcode(I->getOpcode());
1247   return E;
1248 }
1249 
1250 const CallExpression *
1251 NewGVN::createCallExpression(CallInst *CI, const MemoryAccess *MA) const {
1252   // FIXME: Add operand bundles for calls.
1253   // FIXME: Allow commutative matching for intrinsics.
1254   auto *E =
1255       new (ExpressionAllocator) CallExpression(CI->getNumOperands(), CI, MA);
1256   setBasicExpressionInfo(CI, E);
1257   return E;
1258 }
1259 
1260 // Return true if some equivalent of instruction Inst dominates instruction U.
1261 bool NewGVN::someEquivalentDominates(const Instruction *Inst,
1262                                      const Instruction *U) const {
1263   auto *CC = ValueToClass.lookup(Inst);
1264    // This must be an instruction because we are only called from phi nodes
1265   // in the case that the value it needs to check against is an instruction.
1266 
1267   // The most likely candidates for dominance are the leader and the next leader.
1268   // The leader or nextleader will dominate in all cases where there is an
1269   // equivalent that is higher up in the dom tree.
1270   // We can't *only* check them, however, because the
1271   // dominator tree could have an infinite number of non-dominating siblings
1272   // with instructions that are in the right congruence class.
1273   //       A
1274   // B C D E F G
1275   // |
1276   // H
1277   // Instruction U could be in H,  with equivalents in every other sibling.
1278   // Depending on the rpo order picked, the leader could be the equivalent in
1279   // any of these siblings.
1280   if (!CC)
1281     return false;
1282   if (alwaysAvailable(CC->getLeader()))
1283     return true;
1284   if (DT->dominates(cast<Instruction>(CC->getLeader()), U))
1285     return true;
1286   if (CC->getNextLeader().first &&
1287       DT->dominates(cast<Instruction>(CC->getNextLeader().first), U))
1288     return true;
1289   return llvm::any_of(*CC, [&](const Value *Member) {
1290     return Member != CC->getLeader() &&
1291            DT->dominates(cast<Instruction>(Member), U);
1292   });
1293 }
1294 
1295 // See if we have a congruence class and leader for this operand, and if so,
1296 // return it. Otherwise, return the operand itself.
1297 Value *NewGVN::lookupOperandLeader(Value *V) const {
1298   CongruenceClass *CC = ValueToClass.lookup(V);
1299   if (CC) {
1300     // Everything in TOP is represented by undef, as it can be any value.
1301     // We do have to make sure we get the type right though, so we can't set the
1302     // RepLeader to undef.
1303     if (CC == TOPClass)
1304       return UndefValue::get(V->getType());
1305     return CC->getStoredValue() ? CC->getStoredValue() : CC->getLeader();
1306   }
1307 
1308   return V;
1309 }
1310 
1311 const MemoryAccess *NewGVN::lookupMemoryLeader(const MemoryAccess *MA) const {
1312   auto *CC = getMemoryClass(MA);
1313   assert(CC->getMemoryLeader() &&
1314          "Every MemoryAccess should be mapped to a congruence class with a "
1315          "representative memory access");
1316   return CC->getMemoryLeader();
1317 }
1318 
1319 // Return true if the MemoryAccess is really equivalent to everything. This is
1320 // equivalent to the lattice value "TOP" in most lattices.  This is the initial
1321 // state of all MemoryAccesses.
1322 bool NewGVN::isMemoryAccessTOP(const MemoryAccess *MA) const {
1323   return getMemoryClass(MA) == TOPClass;
1324 }
1325 
1326 LoadExpression *NewGVN::createLoadExpression(Type *LoadType, Value *PointerOp,
1327                                              LoadInst *LI,
1328                                              const MemoryAccess *MA) const {
1329   auto *E =
1330       new (ExpressionAllocator) LoadExpression(1, LI, lookupMemoryLeader(MA));
1331   E->allocateOperands(ArgRecycler, ExpressionAllocator);
1332   E->setType(LoadType);
1333 
1334   // Give store and loads same opcode so they value number together.
1335   E->setOpcode(0);
1336   E->op_push_back(PointerOp);
1337 
1338   // TODO: Value number heap versions. We may be able to discover
1339   // things alias analysis can't on it's own (IE that a store and a
1340   // load have the same value, and thus, it isn't clobbering the load).
1341   return E;
1342 }
1343 
1344 const StoreExpression *
1345 NewGVN::createStoreExpression(StoreInst *SI, const MemoryAccess *MA) const {
1346   auto *StoredValueLeader = lookupOperandLeader(SI->getValueOperand());
1347   auto *E = new (ExpressionAllocator)
1348       StoreExpression(SI->getNumOperands(), SI, StoredValueLeader, MA);
1349   E->allocateOperands(ArgRecycler, ExpressionAllocator);
1350   E->setType(SI->getValueOperand()->getType());
1351 
1352   // Give store and loads same opcode so they value number together.
1353   E->setOpcode(0);
1354   E->op_push_back(lookupOperandLeader(SI->getPointerOperand()));
1355 
1356   // TODO: Value number heap versions. We may be able to discover
1357   // things alias analysis can't on it's own (IE that a store and a
1358   // load have the same value, and thus, it isn't clobbering the load).
1359   return E;
1360 }
1361 
1362 const Expression *NewGVN::performSymbolicStoreEvaluation(Instruction *I) const {
1363   // Unlike loads, we never try to eliminate stores, so we do not check if they
1364   // are simple and avoid value numbering them.
1365   auto *SI = cast<StoreInst>(I);
1366   auto *StoreAccess = getMemoryAccess(SI);
1367   // Get the expression, if any, for the RHS of the MemoryDef.
1368   const MemoryAccess *StoreRHS = StoreAccess->getDefiningAccess();
1369   if (EnableStoreRefinement)
1370     StoreRHS = MSSAWalker->getClobberingMemoryAccess(StoreAccess);
1371   // If we bypassed the use-def chains, make sure we add a use.
1372   StoreRHS = lookupMemoryLeader(StoreRHS);
1373   if (StoreRHS != StoreAccess->getDefiningAccess())
1374     addMemoryUsers(StoreRHS, StoreAccess);
1375   // If we are defined by ourselves, use the live on entry def.
1376   if (StoreRHS == StoreAccess)
1377     StoreRHS = MSSA->getLiveOnEntryDef();
1378 
1379   if (SI->isSimple()) {
1380     // See if we are defined by a previous store expression, it already has a
1381     // value, and it's the same value as our current store. FIXME: Right now, we
1382     // only do this for simple stores, we should expand to cover memcpys, etc.
1383     const auto *LastStore = createStoreExpression(SI, StoreRHS);
1384     const auto *LastCC = ExpressionToClass.lookup(LastStore);
1385     // We really want to check whether the expression we matched was a store. No
1386     // easy way to do that. However, we can check that the class we found has a
1387     // store, which, assuming the value numbering state is not corrupt, is
1388     // sufficient, because we must also be equivalent to that store's expression
1389     // for it to be in the same class as the load.
1390     if (LastCC && LastCC->getStoredValue() == LastStore->getStoredValue())
1391       return LastStore;
1392     // Also check if our value operand is defined by a load of the same memory
1393     // location, and the memory state is the same as it was then (otherwise, it
1394     // could have been overwritten later. See test32 in
1395     // transforms/DeadStoreElimination/simple.ll).
1396     if (auto *LI = dyn_cast<LoadInst>(LastStore->getStoredValue()))
1397       if ((lookupOperandLeader(LI->getPointerOperand()) ==
1398            LastStore->getOperand(0)) &&
1399           (lookupMemoryLeader(getMemoryAccess(LI)->getDefiningAccess()) ==
1400            StoreRHS))
1401         return LastStore;
1402     deleteExpression(LastStore);
1403   }
1404 
1405   // If the store is not equivalent to anything, value number it as a store that
1406   // produces a unique memory state (instead of using it's MemoryUse, we use
1407   // it's MemoryDef).
1408   return createStoreExpression(SI, StoreAccess);
1409 }
1410 
1411 // See if we can extract the value of a loaded pointer from a load, a store, or
1412 // a memory instruction.
1413 const Expression *
1414 NewGVN::performSymbolicLoadCoercion(Type *LoadType, Value *LoadPtr,
1415                                     LoadInst *LI, Instruction *DepInst,
1416                                     MemoryAccess *DefiningAccess) const {
1417   assert((!LI || LI->isSimple()) && "Not a simple load");
1418   if (auto *DepSI = dyn_cast<StoreInst>(DepInst)) {
1419     // Can't forward from non-atomic to atomic without violating memory model.
1420     // Also don't need to coerce if they are the same type, we will just
1421     // propagate.
1422     if (LI->isAtomic() > DepSI->isAtomic() ||
1423         LoadType == DepSI->getValueOperand()->getType())
1424       return nullptr;
1425     int Offset = analyzeLoadFromClobberingStore(LoadType, LoadPtr, DepSI, DL);
1426     if (Offset >= 0) {
1427       if (auto *C = dyn_cast<Constant>(
1428               lookupOperandLeader(DepSI->getValueOperand()))) {
1429         LLVM_DEBUG(dbgs() << "Coercing load from store " << *DepSI
1430                           << " to constant " << *C << "\n");
1431         return createConstantExpression(
1432             getConstantStoreValueForLoad(C, Offset, LoadType, DL));
1433       }
1434     }
1435   } else if (auto *DepLI = dyn_cast<LoadInst>(DepInst)) {
1436     // Can't forward from non-atomic to atomic without violating memory model.
1437     if (LI->isAtomic() > DepLI->isAtomic())
1438       return nullptr;
1439     int Offset = analyzeLoadFromClobberingLoad(LoadType, LoadPtr, DepLI, DL);
1440     if (Offset >= 0) {
1441       // We can coerce a constant load into a load.
1442       if (auto *C = dyn_cast<Constant>(lookupOperandLeader(DepLI)))
1443         if (auto *PossibleConstant =
1444                 getConstantLoadValueForLoad(C, Offset, LoadType, DL)) {
1445           LLVM_DEBUG(dbgs() << "Coercing load from load " << *LI
1446                             << " to constant " << *PossibleConstant << "\n");
1447           return createConstantExpression(PossibleConstant);
1448         }
1449     }
1450   } else if (auto *DepMI = dyn_cast<MemIntrinsic>(DepInst)) {
1451     int Offset = analyzeLoadFromClobberingMemInst(LoadType, LoadPtr, DepMI, DL);
1452     if (Offset >= 0) {
1453       if (auto *PossibleConstant =
1454               getConstantMemInstValueForLoad(DepMI, Offset, LoadType, DL)) {
1455         LLVM_DEBUG(dbgs() << "Coercing load from meminst " << *DepMI
1456                           << " to constant " << *PossibleConstant << "\n");
1457         return createConstantExpression(PossibleConstant);
1458       }
1459     }
1460   }
1461 
1462   // All of the below are only true if the loaded pointer is produced
1463   // by the dependent instruction.
1464   if (LoadPtr != lookupOperandLeader(DepInst) &&
1465       !AA->isMustAlias(LoadPtr, DepInst))
1466     return nullptr;
1467   // If this load really doesn't depend on anything, then we must be loading an
1468   // undef value.  This can happen when loading for a fresh allocation with no
1469   // intervening stores, for example.  Note that this is only true in the case
1470   // that the result of the allocation is pointer equal to the load ptr.
1471   if (isa<AllocaInst>(DepInst) || isMallocLikeFn(DepInst, TLI) ||
1472       isAlignedAllocLikeFn(DepInst, TLI)) {
1473     return createConstantExpression(UndefValue::get(LoadType));
1474   }
1475   // If this load occurs either right after a lifetime begin,
1476   // then the loaded value is undefined.
1477   else if (auto *II = dyn_cast<IntrinsicInst>(DepInst)) {
1478     if (II->getIntrinsicID() == Intrinsic::lifetime_start)
1479       return createConstantExpression(UndefValue::get(LoadType));
1480   }
1481   // If this load follows a calloc (which zero initializes memory),
1482   // then the loaded value is zero
1483   else if (isCallocLikeFn(DepInst, TLI)) {
1484     return createConstantExpression(Constant::getNullValue(LoadType));
1485   }
1486 
1487   return nullptr;
1488 }
1489 
1490 const Expression *NewGVN::performSymbolicLoadEvaluation(Instruction *I) const {
1491   auto *LI = cast<LoadInst>(I);
1492 
1493   // We can eliminate in favor of non-simple loads, but we won't be able to
1494   // eliminate the loads themselves.
1495   if (!LI->isSimple())
1496     return nullptr;
1497 
1498   Value *LoadAddressLeader = lookupOperandLeader(LI->getPointerOperand());
1499   // Load of undef is undef.
1500   if (isa<UndefValue>(LoadAddressLeader))
1501     return createConstantExpression(UndefValue::get(LI->getType()));
1502   MemoryAccess *OriginalAccess = getMemoryAccess(I);
1503   MemoryAccess *DefiningAccess =
1504       MSSAWalker->getClobberingMemoryAccess(OriginalAccess);
1505 
1506   if (!MSSA->isLiveOnEntryDef(DefiningAccess)) {
1507     if (auto *MD = dyn_cast<MemoryDef>(DefiningAccess)) {
1508       Instruction *DefiningInst = MD->getMemoryInst();
1509       // If the defining instruction is not reachable, replace with undef.
1510       if (!ReachableBlocks.count(DefiningInst->getParent()))
1511         return createConstantExpression(UndefValue::get(LI->getType()));
1512       // This will handle stores and memory insts.  We only do if it the
1513       // defining access has a different type, or it is a pointer produced by
1514       // certain memory operations that cause the memory to have a fixed value
1515       // (IE things like calloc).
1516       if (const auto *CoercionResult =
1517               performSymbolicLoadCoercion(LI->getType(), LoadAddressLeader, LI,
1518                                           DefiningInst, DefiningAccess))
1519         return CoercionResult;
1520     }
1521   }
1522 
1523   const auto *LE = createLoadExpression(LI->getType(), LoadAddressLeader, LI,
1524                                         DefiningAccess);
1525   // If our MemoryLeader is not our defining access, add a use to the
1526   // MemoryLeader, so that we get reprocessed when it changes.
1527   if (LE->getMemoryLeader() != DefiningAccess)
1528     addMemoryUsers(LE->getMemoryLeader(), OriginalAccess);
1529   return LE;
1530 }
1531 
1532 const Expression *
1533 NewGVN::performSymbolicPredicateInfoEvaluation(Instruction *I) const {
1534   auto *PI = PredInfo->getPredicateInfoFor(I);
1535   if (!PI)
1536     return nullptr;
1537 
1538   LLVM_DEBUG(dbgs() << "Found predicate info from instruction !\n");
1539 
1540   const Optional<PredicateConstraint> &Constraint = PI->getConstraint();
1541   if (!Constraint)
1542     return nullptr;
1543 
1544   CmpInst::Predicate Predicate = Constraint->Predicate;
1545   Value *CmpOp0 = I->getOperand(0);
1546   Value *CmpOp1 = Constraint->OtherOp;
1547 
1548   Value *FirstOp = lookupOperandLeader(CmpOp0);
1549   Value *SecondOp = lookupOperandLeader(CmpOp1);
1550   Value *AdditionallyUsedValue = CmpOp0;
1551 
1552   // Sort the ops.
1553   if (shouldSwapOperands(FirstOp, SecondOp)) {
1554     std::swap(FirstOp, SecondOp);
1555     Predicate = CmpInst::getSwappedPredicate(Predicate);
1556     AdditionallyUsedValue = CmpOp1;
1557   }
1558 
1559   if (Predicate == CmpInst::ICMP_EQ) {
1560     addPredicateUsers(PI, I);
1561     addAdditionalUsers(AdditionallyUsedValue, I);
1562     return createVariableOrConstant(FirstOp);
1563   }
1564 
1565   // Handle the special case of floating point.
1566   if (Predicate == CmpInst::FCMP_OEQ && isa<ConstantFP>(FirstOp) &&
1567       !cast<ConstantFP>(FirstOp)->isZero()) {
1568     addPredicateUsers(PI, I);
1569     addAdditionalUsers(AdditionallyUsedValue, I);
1570     return createConstantExpression(cast<Constant>(FirstOp));
1571   }
1572 
1573   return nullptr;
1574 }
1575 
1576 // Evaluate read only and pure calls, and create an expression result.
1577 const Expression *NewGVN::performSymbolicCallEvaluation(Instruction *I) const {
1578   auto *CI = cast<CallInst>(I);
1579   if (auto *II = dyn_cast<IntrinsicInst>(I)) {
1580     // Intrinsics with the returned attribute are copies of arguments.
1581     if (auto *ReturnedValue = II->getReturnedArgOperand()) {
1582       if (II->getIntrinsicID() == Intrinsic::ssa_copy)
1583         if (const auto *Result = performSymbolicPredicateInfoEvaluation(I))
1584           return Result;
1585       return createVariableOrConstant(ReturnedValue);
1586     }
1587   }
1588   if (AA->doesNotAccessMemory(CI)) {
1589     return createCallExpression(CI, TOPClass->getMemoryLeader());
1590   } else if (AA->onlyReadsMemory(CI)) {
1591     if (auto *MA = MSSA->getMemoryAccess(CI)) {
1592       auto *DefiningAccess = MSSAWalker->getClobberingMemoryAccess(MA);
1593       return createCallExpression(CI, DefiningAccess);
1594     } else // MSSA determined that CI does not access memory.
1595       return createCallExpression(CI, TOPClass->getMemoryLeader());
1596   }
1597   return nullptr;
1598 }
1599 
1600 // Retrieve the memory class for a given MemoryAccess.
1601 CongruenceClass *NewGVN::getMemoryClass(const MemoryAccess *MA) const {
1602   auto *Result = MemoryAccessToClass.lookup(MA);
1603   assert(Result && "Should have found memory class");
1604   return Result;
1605 }
1606 
1607 // Update the MemoryAccess equivalence table to say that From is equal to To,
1608 // and return true if this is different from what already existed in the table.
1609 bool NewGVN::setMemoryClass(const MemoryAccess *From,
1610                             CongruenceClass *NewClass) {
1611   assert(NewClass &&
1612          "Every MemoryAccess should be getting mapped to a non-null class");
1613   LLVM_DEBUG(dbgs() << "Setting " << *From);
1614   LLVM_DEBUG(dbgs() << " equivalent to congruence class ");
1615   LLVM_DEBUG(dbgs() << NewClass->getID()
1616                     << " with current MemoryAccess leader ");
1617   LLVM_DEBUG(dbgs() << *NewClass->getMemoryLeader() << "\n");
1618 
1619   auto LookupResult = MemoryAccessToClass.find(From);
1620   bool Changed = false;
1621   // If it's already in the table, see if the value changed.
1622   if (LookupResult != MemoryAccessToClass.end()) {
1623     auto *OldClass = LookupResult->second;
1624     if (OldClass != NewClass) {
1625       // If this is a phi, we have to handle memory member updates.
1626       if (auto *MP = dyn_cast<MemoryPhi>(From)) {
1627         OldClass->memory_erase(MP);
1628         NewClass->memory_insert(MP);
1629         // This may have killed the class if it had no non-memory members
1630         if (OldClass->getMemoryLeader() == From) {
1631           if (OldClass->definesNoMemory()) {
1632             OldClass->setMemoryLeader(nullptr);
1633           } else {
1634             OldClass->setMemoryLeader(getNextMemoryLeader(OldClass));
1635             LLVM_DEBUG(dbgs() << "Memory class leader change for class "
1636                               << OldClass->getID() << " to "
1637                               << *OldClass->getMemoryLeader()
1638                               << " due to removal of a memory member " << *From
1639                               << "\n");
1640             markMemoryLeaderChangeTouched(OldClass);
1641           }
1642         }
1643       }
1644       // It wasn't equivalent before, and now it is.
1645       LookupResult->second = NewClass;
1646       Changed = true;
1647     }
1648   }
1649 
1650   return Changed;
1651 }
1652 
1653 // Determine if a instruction is cycle-free.  That means the values in the
1654 // instruction don't depend on any expressions that can change value as a result
1655 // of the instruction.  For example, a non-cycle free instruction would be v =
1656 // phi(0, v+1).
1657 bool NewGVN::isCycleFree(const Instruction *I) const {
1658   // In order to compute cycle-freeness, we do SCC finding on the instruction,
1659   // and see what kind of SCC it ends up in.  If it is a singleton, it is
1660   // cycle-free.  If it is not in a singleton, it is only cycle free if the
1661   // other members are all phi nodes (as they do not compute anything, they are
1662   // copies).
1663   auto ICS = InstCycleState.lookup(I);
1664   if (ICS == ICS_Unknown) {
1665     SCCFinder.Start(I);
1666     auto &SCC = SCCFinder.getComponentFor(I);
1667     // It's cycle free if it's size 1 or the SCC is *only* phi nodes.
1668     if (SCC.size() == 1)
1669       InstCycleState.insert({I, ICS_CycleFree});
1670     else {
1671       bool AllPhis = llvm::all_of(SCC, [](const Value *V) {
1672         return isa<PHINode>(V) || isCopyOfAPHI(V);
1673       });
1674       ICS = AllPhis ? ICS_CycleFree : ICS_Cycle;
1675       for (auto *Member : SCC)
1676         if (auto *MemberPhi = dyn_cast<PHINode>(Member))
1677           InstCycleState.insert({MemberPhi, ICS});
1678     }
1679   }
1680   if (ICS == ICS_Cycle)
1681     return false;
1682   return true;
1683 }
1684 
1685 // Evaluate PHI nodes symbolically and create an expression result.
1686 const Expression *
1687 NewGVN::performSymbolicPHIEvaluation(ArrayRef<ValPair> PHIOps,
1688                                      Instruction *I,
1689                                      BasicBlock *PHIBlock) const {
1690   // True if one of the incoming phi edges is a backedge.
1691   bool HasBackedge = false;
1692   // All constant tracks the state of whether all the *original* phi operands
1693   // This is really shorthand for "this phi cannot cycle due to forward
1694   // change in value of the phi is guaranteed not to later change the value of
1695   // the phi. IE it can't be v = phi(undef, v+1)
1696   bool OriginalOpsConstant = true;
1697   auto *E = cast<PHIExpression>(createPHIExpression(
1698       PHIOps, I, PHIBlock, HasBackedge, OriginalOpsConstant));
1699   // We match the semantics of SimplifyPhiNode from InstructionSimplify here.
1700   // See if all arguments are the same.
1701   // We track if any were undef because they need special handling.
1702   bool HasUndef = false;
1703   auto Filtered = make_filter_range(E->operands(), [&](Value *Arg) {
1704     if (isa<UndefValue>(Arg)) {
1705       HasUndef = true;
1706       return false;
1707     }
1708     return true;
1709   });
1710   // If we are left with no operands, it's dead.
1711   if (Filtered.empty()) {
1712     // If it has undef at this point, it means there are no-non-undef arguments,
1713     // and thus, the value of the phi node must be undef.
1714     if (HasUndef) {
1715       LLVM_DEBUG(
1716           dbgs() << "PHI Node " << *I
1717                  << " has no non-undef arguments, valuing it as undef\n");
1718       return createConstantExpression(UndefValue::get(I->getType()));
1719     }
1720 
1721     LLVM_DEBUG(dbgs() << "No arguments of PHI node " << *I << " are live\n");
1722     deleteExpression(E);
1723     return createDeadExpression();
1724   }
1725   Value *AllSameValue = *(Filtered.begin());
1726   ++Filtered.begin();
1727   // Can't use std::equal here, sadly, because filter.begin moves.
1728   if (llvm::all_of(Filtered, [&](Value *Arg) { return Arg == AllSameValue; })) {
1729     // In LLVM's non-standard representation of phi nodes, it's possible to have
1730     // phi nodes with cycles (IE dependent on other phis that are .... dependent
1731     // on the original phi node), especially in weird CFG's where some arguments
1732     // are unreachable, or uninitialized along certain paths.  This can cause
1733     // infinite loops during evaluation. We work around this by not trying to
1734     // really evaluate them independently, but instead using a variable
1735     // expression to say if one is equivalent to the other.
1736     // We also special case undef, so that if we have an undef, we can't use the
1737     // common value unless it dominates the phi block.
1738     if (HasUndef) {
1739       // If we have undef and at least one other value, this is really a
1740       // multivalued phi, and we need to know if it's cycle free in order to
1741       // evaluate whether we can ignore the undef.  The other parts of this are
1742       // just shortcuts.  If there is no backedge, or all operands are
1743       // constants, it also must be cycle free.
1744       if (HasBackedge && !OriginalOpsConstant &&
1745           !isa<UndefValue>(AllSameValue) && !isCycleFree(I))
1746         return E;
1747 
1748       // Only have to check for instructions
1749       if (auto *AllSameInst = dyn_cast<Instruction>(AllSameValue))
1750         if (!someEquivalentDominates(AllSameInst, I))
1751           return E;
1752     }
1753     // Can't simplify to something that comes later in the iteration.
1754     // Otherwise, when and if it changes congruence class, we will never catch
1755     // up. We will always be a class behind it.
1756     if (isa<Instruction>(AllSameValue) &&
1757         InstrToDFSNum(AllSameValue) > InstrToDFSNum(I))
1758       return E;
1759     NumGVNPhisAllSame++;
1760     LLVM_DEBUG(dbgs() << "Simplified PHI node " << *I << " to " << *AllSameValue
1761                       << "\n");
1762     deleteExpression(E);
1763     return createVariableOrConstant(AllSameValue);
1764   }
1765   return E;
1766 }
1767 
1768 const Expression *
1769 NewGVN::performSymbolicAggrValueEvaluation(Instruction *I) const {
1770   if (auto *EI = dyn_cast<ExtractValueInst>(I)) {
1771     auto *WO = dyn_cast<WithOverflowInst>(EI->getAggregateOperand());
1772     if (WO && EI->getNumIndices() == 1 && *EI->idx_begin() == 0)
1773       // EI is an extract from one of our with.overflow intrinsics. Synthesize
1774       // a semantically equivalent expression instead of an extract value
1775       // expression.
1776       return createBinaryExpression(WO->getBinaryOp(), EI->getType(),
1777                                     WO->getLHS(), WO->getRHS(), I);
1778   }
1779 
1780   return createAggregateValueExpression(I);
1781 }
1782 
1783 const Expression *NewGVN::performSymbolicCmpEvaluation(Instruction *I) const {
1784   assert(isa<CmpInst>(I) && "Expected a cmp instruction.");
1785 
1786   auto *CI = cast<CmpInst>(I);
1787   // See if our operands are equal to those of a previous predicate, and if so,
1788   // if it implies true or false.
1789   auto Op0 = lookupOperandLeader(CI->getOperand(0));
1790   auto Op1 = lookupOperandLeader(CI->getOperand(1));
1791   auto OurPredicate = CI->getPredicate();
1792   if (shouldSwapOperands(Op0, Op1)) {
1793     std::swap(Op0, Op1);
1794     OurPredicate = CI->getSwappedPredicate();
1795   }
1796 
1797   // Avoid processing the same info twice.
1798   const PredicateBase *LastPredInfo = nullptr;
1799   // See if we know something about the comparison itself, like it is the target
1800   // of an assume.
1801   auto *CmpPI = PredInfo->getPredicateInfoFor(I);
1802   if (dyn_cast_or_null<PredicateAssume>(CmpPI))
1803     return createConstantExpression(ConstantInt::getTrue(CI->getType()));
1804 
1805   if (Op0 == Op1) {
1806     // This condition does not depend on predicates, no need to add users
1807     if (CI->isTrueWhenEqual())
1808       return createConstantExpression(ConstantInt::getTrue(CI->getType()));
1809     else if (CI->isFalseWhenEqual())
1810       return createConstantExpression(ConstantInt::getFalse(CI->getType()));
1811   }
1812 
1813   // NOTE: Because we are comparing both operands here and below, and using
1814   // previous comparisons, we rely on fact that predicateinfo knows to mark
1815   // comparisons that use renamed operands as users of the earlier comparisons.
1816   // It is *not* enough to just mark predicateinfo renamed operands as users of
1817   // the earlier comparisons, because the *other* operand may have changed in a
1818   // previous iteration.
1819   // Example:
1820   // icmp slt %a, %b
1821   // %b.0 = ssa.copy(%b)
1822   // false branch:
1823   // icmp slt %c, %b.0
1824 
1825   // %c and %a may start out equal, and thus, the code below will say the second
1826   // %icmp is false.  c may become equal to something else, and in that case the
1827   // %second icmp *must* be reexamined, but would not if only the renamed
1828   // %operands are considered users of the icmp.
1829 
1830   // *Currently* we only check one level of comparisons back, and only mark one
1831   // level back as touched when changes happen.  If you modify this code to look
1832   // back farther through comparisons, you *must* mark the appropriate
1833   // comparisons as users in PredicateInfo.cpp, or you will cause bugs.  See if
1834   // we know something just from the operands themselves
1835 
1836   // See if our operands have predicate info, so that we may be able to derive
1837   // something from a previous comparison.
1838   for (const auto &Op : CI->operands()) {
1839     auto *PI = PredInfo->getPredicateInfoFor(Op);
1840     if (const auto *PBranch = dyn_cast_or_null<PredicateBranch>(PI)) {
1841       if (PI == LastPredInfo)
1842         continue;
1843       LastPredInfo = PI;
1844       // In phi of ops cases, we may have predicate info that we are evaluating
1845       // in a different context.
1846       if (!DT->dominates(PBranch->To, getBlockForValue(I)))
1847         continue;
1848       // TODO: Along the false edge, we may know more things too, like
1849       // icmp of
1850       // same operands is false.
1851       // TODO: We only handle actual comparison conditions below, not
1852       // and/or.
1853       auto *BranchCond = dyn_cast<CmpInst>(PBranch->Condition);
1854       if (!BranchCond)
1855         continue;
1856       auto *BranchOp0 = lookupOperandLeader(BranchCond->getOperand(0));
1857       auto *BranchOp1 = lookupOperandLeader(BranchCond->getOperand(1));
1858       auto BranchPredicate = BranchCond->getPredicate();
1859       if (shouldSwapOperands(BranchOp0, BranchOp1)) {
1860         std::swap(BranchOp0, BranchOp1);
1861         BranchPredicate = BranchCond->getSwappedPredicate();
1862       }
1863       if (BranchOp0 == Op0 && BranchOp1 == Op1) {
1864         if (PBranch->TrueEdge) {
1865           // If we know the previous predicate is true and we are in the true
1866           // edge then we may be implied true or false.
1867           if (CmpInst::isImpliedTrueByMatchingCmp(BranchPredicate,
1868                                                   OurPredicate)) {
1869             addPredicateUsers(PI, I);
1870             return createConstantExpression(
1871                 ConstantInt::getTrue(CI->getType()));
1872           }
1873 
1874           if (CmpInst::isImpliedFalseByMatchingCmp(BranchPredicate,
1875                                                    OurPredicate)) {
1876             addPredicateUsers(PI, I);
1877             return createConstantExpression(
1878                 ConstantInt::getFalse(CI->getType()));
1879           }
1880         } else {
1881           // Just handle the ne and eq cases, where if we have the same
1882           // operands, we may know something.
1883           if (BranchPredicate == OurPredicate) {
1884             addPredicateUsers(PI, I);
1885             // Same predicate, same ops,we know it was false, so this is false.
1886             return createConstantExpression(
1887                 ConstantInt::getFalse(CI->getType()));
1888           } else if (BranchPredicate ==
1889                      CmpInst::getInversePredicate(OurPredicate)) {
1890             addPredicateUsers(PI, I);
1891             // Inverse predicate, we know the other was false, so this is true.
1892             return createConstantExpression(
1893                 ConstantInt::getTrue(CI->getType()));
1894           }
1895         }
1896       }
1897     }
1898   }
1899   // Create expression will take care of simplifyCmpInst
1900   return createExpression(I);
1901 }
1902 
1903 // Substitute and symbolize the value before value numbering.
1904 const Expression *
1905 NewGVN::performSymbolicEvaluation(Value *V,
1906                                   SmallPtrSetImpl<Value *> &Visited) const {
1907   const Expression *E = nullptr;
1908   if (auto *C = dyn_cast<Constant>(V))
1909     E = createConstantExpression(C);
1910   else if (isa<Argument>(V) || isa<GlobalVariable>(V)) {
1911     E = createVariableExpression(V);
1912   } else {
1913     // TODO: memory intrinsics.
1914     // TODO: Some day, we should do the forward propagation and reassociation
1915     // parts of the algorithm.
1916     auto *I = cast<Instruction>(V);
1917     switch (I->getOpcode()) {
1918     case Instruction::ExtractValue:
1919     case Instruction::InsertValue:
1920       E = performSymbolicAggrValueEvaluation(I);
1921       break;
1922     case Instruction::PHI: {
1923       SmallVector<ValPair, 3> Ops;
1924       auto *PN = cast<PHINode>(I);
1925       for (unsigned i = 0; i < PN->getNumOperands(); ++i)
1926         Ops.push_back({PN->getIncomingValue(i), PN->getIncomingBlock(i)});
1927       // Sort to ensure the invariant createPHIExpression requires is met.
1928       sortPHIOps(Ops);
1929       E = performSymbolicPHIEvaluation(Ops, I, getBlockForValue(I));
1930     } break;
1931     case Instruction::Call:
1932       E = performSymbolicCallEvaluation(I);
1933       break;
1934     case Instruction::Store:
1935       E = performSymbolicStoreEvaluation(I);
1936       break;
1937     case Instruction::Load:
1938       E = performSymbolicLoadEvaluation(I);
1939       break;
1940     case Instruction::BitCast:
1941     case Instruction::AddrSpaceCast:
1942       E = createExpression(I);
1943       break;
1944     case Instruction::ICmp:
1945     case Instruction::FCmp:
1946       E = performSymbolicCmpEvaluation(I);
1947       break;
1948     case Instruction::FNeg:
1949     case Instruction::Add:
1950     case Instruction::FAdd:
1951     case Instruction::Sub:
1952     case Instruction::FSub:
1953     case Instruction::Mul:
1954     case Instruction::FMul:
1955     case Instruction::UDiv:
1956     case Instruction::SDiv:
1957     case Instruction::FDiv:
1958     case Instruction::URem:
1959     case Instruction::SRem:
1960     case Instruction::FRem:
1961     case Instruction::Shl:
1962     case Instruction::LShr:
1963     case Instruction::AShr:
1964     case Instruction::And:
1965     case Instruction::Or:
1966     case Instruction::Xor:
1967     case Instruction::Trunc:
1968     case Instruction::ZExt:
1969     case Instruction::SExt:
1970     case Instruction::FPToUI:
1971     case Instruction::FPToSI:
1972     case Instruction::UIToFP:
1973     case Instruction::SIToFP:
1974     case Instruction::FPTrunc:
1975     case Instruction::FPExt:
1976     case Instruction::PtrToInt:
1977     case Instruction::IntToPtr:
1978     case Instruction::Select:
1979     case Instruction::ExtractElement:
1980     case Instruction::InsertElement:
1981     case Instruction::GetElementPtr:
1982       E = createExpression(I);
1983       break;
1984     case Instruction::ShuffleVector:
1985       // FIXME: Add support for shufflevector to createExpression.
1986       return nullptr;
1987     default:
1988       return nullptr;
1989     }
1990   }
1991   return E;
1992 }
1993 
1994 // Look up a container in a map, and then call a function for each thing in the
1995 // found container.
1996 template <typename Map, typename KeyType, typename Func>
1997 void NewGVN::for_each_found(Map &M, const KeyType &Key, Func F) {
1998   const auto Result = M.find_as(Key);
1999   if (Result != M.end())
2000     for (typename Map::mapped_type::value_type Mapped : Result->second)
2001       F(Mapped);
2002 }
2003 
2004 // Look up a container of values/instructions in a map, and touch all the
2005 // instructions in the container.  Then erase value from the map.
2006 template <typename Map, typename KeyType>
2007 void NewGVN::touchAndErase(Map &M, const KeyType &Key) {
2008   const auto Result = M.find_as(Key);
2009   if (Result != M.end()) {
2010     for (const typename Map::mapped_type::value_type Mapped : Result->second)
2011       TouchedInstructions.set(InstrToDFSNum(Mapped));
2012     M.erase(Result);
2013   }
2014 }
2015 
2016 void NewGVN::addAdditionalUsers(Value *To, Value *User) const {
2017   assert(User && To != User);
2018   if (isa<Instruction>(To))
2019     AdditionalUsers[To].insert(User);
2020 }
2021 
2022 void NewGVN::markUsersTouched(Value *V) {
2023   // Now mark the users as touched.
2024   for (auto *User : V->users()) {
2025     assert(isa<Instruction>(User) && "Use of value not within an instruction?");
2026     TouchedInstructions.set(InstrToDFSNum(User));
2027   }
2028   touchAndErase(AdditionalUsers, V);
2029 }
2030 
2031 void NewGVN::addMemoryUsers(const MemoryAccess *To, MemoryAccess *U) const {
2032   LLVM_DEBUG(dbgs() << "Adding memory user " << *U << " to " << *To << "\n");
2033   MemoryToUsers[To].insert(U);
2034 }
2035 
2036 void NewGVN::markMemoryDefTouched(const MemoryAccess *MA) {
2037   TouchedInstructions.set(MemoryToDFSNum(MA));
2038 }
2039 
2040 void NewGVN::markMemoryUsersTouched(const MemoryAccess *MA) {
2041   if (isa<MemoryUse>(MA))
2042     return;
2043   for (auto U : MA->users())
2044     TouchedInstructions.set(MemoryToDFSNum(U));
2045   touchAndErase(MemoryToUsers, MA);
2046 }
2047 
2048 // Add I to the set of users of a given predicate.
2049 void NewGVN::addPredicateUsers(const PredicateBase *PB, Instruction *I) const {
2050   // Don't add temporary instructions to the user lists.
2051   if (AllTempInstructions.count(I))
2052     return;
2053 
2054   if (auto *PBranch = dyn_cast<PredicateBranch>(PB))
2055     PredicateToUsers[PBranch->Condition].insert(I);
2056   else if (auto *PAssume = dyn_cast<PredicateAssume>(PB))
2057     PredicateToUsers[PAssume->Condition].insert(I);
2058 }
2059 
2060 // Touch all the predicates that depend on this instruction.
2061 void NewGVN::markPredicateUsersTouched(Instruction *I) {
2062   touchAndErase(PredicateToUsers, I);
2063 }
2064 
2065 // Mark users affected by a memory leader change.
2066 void NewGVN::markMemoryLeaderChangeTouched(CongruenceClass *CC) {
2067   for (auto M : CC->memory())
2068     markMemoryDefTouched(M);
2069 }
2070 
2071 // Touch the instructions that need to be updated after a congruence class has a
2072 // leader change, and mark changed values.
2073 void NewGVN::markValueLeaderChangeTouched(CongruenceClass *CC) {
2074   for (auto M : *CC) {
2075     if (auto *I = dyn_cast<Instruction>(M))
2076       TouchedInstructions.set(InstrToDFSNum(I));
2077     LeaderChanges.insert(M);
2078   }
2079 }
2080 
2081 // Give a range of things that have instruction DFS numbers, this will return
2082 // the member of the range with the smallest dfs number.
2083 template <class T, class Range>
2084 T *NewGVN::getMinDFSOfRange(const Range &R) const {
2085   std::pair<T *, unsigned> MinDFS = {nullptr, ~0U};
2086   for (const auto X : R) {
2087     auto DFSNum = InstrToDFSNum(X);
2088     if (DFSNum < MinDFS.second)
2089       MinDFS = {X, DFSNum};
2090   }
2091   return MinDFS.first;
2092 }
2093 
2094 // This function returns the MemoryAccess that should be the next leader of
2095 // congruence class CC, under the assumption that the current leader is going to
2096 // disappear.
2097 const MemoryAccess *NewGVN::getNextMemoryLeader(CongruenceClass *CC) const {
2098   // TODO: If this ends up to slow, we can maintain a next memory leader like we
2099   // do for regular leaders.
2100   // Make sure there will be a leader to find.
2101   assert(!CC->definesNoMemory() && "Can't get next leader if there is none");
2102   if (CC->getStoreCount() > 0) {
2103     if (auto *NL = dyn_cast_or_null<StoreInst>(CC->getNextLeader().first))
2104       return getMemoryAccess(NL);
2105     // Find the store with the minimum DFS number.
2106     auto *V = getMinDFSOfRange<Value>(make_filter_range(
2107         *CC, [&](const Value *V) { return isa<StoreInst>(V); }));
2108     return getMemoryAccess(cast<StoreInst>(V));
2109   }
2110   assert(CC->getStoreCount() == 0);
2111 
2112   // Given our assertion, hitting this part must mean
2113   // !OldClass->memory_empty()
2114   if (CC->memory_size() == 1)
2115     return *CC->memory_begin();
2116   return getMinDFSOfRange<const MemoryPhi>(CC->memory());
2117 }
2118 
2119 // This function returns the next value leader of a congruence class, under the
2120 // assumption that the current leader is going away.  This should end up being
2121 // the next most dominating member.
2122 Value *NewGVN::getNextValueLeader(CongruenceClass *CC) const {
2123   // We don't need to sort members if there is only 1, and we don't care about
2124   // sorting the TOP class because everything either gets out of it or is
2125   // unreachable.
2126 
2127   if (CC->size() == 1 || CC == TOPClass) {
2128     return *(CC->begin());
2129   } else if (CC->getNextLeader().first) {
2130     ++NumGVNAvoidedSortedLeaderChanges;
2131     return CC->getNextLeader().first;
2132   } else {
2133     ++NumGVNSortedLeaderChanges;
2134     // NOTE: If this ends up to slow, we can maintain a dual structure for
2135     // member testing/insertion, or keep things mostly sorted, and sort only
2136     // here, or use SparseBitVector or ....
2137     return getMinDFSOfRange<Value>(*CC);
2138   }
2139 }
2140 
2141 // Move a MemoryAccess, currently in OldClass, to NewClass, including updates to
2142 // the memory members, etc for the move.
2143 //
2144 // The invariants of this function are:
2145 //
2146 // - I must be moving to NewClass from OldClass
2147 // - The StoreCount of OldClass and NewClass is expected to have been updated
2148 //   for I already if it is a store.
2149 // - The OldClass memory leader has not been updated yet if I was the leader.
2150 void NewGVN::moveMemoryToNewCongruenceClass(Instruction *I,
2151                                             MemoryAccess *InstMA,
2152                                             CongruenceClass *OldClass,
2153                                             CongruenceClass *NewClass) {
2154   // If the leader is I, and we had a representative MemoryAccess, it should
2155   // be the MemoryAccess of OldClass.
2156   assert((!InstMA || !OldClass->getMemoryLeader() ||
2157           OldClass->getLeader() != I ||
2158           MemoryAccessToClass.lookup(OldClass->getMemoryLeader()) ==
2159               MemoryAccessToClass.lookup(InstMA)) &&
2160          "Representative MemoryAccess mismatch");
2161   // First, see what happens to the new class
2162   if (!NewClass->getMemoryLeader()) {
2163     // Should be a new class, or a store becoming a leader of a new class.
2164     assert(NewClass->size() == 1 ||
2165            (isa<StoreInst>(I) && NewClass->getStoreCount() == 1));
2166     NewClass->setMemoryLeader(InstMA);
2167     // Mark it touched if we didn't just create a singleton
2168     LLVM_DEBUG(dbgs() << "Memory class leader change for class "
2169                       << NewClass->getID()
2170                       << " due to new memory instruction becoming leader\n");
2171     markMemoryLeaderChangeTouched(NewClass);
2172   }
2173   setMemoryClass(InstMA, NewClass);
2174   // Now, fixup the old class if necessary
2175   if (OldClass->getMemoryLeader() == InstMA) {
2176     if (!OldClass->definesNoMemory()) {
2177       OldClass->setMemoryLeader(getNextMemoryLeader(OldClass));
2178       LLVM_DEBUG(dbgs() << "Memory class leader change for class "
2179                         << OldClass->getID() << " to "
2180                         << *OldClass->getMemoryLeader()
2181                         << " due to removal of old leader " << *InstMA << "\n");
2182       markMemoryLeaderChangeTouched(OldClass);
2183     } else
2184       OldClass->setMemoryLeader(nullptr);
2185   }
2186 }
2187 
2188 // Move a value, currently in OldClass, to be part of NewClass
2189 // Update OldClass and NewClass for the move (including changing leaders, etc).
2190 void NewGVN::moveValueToNewCongruenceClass(Instruction *I, const Expression *E,
2191                                            CongruenceClass *OldClass,
2192                                            CongruenceClass *NewClass) {
2193   if (I == OldClass->getNextLeader().first)
2194     OldClass->resetNextLeader();
2195 
2196   OldClass->erase(I);
2197   NewClass->insert(I);
2198 
2199   if (NewClass->getLeader() != I)
2200     NewClass->addPossibleNextLeader({I, InstrToDFSNum(I)});
2201   // Handle our special casing of stores.
2202   if (auto *SI = dyn_cast<StoreInst>(I)) {
2203     OldClass->decStoreCount();
2204     // Okay, so when do we want to make a store a leader of a class?
2205     // If we have a store defined by an earlier load, we want the earlier load
2206     // to lead the class.
2207     // If we have a store defined by something else, we want the store to lead
2208     // the class so everything else gets the "something else" as a value.
2209     // If we have a store as the single member of the class, we want the store
2210     // as the leader
2211     if (NewClass->getStoreCount() == 0 && !NewClass->getStoredValue()) {
2212       // If it's a store expression we are using, it means we are not equivalent
2213       // to something earlier.
2214       if (auto *SE = dyn_cast<StoreExpression>(E)) {
2215         NewClass->setStoredValue(SE->getStoredValue());
2216         markValueLeaderChangeTouched(NewClass);
2217         // Shift the new class leader to be the store
2218         LLVM_DEBUG(dbgs() << "Changing leader of congruence class "
2219                           << NewClass->getID() << " from "
2220                           << *NewClass->getLeader() << " to  " << *SI
2221                           << " because store joined class\n");
2222         // If we changed the leader, we have to mark it changed because we don't
2223         // know what it will do to symbolic evaluation.
2224         NewClass->setLeader(SI);
2225       }
2226       // We rely on the code below handling the MemoryAccess change.
2227     }
2228     NewClass->incStoreCount();
2229   }
2230   // True if there is no memory instructions left in a class that had memory
2231   // instructions before.
2232 
2233   // If it's not a memory use, set the MemoryAccess equivalence
2234   auto *InstMA = dyn_cast_or_null<MemoryDef>(getMemoryAccess(I));
2235   if (InstMA)
2236     moveMemoryToNewCongruenceClass(I, InstMA, OldClass, NewClass);
2237   ValueToClass[I] = NewClass;
2238   // See if we destroyed the class or need to swap leaders.
2239   if (OldClass->empty() && OldClass != TOPClass) {
2240     if (OldClass->getDefiningExpr()) {
2241       LLVM_DEBUG(dbgs() << "Erasing expression " << *OldClass->getDefiningExpr()
2242                         << " from table\n");
2243       // We erase it as an exact expression to make sure we don't just erase an
2244       // equivalent one.
2245       auto Iter = ExpressionToClass.find_as(
2246           ExactEqualsExpression(*OldClass->getDefiningExpr()));
2247       if (Iter != ExpressionToClass.end())
2248         ExpressionToClass.erase(Iter);
2249 #ifdef EXPENSIVE_CHECKS
2250       assert(
2251           (*OldClass->getDefiningExpr() != *E || ExpressionToClass.lookup(E)) &&
2252           "We erased the expression we just inserted, which should not happen");
2253 #endif
2254     }
2255   } else if (OldClass->getLeader() == I) {
2256     // When the leader changes, the value numbering of
2257     // everything may change due to symbolization changes, so we need to
2258     // reprocess.
2259     LLVM_DEBUG(dbgs() << "Value class leader change for class "
2260                       << OldClass->getID() << "\n");
2261     ++NumGVNLeaderChanges;
2262     // Destroy the stored value if there are no more stores to represent it.
2263     // Note that this is basically clean up for the expression removal that
2264     // happens below.  If we remove stores from a class, we may leave it as a
2265     // class of equivalent memory phis.
2266     if (OldClass->getStoreCount() == 0) {
2267       if (OldClass->getStoredValue())
2268         OldClass->setStoredValue(nullptr);
2269     }
2270     OldClass->setLeader(getNextValueLeader(OldClass));
2271     OldClass->resetNextLeader();
2272     markValueLeaderChangeTouched(OldClass);
2273   }
2274 }
2275 
2276 // For a given expression, mark the phi of ops instructions that could have
2277 // changed as a result.
2278 void NewGVN::markPhiOfOpsChanged(const Expression *E) {
2279   touchAndErase(ExpressionToPhiOfOps, E);
2280 }
2281 
2282 // Perform congruence finding on a given value numbering expression.
2283 void NewGVN::performCongruenceFinding(Instruction *I, const Expression *E) {
2284   // This is guaranteed to return something, since it will at least find
2285   // TOP.
2286 
2287   CongruenceClass *IClass = ValueToClass.lookup(I);
2288   assert(IClass && "Should have found a IClass");
2289   // Dead classes should have been eliminated from the mapping.
2290   assert(!IClass->isDead() && "Found a dead class");
2291 
2292   CongruenceClass *EClass = nullptr;
2293   if (const auto *VE = dyn_cast<VariableExpression>(E)) {
2294     EClass = ValueToClass.lookup(VE->getVariableValue());
2295   } else if (isa<DeadExpression>(E)) {
2296     EClass = TOPClass;
2297   }
2298   if (!EClass) {
2299     auto lookupResult = ExpressionToClass.insert({E, nullptr});
2300 
2301     // If it's not in the value table, create a new congruence class.
2302     if (lookupResult.second) {
2303       CongruenceClass *NewClass = createCongruenceClass(nullptr, E);
2304       auto place = lookupResult.first;
2305       place->second = NewClass;
2306 
2307       // Constants and variables should always be made the leader.
2308       if (const auto *CE = dyn_cast<ConstantExpression>(E)) {
2309         NewClass->setLeader(CE->getConstantValue());
2310       } else if (const auto *SE = dyn_cast<StoreExpression>(E)) {
2311         StoreInst *SI = SE->getStoreInst();
2312         NewClass->setLeader(SI);
2313         NewClass->setStoredValue(SE->getStoredValue());
2314         // The RepMemoryAccess field will be filled in properly by the
2315         // moveValueToNewCongruenceClass call.
2316       } else {
2317         NewClass->setLeader(I);
2318       }
2319       assert(!isa<VariableExpression>(E) &&
2320              "VariableExpression should have been handled already");
2321 
2322       EClass = NewClass;
2323       LLVM_DEBUG(dbgs() << "Created new congruence class for " << *I
2324                         << " using expression " << *E << " at "
2325                         << NewClass->getID() << " and leader "
2326                         << *(NewClass->getLeader()));
2327       if (NewClass->getStoredValue())
2328         LLVM_DEBUG(dbgs() << " and stored value "
2329                           << *(NewClass->getStoredValue()));
2330       LLVM_DEBUG(dbgs() << "\n");
2331     } else {
2332       EClass = lookupResult.first->second;
2333       if (isa<ConstantExpression>(E))
2334         assert((isa<Constant>(EClass->getLeader()) ||
2335                 (EClass->getStoredValue() &&
2336                  isa<Constant>(EClass->getStoredValue()))) &&
2337                "Any class with a constant expression should have a "
2338                "constant leader");
2339 
2340       assert(EClass && "Somehow don't have an eclass");
2341 
2342       assert(!EClass->isDead() && "We accidentally looked up a dead class");
2343     }
2344   }
2345   bool ClassChanged = IClass != EClass;
2346   bool LeaderChanged = LeaderChanges.erase(I);
2347   if (ClassChanged || LeaderChanged) {
2348     LLVM_DEBUG(dbgs() << "New class " << EClass->getID() << " for expression "
2349                       << *E << "\n");
2350     if (ClassChanged) {
2351       moveValueToNewCongruenceClass(I, E, IClass, EClass);
2352       markPhiOfOpsChanged(E);
2353     }
2354 
2355     markUsersTouched(I);
2356     if (MemoryAccess *MA = getMemoryAccess(I))
2357       markMemoryUsersTouched(MA);
2358     if (auto *CI = dyn_cast<CmpInst>(I))
2359       markPredicateUsersTouched(CI);
2360   }
2361   // If we changed the class of the store, we want to ensure nothing finds the
2362   // old store expression.  In particular, loads do not compare against stored
2363   // value, so they will find old store expressions (and associated class
2364   // mappings) if we leave them in the table.
2365   if (ClassChanged && isa<StoreInst>(I)) {
2366     auto *OldE = ValueToExpression.lookup(I);
2367     // It could just be that the old class died. We don't want to erase it if we
2368     // just moved classes.
2369     if (OldE && isa<StoreExpression>(OldE) && *E != *OldE) {
2370       // Erase this as an exact expression to ensure we don't erase expressions
2371       // equivalent to it.
2372       auto Iter = ExpressionToClass.find_as(ExactEqualsExpression(*OldE));
2373       if (Iter != ExpressionToClass.end())
2374         ExpressionToClass.erase(Iter);
2375     }
2376   }
2377   ValueToExpression[I] = E;
2378 }
2379 
2380 // Process the fact that Edge (from, to) is reachable, including marking
2381 // any newly reachable blocks and instructions for processing.
2382 void NewGVN::updateReachableEdge(BasicBlock *From, BasicBlock *To) {
2383   // Check if the Edge was reachable before.
2384   if (ReachableEdges.insert({From, To}).second) {
2385     // If this block wasn't reachable before, all instructions are touched.
2386     if (ReachableBlocks.insert(To).second) {
2387       LLVM_DEBUG(dbgs() << "Block " << getBlockName(To)
2388                         << " marked reachable\n");
2389       const auto &InstRange = BlockInstRange.lookup(To);
2390       TouchedInstructions.set(InstRange.first, InstRange.second);
2391     } else {
2392       LLVM_DEBUG(dbgs() << "Block " << getBlockName(To)
2393                         << " was reachable, but new edge {"
2394                         << getBlockName(From) << "," << getBlockName(To)
2395                         << "} to it found\n");
2396 
2397       // We've made an edge reachable to an existing block, which may
2398       // impact predicates. Otherwise, only mark the phi nodes as touched, as
2399       // they are the only thing that depend on new edges. Anything using their
2400       // values will get propagated to if necessary.
2401       if (MemoryAccess *MemPhi = getMemoryAccess(To))
2402         TouchedInstructions.set(InstrToDFSNum(MemPhi));
2403 
2404       // FIXME: We should just add a union op on a Bitvector and
2405       // SparseBitVector.  We can do it word by word faster than we are doing it
2406       // here.
2407       for (auto InstNum : RevisitOnReachabilityChange[To])
2408         TouchedInstructions.set(InstNum);
2409     }
2410   }
2411 }
2412 
2413 // Given a predicate condition (from a switch, cmp, or whatever) and a block,
2414 // see if we know some constant value for it already.
2415 Value *NewGVN::findConditionEquivalence(Value *Cond) const {
2416   auto Result = lookupOperandLeader(Cond);
2417   return isa<Constant>(Result) ? Result : nullptr;
2418 }
2419 
2420 // Process the outgoing edges of a block for reachability.
2421 void NewGVN::processOutgoingEdges(Instruction *TI, BasicBlock *B) {
2422   // Evaluate reachability of terminator instruction.
2423   Value *Cond;
2424   BasicBlock *TrueSucc, *FalseSucc;
2425   if (match(TI, m_Br(m_Value(Cond), TrueSucc, FalseSucc))) {
2426     Value *CondEvaluated = findConditionEquivalence(Cond);
2427     if (!CondEvaluated) {
2428       if (auto *I = dyn_cast<Instruction>(Cond)) {
2429         const Expression *E = createExpression(I);
2430         if (const auto *CE = dyn_cast<ConstantExpression>(E)) {
2431           CondEvaluated = CE->getConstantValue();
2432         }
2433       } else if (isa<ConstantInt>(Cond)) {
2434         CondEvaluated = Cond;
2435       }
2436     }
2437     ConstantInt *CI;
2438     if (CondEvaluated && (CI = dyn_cast<ConstantInt>(CondEvaluated))) {
2439       if (CI->isOne()) {
2440         LLVM_DEBUG(dbgs() << "Condition for Terminator " << *TI
2441                           << " evaluated to true\n");
2442         updateReachableEdge(B, TrueSucc);
2443       } else if (CI->isZero()) {
2444         LLVM_DEBUG(dbgs() << "Condition for Terminator " << *TI
2445                           << " evaluated to false\n");
2446         updateReachableEdge(B, FalseSucc);
2447       }
2448     } else {
2449       updateReachableEdge(B, TrueSucc);
2450       updateReachableEdge(B, FalseSucc);
2451     }
2452   } else if (auto *SI = dyn_cast<SwitchInst>(TI)) {
2453     // For switches, propagate the case values into the case
2454     // destinations.
2455 
2456     Value *SwitchCond = SI->getCondition();
2457     Value *CondEvaluated = findConditionEquivalence(SwitchCond);
2458     // See if we were able to turn this switch statement into a constant.
2459     if (CondEvaluated && isa<ConstantInt>(CondEvaluated)) {
2460       auto *CondVal = cast<ConstantInt>(CondEvaluated);
2461       // We should be able to get case value for this.
2462       auto Case = *SI->findCaseValue(CondVal);
2463       if (Case.getCaseSuccessor() == SI->getDefaultDest()) {
2464         // We proved the value is outside of the range of the case.
2465         // We can't do anything other than mark the default dest as reachable,
2466         // and go home.
2467         updateReachableEdge(B, SI->getDefaultDest());
2468         return;
2469       }
2470       // Now get where it goes and mark it reachable.
2471       BasicBlock *TargetBlock = Case.getCaseSuccessor();
2472       updateReachableEdge(B, TargetBlock);
2473     } else {
2474       for (unsigned i = 0, e = SI->getNumSuccessors(); i != e; ++i) {
2475         BasicBlock *TargetBlock = SI->getSuccessor(i);
2476         updateReachableEdge(B, TargetBlock);
2477       }
2478     }
2479   } else {
2480     // Otherwise this is either unconditional, or a type we have no
2481     // idea about. Just mark successors as reachable.
2482     for (unsigned i = 0, e = TI->getNumSuccessors(); i != e; ++i) {
2483       BasicBlock *TargetBlock = TI->getSuccessor(i);
2484       updateReachableEdge(B, TargetBlock);
2485     }
2486 
2487     // This also may be a memory defining terminator, in which case, set it
2488     // equivalent only to itself.
2489     //
2490     auto *MA = getMemoryAccess(TI);
2491     if (MA && !isa<MemoryUse>(MA)) {
2492       auto *CC = ensureLeaderOfMemoryClass(MA);
2493       if (setMemoryClass(MA, CC))
2494         markMemoryUsersTouched(MA);
2495     }
2496   }
2497 }
2498 
2499 // Remove the PHI of Ops PHI for I
2500 void NewGVN::removePhiOfOps(Instruction *I, PHINode *PHITemp) {
2501   InstrDFS.erase(PHITemp);
2502   // It's still a temp instruction. We keep it in the array so it gets erased.
2503   // However, it's no longer used by I, or in the block
2504   TempToBlock.erase(PHITemp);
2505   RealToTemp.erase(I);
2506   // We don't remove the users from the phi node uses. This wastes a little
2507   // time, but such is life.  We could use two sets to track which were there
2508   // are the start of NewGVN, and which were added, but right nowt he cost of
2509   // tracking is more than the cost of checking for more phi of ops.
2510 }
2511 
2512 // Add PHI Op in BB as a PHI of operations version of ExistingValue.
2513 void NewGVN::addPhiOfOps(PHINode *Op, BasicBlock *BB,
2514                          Instruction *ExistingValue) {
2515   InstrDFS[Op] = InstrToDFSNum(ExistingValue);
2516   AllTempInstructions.insert(Op);
2517   TempToBlock[Op] = BB;
2518   RealToTemp[ExistingValue] = Op;
2519   // Add all users to phi node use, as they are now uses of the phi of ops phis
2520   // and may themselves be phi of ops.
2521   for (auto *U : ExistingValue->users())
2522     if (auto *UI = dyn_cast<Instruction>(U))
2523       PHINodeUses.insert(UI);
2524 }
2525 
2526 static bool okayForPHIOfOps(const Instruction *I) {
2527   if (!EnablePhiOfOps)
2528     return false;
2529   return isa<BinaryOperator>(I) || isa<SelectInst>(I) || isa<CmpInst>(I) ||
2530          isa<LoadInst>(I);
2531 }
2532 
2533 bool NewGVN::OpIsSafeForPHIOfOpsHelper(
2534     Value *V, const BasicBlock *PHIBlock,
2535     SmallPtrSetImpl<const Value *> &Visited,
2536     SmallVectorImpl<Instruction *> &Worklist) {
2537 
2538   if (!isa<Instruction>(V))
2539     return true;
2540   auto OISIt = OpSafeForPHIOfOps.find(V);
2541   if (OISIt != OpSafeForPHIOfOps.end())
2542     return OISIt->second;
2543 
2544   // Keep walking until we either dominate the phi block, or hit a phi, or run
2545   // out of things to check.
2546   if (DT->properlyDominates(getBlockForValue(V), PHIBlock)) {
2547     OpSafeForPHIOfOps.insert({V, true});
2548     return true;
2549   }
2550   // PHI in the same block.
2551   if (isa<PHINode>(V) && getBlockForValue(V) == PHIBlock) {
2552     OpSafeForPHIOfOps.insert({V, false});
2553     return false;
2554   }
2555 
2556   auto *OrigI = cast<Instruction>(V);
2557   for (auto *Op : OrigI->operand_values()) {
2558     if (!isa<Instruction>(Op))
2559       continue;
2560     // Stop now if we find an unsafe operand.
2561     auto OISIt = OpSafeForPHIOfOps.find(OrigI);
2562     if (OISIt != OpSafeForPHIOfOps.end()) {
2563       if (!OISIt->second) {
2564         OpSafeForPHIOfOps.insert({V, false});
2565         return false;
2566       }
2567       continue;
2568     }
2569     if (!Visited.insert(Op).second)
2570       continue;
2571     Worklist.push_back(cast<Instruction>(Op));
2572   }
2573   return true;
2574 }
2575 
2576 // Return true if this operand will be safe to use for phi of ops.
2577 //
2578 // The reason some operands are unsafe is that we are not trying to recursively
2579 // translate everything back through phi nodes.  We actually expect some lookups
2580 // of expressions to fail.  In particular, a lookup where the expression cannot
2581 // exist in the predecessor.  This is true even if the expression, as shown, can
2582 // be determined to be constant.
2583 bool NewGVN::OpIsSafeForPHIOfOps(Value *V, const BasicBlock *PHIBlock,
2584                                  SmallPtrSetImpl<const Value *> &Visited) {
2585   SmallVector<Instruction *, 4> Worklist;
2586   if (!OpIsSafeForPHIOfOpsHelper(V, PHIBlock, Visited, Worklist))
2587     return false;
2588   while (!Worklist.empty()) {
2589     auto *I = Worklist.pop_back_val();
2590     if (!OpIsSafeForPHIOfOpsHelper(I, PHIBlock, Visited, Worklist))
2591       return false;
2592   }
2593   OpSafeForPHIOfOps.insert({V, true});
2594   return true;
2595 }
2596 
2597 // Try to find a leader for instruction TransInst, which is a phi translated
2598 // version of something in our original program.  Visited is used to ensure we
2599 // don't infinite loop during translations of cycles.  OrigInst is the
2600 // instruction in the original program, and PredBB is the predecessor we
2601 // translated it through.
2602 Value *NewGVN::findLeaderForInst(Instruction *TransInst,
2603                                  SmallPtrSetImpl<Value *> &Visited,
2604                                  MemoryAccess *MemAccess, Instruction *OrigInst,
2605                                  BasicBlock *PredBB) {
2606   unsigned IDFSNum = InstrToDFSNum(OrigInst);
2607   // Make sure it's marked as a temporary instruction.
2608   AllTempInstructions.insert(TransInst);
2609   // and make sure anything that tries to add it's DFS number is
2610   // redirected to the instruction we are making a phi of ops
2611   // for.
2612   TempToBlock.insert({TransInst, PredBB});
2613   InstrDFS.insert({TransInst, IDFSNum});
2614 
2615   const Expression *E = performSymbolicEvaluation(TransInst, Visited);
2616   InstrDFS.erase(TransInst);
2617   AllTempInstructions.erase(TransInst);
2618   TempToBlock.erase(TransInst);
2619   if (MemAccess)
2620     TempToMemory.erase(TransInst);
2621   if (!E)
2622     return nullptr;
2623   auto *FoundVal = findPHIOfOpsLeader(E, OrigInst, PredBB);
2624   if (!FoundVal) {
2625     ExpressionToPhiOfOps[E].insert(OrigInst);
2626     LLVM_DEBUG(dbgs() << "Cannot find phi of ops operand for " << *TransInst
2627                       << " in block " << getBlockName(PredBB) << "\n");
2628     return nullptr;
2629   }
2630   if (auto *SI = dyn_cast<StoreInst>(FoundVal))
2631     FoundVal = SI->getValueOperand();
2632   return FoundVal;
2633 }
2634 
2635 // When we see an instruction that is an op of phis, generate the equivalent phi
2636 // of ops form.
2637 const Expression *
2638 NewGVN::makePossiblePHIOfOps(Instruction *I,
2639                              SmallPtrSetImpl<Value *> &Visited) {
2640   if (!okayForPHIOfOps(I))
2641     return nullptr;
2642 
2643   if (!Visited.insert(I).second)
2644     return nullptr;
2645   // For now, we require the instruction be cycle free because we don't
2646   // *always* create a phi of ops for instructions that could be done as phi
2647   // of ops, we only do it if we think it is useful.  If we did do it all the
2648   // time, we could remove the cycle free check.
2649   if (!isCycleFree(I))
2650     return nullptr;
2651 
2652   SmallPtrSet<const Value *, 8> ProcessedPHIs;
2653   // TODO: We don't do phi translation on memory accesses because it's
2654   // complicated. For a load, we'd need to be able to simulate a new memoryuse,
2655   // which we don't have a good way of doing ATM.
2656   auto *MemAccess = getMemoryAccess(I);
2657   // If the memory operation is defined by a memory operation this block that
2658   // isn't a MemoryPhi, transforming the pointer backwards through a scalar phi
2659   // can't help, as it would still be killed by that memory operation.
2660   if (MemAccess && !isa<MemoryPhi>(MemAccess->getDefiningAccess()) &&
2661       MemAccess->getDefiningAccess()->getBlock() == I->getParent())
2662     return nullptr;
2663 
2664   // Convert op of phis to phi of ops
2665   SmallPtrSet<const Value *, 10> VisitedOps;
2666   SmallVector<Value *, 4> Ops(I->operand_values());
2667   BasicBlock *SamePHIBlock = nullptr;
2668   PHINode *OpPHI = nullptr;
2669   if (!DebugCounter::shouldExecute(PHIOfOpsCounter))
2670     return nullptr;
2671   for (auto *Op : Ops) {
2672     if (!isa<PHINode>(Op)) {
2673       auto *ValuePHI = RealToTemp.lookup(Op);
2674       if (!ValuePHI)
2675         continue;
2676       LLVM_DEBUG(dbgs() << "Found possible dependent phi of ops\n");
2677       Op = ValuePHI;
2678     }
2679     OpPHI = cast<PHINode>(Op);
2680     if (!SamePHIBlock) {
2681       SamePHIBlock = getBlockForValue(OpPHI);
2682     } else if (SamePHIBlock != getBlockForValue(OpPHI)) {
2683       LLVM_DEBUG(
2684           dbgs()
2685           << "PHIs for operands are not all in the same block, aborting\n");
2686       return nullptr;
2687     }
2688     // No point in doing this for one-operand phis.
2689     if (OpPHI->getNumOperands() == 1) {
2690       OpPHI = nullptr;
2691       continue;
2692     }
2693   }
2694 
2695   if (!OpPHI)
2696     return nullptr;
2697 
2698   SmallVector<ValPair, 4> PHIOps;
2699   SmallPtrSet<Value *, 4> Deps;
2700   auto *PHIBlock = getBlockForValue(OpPHI);
2701   RevisitOnReachabilityChange[PHIBlock].reset(InstrToDFSNum(I));
2702   for (unsigned PredNum = 0; PredNum < OpPHI->getNumOperands(); ++PredNum) {
2703     auto *PredBB = OpPHI->getIncomingBlock(PredNum);
2704     Value *FoundVal = nullptr;
2705     SmallPtrSet<Value *, 4> CurrentDeps;
2706     // We could just skip unreachable edges entirely but it's tricky to do
2707     // with rewriting existing phi nodes.
2708     if (ReachableEdges.count({PredBB, PHIBlock})) {
2709       // Clone the instruction, create an expression from it that is
2710       // translated back into the predecessor, and see if we have a leader.
2711       Instruction *ValueOp = I->clone();
2712       if (MemAccess)
2713         TempToMemory.insert({ValueOp, MemAccess});
2714       bool SafeForPHIOfOps = true;
2715       VisitedOps.clear();
2716       for (auto &Op : ValueOp->operands()) {
2717         auto *OrigOp = &*Op;
2718         // When these operand changes, it could change whether there is a
2719         // leader for us or not, so we have to add additional users.
2720         if (isa<PHINode>(Op)) {
2721           Op = Op->DoPHITranslation(PHIBlock, PredBB);
2722           if (Op != OrigOp && Op != I)
2723             CurrentDeps.insert(Op);
2724         } else if (auto *ValuePHI = RealToTemp.lookup(Op)) {
2725           if (getBlockForValue(ValuePHI) == PHIBlock)
2726             Op = ValuePHI->getIncomingValueForBlock(PredBB);
2727         }
2728         // If we phi-translated the op, it must be safe.
2729         SafeForPHIOfOps =
2730             SafeForPHIOfOps &&
2731             (Op != OrigOp || OpIsSafeForPHIOfOps(Op, PHIBlock, VisitedOps));
2732       }
2733       // FIXME: For those things that are not safe we could generate
2734       // expressions all the way down, and see if this comes out to a
2735       // constant.  For anything where that is true, and unsafe, we should
2736       // have made a phi-of-ops (or value numbered it equivalent to something)
2737       // for the pieces already.
2738       FoundVal = !SafeForPHIOfOps ? nullptr
2739                                   : findLeaderForInst(ValueOp, Visited,
2740                                                       MemAccess, I, PredBB);
2741       ValueOp->deleteValue();
2742       if (!FoundVal) {
2743         // We failed to find a leader for the current ValueOp, but this might
2744         // change in case of the translated operands change.
2745         if (SafeForPHIOfOps)
2746           for (auto Dep : CurrentDeps)
2747             addAdditionalUsers(Dep, I);
2748 
2749         return nullptr;
2750       }
2751       Deps.insert(CurrentDeps.begin(), CurrentDeps.end());
2752     } else {
2753       LLVM_DEBUG(dbgs() << "Skipping phi of ops operand for incoming block "
2754                         << getBlockName(PredBB)
2755                         << " because the block is unreachable\n");
2756       FoundVal = UndefValue::get(I->getType());
2757       RevisitOnReachabilityChange[PHIBlock].set(InstrToDFSNum(I));
2758     }
2759 
2760     PHIOps.push_back({FoundVal, PredBB});
2761     LLVM_DEBUG(dbgs() << "Found phi of ops operand " << *FoundVal << " in "
2762                       << getBlockName(PredBB) << "\n");
2763   }
2764   for (auto Dep : Deps)
2765     addAdditionalUsers(Dep, I);
2766   sortPHIOps(PHIOps);
2767   auto *E = performSymbolicPHIEvaluation(PHIOps, I, PHIBlock);
2768   if (isa<ConstantExpression>(E) || isa<VariableExpression>(E)) {
2769     LLVM_DEBUG(
2770         dbgs()
2771         << "Not creating real PHI of ops because it simplified to existing "
2772            "value or constant\n");
2773     return E;
2774   }
2775   auto *ValuePHI = RealToTemp.lookup(I);
2776   bool NewPHI = false;
2777   if (!ValuePHI) {
2778     ValuePHI =
2779         PHINode::Create(I->getType(), OpPHI->getNumOperands(), "phiofops");
2780     addPhiOfOps(ValuePHI, PHIBlock, I);
2781     NewPHI = true;
2782     NumGVNPHIOfOpsCreated++;
2783   }
2784   if (NewPHI) {
2785     for (auto PHIOp : PHIOps)
2786       ValuePHI->addIncoming(PHIOp.first, PHIOp.second);
2787   } else {
2788     TempToBlock[ValuePHI] = PHIBlock;
2789     unsigned int i = 0;
2790     for (auto PHIOp : PHIOps) {
2791       ValuePHI->setIncomingValue(i, PHIOp.first);
2792       ValuePHI->setIncomingBlock(i, PHIOp.second);
2793       ++i;
2794     }
2795   }
2796   RevisitOnReachabilityChange[PHIBlock].set(InstrToDFSNum(I));
2797   LLVM_DEBUG(dbgs() << "Created phi of ops " << *ValuePHI << " for " << *I
2798                     << "\n");
2799 
2800   return E;
2801 }
2802 
2803 // The algorithm initially places the values of the routine in the TOP
2804 // congruence class. The leader of TOP is the undetermined value `undef`.
2805 // When the algorithm has finished, values still in TOP are unreachable.
2806 void NewGVN::initializeCongruenceClasses(Function &F) {
2807   NextCongruenceNum = 0;
2808 
2809   // Note that even though we use the live on entry def as a representative
2810   // MemoryAccess, it is *not* the same as the actual live on entry def. We
2811   // have no real equivalemnt to undef for MemoryAccesses, and so we really
2812   // should be checking whether the MemoryAccess is top if we want to know if it
2813   // is equivalent to everything.  Otherwise, what this really signifies is that
2814   // the access "it reaches all the way back to the beginning of the function"
2815 
2816   // Initialize all other instructions to be in TOP class.
2817   TOPClass = createCongruenceClass(nullptr, nullptr);
2818   TOPClass->setMemoryLeader(MSSA->getLiveOnEntryDef());
2819   //  The live on entry def gets put into it's own class
2820   MemoryAccessToClass[MSSA->getLiveOnEntryDef()] =
2821       createMemoryClass(MSSA->getLiveOnEntryDef());
2822 
2823   for (auto DTN : nodes(DT)) {
2824     BasicBlock *BB = DTN->getBlock();
2825     // All MemoryAccesses are equivalent to live on entry to start. They must
2826     // be initialized to something so that initial changes are noticed. For
2827     // the maximal answer, we initialize them all to be the same as
2828     // liveOnEntry.
2829     auto *MemoryBlockDefs = MSSA->getBlockDefs(BB);
2830     if (MemoryBlockDefs)
2831       for (const auto &Def : *MemoryBlockDefs) {
2832         MemoryAccessToClass[&Def] = TOPClass;
2833         auto *MD = dyn_cast<MemoryDef>(&Def);
2834         // Insert the memory phis into the member list.
2835         if (!MD) {
2836           const MemoryPhi *MP = cast<MemoryPhi>(&Def);
2837           TOPClass->memory_insert(MP);
2838           MemoryPhiState.insert({MP, MPS_TOP});
2839         }
2840 
2841         if (MD && isa<StoreInst>(MD->getMemoryInst()))
2842           TOPClass->incStoreCount();
2843       }
2844 
2845     // FIXME: This is trying to discover which instructions are uses of phi
2846     // nodes.  We should move this into one of the myriad of places that walk
2847     // all the operands already.
2848     for (auto &I : *BB) {
2849       if (isa<PHINode>(&I))
2850         for (auto *U : I.users())
2851           if (auto *UInst = dyn_cast<Instruction>(U))
2852             if (InstrToDFSNum(UInst) != 0 && okayForPHIOfOps(UInst))
2853               PHINodeUses.insert(UInst);
2854       // Don't insert void terminators into the class. We don't value number
2855       // them, and they just end up sitting in TOP.
2856       if (I.isTerminator() && I.getType()->isVoidTy())
2857         continue;
2858       TOPClass->insert(&I);
2859       ValueToClass[&I] = TOPClass;
2860     }
2861   }
2862 
2863   // Initialize arguments to be in their own unique congruence classes
2864   for (auto &FA : F.args())
2865     createSingletonCongruenceClass(&FA);
2866 }
2867 
2868 void NewGVN::cleanupTables() {
2869   for (unsigned i = 0, e = CongruenceClasses.size(); i != e; ++i) {
2870     LLVM_DEBUG(dbgs() << "Congruence class " << CongruenceClasses[i]->getID()
2871                       << " has " << CongruenceClasses[i]->size()
2872                       << " members\n");
2873     // Make sure we delete the congruence class (probably worth switching to
2874     // a unique_ptr at some point.
2875     delete CongruenceClasses[i];
2876     CongruenceClasses[i] = nullptr;
2877   }
2878 
2879   // Destroy the value expressions
2880   SmallVector<Instruction *, 8> TempInst(AllTempInstructions.begin(),
2881                                          AllTempInstructions.end());
2882   AllTempInstructions.clear();
2883 
2884   // We have to drop all references for everything first, so there are no uses
2885   // left as we delete them.
2886   for (auto *I : TempInst) {
2887     I->dropAllReferences();
2888   }
2889 
2890   while (!TempInst.empty()) {
2891     auto *I = TempInst.back();
2892     TempInst.pop_back();
2893     I->deleteValue();
2894   }
2895 
2896   ValueToClass.clear();
2897   ArgRecycler.clear(ExpressionAllocator);
2898   ExpressionAllocator.Reset();
2899   CongruenceClasses.clear();
2900   ExpressionToClass.clear();
2901   ValueToExpression.clear();
2902   RealToTemp.clear();
2903   AdditionalUsers.clear();
2904   ExpressionToPhiOfOps.clear();
2905   TempToBlock.clear();
2906   TempToMemory.clear();
2907   PHINodeUses.clear();
2908   OpSafeForPHIOfOps.clear();
2909   ReachableBlocks.clear();
2910   ReachableEdges.clear();
2911 #ifndef NDEBUG
2912   ProcessedCount.clear();
2913 #endif
2914   InstrDFS.clear();
2915   InstructionsToErase.clear();
2916   DFSToInstr.clear();
2917   BlockInstRange.clear();
2918   TouchedInstructions.clear();
2919   MemoryAccessToClass.clear();
2920   PredicateToUsers.clear();
2921   MemoryToUsers.clear();
2922   RevisitOnReachabilityChange.clear();
2923 }
2924 
2925 // Assign local DFS number mapping to instructions, and leave space for Value
2926 // PHI's.
2927 std::pair<unsigned, unsigned> NewGVN::assignDFSNumbers(BasicBlock *B,
2928                                                        unsigned Start) {
2929   unsigned End = Start;
2930   if (MemoryAccess *MemPhi = getMemoryAccess(B)) {
2931     InstrDFS[MemPhi] = End++;
2932     DFSToInstr.emplace_back(MemPhi);
2933   }
2934 
2935   // Then the real block goes next.
2936   for (auto &I : *B) {
2937     // There's no need to call isInstructionTriviallyDead more than once on
2938     // an instruction. Therefore, once we know that an instruction is dead
2939     // we change its DFS number so that it doesn't get value numbered.
2940     if (isInstructionTriviallyDead(&I, TLI)) {
2941       InstrDFS[&I] = 0;
2942       LLVM_DEBUG(dbgs() << "Skipping trivially dead instruction " << I << "\n");
2943       markInstructionForDeletion(&I);
2944       continue;
2945     }
2946     if (isa<PHINode>(&I))
2947       RevisitOnReachabilityChange[B].set(End);
2948     InstrDFS[&I] = End++;
2949     DFSToInstr.emplace_back(&I);
2950   }
2951 
2952   // All of the range functions taken half-open ranges (open on the end side).
2953   // So we do not subtract one from count, because at this point it is one
2954   // greater than the last instruction.
2955   return std::make_pair(Start, End);
2956 }
2957 
2958 void NewGVN::updateProcessedCount(const Value *V) {
2959 #ifndef NDEBUG
2960   if (ProcessedCount.count(V) == 0) {
2961     ProcessedCount.insert({V, 1});
2962   } else {
2963     ++ProcessedCount[V];
2964     assert(ProcessedCount[V] < 100 &&
2965            "Seem to have processed the same Value a lot");
2966   }
2967 #endif
2968 }
2969 
2970 // Evaluate MemoryPhi nodes symbolically, just like PHI nodes
2971 void NewGVN::valueNumberMemoryPhi(MemoryPhi *MP) {
2972   // If all the arguments are the same, the MemoryPhi has the same value as the
2973   // argument.  Filter out unreachable blocks and self phis from our operands.
2974   // TODO: We could do cycle-checking on the memory phis to allow valueizing for
2975   // self-phi checking.
2976   const BasicBlock *PHIBlock = MP->getBlock();
2977   auto Filtered = make_filter_range(MP->operands(), [&](const Use &U) {
2978     return cast<MemoryAccess>(U) != MP &&
2979            !isMemoryAccessTOP(cast<MemoryAccess>(U)) &&
2980            ReachableEdges.count({MP->getIncomingBlock(U), PHIBlock});
2981   });
2982   // If all that is left is nothing, our memoryphi is undef. We keep it as
2983   // InitialClass.  Note: The only case this should happen is if we have at
2984   // least one self-argument.
2985   if (Filtered.begin() == Filtered.end()) {
2986     if (setMemoryClass(MP, TOPClass))
2987       markMemoryUsersTouched(MP);
2988     return;
2989   }
2990 
2991   // Transform the remaining operands into operand leaders.
2992   // FIXME: mapped_iterator should have a range version.
2993   auto LookupFunc = [&](const Use &U) {
2994     return lookupMemoryLeader(cast<MemoryAccess>(U));
2995   };
2996   auto MappedBegin = map_iterator(Filtered.begin(), LookupFunc);
2997   auto MappedEnd = map_iterator(Filtered.end(), LookupFunc);
2998 
2999   // and now check if all the elements are equal.
3000   // Sadly, we can't use std::equals since these are random access iterators.
3001   const auto *AllSameValue = *MappedBegin;
3002   ++MappedBegin;
3003   bool AllEqual = std::all_of(
3004       MappedBegin, MappedEnd,
3005       [&AllSameValue](const MemoryAccess *V) { return V == AllSameValue; });
3006 
3007   if (AllEqual)
3008     LLVM_DEBUG(dbgs() << "Memory Phi value numbered to " << *AllSameValue
3009                       << "\n");
3010   else
3011     LLVM_DEBUG(dbgs() << "Memory Phi value numbered to itself\n");
3012   // If it's equal to something, it's in that class. Otherwise, it has to be in
3013   // a class where it is the leader (other things may be equivalent to it, but
3014   // it needs to start off in its own class, which means it must have been the
3015   // leader, and it can't have stopped being the leader because it was never
3016   // removed).
3017   CongruenceClass *CC =
3018       AllEqual ? getMemoryClass(AllSameValue) : ensureLeaderOfMemoryClass(MP);
3019   auto OldState = MemoryPhiState.lookup(MP);
3020   assert(OldState != MPS_Invalid && "Invalid memory phi state");
3021   auto NewState = AllEqual ? MPS_Equivalent : MPS_Unique;
3022   MemoryPhiState[MP] = NewState;
3023   if (setMemoryClass(MP, CC) || OldState != NewState)
3024     markMemoryUsersTouched(MP);
3025 }
3026 
3027 // Value number a single instruction, symbolically evaluating, performing
3028 // congruence finding, and updating mappings.
3029 void NewGVN::valueNumberInstruction(Instruction *I) {
3030   LLVM_DEBUG(dbgs() << "Processing instruction " << *I << "\n");
3031   if (!I->isTerminator()) {
3032     const Expression *Symbolized = nullptr;
3033     SmallPtrSet<Value *, 2> Visited;
3034     if (DebugCounter::shouldExecute(VNCounter)) {
3035       Symbolized = performSymbolicEvaluation(I, Visited);
3036       // Make a phi of ops if necessary
3037       if (Symbolized && !isa<ConstantExpression>(Symbolized) &&
3038           !isa<VariableExpression>(Symbolized) && PHINodeUses.count(I)) {
3039         auto *PHIE = makePossiblePHIOfOps(I, Visited);
3040         // If we created a phi of ops, use it.
3041         // If we couldn't create one, make sure we don't leave one lying around
3042         if (PHIE) {
3043           Symbolized = PHIE;
3044         } else if (auto *Op = RealToTemp.lookup(I)) {
3045           removePhiOfOps(I, Op);
3046         }
3047       }
3048     } else {
3049       // Mark the instruction as unused so we don't value number it again.
3050       InstrDFS[I] = 0;
3051     }
3052     // If we couldn't come up with a symbolic expression, use the unknown
3053     // expression
3054     if (Symbolized == nullptr)
3055       Symbolized = createUnknownExpression(I);
3056     performCongruenceFinding(I, Symbolized);
3057   } else {
3058     // Handle terminators that return values. All of them produce values we
3059     // don't currently understand.  We don't place non-value producing
3060     // terminators in a class.
3061     if (!I->getType()->isVoidTy()) {
3062       auto *Symbolized = createUnknownExpression(I);
3063       performCongruenceFinding(I, Symbolized);
3064     }
3065     processOutgoingEdges(I, I->getParent());
3066   }
3067 }
3068 
3069 // Check if there is a path, using single or equal argument phi nodes, from
3070 // First to Second.
3071 bool NewGVN::singleReachablePHIPath(
3072     SmallPtrSet<const MemoryAccess *, 8> &Visited, const MemoryAccess *First,
3073     const MemoryAccess *Second) const {
3074   if (First == Second)
3075     return true;
3076   if (MSSA->isLiveOnEntryDef(First))
3077     return false;
3078 
3079   // This is not perfect, but as we're just verifying here, we can live with
3080   // the loss of precision. The real solution would be that of doing strongly
3081   // connected component finding in this routine, and it's probably not worth
3082   // the complexity for the time being. So, we just keep a set of visited
3083   // MemoryAccess and return true when we hit a cycle.
3084   if (Visited.count(First))
3085     return true;
3086   Visited.insert(First);
3087 
3088   const auto *EndDef = First;
3089   for (auto *ChainDef : optimized_def_chain(First)) {
3090     if (ChainDef == Second)
3091       return true;
3092     if (MSSA->isLiveOnEntryDef(ChainDef))
3093       return false;
3094     EndDef = ChainDef;
3095   }
3096   auto *MP = cast<MemoryPhi>(EndDef);
3097   auto ReachableOperandPred = [&](const Use &U) {
3098     return ReachableEdges.count({MP->getIncomingBlock(U), MP->getBlock()});
3099   };
3100   auto FilteredPhiArgs =
3101       make_filter_range(MP->operands(), ReachableOperandPred);
3102   SmallVector<const Value *, 32> OperandList;
3103   llvm::copy(FilteredPhiArgs, std::back_inserter(OperandList));
3104   bool Okay = is_splat(OperandList);
3105   if (Okay)
3106     return singleReachablePHIPath(Visited, cast<MemoryAccess>(OperandList[0]),
3107                                   Second);
3108   return false;
3109 }
3110 
3111 // Verify the that the memory equivalence table makes sense relative to the
3112 // congruence classes.  Note that this checking is not perfect, and is currently
3113 // subject to very rare false negatives. It is only useful for
3114 // testing/debugging.
3115 void NewGVN::verifyMemoryCongruency() const {
3116 #ifndef NDEBUG
3117   // Verify that the memory table equivalence and memory member set match
3118   for (const auto *CC : CongruenceClasses) {
3119     if (CC == TOPClass || CC->isDead())
3120       continue;
3121     if (CC->getStoreCount() != 0) {
3122       assert((CC->getStoredValue() || !isa<StoreInst>(CC->getLeader())) &&
3123              "Any class with a store as a leader should have a "
3124              "representative stored value");
3125       assert(CC->getMemoryLeader() &&
3126              "Any congruence class with a store should have a "
3127              "representative access");
3128     }
3129 
3130     if (CC->getMemoryLeader())
3131       assert(MemoryAccessToClass.lookup(CC->getMemoryLeader()) == CC &&
3132              "Representative MemoryAccess does not appear to be reverse "
3133              "mapped properly");
3134     for (auto M : CC->memory())
3135       assert(MemoryAccessToClass.lookup(M) == CC &&
3136              "Memory member does not appear to be reverse mapped properly");
3137   }
3138 
3139   // Anything equivalent in the MemoryAccess table should be in the same
3140   // congruence class.
3141 
3142   // Filter out the unreachable and trivially dead entries, because they may
3143   // never have been updated if the instructions were not processed.
3144   auto ReachableAccessPred =
3145       [&](const std::pair<const MemoryAccess *, CongruenceClass *> Pair) {
3146         bool Result = ReachableBlocks.count(Pair.first->getBlock());
3147         if (!Result || MSSA->isLiveOnEntryDef(Pair.first) ||
3148             MemoryToDFSNum(Pair.first) == 0)
3149           return false;
3150         if (auto *MemDef = dyn_cast<MemoryDef>(Pair.first))
3151           return !isInstructionTriviallyDead(MemDef->getMemoryInst());
3152 
3153         // We could have phi nodes which operands are all trivially dead,
3154         // so we don't process them.
3155         if (auto *MemPHI = dyn_cast<MemoryPhi>(Pair.first)) {
3156           for (auto &U : MemPHI->incoming_values()) {
3157             if (auto *I = dyn_cast<Instruction>(&*U)) {
3158               if (!isInstructionTriviallyDead(I))
3159                 return true;
3160             }
3161           }
3162           return false;
3163         }
3164 
3165         return true;
3166       };
3167 
3168   auto Filtered = make_filter_range(MemoryAccessToClass, ReachableAccessPred);
3169   for (auto KV : Filtered) {
3170     if (auto *FirstMUD = dyn_cast<MemoryUseOrDef>(KV.first)) {
3171       auto *SecondMUD = dyn_cast<MemoryUseOrDef>(KV.second->getMemoryLeader());
3172       if (FirstMUD && SecondMUD) {
3173         SmallPtrSet<const MemoryAccess *, 8> VisitedMAS;
3174         assert((singleReachablePHIPath(VisitedMAS, FirstMUD, SecondMUD) ||
3175                 ValueToClass.lookup(FirstMUD->getMemoryInst()) ==
3176                     ValueToClass.lookup(SecondMUD->getMemoryInst())) &&
3177                "The instructions for these memory operations should have "
3178                "been in the same congruence class or reachable through"
3179                "a single argument phi");
3180       }
3181     } else if (auto *FirstMP = dyn_cast<MemoryPhi>(KV.first)) {
3182       // We can only sanely verify that MemoryDefs in the operand list all have
3183       // the same class.
3184       auto ReachableOperandPred = [&](const Use &U) {
3185         return ReachableEdges.count(
3186                    {FirstMP->getIncomingBlock(U), FirstMP->getBlock()}) &&
3187                isa<MemoryDef>(U);
3188 
3189       };
3190       // All arguments should in the same class, ignoring unreachable arguments
3191       auto FilteredPhiArgs =
3192           make_filter_range(FirstMP->operands(), ReachableOperandPred);
3193       SmallVector<const CongruenceClass *, 16> PhiOpClasses;
3194       std::transform(FilteredPhiArgs.begin(), FilteredPhiArgs.end(),
3195                      std::back_inserter(PhiOpClasses), [&](const Use &U) {
3196                        const MemoryDef *MD = cast<MemoryDef>(U);
3197                        return ValueToClass.lookup(MD->getMemoryInst());
3198                      });
3199       assert(is_splat(PhiOpClasses) &&
3200              "All MemoryPhi arguments should be in the same class");
3201     }
3202   }
3203 #endif
3204 }
3205 
3206 // Verify that the sparse propagation we did actually found the maximal fixpoint
3207 // We do this by storing the value to class mapping, touching all instructions,
3208 // and redoing the iteration to see if anything changed.
3209 void NewGVN::verifyIterationSettled(Function &F) {
3210 #ifndef NDEBUG
3211   LLVM_DEBUG(dbgs() << "Beginning iteration verification\n");
3212   if (DebugCounter::isCounterSet(VNCounter))
3213     DebugCounter::setCounterValue(VNCounter, StartingVNCounter);
3214 
3215   // Note that we have to store the actual classes, as we may change existing
3216   // classes during iteration.  This is because our memory iteration propagation
3217   // is not perfect, and so may waste a little work.  But it should generate
3218   // exactly the same congruence classes we have now, with different IDs.
3219   std::map<const Value *, CongruenceClass> BeforeIteration;
3220 
3221   for (auto &KV : ValueToClass) {
3222     if (auto *I = dyn_cast<Instruction>(KV.first))
3223       // Skip unused/dead instructions.
3224       if (InstrToDFSNum(I) == 0)
3225         continue;
3226     BeforeIteration.insert({KV.first, *KV.second});
3227   }
3228 
3229   TouchedInstructions.set();
3230   TouchedInstructions.reset(0);
3231   iterateTouchedInstructions();
3232   DenseSet<std::pair<const CongruenceClass *, const CongruenceClass *>>
3233       EqualClasses;
3234   for (const auto &KV : ValueToClass) {
3235     if (auto *I = dyn_cast<Instruction>(KV.first))
3236       // Skip unused/dead instructions.
3237       if (InstrToDFSNum(I) == 0)
3238         continue;
3239     // We could sink these uses, but i think this adds a bit of clarity here as
3240     // to what we are comparing.
3241     auto *BeforeCC = &BeforeIteration.find(KV.first)->second;
3242     auto *AfterCC = KV.second;
3243     // Note that the classes can't change at this point, so we memoize the set
3244     // that are equal.
3245     if (!EqualClasses.count({BeforeCC, AfterCC})) {
3246       assert(BeforeCC->isEquivalentTo(AfterCC) &&
3247              "Value number changed after main loop completed!");
3248       EqualClasses.insert({BeforeCC, AfterCC});
3249     }
3250   }
3251 #endif
3252 }
3253 
3254 // Verify that for each store expression in the expression to class mapping,
3255 // only the latest appears, and multiple ones do not appear.
3256 // Because loads do not use the stored value when doing equality with stores,
3257 // if we don't erase the old store expressions from the table, a load can find
3258 // a no-longer valid StoreExpression.
3259 void NewGVN::verifyStoreExpressions() const {
3260 #ifndef NDEBUG
3261   // This is the only use of this, and it's not worth defining a complicated
3262   // densemapinfo hash/equality function for it.
3263   std::set<
3264       std::pair<const Value *,
3265                 std::tuple<const Value *, const CongruenceClass *, Value *>>>
3266       StoreExpressionSet;
3267   for (const auto &KV : ExpressionToClass) {
3268     if (auto *SE = dyn_cast<StoreExpression>(KV.first)) {
3269       // Make sure a version that will conflict with loads is not already there
3270       auto Res = StoreExpressionSet.insert(
3271           {SE->getOperand(0), std::make_tuple(SE->getMemoryLeader(), KV.second,
3272                                               SE->getStoredValue())});
3273       bool Okay = Res.second;
3274       // It's okay to have the same expression already in there if it is
3275       // identical in nature.
3276       // This can happen when the leader of the stored value changes over time.
3277       if (!Okay)
3278         Okay = (std::get<1>(Res.first->second) == KV.second) &&
3279                (lookupOperandLeader(std::get<2>(Res.first->second)) ==
3280                 lookupOperandLeader(SE->getStoredValue()));
3281       assert(Okay && "Stored expression conflict exists in expression table");
3282       auto *ValueExpr = ValueToExpression.lookup(SE->getStoreInst());
3283       assert(ValueExpr && ValueExpr->equals(*SE) &&
3284              "StoreExpression in ExpressionToClass is not latest "
3285              "StoreExpression for value");
3286     }
3287   }
3288 #endif
3289 }
3290 
3291 // This is the main value numbering loop, it iterates over the initial touched
3292 // instruction set, propagating value numbers, marking things touched, etc,
3293 // until the set of touched instructions is completely empty.
3294 void NewGVN::iterateTouchedInstructions() {
3295   unsigned int Iterations = 0;
3296   // Figure out where touchedinstructions starts
3297   int FirstInstr = TouchedInstructions.find_first();
3298   // Nothing set, nothing to iterate, just return.
3299   if (FirstInstr == -1)
3300     return;
3301   const BasicBlock *LastBlock = getBlockForValue(InstrFromDFSNum(FirstInstr));
3302   while (TouchedInstructions.any()) {
3303     ++Iterations;
3304     // Walk through all the instructions in all the blocks in RPO.
3305     // TODO: As we hit a new block, we should push and pop equalities into a
3306     // table lookupOperandLeader can use, to catch things PredicateInfo
3307     // might miss, like edge-only equivalences.
3308     for (unsigned InstrNum : TouchedInstructions.set_bits()) {
3309 
3310       // This instruction was found to be dead. We don't bother looking
3311       // at it again.
3312       if (InstrNum == 0) {
3313         TouchedInstructions.reset(InstrNum);
3314         continue;
3315       }
3316 
3317       Value *V = InstrFromDFSNum(InstrNum);
3318       const BasicBlock *CurrBlock = getBlockForValue(V);
3319 
3320       // If we hit a new block, do reachability processing.
3321       if (CurrBlock != LastBlock) {
3322         LastBlock = CurrBlock;
3323         bool BlockReachable = ReachableBlocks.count(CurrBlock);
3324         const auto &CurrInstRange = BlockInstRange.lookup(CurrBlock);
3325 
3326         // If it's not reachable, erase any touched instructions and move on.
3327         if (!BlockReachable) {
3328           TouchedInstructions.reset(CurrInstRange.first, CurrInstRange.second);
3329           LLVM_DEBUG(dbgs() << "Skipping instructions in block "
3330                             << getBlockName(CurrBlock)
3331                             << " because it is unreachable\n");
3332           continue;
3333         }
3334         updateProcessedCount(CurrBlock);
3335       }
3336       // Reset after processing (because we may mark ourselves as touched when
3337       // we propagate equalities).
3338       TouchedInstructions.reset(InstrNum);
3339 
3340       if (auto *MP = dyn_cast<MemoryPhi>(V)) {
3341         LLVM_DEBUG(dbgs() << "Processing MemoryPhi " << *MP << "\n");
3342         valueNumberMemoryPhi(MP);
3343       } else if (auto *I = dyn_cast<Instruction>(V)) {
3344         valueNumberInstruction(I);
3345       } else {
3346         llvm_unreachable("Should have been a MemoryPhi or Instruction");
3347       }
3348       updateProcessedCount(V);
3349     }
3350   }
3351   NumGVNMaxIterations = std::max(NumGVNMaxIterations.getValue(), Iterations);
3352 }
3353 
3354 // This is the main transformation entry point.
3355 bool NewGVN::runGVN() {
3356   if (DebugCounter::isCounterSet(VNCounter))
3357     StartingVNCounter = DebugCounter::getCounterValue(VNCounter);
3358   bool Changed = false;
3359   NumFuncArgs = F.arg_size();
3360   MSSAWalker = MSSA->getWalker();
3361   SingletonDeadExpression = new (ExpressionAllocator) DeadExpression();
3362 
3363   // Count number of instructions for sizing of hash tables, and come
3364   // up with a global dfs numbering for instructions.
3365   unsigned ICount = 1;
3366   // Add an empty instruction to account for the fact that we start at 1
3367   DFSToInstr.emplace_back(nullptr);
3368   // Note: We want ideal RPO traversal of the blocks, which is not quite the
3369   // same as dominator tree order, particularly with regard whether backedges
3370   // get visited first or second, given a block with multiple successors.
3371   // If we visit in the wrong order, we will end up performing N times as many
3372   // iterations.
3373   // The dominator tree does guarantee that, for a given dom tree node, it's
3374   // parent must occur before it in the RPO ordering. Thus, we only need to sort
3375   // the siblings.
3376   ReversePostOrderTraversal<Function *> RPOT(&F);
3377   unsigned Counter = 0;
3378   for (auto &B : RPOT) {
3379     auto *Node = DT->getNode(B);
3380     assert(Node && "RPO and Dominator tree should have same reachability");
3381     RPOOrdering[Node] = ++Counter;
3382   }
3383   // Sort dominator tree children arrays into RPO.
3384   for (auto &B : RPOT) {
3385     auto *Node = DT->getNode(B);
3386     if (Node->getNumChildren() > 1)
3387       llvm::sort(Node->begin(), Node->end(),
3388                  [&](const DomTreeNode *A, const DomTreeNode *B) {
3389                    return RPOOrdering[A] < RPOOrdering[B];
3390                  });
3391   }
3392 
3393   // Now a standard depth first ordering of the domtree is equivalent to RPO.
3394   for (auto DTN : depth_first(DT->getRootNode())) {
3395     BasicBlock *B = DTN->getBlock();
3396     const auto &BlockRange = assignDFSNumbers(B, ICount);
3397     BlockInstRange.insert({B, BlockRange});
3398     ICount += BlockRange.second - BlockRange.first;
3399   }
3400   initializeCongruenceClasses(F);
3401 
3402   TouchedInstructions.resize(ICount);
3403   // Ensure we don't end up resizing the expressionToClass map, as
3404   // that can be quite expensive. At most, we have one expression per
3405   // instruction.
3406   ExpressionToClass.reserve(ICount);
3407 
3408   // Initialize the touched instructions to include the entry block.
3409   const auto &InstRange = BlockInstRange.lookup(&F.getEntryBlock());
3410   TouchedInstructions.set(InstRange.first, InstRange.second);
3411   LLVM_DEBUG(dbgs() << "Block " << getBlockName(&F.getEntryBlock())
3412                     << " marked reachable\n");
3413   ReachableBlocks.insert(&F.getEntryBlock());
3414 
3415   iterateTouchedInstructions();
3416   verifyMemoryCongruency();
3417   verifyIterationSettled(F);
3418   verifyStoreExpressions();
3419 
3420   Changed |= eliminateInstructions(F);
3421 
3422   // Delete all instructions marked for deletion.
3423   for (Instruction *ToErase : InstructionsToErase) {
3424     if (!ToErase->use_empty())
3425       ToErase->replaceAllUsesWith(UndefValue::get(ToErase->getType()));
3426 
3427     assert(ToErase->getParent() &&
3428            "BB containing ToErase deleted unexpectedly!");
3429     ToErase->eraseFromParent();
3430   }
3431   Changed |= !InstructionsToErase.empty();
3432 
3433   // Delete all unreachable blocks.
3434   auto UnreachableBlockPred = [&](const BasicBlock &BB) {
3435     return !ReachableBlocks.count(&BB);
3436   };
3437 
3438   for (auto &BB : make_filter_range(F, UnreachableBlockPred)) {
3439     LLVM_DEBUG(dbgs() << "We believe block " << getBlockName(&BB)
3440                       << " is unreachable\n");
3441     deleteInstructionsInBlock(&BB);
3442     Changed = true;
3443   }
3444 
3445   cleanupTables();
3446   return Changed;
3447 }
3448 
3449 struct NewGVN::ValueDFS {
3450   int DFSIn = 0;
3451   int DFSOut = 0;
3452   int LocalNum = 0;
3453 
3454   // Only one of Def and U will be set.
3455   // The bool in the Def tells us whether the Def is the stored value of a
3456   // store.
3457   PointerIntPair<Value *, 1, bool> Def;
3458   Use *U = nullptr;
3459 
3460   bool operator<(const ValueDFS &Other) const {
3461     // It's not enough that any given field be less than - we have sets
3462     // of fields that need to be evaluated together to give a proper ordering.
3463     // For example, if you have;
3464     // DFS (1, 3)
3465     // Val 0
3466     // DFS (1, 2)
3467     // Val 50
3468     // We want the second to be less than the first, but if we just go field
3469     // by field, we will get to Val 0 < Val 50 and say the first is less than
3470     // the second. We only want it to be less than if the DFS orders are equal.
3471     //
3472     // Each LLVM instruction only produces one value, and thus the lowest-level
3473     // differentiator that really matters for the stack (and what we use as as a
3474     // replacement) is the local dfs number.
3475     // Everything else in the structure is instruction level, and only affects
3476     // the order in which we will replace operands of a given instruction.
3477     //
3478     // For a given instruction (IE things with equal dfsin, dfsout, localnum),
3479     // the order of replacement of uses does not matter.
3480     // IE given,
3481     //  a = 5
3482     //  b = a + a
3483     // When you hit b, you will have two valuedfs with the same dfsin, out, and
3484     // localnum.
3485     // The .val will be the same as well.
3486     // The .u's will be different.
3487     // You will replace both, and it does not matter what order you replace them
3488     // in (IE whether you replace operand 2, then operand 1, or operand 1, then
3489     // operand 2).
3490     // Similarly for the case of same dfsin, dfsout, localnum, but different
3491     // .val's
3492     //  a = 5
3493     //  b  = 6
3494     //  c = a + b
3495     // in c, we will a valuedfs for a, and one for b,with everything the same
3496     // but .val  and .u.
3497     // It does not matter what order we replace these operands in.
3498     // You will always end up with the same IR, and this is guaranteed.
3499     return std::tie(DFSIn, DFSOut, LocalNum, Def, U) <
3500            std::tie(Other.DFSIn, Other.DFSOut, Other.LocalNum, Other.Def,
3501                     Other.U);
3502   }
3503 };
3504 
3505 // This function converts the set of members for a congruence class from values,
3506 // to sets of defs and uses with associated DFS info.  The total number of
3507 // reachable uses for each value is stored in UseCount, and instructions that
3508 // seem
3509 // dead (have no non-dead uses) are stored in ProbablyDead.
3510 void NewGVN::convertClassToDFSOrdered(
3511     const CongruenceClass &Dense, SmallVectorImpl<ValueDFS> &DFSOrderedSet,
3512     DenseMap<const Value *, unsigned int> &UseCounts,
3513     SmallPtrSetImpl<Instruction *> &ProbablyDead) const {
3514   for (auto D : Dense) {
3515     // First add the value.
3516     BasicBlock *BB = getBlockForValue(D);
3517     // Constants are handled prior to ever calling this function, so
3518     // we should only be left with instructions as members.
3519     assert(BB && "Should have figured out a basic block for value");
3520     ValueDFS VDDef;
3521     DomTreeNode *DomNode = DT->getNode(BB);
3522     VDDef.DFSIn = DomNode->getDFSNumIn();
3523     VDDef.DFSOut = DomNode->getDFSNumOut();
3524     // If it's a store, use the leader of the value operand, if it's always
3525     // available, or the value operand.  TODO: We could do dominance checks to
3526     // find a dominating leader, but not worth it ATM.
3527     if (auto *SI = dyn_cast<StoreInst>(D)) {
3528       auto Leader = lookupOperandLeader(SI->getValueOperand());
3529       if (alwaysAvailable(Leader)) {
3530         VDDef.Def.setPointer(Leader);
3531       } else {
3532         VDDef.Def.setPointer(SI->getValueOperand());
3533         VDDef.Def.setInt(true);
3534       }
3535     } else {
3536       VDDef.Def.setPointer(D);
3537     }
3538     assert(isa<Instruction>(D) &&
3539            "The dense set member should always be an instruction");
3540     Instruction *Def = cast<Instruction>(D);
3541     VDDef.LocalNum = InstrToDFSNum(D);
3542     DFSOrderedSet.push_back(VDDef);
3543     // If there is a phi node equivalent, add it
3544     if (auto *PN = RealToTemp.lookup(Def)) {
3545       auto *PHIE =
3546           dyn_cast_or_null<PHIExpression>(ValueToExpression.lookup(Def));
3547       if (PHIE) {
3548         VDDef.Def.setInt(false);
3549         VDDef.Def.setPointer(PN);
3550         VDDef.LocalNum = 0;
3551         DFSOrderedSet.push_back(VDDef);
3552       }
3553     }
3554 
3555     unsigned int UseCount = 0;
3556     // Now add the uses.
3557     for (auto &U : Def->uses()) {
3558       if (auto *I = dyn_cast<Instruction>(U.getUser())) {
3559         // Don't try to replace into dead uses
3560         if (InstructionsToErase.count(I))
3561           continue;
3562         ValueDFS VDUse;
3563         // Put the phi node uses in the incoming block.
3564         BasicBlock *IBlock;
3565         if (auto *P = dyn_cast<PHINode>(I)) {
3566           IBlock = P->getIncomingBlock(U);
3567           // Make phi node users appear last in the incoming block
3568           // they are from.
3569           VDUse.LocalNum = InstrDFS.size() + 1;
3570         } else {
3571           IBlock = getBlockForValue(I);
3572           VDUse.LocalNum = InstrToDFSNum(I);
3573         }
3574 
3575         // Skip uses in unreachable blocks, as we're going
3576         // to delete them.
3577         if (ReachableBlocks.count(IBlock) == 0)
3578           continue;
3579 
3580         DomTreeNode *DomNode = DT->getNode(IBlock);
3581         VDUse.DFSIn = DomNode->getDFSNumIn();
3582         VDUse.DFSOut = DomNode->getDFSNumOut();
3583         VDUse.U = &U;
3584         ++UseCount;
3585         DFSOrderedSet.emplace_back(VDUse);
3586       }
3587     }
3588 
3589     // If there are no uses, it's probably dead (but it may have side-effects,
3590     // so not definitely dead. Otherwise, store the number of uses so we can
3591     // track if it becomes dead later).
3592     if (UseCount == 0)
3593       ProbablyDead.insert(Def);
3594     else
3595       UseCounts[Def] = UseCount;
3596   }
3597 }
3598 
3599 // This function converts the set of members for a congruence class from values,
3600 // to the set of defs for loads and stores, with associated DFS info.
3601 void NewGVN::convertClassToLoadsAndStores(
3602     const CongruenceClass &Dense,
3603     SmallVectorImpl<ValueDFS> &LoadsAndStores) const {
3604   for (auto D : Dense) {
3605     if (!isa<LoadInst>(D) && !isa<StoreInst>(D))
3606       continue;
3607 
3608     BasicBlock *BB = getBlockForValue(D);
3609     ValueDFS VD;
3610     DomTreeNode *DomNode = DT->getNode(BB);
3611     VD.DFSIn = DomNode->getDFSNumIn();
3612     VD.DFSOut = DomNode->getDFSNumOut();
3613     VD.Def.setPointer(D);
3614 
3615     // If it's an instruction, use the real local dfs number.
3616     if (auto *I = dyn_cast<Instruction>(D))
3617       VD.LocalNum = InstrToDFSNum(I);
3618     else
3619       llvm_unreachable("Should have been an instruction");
3620 
3621     LoadsAndStores.emplace_back(VD);
3622   }
3623 }
3624 
3625 static void patchAndReplaceAllUsesWith(Instruction *I, Value *Repl) {
3626   patchReplacementInstruction(I, Repl);
3627   I->replaceAllUsesWith(Repl);
3628 }
3629 
3630 void NewGVN::deleteInstructionsInBlock(BasicBlock *BB) {
3631   LLVM_DEBUG(dbgs() << "  BasicBlock Dead:" << *BB);
3632   ++NumGVNBlocksDeleted;
3633 
3634   // Delete the instructions backwards, as it has a reduced likelihood of having
3635   // to update as many def-use and use-def chains. Start after the terminator.
3636   auto StartPoint = BB->rbegin();
3637   ++StartPoint;
3638   // Note that we explicitly recalculate BB->rend() on each iteration,
3639   // as it may change when we remove the first instruction.
3640   for (BasicBlock::reverse_iterator I(StartPoint); I != BB->rend();) {
3641     Instruction &Inst = *I++;
3642     if (!Inst.use_empty())
3643       Inst.replaceAllUsesWith(UndefValue::get(Inst.getType()));
3644     if (isa<LandingPadInst>(Inst))
3645       continue;
3646     salvageKnowledge(&Inst, AC);
3647 
3648     Inst.eraseFromParent();
3649     ++NumGVNInstrDeleted;
3650   }
3651   // Now insert something that simplifycfg will turn into an unreachable.
3652   Type *Int8Ty = Type::getInt8Ty(BB->getContext());
3653   new StoreInst(UndefValue::get(Int8Ty),
3654                 Constant::getNullValue(Int8Ty->getPointerTo()),
3655                 BB->getTerminator());
3656 }
3657 
3658 void NewGVN::markInstructionForDeletion(Instruction *I) {
3659   LLVM_DEBUG(dbgs() << "Marking " << *I << " for deletion\n");
3660   InstructionsToErase.insert(I);
3661 }
3662 
3663 void NewGVN::replaceInstruction(Instruction *I, Value *V) {
3664   LLVM_DEBUG(dbgs() << "Replacing " << *I << " with " << *V << "\n");
3665   patchAndReplaceAllUsesWith(I, V);
3666   // We save the actual erasing to avoid invalidating memory
3667   // dependencies until we are done with everything.
3668   markInstructionForDeletion(I);
3669 }
3670 
3671 namespace {
3672 
3673 // This is a stack that contains both the value and dfs info of where
3674 // that value is valid.
3675 class ValueDFSStack {
3676 public:
3677   Value *back() const { return ValueStack.back(); }
3678   std::pair<int, int> dfs_back() const { return DFSStack.back(); }
3679 
3680   void push_back(Value *V, int DFSIn, int DFSOut) {
3681     ValueStack.emplace_back(V);
3682     DFSStack.emplace_back(DFSIn, DFSOut);
3683   }
3684 
3685   bool empty() const { return DFSStack.empty(); }
3686 
3687   bool isInScope(int DFSIn, int DFSOut) const {
3688     if (empty())
3689       return false;
3690     return DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second;
3691   }
3692 
3693   void popUntilDFSScope(int DFSIn, int DFSOut) {
3694 
3695     // These two should always be in sync at this point.
3696     assert(ValueStack.size() == DFSStack.size() &&
3697            "Mismatch between ValueStack and DFSStack");
3698     while (
3699         !DFSStack.empty() &&
3700         !(DFSIn >= DFSStack.back().first && DFSOut <= DFSStack.back().second)) {
3701       DFSStack.pop_back();
3702       ValueStack.pop_back();
3703     }
3704   }
3705 
3706 private:
3707   SmallVector<Value *, 8> ValueStack;
3708   SmallVector<std::pair<int, int>, 8> DFSStack;
3709 };
3710 
3711 } // end anonymous namespace
3712 
3713 // Given an expression, get the congruence class for it.
3714 CongruenceClass *NewGVN::getClassForExpression(const Expression *E) const {
3715   if (auto *VE = dyn_cast<VariableExpression>(E))
3716     return ValueToClass.lookup(VE->getVariableValue());
3717   else if (isa<DeadExpression>(E))
3718     return TOPClass;
3719   return ExpressionToClass.lookup(E);
3720 }
3721 
3722 // Given a value and a basic block we are trying to see if it is available in,
3723 // see if the value has a leader available in that block.
3724 Value *NewGVN::findPHIOfOpsLeader(const Expression *E,
3725                                   const Instruction *OrigInst,
3726                                   const BasicBlock *BB) const {
3727   // It would already be constant if we could make it constant
3728   if (auto *CE = dyn_cast<ConstantExpression>(E))
3729     return CE->getConstantValue();
3730   if (auto *VE = dyn_cast<VariableExpression>(E)) {
3731     auto *V = VE->getVariableValue();
3732     if (alwaysAvailable(V) || DT->dominates(getBlockForValue(V), BB))
3733       return VE->getVariableValue();
3734   }
3735 
3736   auto *CC = getClassForExpression(E);
3737   if (!CC)
3738     return nullptr;
3739   if (alwaysAvailable(CC->getLeader()))
3740     return CC->getLeader();
3741 
3742   for (auto Member : *CC) {
3743     auto *MemberInst = dyn_cast<Instruction>(Member);
3744     if (MemberInst == OrigInst)
3745       continue;
3746     // Anything that isn't an instruction is always available.
3747     if (!MemberInst)
3748       return Member;
3749     if (DT->dominates(getBlockForValue(MemberInst), BB))
3750       return Member;
3751   }
3752   return nullptr;
3753 }
3754 
3755 bool NewGVN::eliminateInstructions(Function &F) {
3756   // This is a non-standard eliminator. The normal way to eliminate is
3757   // to walk the dominator tree in order, keeping track of available
3758   // values, and eliminating them.  However, this is mildly
3759   // pointless. It requires doing lookups on every instruction,
3760   // regardless of whether we will ever eliminate it.  For
3761   // instructions part of most singleton congruence classes, we know we
3762   // will never eliminate them.
3763 
3764   // Instead, this eliminator looks at the congruence classes directly, sorts
3765   // them into a DFS ordering of the dominator tree, and then we just
3766   // perform elimination straight on the sets by walking the congruence
3767   // class member uses in order, and eliminate the ones dominated by the
3768   // last member.   This is worst case O(E log E) where E = number of
3769   // instructions in a single congruence class.  In theory, this is all
3770   // instructions.   In practice, it is much faster, as most instructions are
3771   // either in singleton congruence classes or can't possibly be eliminated
3772   // anyway (if there are no overlapping DFS ranges in class).
3773   // When we find something not dominated, it becomes the new leader
3774   // for elimination purposes.
3775   // TODO: If we wanted to be faster, We could remove any members with no
3776   // overlapping ranges while sorting, as we will never eliminate anything
3777   // with those members, as they don't dominate anything else in our set.
3778 
3779   bool AnythingReplaced = false;
3780 
3781   // Since we are going to walk the domtree anyway, and we can't guarantee the
3782   // DFS numbers are updated, we compute some ourselves.
3783   DT->updateDFSNumbers();
3784 
3785   // Go through all of our phi nodes, and kill the arguments associated with
3786   // unreachable edges.
3787   auto ReplaceUnreachablePHIArgs = [&](PHINode *PHI, BasicBlock *BB) {
3788     for (auto &Operand : PHI->incoming_values())
3789       if (!ReachableEdges.count({PHI->getIncomingBlock(Operand), BB})) {
3790         LLVM_DEBUG(dbgs() << "Replacing incoming value of " << PHI
3791                           << " for block "
3792                           << getBlockName(PHI->getIncomingBlock(Operand))
3793                           << " with undef due to it being unreachable\n");
3794         Operand.set(UndefValue::get(PHI->getType()));
3795       }
3796   };
3797   // Replace unreachable phi arguments.
3798   // At this point, RevisitOnReachabilityChange only contains:
3799   //
3800   // 1. PHIs
3801   // 2. Temporaries that will convert to PHIs
3802   // 3. Operations that are affected by an unreachable edge but do not fit into
3803   // 1 or 2 (rare).
3804   // So it is a slight overshoot of what we want. We could make it exact by
3805   // using two SparseBitVectors per block.
3806   DenseMap<const BasicBlock *, unsigned> ReachablePredCount;
3807   for (auto &KV : ReachableEdges)
3808     ReachablePredCount[KV.getEnd()]++;
3809   for (auto &BBPair : RevisitOnReachabilityChange) {
3810     for (auto InstNum : BBPair.second) {
3811       auto *Inst = InstrFromDFSNum(InstNum);
3812       auto *PHI = dyn_cast<PHINode>(Inst);
3813       PHI = PHI ? PHI : dyn_cast_or_null<PHINode>(RealToTemp.lookup(Inst));
3814       if (!PHI)
3815         continue;
3816       auto *BB = BBPair.first;
3817       if (ReachablePredCount.lookup(BB) != PHI->getNumIncomingValues())
3818         ReplaceUnreachablePHIArgs(PHI, BB);
3819     }
3820   }
3821 
3822   // Map to store the use counts
3823   DenseMap<const Value *, unsigned int> UseCounts;
3824   for (auto *CC : reverse(CongruenceClasses)) {
3825     LLVM_DEBUG(dbgs() << "Eliminating in congruence class " << CC->getID()
3826                       << "\n");
3827     // Track the equivalent store info so we can decide whether to try
3828     // dead store elimination.
3829     SmallVector<ValueDFS, 8> PossibleDeadStores;
3830     SmallPtrSet<Instruction *, 8> ProbablyDead;
3831     if (CC->isDead() || CC->empty())
3832       continue;
3833     // Everything still in the TOP class is unreachable or dead.
3834     if (CC == TOPClass) {
3835       for (auto M : *CC) {
3836         auto *VTE = ValueToExpression.lookup(M);
3837         if (VTE && isa<DeadExpression>(VTE))
3838           markInstructionForDeletion(cast<Instruction>(M));
3839         assert((!ReachableBlocks.count(cast<Instruction>(M)->getParent()) ||
3840                 InstructionsToErase.count(cast<Instruction>(M))) &&
3841                "Everything in TOP should be unreachable or dead at this "
3842                "point");
3843       }
3844       continue;
3845     }
3846 
3847     assert(CC->getLeader() && "We should have had a leader");
3848     // If this is a leader that is always available, and it's a
3849     // constant or has no equivalences, just replace everything with
3850     // it. We then update the congruence class with whatever members
3851     // are left.
3852     Value *Leader =
3853         CC->getStoredValue() ? CC->getStoredValue() : CC->getLeader();
3854     if (alwaysAvailable(Leader)) {
3855       CongruenceClass::MemberSet MembersLeft;
3856       for (auto M : *CC) {
3857         Value *Member = M;
3858         // Void things have no uses we can replace.
3859         if (Member == Leader || !isa<Instruction>(Member) ||
3860             Member->getType()->isVoidTy()) {
3861           MembersLeft.insert(Member);
3862           continue;
3863         }
3864         LLVM_DEBUG(dbgs() << "Found replacement " << *(Leader) << " for "
3865                           << *Member << "\n");
3866         auto *I = cast<Instruction>(Member);
3867         assert(Leader != I && "About to accidentally remove our leader");
3868         replaceInstruction(I, Leader);
3869         AnythingReplaced = true;
3870       }
3871       CC->swap(MembersLeft);
3872     } else {
3873       // If this is a singleton, we can skip it.
3874       if (CC->size() != 1 || RealToTemp.count(Leader)) {
3875         // This is a stack because equality replacement/etc may place
3876         // constants in the middle of the member list, and we want to use
3877         // those constant values in preference to the current leader, over
3878         // the scope of those constants.
3879         ValueDFSStack EliminationStack;
3880 
3881         // Convert the members to DFS ordered sets and then merge them.
3882         SmallVector<ValueDFS, 8> DFSOrderedSet;
3883         convertClassToDFSOrdered(*CC, DFSOrderedSet, UseCounts, ProbablyDead);
3884 
3885         // Sort the whole thing.
3886         llvm::sort(DFSOrderedSet);
3887         for (auto &VD : DFSOrderedSet) {
3888           int MemberDFSIn = VD.DFSIn;
3889           int MemberDFSOut = VD.DFSOut;
3890           Value *Def = VD.Def.getPointer();
3891           bool FromStore = VD.Def.getInt();
3892           Use *U = VD.U;
3893           // We ignore void things because we can't get a value from them.
3894           if (Def && Def->getType()->isVoidTy())
3895             continue;
3896           auto *DefInst = dyn_cast_or_null<Instruction>(Def);
3897           if (DefInst && AllTempInstructions.count(DefInst)) {
3898             auto *PN = cast<PHINode>(DefInst);
3899 
3900             // If this is a value phi and that's the expression we used, insert
3901             // it into the program
3902             // remove from temp instruction list.
3903             AllTempInstructions.erase(PN);
3904             auto *DefBlock = getBlockForValue(Def);
3905             LLVM_DEBUG(dbgs() << "Inserting fully real phi of ops" << *Def
3906                               << " into block "
3907                               << getBlockName(getBlockForValue(Def)) << "\n");
3908             PN->insertBefore(&DefBlock->front());
3909             Def = PN;
3910             NumGVNPHIOfOpsEliminations++;
3911           }
3912 
3913           if (EliminationStack.empty()) {
3914             LLVM_DEBUG(dbgs() << "Elimination Stack is empty\n");
3915           } else {
3916             LLVM_DEBUG(dbgs() << "Elimination Stack Top DFS numbers are ("
3917                               << EliminationStack.dfs_back().first << ","
3918                               << EliminationStack.dfs_back().second << ")\n");
3919           }
3920 
3921           LLVM_DEBUG(dbgs() << "Current DFS numbers are (" << MemberDFSIn << ","
3922                             << MemberDFSOut << ")\n");
3923           // First, we see if we are out of scope or empty.  If so,
3924           // and there equivalences, we try to replace the top of
3925           // stack with equivalences (if it's on the stack, it must
3926           // not have been eliminated yet).
3927           // Then we synchronize to our current scope, by
3928           // popping until we are back within a DFS scope that
3929           // dominates the current member.
3930           // Then, what happens depends on a few factors
3931           // If the stack is now empty, we need to push
3932           // If we have a constant or a local equivalence we want to
3933           // start using, we also push.
3934           // Otherwise, we walk along, processing members who are
3935           // dominated by this scope, and eliminate them.
3936           bool ShouldPush = Def && EliminationStack.empty();
3937           bool OutOfScope =
3938               !EliminationStack.isInScope(MemberDFSIn, MemberDFSOut);
3939 
3940           if (OutOfScope || ShouldPush) {
3941             // Sync to our current scope.
3942             EliminationStack.popUntilDFSScope(MemberDFSIn, MemberDFSOut);
3943             bool ShouldPush = Def && EliminationStack.empty();
3944             if (ShouldPush) {
3945               EliminationStack.push_back(Def, MemberDFSIn, MemberDFSOut);
3946             }
3947           }
3948 
3949           // Skip the Def's, we only want to eliminate on their uses.  But mark
3950           // dominated defs as dead.
3951           if (Def) {
3952             // For anything in this case, what and how we value number
3953             // guarantees that any side-effets that would have occurred (ie
3954             // throwing, etc) can be proven to either still occur (because it's
3955             // dominated by something that has the same side-effects), or never
3956             // occur.  Otherwise, we would not have been able to prove it value
3957             // equivalent to something else. For these things, we can just mark
3958             // it all dead.  Note that this is different from the "ProbablyDead"
3959             // set, which may not be dominated by anything, and thus, are only
3960             // easy to prove dead if they are also side-effect free. Note that
3961             // because stores are put in terms of the stored value, we skip
3962             // stored values here. If the stored value is really dead, it will
3963             // still be marked for deletion when we process it in its own class.
3964             if (!EliminationStack.empty() && Def != EliminationStack.back() &&
3965                 isa<Instruction>(Def) && !FromStore)
3966               markInstructionForDeletion(cast<Instruction>(Def));
3967             continue;
3968           }
3969           // At this point, we know it is a Use we are trying to possibly
3970           // replace.
3971 
3972           assert(isa<Instruction>(U->get()) &&
3973                  "Current def should have been an instruction");
3974           assert(isa<Instruction>(U->getUser()) &&
3975                  "Current user should have been an instruction");
3976 
3977           // If the thing we are replacing into is already marked to be dead,
3978           // this use is dead.  Note that this is true regardless of whether
3979           // we have anything dominating the use or not.  We do this here
3980           // because we are already walking all the uses anyway.
3981           Instruction *InstUse = cast<Instruction>(U->getUser());
3982           if (InstructionsToErase.count(InstUse)) {
3983             auto &UseCount = UseCounts[U->get()];
3984             if (--UseCount == 0) {
3985               ProbablyDead.insert(cast<Instruction>(U->get()));
3986             }
3987           }
3988 
3989           // If we get to this point, and the stack is empty we must have a use
3990           // with nothing we can use to eliminate this use, so just skip it.
3991           if (EliminationStack.empty())
3992             continue;
3993 
3994           Value *DominatingLeader = EliminationStack.back();
3995 
3996           auto *II = dyn_cast<IntrinsicInst>(DominatingLeader);
3997           bool isSSACopy = II && II->getIntrinsicID() == Intrinsic::ssa_copy;
3998           if (isSSACopy)
3999             DominatingLeader = II->getOperand(0);
4000 
4001           // Don't replace our existing users with ourselves.
4002           if (U->get() == DominatingLeader)
4003             continue;
4004           LLVM_DEBUG(dbgs()
4005                      << "Found replacement " << *DominatingLeader << " for "
4006                      << *U->get() << " in " << *(U->getUser()) << "\n");
4007 
4008           // If we replaced something in an instruction, handle the patching of
4009           // metadata.  Skip this if we are replacing predicateinfo with its
4010           // original operand, as we already know we can just drop it.
4011           auto *ReplacedInst = cast<Instruction>(U->get());
4012           auto *PI = PredInfo->getPredicateInfoFor(ReplacedInst);
4013           if (!PI || DominatingLeader != PI->OriginalOp)
4014             patchReplacementInstruction(ReplacedInst, DominatingLeader);
4015           U->set(DominatingLeader);
4016           // This is now a use of the dominating leader, which means if the
4017           // dominating leader was dead, it's now live!
4018           auto &LeaderUseCount = UseCounts[DominatingLeader];
4019           // It's about to be alive again.
4020           if (LeaderUseCount == 0 && isa<Instruction>(DominatingLeader))
4021             ProbablyDead.erase(cast<Instruction>(DominatingLeader));
4022           // For copy instructions, we use their operand as a leader,
4023           // which means we remove a user of the copy and it may become dead.
4024           if (isSSACopy) {
4025             unsigned &IIUseCount = UseCounts[II];
4026             if (--IIUseCount == 0)
4027               ProbablyDead.insert(II);
4028           }
4029           ++LeaderUseCount;
4030           AnythingReplaced = true;
4031         }
4032       }
4033     }
4034 
4035     // At this point, anything still in the ProbablyDead set is actually dead if
4036     // would be trivially dead.
4037     for (auto *I : ProbablyDead)
4038       if (wouldInstructionBeTriviallyDead(I))
4039         markInstructionForDeletion(I);
4040 
4041     // Cleanup the congruence class.
4042     CongruenceClass::MemberSet MembersLeft;
4043     for (auto *Member : *CC)
4044       if (!isa<Instruction>(Member) ||
4045           !InstructionsToErase.count(cast<Instruction>(Member)))
4046         MembersLeft.insert(Member);
4047     CC->swap(MembersLeft);
4048 
4049     // If we have possible dead stores to look at, try to eliminate them.
4050     if (CC->getStoreCount() > 0) {
4051       convertClassToLoadsAndStores(*CC, PossibleDeadStores);
4052       llvm::sort(PossibleDeadStores);
4053       ValueDFSStack EliminationStack;
4054       for (auto &VD : PossibleDeadStores) {
4055         int MemberDFSIn = VD.DFSIn;
4056         int MemberDFSOut = VD.DFSOut;
4057         Instruction *Member = cast<Instruction>(VD.Def.getPointer());
4058         if (EliminationStack.empty() ||
4059             !EliminationStack.isInScope(MemberDFSIn, MemberDFSOut)) {
4060           // Sync to our current scope.
4061           EliminationStack.popUntilDFSScope(MemberDFSIn, MemberDFSOut);
4062           if (EliminationStack.empty()) {
4063             EliminationStack.push_back(Member, MemberDFSIn, MemberDFSOut);
4064             continue;
4065           }
4066         }
4067         // We already did load elimination, so nothing to do here.
4068         if (isa<LoadInst>(Member))
4069           continue;
4070         assert(!EliminationStack.empty());
4071         Instruction *Leader = cast<Instruction>(EliminationStack.back());
4072         (void)Leader;
4073         assert(DT->dominates(Leader->getParent(), Member->getParent()));
4074         // Member is dominater by Leader, and thus dead
4075         LLVM_DEBUG(dbgs() << "Marking dead store " << *Member
4076                           << " that is dominated by " << *Leader << "\n");
4077         markInstructionForDeletion(Member);
4078         CC->erase(Member);
4079         ++NumGVNDeadStores;
4080       }
4081     }
4082   }
4083   return AnythingReplaced;
4084 }
4085 
4086 // This function provides global ranking of operations so that we can place them
4087 // in a canonical order.  Note that rank alone is not necessarily enough for a
4088 // complete ordering, as constants all have the same rank.  However, generally,
4089 // we will simplify an operation with all constants so that it doesn't matter
4090 // what order they appear in.
4091 unsigned int NewGVN::getRank(const Value *V) const {
4092   // Prefer constants to undef to anything else
4093   // Undef is a constant, have to check it first.
4094   // Prefer smaller constants to constantexprs
4095   if (isa<ConstantExpr>(V))
4096     return 2;
4097   if (isa<UndefValue>(V))
4098     return 1;
4099   if (isa<Constant>(V))
4100     return 0;
4101   else if (auto *A = dyn_cast<Argument>(V))
4102     return 3 + A->getArgNo();
4103 
4104   // Need to shift the instruction DFS by number of arguments + 3 to account for
4105   // the constant and argument ranking above.
4106   unsigned Result = InstrToDFSNum(V);
4107   if (Result > 0)
4108     return 4 + NumFuncArgs + Result;
4109   // Unreachable or something else, just return a really large number.
4110   return ~0;
4111 }
4112 
4113 // This is a function that says whether two commutative operations should
4114 // have their order swapped when canonicalizing.
4115 bool NewGVN::shouldSwapOperands(const Value *A, const Value *B) const {
4116   // Because we only care about a total ordering, and don't rewrite expressions
4117   // in this order, we order by rank, which will give a strict weak ordering to
4118   // everything but constants, and then we order by pointer address.
4119   return std::make_pair(getRank(A), A) > std::make_pair(getRank(B), B);
4120 }
4121 
4122 namespace {
4123 
4124 class NewGVNLegacyPass : public FunctionPass {
4125 public:
4126   // Pass identification, replacement for typeid.
4127   static char ID;
4128 
4129   NewGVNLegacyPass() : FunctionPass(ID) {
4130     initializeNewGVNLegacyPassPass(*PassRegistry::getPassRegistry());
4131   }
4132 
4133   bool runOnFunction(Function &F) override;
4134 
4135 private:
4136   void getAnalysisUsage(AnalysisUsage &AU) const override {
4137     AU.addRequired<AssumptionCacheTracker>();
4138     AU.addRequired<DominatorTreeWrapperPass>();
4139     AU.addRequired<TargetLibraryInfoWrapperPass>();
4140     AU.addRequired<MemorySSAWrapperPass>();
4141     AU.addRequired<AAResultsWrapperPass>();
4142     AU.addPreserved<DominatorTreeWrapperPass>();
4143     AU.addPreserved<GlobalsAAWrapperPass>();
4144   }
4145 };
4146 
4147 } // end anonymous namespace
4148 
4149 bool NewGVNLegacyPass::runOnFunction(Function &F) {
4150   if (skipFunction(F))
4151     return false;
4152   return NewGVN(F, &getAnalysis<DominatorTreeWrapperPass>().getDomTree(),
4153                 &getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F),
4154                 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F),
4155                 &getAnalysis<AAResultsWrapperPass>().getAAResults(),
4156                 &getAnalysis<MemorySSAWrapperPass>().getMSSA(),
4157                 F.getParent()->getDataLayout())
4158       .runGVN();
4159 }
4160 
4161 char NewGVNLegacyPass::ID = 0;
4162 
4163 INITIALIZE_PASS_BEGIN(NewGVNLegacyPass, "newgvn", "Global Value Numbering",
4164                       false, false)
4165 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker)
4166 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass)
4167 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass)
4168 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
4169 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
4170 INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass)
4171 INITIALIZE_PASS_END(NewGVNLegacyPass, "newgvn", "Global Value Numbering", false,
4172                     false)
4173 
4174 // createGVNPass - The public interface to this file.
4175 FunctionPass *llvm::createNewGVNPass() { return new NewGVNLegacyPass(); }
4176 
4177 PreservedAnalyses NewGVNPass::run(Function &F, AnalysisManager<Function> &AM) {
4178   // Apparently the order in which we get these results matter for
4179   // the old GVN (see Chandler's comment in GVN.cpp). I'll keep
4180   // the same order here, just in case.
4181   auto &AC = AM.getResult<AssumptionAnalysis>(F);
4182   auto &DT = AM.getResult<DominatorTreeAnalysis>(F);
4183   auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
4184   auto &AA = AM.getResult<AAManager>(F);
4185   auto &MSSA = AM.getResult<MemorySSAAnalysis>(F).getMSSA();
4186   bool Changed =
4187       NewGVN(F, &DT, &AC, &TLI, &AA, &MSSA, F.getParent()->getDataLayout())
4188           .runGVN();
4189   if (!Changed)
4190     return PreservedAnalyses::all();
4191   PreservedAnalyses PA;
4192   PA.preserve<DominatorTreeAnalysis>();
4193   PA.preserve<GlobalsAA>();
4194   return PA;
4195 }
4196