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