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