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