1 //===- GVN.cpp - Eliminate redundant values and loads ---------------------===// 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 // This pass performs global value numbering to eliminate fully redundant 10 // instructions. It also performs simple dead load elimination. 11 // 12 // Note that this pass does the value numbering itself; it does not use the 13 // ValueNumbering analysis passes. 14 // 15 //===----------------------------------------------------------------------===// 16 17 #include "llvm/Transforms/Scalar/GVN.h" 18 #include "llvm/ADT/DenseMap.h" 19 #include "llvm/ADT/DepthFirstIterator.h" 20 #include "llvm/ADT/Hashing.h" 21 #include "llvm/ADT/MapVector.h" 22 #include "llvm/ADT/PostOrderIterator.h" 23 #include "llvm/ADT/STLExtras.h" 24 #include "llvm/ADT/SetVector.h" 25 #include "llvm/ADT/SmallPtrSet.h" 26 #include "llvm/ADT/SmallVector.h" 27 #include "llvm/ADT/Statistic.h" 28 #include "llvm/Analysis/AliasAnalysis.h" 29 #include "llvm/Analysis/AssumeBundleQueries.h" 30 #include "llvm/Analysis/AssumptionCache.h" 31 #include "llvm/Analysis/CFG.h" 32 #include "llvm/Analysis/DomTreeUpdater.h" 33 #include "llvm/Analysis/GlobalsModRef.h" 34 #include "llvm/Analysis/InstructionPrecedenceTracking.h" 35 #include "llvm/Analysis/InstructionSimplify.h" 36 #include "llvm/Analysis/LoopInfo.h" 37 #include "llvm/Analysis/MemoryBuiltins.h" 38 #include "llvm/Analysis/MemoryDependenceAnalysis.h" 39 #include "llvm/Analysis/MemorySSA.h" 40 #include "llvm/Analysis/MemorySSAUpdater.h" 41 #include "llvm/Analysis/OptimizationRemarkEmitter.h" 42 #include "llvm/Analysis/PHITransAddr.h" 43 #include "llvm/Analysis/TargetLibraryInfo.h" 44 #include "llvm/Analysis/ValueTracking.h" 45 #include "llvm/IR/Attributes.h" 46 #include "llvm/IR/BasicBlock.h" 47 #include "llvm/IR/Constant.h" 48 #include "llvm/IR/Constants.h" 49 #include "llvm/IR/DebugLoc.h" 50 #include "llvm/IR/Dominators.h" 51 #include "llvm/IR/Function.h" 52 #include "llvm/IR/InstrTypes.h" 53 #include "llvm/IR/Instruction.h" 54 #include "llvm/IR/Instructions.h" 55 #include "llvm/IR/IntrinsicInst.h" 56 #include "llvm/IR/LLVMContext.h" 57 #include "llvm/IR/Metadata.h" 58 #include "llvm/IR/Module.h" 59 #include "llvm/IR/PassManager.h" 60 #include "llvm/IR/PatternMatch.h" 61 #include "llvm/IR/Type.h" 62 #include "llvm/IR/Use.h" 63 #include "llvm/IR/Value.h" 64 #include "llvm/InitializePasses.h" 65 #include "llvm/Pass.h" 66 #include "llvm/Support/Casting.h" 67 #include "llvm/Support/CommandLine.h" 68 #include "llvm/Support/Compiler.h" 69 #include "llvm/Support/Debug.h" 70 #include "llvm/Support/raw_ostream.h" 71 #include "llvm/Transforms/Utils/AssumeBundleBuilder.h" 72 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 73 #include "llvm/Transforms/Utils/Local.h" 74 #include "llvm/Transforms/Utils/SSAUpdater.h" 75 #include "llvm/Transforms/Utils/VNCoercion.h" 76 #include <algorithm> 77 #include <cassert> 78 #include <cstdint> 79 #include <utility> 80 81 using namespace llvm; 82 using namespace llvm::gvn; 83 using namespace llvm::VNCoercion; 84 using namespace PatternMatch; 85 86 #define DEBUG_TYPE "gvn" 87 88 STATISTIC(NumGVNInstr, "Number of instructions deleted"); 89 STATISTIC(NumGVNLoad, "Number of loads deleted"); 90 STATISTIC(NumGVNPRE, "Number of instructions PRE'd"); 91 STATISTIC(NumGVNBlocks, "Number of blocks merged"); 92 STATISTIC(NumGVNSimpl, "Number of instructions simplified"); 93 STATISTIC(NumGVNEqProp, "Number of equalities propagated"); 94 STATISTIC(NumPRELoad, "Number of loads PRE'd"); 95 STATISTIC(NumPRELoopLoad, "Number of loop loads PRE'd"); 96 97 STATISTIC(IsValueFullyAvailableInBlockNumSpeculationsMax, 98 "Number of blocks speculated as available in " 99 "IsValueFullyAvailableInBlock(), max"); 100 STATISTIC(MaxBBSpeculationCutoffReachedTimes, 101 "Number of times we we reached gvn-max-block-speculations cut-off " 102 "preventing further exploration"); 103 104 static cl::opt<bool> GVNEnablePRE("enable-pre", cl::init(true), cl::Hidden); 105 static cl::opt<bool> GVNEnableLoadPRE("enable-load-pre", cl::init(true)); 106 static cl::opt<bool> GVNEnableLoadInLoopPRE("enable-load-in-loop-pre", 107 cl::init(true)); 108 static cl::opt<bool> 109 GVNEnableSplitBackedgeInLoadPRE("enable-split-backedge-in-load-pre", 110 cl::init(false)); 111 static cl::opt<bool> GVNEnableMemDep("enable-gvn-memdep", cl::init(true)); 112 113 static cl::opt<uint32_t> MaxNumDeps( 114 "gvn-max-num-deps", cl::Hidden, cl::init(100), 115 cl::desc("Max number of dependences to attempt Load PRE (default = 100)")); 116 117 // This is based on IsValueFullyAvailableInBlockNumSpeculationsMax stat. 118 static cl::opt<uint32_t> MaxBBSpeculations( 119 "gvn-max-block-speculations", cl::Hidden, cl::init(600), 120 cl::desc("Max number of blocks we're willing to speculate on (and recurse " 121 "into) when deducing if a value is fully available or not in GVN " 122 "(default = 600)")); 123 124 struct llvm::GVNPass::Expression { 125 uint32_t opcode; 126 bool commutative = false; 127 // The type is not necessarily the result type of the expression, it may be 128 // any additional type needed to disambiguate the expression. 129 Type *type = nullptr; 130 SmallVector<uint32_t, 4> varargs; 131 132 Expression(uint32_t o = ~2U) : opcode(o) {} 133 134 bool operator==(const Expression &other) const { 135 if (opcode != other.opcode) 136 return false; 137 if (opcode == ~0U || opcode == ~1U) 138 return true; 139 if (type != other.type) 140 return false; 141 if (varargs != other.varargs) 142 return false; 143 return true; 144 } 145 146 friend hash_code hash_value(const Expression &Value) { 147 return hash_combine( 148 Value.opcode, Value.type, 149 hash_combine_range(Value.varargs.begin(), Value.varargs.end())); 150 } 151 }; 152 153 namespace llvm { 154 155 template <> struct DenseMapInfo<GVNPass::Expression> { 156 static inline GVNPass::Expression getEmptyKey() { return ~0U; } 157 static inline GVNPass::Expression getTombstoneKey() { return ~1U; } 158 159 static unsigned getHashValue(const GVNPass::Expression &e) { 160 using llvm::hash_value; 161 162 return static_cast<unsigned>(hash_value(e)); 163 } 164 165 static bool isEqual(const GVNPass::Expression &LHS, 166 const GVNPass::Expression &RHS) { 167 return LHS == RHS; 168 } 169 }; 170 171 } // end namespace llvm 172 173 /// Represents a particular available value that we know how to materialize. 174 /// Materialization of an AvailableValue never fails. An AvailableValue is 175 /// implicitly associated with a rematerialization point which is the 176 /// location of the instruction from which it was formed. 177 struct llvm::gvn::AvailableValue { 178 enum class ValType { 179 SimpleVal, // A simple offsetted value that is accessed. 180 LoadVal, // A value produced by a load. 181 MemIntrin, // A memory intrinsic which is loaded from. 182 UndefVal, // A UndefValue representing a value from dead block (which 183 // is not yet physically removed from the CFG). 184 SelectVal, // A pointer select which is loaded from and for which the load 185 // can be replace by a value select. 186 }; 187 188 /// Val - The value that is live out of the block. 189 Value *Val; 190 /// Kind of the live-out value. 191 ValType Kind; 192 193 /// Offset - The byte offset in Val that is interesting for the load query. 194 unsigned Offset = 0; 195 196 static AvailableValue get(Value *V, unsigned Offset = 0) { 197 AvailableValue Res; 198 Res.Val = V; 199 Res.Kind = ValType::SimpleVal; 200 Res.Offset = Offset; 201 return Res; 202 } 203 204 static AvailableValue getMI(MemIntrinsic *MI, unsigned Offset = 0) { 205 AvailableValue Res; 206 Res.Val = MI; 207 Res.Kind = ValType::MemIntrin; 208 Res.Offset = Offset; 209 return Res; 210 } 211 212 static AvailableValue getLoad(LoadInst *Load, unsigned Offset = 0) { 213 AvailableValue Res; 214 Res.Val = Load; 215 Res.Kind = ValType::LoadVal; 216 Res.Offset = Offset; 217 return Res; 218 } 219 220 static AvailableValue getUndef() { 221 AvailableValue Res; 222 Res.Val = nullptr; 223 Res.Kind = ValType::UndefVal; 224 Res.Offset = 0; 225 return Res; 226 } 227 228 static AvailableValue getSelect(SelectInst *Sel) { 229 AvailableValue Res; 230 Res.Val = Sel; 231 Res.Kind = ValType::SelectVal; 232 Res.Offset = 0; 233 return Res; 234 } 235 236 bool isSimpleValue() const { return Kind == ValType::SimpleVal; } 237 bool isCoercedLoadValue() const { return Kind == ValType::LoadVal; } 238 bool isMemIntrinValue() const { return Kind == ValType::MemIntrin; } 239 bool isUndefValue() const { return Kind == ValType::UndefVal; } 240 bool isSelectValue() const { return Kind == ValType::SelectVal; } 241 242 Value *getSimpleValue() const { 243 assert(isSimpleValue() && "Wrong accessor"); 244 return Val; 245 } 246 247 LoadInst *getCoercedLoadValue() const { 248 assert(isCoercedLoadValue() && "Wrong accessor"); 249 return cast<LoadInst>(Val); 250 } 251 252 MemIntrinsic *getMemIntrinValue() const { 253 assert(isMemIntrinValue() && "Wrong accessor"); 254 return cast<MemIntrinsic>(Val); 255 } 256 257 SelectInst *getSelectValue() const { 258 assert(isSelectValue() && "Wrong accessor"); 259 return cast<SelectInst>(Val); 260 } 261 262 /// Emit code at the specified insertion point to adjust the value defined 263 /// here to the specified type. This handles various coercion cases. 264 Value *MaterializeAdjustedValue(LoadInst *Load, Instruction *InsertPt, 265 GVNPass &gvn) const; 266 }; 267 268 /// Represents an AvailableValue which can be rematerialized at the end of 269 /// the associated BasicBlock. 270 struct llvm::gvn::AvailableValueInBlock { 271 /// BB - The basic block in question. 272 BasicBlock *BB = nullptr; 273 274 /// AV - The actual available value 275 AvailableValue AV; 276 277 static AvailableValueInBlock get(BasicBlock *BB, AvailableValue &&AV) { 278 AvailableValueInBlock Res; 279 Res.BB = BB; 280 Res.AV = std::move(AV); 281 return Res; 282 } 283 284 static AvailableValueInBlock get(BasicBlock *BB, Value *V, 285 unsigned Offset = 0) { 286 return get(BB, AvailableValue::get(V, Offset)); 287 } 288 289 static AvailableValueInBlock getUndef(BasicBlock *BB) { 290 return get(BB, AvailableValue::getUndef()); 291 } 292 293 static AvailableValueInBlock getSelect(BasicBlock *BB, SelectInst *Sel) { 294 return get(BB, AvailableValue::getSelect(Sel)); 295 } 296 297 /// Emit code at the end of this block to adjust the value defined here to 298 /// the specified type. This handles various coercion cases. 299 Value *MaterializeAdjustedValue(LoadInst *Load, GVNPass &gvn) const { 300 return AV.MaterializeAdjustedValue(Load, BB->getTerminator(), gvn); 301 } 302 }; 303 304 //===----------------------------------------------------------------------===// 305 // ValueTable Internal Functions 306 //===----------------------------------------------------------------------===// 307 308 GVNPass::Expression GVNPass::ValueTable::createExpr(Instruction *I) { 309 Expression e; 310 e.type = I->getType(); 311 e.opcode = I->getOpcode(); 312 if (const GCRelocateInst *GCR = dyn_cast<GCRelocateInst>(I)) { 313 // gc.relocate is 'special' call: its second and third operands are 314 // not real values, but indices into statepoint's argument list. 315 // Use the refered to values for purposes of identity. 316 e.varargs.push_back(lookupOrAdd(GCR->getOperand(0))); 317 e.varargs.push_back(lookupOrAdd(GCR->getBasePtr())); 318 e.varargs.push_back(lookupOrAdd(GCR->getDerivedPtr())); 319 } else { 320 for (Use &Op : I->operands()) 321 e.varargs.push_back(lookupOrAdd(Op)); 322 } 323 if (I->isCommutative()) { 324 // Ensure that commutative instructions that only differ by a permutation 325 // of their operands get the same value number by sorting the operand value 326 // numbers. Since commutative operands are the 1st two operands it is more 327 // efficient to sort by hand rather than using, say, std::sort. 328 assert(I->getNumOperands() >= 2 && "Unsupported commutative instruction!"); 329 if (e.varargs[0] > e.varargs[1]) 330 std::swap(e.varargs[0], e.varargs[1]); 331 e.commutative = true; 332 } 333 334 if (auto *C = dyn_cast<CmpInst>(I)) { 335 // Sort the operand value numbers so x<y and y>x get the same value number. 336 CmpInst::Predicate Predicate = C->getPredicate(); 337 if (e.varargs[0] > e.varargs[1]) { 338 std::swap(e.varargs[0], e.varargs[1]); 339 Predicate = CmpInst::getSwappedPredicate(Predicate); 340 } 341 e.opcode = (C->getOpcode() << 8) | Predicate; 342 e.commutative = true; 343 } else if (auto *E = dyn_cast<InsertValueInst>(I)) { 344 e.varargs.append(E->idx_begin(), E->idx_end()); 345 } else if (auto *SVI = dyn_cast<ShuffleVectorInst>(I)) { 346 ArrayRef<int> ShuffleMask = SVI->getShuffleMask(); 347 e.varargs.append(ShuffleMask.begin(), ShuffleMask.end()); 348 } 349 350 return e; 351 } 352 353 GVNPass::Expression GVNPass::ValueTable::createCmpExpr( 354 unsigned Opcode, CmpInst::Predicate Predicate, Value *LHS, Value *RHS) { 355 assert((Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) && 356 "Not a comparison!"); 357 Expression e; 358 e.type = CmpInst::makeCmpResultType(LHS->getType()); 359 e.varargs.push_back(lookupOrAdd(LHS)); 360 e.varargs.push_back(lookupOrAdd(RHS)); 361 362 // Sort the operand value numbers so x<y and y>x get the same value number. 363 if (e.varargs[0] > e.varargs[1]) { 364 std::swap(e.varargs[0], e.varargs[1]); 365 Predicate = CmpInst::getSwappedPredicate(Predicate); 366 } 367 e.opcode = (Opcode << 8) | Predicate; 368 e.commutative = true; 369 return e; 370 } 371 372 GVNPass::Expression 373 GVNPass::ValueTable::createExtractvalueExpr(ExtractValueInst *EI) { 374 assert(EI && "Not an ExtractValueInst?"); 375 Expression e; 376 e.type = EI->getType(); 377 e.opcode = 0; 378 379 WithOverflowInst *WO = dyn_cast<WithOverflowInst>(EI->getAggregateOperand()); 380 if (WO != nullptr && EI->getNumIndices() == 1 && *EI->idx_begin() == 0) { 381 // EI is an extract from one of our with.overflow intrinsics. Synthesize 382 // a semantically equivalent expression instead of an extract value 383 // expression. 384 e.opcode = WO->getBinaryOp(); 385 e.varargs.push_back(lookupOrAdd(WO->getLHS())); 386 e.varargs.push_back(lookupOrAdd(WO->getRHS())); 387 return e; 388 } 389 390 // Not a recognised intrinsic. Fall back to producing an extract value 391 // expression. 392 e.opcode = EI->getOpcode(); 393 for (Use &Op : EI->operands()) 394 e.varargs.push_back(lookupOrAdd(Op)); 395 396 append_range(e.varargs, EI->indices()); 397 398 return e; 399 } 400 401 GVNPass::Expression GVNPass::ValueTable::createGEPExpr(GetElementPtrInst *GEP) { 402 Expression E; 403 Type *PtrTy = GEP->getType()->getScalarType(); 404 const DataLayout &DL = GEP->getModule()->getDataLayout(); 405 unsigned BitWidth = DL.getIndexTypeSizeInBits(PtrTy); 406 MapVector<Value *, APInt> VariableOffsets; 407 APInt ConstantOffset(BitWidth, 0); 408 if (PtrTy->isOpaquePointerTy() && 409 GEP->collectOffset(DL, BitWidth, VariableOffsets, ConstantOffset)) { 410 // For opaque pointers, convert into offset representation, to recognize 411 // equivalent address calculations that use different type encoding. 412 LLVMContext &Context = GEP->getContext(); 413 E.opcode = GEP->getOpcode(); 414 E.type = nullptr; 415 E.varargs.push_back(lookupOrAdd(GEP->getPointerOperand())); 416 for (const auto &Pair : VariableOffsets) { 417 E.varargs.push_back(lookupOrAdd(Pair.first)); 418 E.varargs.push_back(lookupOrAdd(ConstantInt::get(Context, Pair.second))); 419 } 420 if (!ConstantOffset.isZero()) 421 E.varargs.push_back( 422 lookupOrAdd(ConstantInt::get(Context, ConstantOffset))); 423 } else { 424 // If converting to offset representation fails (for typed pointers and 425 // scalable vectors), fall back to type-based implementation: 426 E.opcode = GEP->getOpcode(); 427 E.type = GEP->getSourceElementType(); 428 for (Use &Op : GEP->operands()) 429 E.varargs.push_back(lookupOrAdd(Op)); 430 } 431 return E; 432 } 433 434 //===----------------------------------------------------------------------===// 435 // ValueTable External Functions 436 //===----------------------------------------------------------------------===// 437 438 GVNPass::ValueTable::ValueTable() = default; 439 GVNPass::ValueTable::ValueTable(const ValueTable &) = default; 440 GVNPass::ValueTable::ValueTable(ValueTable &&) = default; 441 GVNPass::ValueTable::~ValueTable() = default; 442 GVNPass::ValueTable & 443 GVNPass::ValueTable::operator=(const GVNPass::ValueTable &Arg) = default; 444 445 /// add - Insert a value into the table with a specified value number. 446 void GVNPass::ValueTable::add(Value *V, uint32_t num) { 447 valueNumbering.insert(std::make_pair(V, num)); 448 if (PHINode *PN = dyn_cast<PHINode>(V)) 449 NumberingPhi[num] = PN; 450 } 451 452 uint32_t GVNPass::ValueTable::lookupOrAddCall(CallInst *C) { 453 if (AA->doesNotAccessMemory(C)) { 454 Expression exp = createExpr(C); 455 uint32_t e = assignExpNewValueNum(exp).first; 456 valueNumbering[C] = e; 457 return e; 458 } else if (MD && AA->onlyReadsMemory(C)) { 459 Expression exp = createExpr(C); 460 auto ValNum = assignExpNewValueNum(exp); 461 if (ValNum.second) { 462 valueNumbering[C] = ValNum.first; 463 return ValNum.first; 464 } 465 466 MemDepResult local_dep = MD->getDependency(C); 467 468 if (!local_dep.isDef() && !local_dep.isNonLocal()) { 469 valueNumbering[C] = nextValueNumber; 470 return nextValueNumber++; 471 } 472 473 if (local_dep.isDef()) { 474 // For masked load/store intrinsics, the local_dep may actully be 475 // a normal load or store instruction. 476 CallInst *local_cdep = dyn_cast<CallInst>(local_dep.getInst()); 477 478 if (!local_cdep || local_cdep->arg_size() != C->arg_size()) { 479 valueNumbering[C] = nextValueNumber; 480 return nextValueNumber++; 481 } 482 483 for (unsigned i = 0, e = C->arg_size(); i < e; ++i) { 484 uint32_t c_vn = lookupOrAdd(C->getArgOperand(i)); 485 uint32_t cd_vn = lookupOrAdd(local_cdep->getArgOperand(i)); 486 if (c_vn != cd_vn) { 487 valueNumbering[C] = nextValueNumber; 488 return nextValueNumber++; 489 } 490 } 491 492 uint32_t v = lookupOrAdd(local_cdep); 493 valueNumbering[C] = v; 494 return v; 495 } 496 497 // Non-local case. 498 const MemoryDependenceResults::NonLocalDepInfo &deps = 499 MD->getNonLocalCallDependency(C); 500 // FIXME: Move the checking logic to MemDep! 501 CallInst* cdep = nullptr; 502 503 // Check to see if we have a single dominating call instruction that is 504 // identical to C. 505 for (unsigned i = 0, e = deps.size(); i != e; ++i) { 506 const NonLocalDepEntry *I = &deps[i]; 507 if (I->getResult().isNonLocal()) 508 continue; 509 510 // We don't handle non-definitions. If we already have a call, reject 511 // instruction dependencies. 512 if (!I->getResult().isDef() || cdep != nullptr) { 513 cdep = nullptr; 514 break; 515 } 516 517 CallInst *NonLocalDepCall = dyn_cast<CallInst>(I->getResult().getInst()); 518 // FIXME: All duplicated with non-local case. 519 if (NonLocalDepCall && DT->properlyDominates(I->getBB(), C->getParent())){ 520 cdep = NonLocalDepCall; 521 continue; 522 } 523 524 cdep = nullptr; 525 break; 526 } 527 528 if (!cdep) { 529 valueNumbering[C] = nextValueNumber; 530 return nextValueNumber++; 531 } 532 533 if (cdep->arg_size() != C->arg_size()) { 534 valueNumbering[C] = nextValueNumber; 535 return nextValueNumber++; 536 } 537 for (unsigned i = 0, e = C->arg_size(); i < e; ++i) { 538 uint32_t c_vn = lookupOrAdd(C->getArgOperand(i)); 539 uint32_t cd_vn = lookupOrAdd(cdep->getArgOperand(i)); 540 if (c_vn != cd_vn) { 541 valueNumbering[C] = nextValueNumber; 542 return nextValueNumber++; 543 } 544 } 545 546 uint32_t v = lookupOrAdd(cdep); 547 valueNumbering[C] = v; 548 return v; 549 } else { 550 valueNumbering[C] = nextValueNumber; 551 return nextValueNumber++; 552 } 553 } 554 555 /// Returns true if a value number exists for the specified value. 556 bool GVNPass::ValueTable::exists(Value *V) const { 557 return valueNumbering.count(V) != 0; 558 } 559 560 /// lookup_or_add - Returns the value number for the specified value, assigning 561 /// it a new number if it did not have one before. 562 uint32_t GVNPass::ValueTable::lookupOrAdd(Value *V) { 563 DenseMap<Value*, uint32_t>::iterator VI = valueNumbering.find(V); 564 if (VI != valueNumbering.end()) 565 return VI->second; 566 567 if (!isa<Instruction>(V)) { 568 valueNumbering[V] = nextValueNumber; 569 return nextValueNumber++; 570 } 571 572 Instruction* I = cast<Instruction>(V); 573 Expression exp; 574 switch (I->getOpcode()) { 575 case Instruction::Call: 576 return lookupOrAddCall(cast<CallInst>(I)); 577 case Instruction::FNeg: 578 case Instruction::Add: 579 case Instruction::FAdd: 580 case Instruction::Sub: 581 case Instruction::FSub: 582 case Instruction::Mul: 583 case Instruction::FMul: 584 case Instruction::UDiv: 585 case Instruction::SDiv: 586 case Instruction::FDiv: 587 case Instruction::URem: 588 case Instruction::SRem: 589 case Instruction::FRem: 590 case Instruction::Shl: 591 case Instruction::LShr: 592 case Instruction::AShr: 593 case Instruction::And: 594 case Instruction::Or: 595 case Instruction::Xor: 596 case Instruction::ICmp: 597 case Instruction::FCmp: 598 case Instruction::Trunc: 599 case Instruction::ZExt: 600 case Instruction::SExt: 601 case Instruction::FPToUI: 602 case Instruction::FPToSI: 603 case Instruction::UIToFP: 604 case Instruction::SIToFP: 605 case Instruction::FPTrunc: 606 case Instruction::FPExt: 607 case Instruction::PtrToInt: 608 case Instruction::IntToPtr: 609 case Instruction::AddrSpaceCast: 610 case Instruction::BitCast: 611 case Instruction::Select: 612 case Instruction::Freeze: 613 case Instruction::ExtractElement: 614 case Instruction::InsertElement: 615 case Instruction::ShuffleVector: 616 case Instruction::InsertValue: 617 exp = createExpr(I); 618 break; 619 case Instruction::GetElementPtr: 620 exp = createGEPExpr(cast<GetElementPtrInst>(I)); 621 break; 622 case Instruction::ExtractValue: 623 exp = createExtractvalueExpr(cast<ExtractValueInst>(I)); 624 break; 625 case Instruction::PHI: 626 valueNumbering[V] = nextValueNumber; 627 NumberingPhi[nextValueNumber] = cast<PHINode>(V); 628 return nextValueNumber++; 629 default: 630 valueNumbering[V] = nextValueNumber; 631 return nextValueNumber++; 632 } 633 634 uint32_t e = assignExpNewValueNum(exp).first; 635 valueNumbering[V] = e; 636 return e; 637 } 638 639 /// Returns the value number of the specified value. Fails if 640 /// the value has not yet been numbered. 641 uint32_t GVNPass::ValueTable::lookup(Value *V, bool Verify) const { 642 DenseMap<Value*, uint32_t>::const_iterator VI = valueNumbering.find(V); 643 if (Verify) { 644 assert(VI != valueNumbering.end() && "Value not numbered?"); 645 return VI->second; 646 } 647 return (VI != valueNumbering.end()) ? VI->second : 0; 648 } 649 650 /// Returns the value number of the given comparison, 651 /// assigning it a new number if it did not have one before. Useful when 652 /// we deduced the result of a comparison, but don't immediately have an 653 /// instruction realizing that comparison to hand. 654 uint32_t GVNPass::ValueTable::lookupOrAddCmp(unsigned Opcode, 655 CmpInst::Predicate Predicate, 656 Value *LHS, Value *RHS) { 657 Expression exp = createCmpExpr(Opcode, Predicate, LHS, RHS); 658 return assignExpNewValueNum(exp).first; 659 } 660 661 /// Remove all entries from the ValueTable. 662 void GVNPass::ValueTable::clear() { 663 valueNumbering.clear(); 664 expressionNumbering.clear(); 665 NumberingPhi.clear(); 666 PhiTranslateTable.clear(); 667 nextValueNumber = 1; 668 Expressions.clear(); 669 ExprIdx.clear(); 670 nextExprNumber = 0; 671 } 672 673 /// Remove a value from the value numbering. 674 void GVNPass::ValueTable::erase(Value *V) { 675 uint32_t Num = valueNumbering.lookup(V); 676 valueNumbering.erase(V); 677 // If V is PHINode, V <--> value number is an one-to-one mapping. 678 if (isa<PHINode>(V)) 679 NumberingPhi.erase(Num); 680 } 681 682 /// verifyRemoved - Verify that the value is removed from all internal data 683 /// structures. 684 void GVNPass::ValueTable::verifyRemoved(const Value *V) const { 685 for (DenseMap<Value*, uint32_t>::const_iterator 686 I = valueNumbering.begin(), E = valueNumbering.end(); I != E; ++I) { 687 assert(I->first != V && "Inst still occurs in value numbering map!"); 688 } 689 } 690 691 //===----------------------------------------------------------------------===// 692 // GVN Pass 693 //===----------------------------------------------------------------------===// 694 695 bool GVNPass::isPREEnabled() const { 696 return Options.AllowPRE.value_or(GVNEnablePRE); 697 } 698 699 bool GVNPass::isLoadPREEnabled() const { 700 return Options.AllowLoadPRE.value_or(GVNEnableLoadPRE); 701 } 702 703 bool GVNPass::isLoadInLoopPREEnabled() const { 704 return Options.AllowLoadInLoopPRE.value_or(GVNEnableLoadInLoopPRE); 705 } 706 707 bool GVNPass::isLoadPRESplitBackedgeEnabled() const { 708 return Options.AllowLoadPRESplitBackedge.value_or( 709 GVNEnableSplitBackedgeInLoadPRE); 710 } 711 712 bool GVNPass::isMemDepEnabled() const { 713 return Options.AllowMemDep.value_or(GVNEnableMemDep); 714 } 715 716 PreservedAnalyses GVNPass::run(Function &F, FunctionAnalysisManager &AM) { 717 // FIXME: The order of evaluation of these 'getResult' calls is very 718 // significant! Re-ordering these variables will cause GVN when run alone to 719 // be less effective! We should fix memdep and basic-aa to not exhibit this 720 // behavior, but until then don't change the order here. 721 auto &AC = AM.getResult<AssumptionAnalysis>(F); 722 auto &DT = AM.getResult<DominatorTreeAnalysis>(F); 723 auto &TLI = AM.getResult<TargetLibraryAnalysis>(F); 724 auto &AA = AM.getResult<AAManager>(F); 725 auto *MemDep = 726 isMemDepEnabled() ? &AM.getResult<MemoryDependenceAnalysis>(F) : nullptr; 727 auto *LI = AM.getCachedResult<LoopAnalysis>(F); 728 auto *MSSA = AM.getCachedResult<MemorySSAAnalysis>(F); 729 auto &ORE = AM.getResult<OptimizationRemarkEmitterAnalysis>(F); 730 bool Changed = runImpl(F, AC, DT, TLI, AA, MemDep, LI, &ORE, 731 MSSA ? &MSSA->getMSSA() : nullptr); 732 if (!Changed) 733 return PreservedAnalyses::all(); 734 PreservedAnalyses PA; 735 PA.preserve<DominatorTreeAnalysis>(); 736 PA.preserve<TargetLibraryAnalysis>(); 737 if (MSSA) 738 PA.preserve<MemorySSAAnalysis>(); 739 if (LI) 740 PA.preserve<LoopAnalysis>(); 741 return PA; 742 } 743 744 void GVNPass::printPipeline( 745 raw_ostream &OS, function_ref<StringRef(StringRef)> MapClassName2PassName) { 746 static_cast<PassInfoMixin<GVNPass> *>(this)->printPipeline( 747 OS, MapClassName2PassName); 748 749 OS << "<"; 750 if (Options.AllowPRE != None) 751 OS << (Options.AllowPRE.getValue() ? "" : "no-") << "pre;"; 752 if (Options.AllowLoadPRE != None) 753 OS << (Options.AllowLoadPRE.getValue() ? "" : "no-") << "load-pre;"; 754 if (Options.AllowLoadPRESplitBackedge != None) 755 OS << (Options.AllowLoadPRESplitBackedge.getValue() ? "" : "no-") 756 << "split-backedge-load-pre;"; 757 if (Options.AllowMemDep != None) 758 OS << (Options.AllowMemDep.getValue() ? "" : "no-") << "memdep"; 759 OS << ">"; 760 } 761 762 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP) 763 LLVM_DUMP_METHOD void GVNPass::dump(DenseMap<uint32_t, Value *> &d) const { 764 errs() << "{\n"; 765 for (auto &I : d) { 766 errs() << I.first << "\n"; 767 I.second->dump(); 768 } 769 errs() << "}\n"; 770 } 771 #endif 772 773 enum class AvailabilityState : char { 774 /// We know the block *is not* fully available. This is a fixpoint. 775 Unavailable = 0, 776 /// We know the block *is* fully available. This is a fixpoint. 777 Available = 1, 778 /// We do not know whether the block is fully available or not, 779 /// but we are currently speculating that it will be. 780 /// If it would have turned out that the block was, in fact, not fully 781 /// available, this would have been cleaned up into an Unavailable. 782 SpeculativelyAvailable = 2, 783 }; 784 785 /// Return true if we can prove that the value 786 /// we're analyzing is fully available in the specified block. As we go, keep 787 /// track of which blocks we know are fully alive in FullyAvailableBlocks. This 788 /// map is actually a tri-state map with the following values: 789 /// 0) we know the block *is not* fully available. 790 /// 1) we know the block *is* fully available. 791 /// 2) we do not know whether the block is fully available or not, but we are 792 /// currently speculating that it will be. 793 static bool IsValueFullyAvailableInBlock( 794 BasicBlock *BB, 795 DenseMap<BasicBlock *, AvailabilityState> &FullyAvailableBlocks) { 796 SmallVector<BasicBlock *, 32> Worklist; 797 Optional<BasicBlock *> UnavailableBB; 798 799 // The number of times we didn't find an entry for a block in a map and 800 // optimistically inserted an entry marking block as speculatively available. 801 unsigned NumNewNewSpeculativelyAvailableBBs = 0; 802 803 #ifndef NDEBUG 804 SmallSet<BasicBlock *, 32> NewSpeculativelyAvailableBBs; 805 SmallVector<BasicBlock *, 32> AvailableBBs; 806 #endif 807 808 Worklist.emplace_back(BB); 809 while (!Worklist.empty()) { 810 BasicBlock *CurrBB = Worklist.pop_back_val(); // LoadFO - depth-first! 811 // Optimistically assume that the block is Speculatively Available and check 812 // to see if we already know about this block in one lookup. 813 std::pair<DenseMap<BasicBlock *, AvailabilityState>::iterator, bool> IV = 814 FullyAvailableBlocks.try_emplace( 815 CurrBB, AvailabilityState::SpeculativelyAvailable); 816 AvailabilityState &State = IV.first->second; 817 818 // Did the entry already exist for this block? 819 if (!IV.second) { 820 if (State == AvailabilityState::Unavailable) { 821 UnavailableBB = CurrBB; 822 break; // Backpropagate unavailability info. 823 } 824 825 #ifndef NDEBUG 826 AvailableBBs.emplace_back(CurrBB); 827 #endif 828 continue; // Don't recurse further, but continue processing worklist. 829 } 830 831 // No entry found for block. 832 ++NumNewNewSpeculativelyAvailableBBs; 833 bool OutOfBudget = NumNewNewSpeculativelyAvailableBBs > MaxBBSpeculations; 834 835 // If we have exhausted our budget, mark this block as unavailable. 836 // Also, if this block has no predecessors, the value isn't live-in here. 837 if (OutOfBudget || pred_empty(CurrBB)) { 838 MaxBBSpeculationCutoffReachedTimes += (int)OutOfBudget; 839 State = AvailabilityState::Unavailable; 840 UnavailableBB = CurrBB; 841 break; // Backpropagate unavailability info. 842 } 843 844 // Tentatively consider this block as speculatively available. 845 #ifndef NDEBUG 846 NewSpeculativelyAvailableBBs.insert(CurrBB); 847 #endif 848 // And further recurse into block's predecessors, in depth-first order! 849 Worklist.append(pred_begin(CurrBB), pred_end(CurrBB)); 850 } 851 852 #if LLVM_ENABLE_STATS 853 IsValueFullyAvailableInBlockNumSpeculationsMax.updateMax( 854 NumNewNewSpeculativelyAvailableBBs); 855 #endif 856 857 // If the block isn't marked as fixpoint yet 858 // (the Unavailable and Available states are fixpoints) 859 auto MarkAsFixpointAndEnqueueSuccessors = 860 [&](BasicBlock *BB, AvailabilityState FixpointState) { 861 auto It = FullyAvailableBlocks.find(BB); 862 if (It == FullyAvailableBlocks.end()) 863 return; // Never queried this block, leave as-is. 864 switch (AvailabilityState &State = It->second) { 865 case AvailabilityState::Unavailable: 866 case AvailabilityState::Available: 867 return; // Don't backpropagate further, continue processing worklist. 868 case AvailabilityState::SpeculativelyAvailable: // Fix it! 869 State = FixpointState; 870 #ifndef NDEBUG 871 assert(NewSpeculativelyAvailableBBs.erase(BB) && 872 "Found a speculatively available successor leftover?"); 873 #endif 874 // Queue successors for further processing. 875 Worklist.append(succ_begin(BB), succ_end(BB)); 876 return; 877 } 878 }; 879 880 if (UnavailableBB) { 881 // Okay, we have encountered an unavailable block. 882 // Mark speculatively available blocks reachable from UnavailableBB as 883 // unavailable as well. Paths are terminated when they reach blocks not in 884 // FullyAvailableBlocks or they are not marked as speculatively available. 885 Worklist.clear(); 886 Worklist.append(succ_begin(*UnavailableBB), succ_end(*UnavailableBB)); 887 while (!Worklist.empty()) 888 MarkAsFixpointAndEnqueueSuccessors(Worklist.pop_back_val(), 889 AvailabilityState::Unavailable); 890 } 891 892 #ifndef NDEBUG 893 Worklist.clear(); 894 for (BasicBlock *AvailableBB : AvailableBBs) 895 Worklist.append(succ_begin(AvailableBB), succ_end(AvailableBB)); 896 while (!Worklist.empty()) 897 MarkAsFixpointAndEnqueueSuccessors(Worklist.pop_back_val(), 898 AvailabilityState::Available); 899 900 assert(NewSpeculativelyAvailableBBs.empty() && 901 "Must have fixed all the new speculatively available blocks."); 902 #endif 903 904 return !UnavailableBB; 905 } 906 907 /// Given a set of loads specified by ValuesPerBlock, 908 /// construct SSA form, allowing us to eliminate Load. This returns the value 909 /// that should be used at Load's definition site. 910 static Value * 911 ConstructSSAForLoadSet(LoadInst *Load, 912 SmallVectorImpl<AvailableValueInBlock> &ValuesPerBlock, 913 GVNPass &gvn) { 914 // Check for the fully redundant, dominating load case. In this case, we can 915 // just use the dominating value directly. 916 if (ValuesPerBlock.size() == 1 && 917 gvn.getDominatorTree().properlyDominates(ValuesPerBlock[0].BB, 918 Load->getParent())) { 919 assert(!ValuesPerBlock[0].AV.isUndefValue() && 920 "Dead BB dominate this block"); 921 return ValuesPerBlock[0].MaterializeAdjustedValue(Load, gvn); 922 } 923 924 // Otherwise, we have to construct SSA form. 925 SmallVector<PHINode*, 8> NewPHIs; 926 SSAUpdater SSAUpdate(&NewPHIs); 927 SSAUpdate.Initialize(Load->getType(), Load->getName()); 928 929 for (const AvailableValueInBlock &AV : ValuesPerBlock) { 930 BasicBlock *BB = AV.BB; 931 932 if (AV.AV.isUndefValue()) 933 continue; 934 935 if (SSAUpdate.HasValueForBlock(BB)) 936 continue; 937 938 // If the value is the load that we will be eliminating, and the block it's 939 // available in is the block that the load is in, then don't add it as 940 // SSAUpdater will resolve the value to the relevant phi which may let it 941 // avoid phi construction entirely if there's actually only one value. 942 if (BB == Load->getParent() && 943 ((AV.AV.isSimpleValue() && AV.AV.getSimpleValue() == Load) || 944 (AV.AV.isCoercedLoadValue() && AV.AV.getCoercedLoadValue() == Load))) 945 continue; 946 947 SSAUpdate.AddAvailableValue(BB, AV.MaterializeAdjustedValue(Load, gvn)); 948 } 949 950 // Perform PHI construction. 951 return SSAUpdate.GetValueInMiddleOfBlock(Load->getParent()); 952 } 953 954 static LoadInst *findDominatingLoad(Value *Ptr, Type *LoadTy, SelectInst *Sel, 955 DominatorTree &DT) { 956 for (Value *U : Ptr->users()) { 957 auto *LI = dyn_cast<LoadInst>(U); 958 if (LI && LI->getType() == LoadTy && LI->getParent() == Sel->getParent() && 959 DT.dominates(LI, Sel)) 960 return LI; 961 } 962 return nullptr; 963 } 964 965 Value *AvailableValue::MaterializeAdjustedValue(LoadInst *Load, 966 Instruction *InsertPt, 967 GVNPass &gvn) const { 968 Value *Res; 969 Type *LoadTy = Load->getType(); 970 const DataLayout &DL = Load->getModule()->getDataLayout(); 971 if (isSimpleValue()) { 972 Res = getSimpleValue(); 973 if (Res->getType() != LoadTy) { 974 Res = getStoreValueForLoad(Res, Offset, LoadTy, InsertPt, DL); 975 976 LLVM_DEBUG(dbgs() << "GVN COERCED NONLOCAL VAL:\nOffset: " << Offset 977 << " " << *getSimpleValue() << '\n' 978 << *Res << '\n' 979 << "\n\n\n"); 980 } 981 } else if (isCoercedLoadValue()) { 982 LoadInst *CoercedLoad = getCoercedLoadValue(); 983 if (CoercedLoad->getType() == LoadTy && Offset == 0) { 984 Res = CoercedLoad; 985 } else { 986 Res = getLoadValueForLoad(CoercedLoad, Offset, LoadTy, InsertPt, DL); 987 // We would like to use gvn.markInstructionForDeletion here, but we can't 988 // because the load is already memoized into the leader map table that GVN 989 // tracks. It is potentially possible to remove the load from the table, 990 // but then there all of the operations based on it would need to be 991 // rehashed. Just leave the dead load around. 992 gvn.getMemDep().removeInstruction(CoercedLoad); 993 LLVM_DEBUG(dbgs() << "GVN COERCED NONLOCAL LOAD:\nOffset: " << Offset 994 << " " << *getCoercedLoadValue() << '\n' 995 << *Res << '\n' 996 << "\n\n\n"); 997 } 998 } else if (isMemIntrinValue()) { 999 Res = getMemInstValueForLoad(getMemIntrinValue(), Offset, LoadTy, 1000 InsertPt, DL); 1001 LLVM_DEBUG(dbgs() << "GVN COERCED NONLOCAL MEM INTRIN:\nOffset: " << Offset 1002 << " " << *getMemIntrinValue() << '\n' 1003 << *Res << '\n' 1004 << "\n\n\n"); 1005 } else if (isSelectValue()) { 1006 // Introduce a new value select for a load from an eligible pointer select. 1007 SelectInst *Sel = getSelectValue(); 1008 LoadInst *L1 = findDominatingLoad(Sel->getOperand(1), LoadTy, Sel, 1009 gvn.getDominatorTree()); 1010 LoadInst *L2 = findDominatingLoad(Sel->getOperand(2), LoadTy, Sel, 1011 gvn.getDominatorTree()); 1012 assert(L1 && L2 && 1013 "must be able to obtain dominating loads for both value operands of " 1014 "the select"); 1015 Res = SelectInst::Create(Sel->getCondition(), L1, L2, "", Sel); 1016 } else { 1017 llvm_unreachable("Should not materialize value from dead block"); 1018 } 1019 assert(Res && "failed to materialize?"); 1020 return Res; 1021 } 1022 1023 static bool isLifetimeStart(const Instruction *Inst) { 1024 if (const IntrinsicInst* II = dyn_cast<IntrinsicInst>(Inst)) 1025 return II->getIntrinsicID() == Intrinsic::lifetime_start; 1026 return false; 1027 } 1028 1029 /// Assuming To can be reached from both From and Between, does Between lie on 1030 /// every path from From to To? 1031 static bool liesBetween(const Instruction *From, Instruction *Between, 1032 const Instruction *To, DominatorTree *DT) { 1033 if (From->getParent() == Between->getParent()) 1034 return DT->dominates(From, Between); 1035 SmallSet<BasicBlock *, 1> Exclusion; 1036 Exclusion.insert(Between->getParent()); 1037 return !isPotentiallyReachable(From, To, &Exclusion, DT); 1038 } 1039 1040 /// Try to locate the three instruction involved in a missed 1041 /// load-elimination case that is due to an intervening store. 1042 static void reportMayClobberedLoad(LoadInst *Load, MemDepResult DepInfo, 1043 DominatorTree *DT, 1044 OptimizationRemarkEmitter *ORE) { 1045 using namespace ore; 1046 1047 User *OtherAccess = nullptr; 1048 1049 OptimizationRemarkMissed R(DEBUG_TYPE, "LoadClobbered", Load); 1050 R << "load of type " << NV("Type", Load->getType()) << " not eliminated" 1051 << setExtraArgs(); 1052 1053 for (auto *U : Load->getPointerOperand()->users()) { 1054 if (U != Load && (isa<LoadInst>(U) || isa<StoreInst>(U)) && 1055 cast<Instruction>(U)->getFunction() == Load->getFunction() && 1056 DT->dominates(cast<Instruction>(U), Load)) { 1057 // Use the most immediately dominating value 1058 if (OtherAccess) { 1059 if (DT->dominates(cast<Instruction>(OtherAccess), cast<Instruction>(U))) 1060 OtherAccess = U; 1061 else 1062 assert(DT->dominates(cast<Instruction>(U), 1063 cast<Instruction>(OtherAccess))); 1064 } else 1065 OtherAccess = U; 1066 } 1067 } 1068 1069 if (!OtherAccess) { 1070 // There is no dominating use, check if we can find a closest non-dominating 1071 // use that lies between any other potentially available use and Load. 1072 for (auto *U : Load->getPointerOperand()->users()) { 1073 if (U != Load && (isa<LoadInst>(U) || isa<StoreInst>(U)) && 1074 cast<Instruction>(U)->getFunction() == Load->getFunction() && 1075 isPotentiallyReachable(cast<Instruction>(U), Load, nullptr, DT)) { 1076 if (OtherAccess) { 1077 if (liesBetween(cast<Instruction>(OtherAccess), cast<Instruction>(U), 1078 Load, DT)) { 1079 OtherAccess = U; 1080 } else if (!liesBetween(cast<Instruction>(U), 1081 cast<Instruction>(OtherAccess), Load, DT)) { 1082 // These uses are both partially available at Load were it not for 1083 // the clobber, but neither lies strictly after the other. 1084 OtherAccess = nullptr; 1085 break; 1086 } // else: keep current OtherAccess since it lies between U and Load 1087 } else { 1088 OtherAccess = U; 1089 } 1090 } 1091 } 1092 } 1093 1094 if (OtherAccess) 1095 R << " in favor of " << NV("OtherAccess", OtherAccess); 1096 1097 R << " because it is clobbered by " << NV("ClobberedBy", DepInfo.getInst()); 1098 1099 ORE->emit(R); 1100 } 1101 1102 /// Check if a load from pointer-select \p Address in \p DepBB can be converted 1103 /// to a value select. The following conditions need to be satisfied: 1104 /// 1. The pointer select (\p Address) must be defined in \p DepBB. 1105 /// 2. Both value operands of the pointer select must be loaded in the same 1106 /// basic block, before the pointer select. 1107 /// 3. There must be no instructions between the found loads and \p End that may 1108 /// clobber the loads. 1109 static Optional<AvailableValue> 1110 tryToConvertLoadOfPtrSelect(BasicBlock *DepBB, BasicBlock::iterator End, 1111 Value *Address, Type *LoadTy, DominatorTree &DT, 1112 AAResults *AA) { 1113 1114 auto *Sel = dyn_cast_or_null<SelectInst>(Address); 1115 if (!Sel || DepBB != Sel->getParent()) 1116 return None; 1117 1118 LoadInst *L1 = findDominatingLoad(Sel->getOperand(1), LoadTy, Sel, DT); 1119 LoadInst *L2 = findDominatingLoad(Sel->getOperand(2), LoadTy, Sel, DT); 1120 if (!L1 || !L2) 1121 return None; 1122 1123 // Ensure there are no accesses that may modify the locations referenced by 1124 // either L1 or L2 between L1, L2 and the specified End iterator. 1125 Instruction *EarlierLoad = L1->comesBefore(L2) ? L1 : L2; 1126 MemoryLocation L1Loc = MemoryLocation::get(L1); 1127 MemoryLocation L2Loc = MemoryLocation::get(L2); 1128 if (any_of(make_range(EarlierLoad->getIterator(), End), [&](Instruction &I) { 1129 return isModSet(AA->getModRefInfo(&I, L1Loc)) || 1130 isModSet(AA->getModRefInfo(&I, L2Loc)); 1131 })) 1132 return None; 1133 1134 return AvailableValue::getSelect(Sel); 1135 } 1136 1137 bool GVNPass::AnalyzeLoadAvailability(LoadInst *Load, MemDepResult DepInfo, 1138 Value *Address, AvailableValue &Res) { 1139 if (!DepInfo.isDef() && !DepInfo.isClobber()) { 1140 assert(isa<SelectInst>(Address)); 1141 if (auto R = tryToConvertLoadOfPtrSelect( 1142 Load->getParent(), Load->getIterator(), Address, Load->getType(), 1143 getDominatorTree(), getAliasAnalysis())) { 1144 Res = *R; 1145 return true; 1146 } 1147 return false; 1148 } 1149 1150 assert((DepInfo.isDef() || DepInfo.isClobber()) && 1151 "expected a local dependence"); 1152 assert(Load->isUnordered() && "rules below are incorrect for ordered access"); 1153 1154 const DataLayout &DL = Load->getModule()->getDataLayout(); 1155 1156 Instruction *DepInst = DepInfo.getInst(); 1157 if (DepInfo.isClobber()) { 1158 // If the dependence is to a store that writes to a superset of the bits 1159 // read by the load, we can extract the bits we need for the load from the 1160 // stored value. 1161 if (StoreInst *DepSI = dyn_cast<StoreInst>(DepInst)) { 1162 // Can't forward from non-atomic to atomic without violating memory model. 1163 if (Address && Load->isAtomic() <= DepSI->isAtomic()) { 1164 int Offset = 1165 analyzeLoadFromClobberingStore(Load->getType(), Address, DepSI, DL); 1166 if (Offset != -1) { 1167 Res = AvailableValue::get(DepSI->getValueOperand(), Offset); 1168 return true; 1169 } 1170 } 1171 } 1172 1173 // Check to see if we have something like this: 1174 // load i32* P 1175 // load i8* (P+1) 1176 // if we have this, replace the later with an extraction from the former. 1177 if (LoadInst *DepLoad = dyn_cast<LoadInst>(DepInst)) { 1178 // If this is a clobber and L is the first instruction in its block, then 1179 // we have the first instruction in the entry block. 1180 // Can't forward from non-atomic to atomic without violating memory model. 1181 if (DepLoad != Load && Address && 1182 Load->isAtomic() <= DepLoad->isAtomic()) { 1183 Type *LoadType = Load->getType(); 1184 int Offset = -1; 1185 1186 // If MD reported clobber, check it was nested. 1187 if (DepInfo.isClobber() && 1188 canCoerceMustAliasedValueToLoad(DepLoad, LoadType, DL)) { 1189 const auto ClobberOff = MD->getClobberOffset(DepLoad); 1190 // GVN has no deal with a negative offset. 1191 Offset = (ClobberOff == None || *ClobberOff < 0) ? -1 : *ClobberOff; 1192 } 1193 if (Offset == -1) 1194 Offset = 1195 analyzeLoadFromClobberingLoad(LoadType, Address, DepLoad, DL); 1196 if (Offset != -1) { 1197 Res = AvailableValue::getLoad(DepLoad, Offset); 1198 return true; 1199 } 1200 } 1201 } 1202 1203 // If the clobbering value is a memset/memcpy/memmove, see if we can 1204 // forward a value on from it. 1205 if (MemIntrinsic *DepMI = dyn_cast<MemIntrinsic>(DepInst)) { 1206 if (Address && !Load->isAtomic()) { 1207 int Offset = analyzeLoadFromClobberingMemInst(Load->getType(), Address, 1208 DepMI, DL); 1209 if (Offset != -1) { 1210 Res = AvailableValue::getMI(DepMI, Offset); 1211 return true; 1212 } 1213 } 1214 } 1215 1216 // Nothing known about this clobber, have to be conservative 1217 LLVM_DEBUG( 1218 // fast print dep, using operator<< on instruction is too slow. 1219 dbgs() << "GVN: load "; Load->printAsOperand(dbgs()); 1220 dbgs() << " is clobbered by " << *DepInst << '\n';); 1221 if (ORE->allowExtraAnalysis(DEBUG_TYPE)) 1222 reportMayClobberedLoad(Load, DepInfo, DT, ORE); 1223 1224 return false; 1225 } 1226 assert(DepInfo.isDef() && "follows from above"); 1227 1228 // Loading the alloca -> undef. 1229 // Loading immediately after lifetime begin -> undef. 1230 if (isa<AllocaInst>(DepInst) || isLifetimeStart(DepInst)) { 1231 Res = AvailableValue::get(UndefValue::get(Load->getType())); 1232 return true; 1233 } 1234 1235 if (isAllocationFn(DepInst, TLI)) 1236 if (auto *InitVal = getInitialValueOfAllocation(cast<CallBase>(DepInst), 1237 TLI, Load->getType())) { 1238 Res = AvailableValue::get(InitVal); 1239 return true; 1240 } 1241 1242 if (StoreInst *S = dyn_cast<StoreInst>(DepInst)) { 1243 // Reject loads and stores that are to the same address but are of 1244 // different types if we have to. If the stored value is convertable to 1245 // the loaded value, we can reuse it. 1246 if (!canCoerceMustAliasedValueToLoad(S->getValueOperand(), Load->getType(), 1247 DL)) 1248 return false; 1249 1250 // Can't forward from non-atomic to atomic without violating memory model. 1251 if (S->isAtomic() < Load->isAtomic()) 1252 return false; 1253 1254 Res = AvailableValue::get(S->getValueOperand()); 1255 return true; 1256 } 1257 1258 if (LoadInst *LD = dyn_cast<LoadInst>(DepInst)) { 1259 // If the types mismatch and we can't handle it, reject reuse of the load. 1260 // If the stored value is larger or equal to the loaded value, we can reuse 1261 // it. 1262 if (!canCoerceMustAliasedValueToLoad(LD, Load->getType(), DL)) 1263 return false; 1264 1265 // Can't forward from non-atomic to atomic without violating memory model. 1266 if (LD->isAtomic() < Load->isAtomic()) 1267 return false; 1268 1269 Res = AvailableValue::getLoad(LD); 1270 return true; 1271 } 1272 1273 // Unknown def - must be conservative 1274 LLVM_DEBUG( 1275 // fast print dep, using operator<< on instruction is too slow. 1276 dbgs() << "GVN: load "; Load->printAsOperand(dbgs()); 1277 dbgs() << " has unknown def " << *DepInst << '\n';); 1278 return false; 1279 } 1280 1281 void GVNPass::AnalyzeLoadAvailability(LoadInst *Load, LoadDepVect &Deps, 1282 AvailValInBlkVect &ValuesPerBlock, 1283 UnavailBlkVect &UnavailableBlocks) { 1284 // Filter out useless results (non-locals, etc). Keep track of the blocks 1285 // where we have a value available in repl, also keep track of whether we see 1286 // dependencies that produce an unknown value for the load (such as a call 1287 // that could potentially clobber the load). 1288 unsigned NumDeps = Deps.size(); 1289 for (unsigned i = 0, e = NumDeps; i != e; ++i) { 1290 BasicBlock *DepBB = Deps[i].getBB(); 1291 MemDepResult DepInfo = Deps[i].getResult(); 1292 1293 if (DeadBlocks.count(DepBB)) { 1294 // Dead dependent mem-op disguise as a load evaluating the same value 1295 // as the load in question. 1296 ValuesPerBlock.push_back(AvailableValueInBlock::getUndef(DepBB)); 1297 continue; 1298 } 1299 1300 // The address being loaded in this non-local block may not be the same as 1301 // the pointer operand of the load if PHI translation occurs. Make sure 1302 // to consider the right address. 1303 Value *Address = Deps[i].getAddress(); 1304 1305 if (!DepInfo.isDef() && !DepInfo.isClobber()) { 1306 if (auto R = tryToConvertLoadOfPtrSelect( 1307 DepBB, DepBB->end(), Address, Load->getType(), getDominatorTree(), 1308 getAliasAnalysis())) { 1309 ValuesPerBlock.push_back( 1310 AvailableValueInBlock::get(DepBB, std::move(*R))); 1311 continue; 1312 } 1313 UnavailableBlocks.push_back(DepBB); 1314 continue; 1315 } 1316 1317 AvailableValue AV; 1318 if (AnalyzeLoadAvailability(Load, DepInfo, Address, AV)) { 1319 // subtlety: because we know this was a non-local dependency, we know 1320 // it's safe to materialize anywhere between the instruction within 1321 // DepInfo and the end of it's block. 1322 ValuesPerBlock.push_back(AvailableValueInBlock::get(DepBB, 1323 std::move(AV))); 1324 } else { 1325 UnavailableBlocks.push_back(DepBB); 1326 } 1327 } 1328 1329 assert(NumDeps == ValuesPerBlock.size() + UnavailableBlocks.size() && 1330 "post condition violation"); 1331 } 1332 1333 void GVNPass::eliminatePartiallyRedundantLoad( 1334 LoadInst *Load, AvailValInBlkVect &ValuesPerBlock, 1335 MapVector<BasicBlock *, Value *> &AvailableLoads) { 1336 for (const auto &AvailableLoad : AvailableLoads) { 1337 BasicBlock *UnavailableBlock = AvailableLoad.first; 1338 Value *LoadPtr = AvailableLoad.second; 1339 1340 auto *NewLoad = 1341 new LoadInst(Load->getType(), LoadPtr, Load->getName() + ".pre", 1342 Load->isVolatile(), Load->getAlign(), Load->getOrdering(), 1343 Load->getSyncScopeID(), UnavailableBlock->getTerminator()); 1344 NewLoad->setDebugLoc(Load->getDebugLoc()); 1345 if (MSSAU) { 1346 auto *MSSA = MSSAU->getMemorySSA(); 1347 // Get the defining access of the original load or use the load if it is a 1348 // MemoryDef (e.g. because it is volatile). The inserted loads are 1349 // guaranteed to load from the same definition. 1350 auto *LoadAcc = MSSA->getMemoryAccess(Load); 1351 auto *DefiningAcc = 1352 isa<MemoryDef>(LoadAcc) ? LoadAcc : LoadAcc->getDefiningAccess(); 1353 auto *NewAccess = MSSAU->createMemoryAccessInBB( 1354 NewLoad, DefiningAcc, NewLoad->getParent(), 1355 MemorySSA::BeforeTerminator); 1356 if (auto *NewDef = dyn_cast<MemoryDef>(NewAccess)) 1357 MSSAU->insertDef(NewDef, /*RenameUses=*/true); 1358 else 1359 MSSAU->insertUse(cast<MemoryUse>(NewAccess), /*RenameUses=*/true); 1360 } 1361 1362 // Transfer the old load's AA tags to the new load. 1363 AAMDNodes Tags = Load->getAAMetadata(); 1364 if (Tags) 1365 NewLoad->setAAMetadata(Tags); 1366 1367 if (auto *MD = Load->getMetadata(LLVMContext::MD_invariant_load)) 1368 NewLoad->setMetadata(LLVMContext::MD_invariant_load, MD); 1369 if (auto *InvGroupMD = Load->getMetadata(LLVMContext::MD_invariant_group)) 1370 NewLoad->setMetadata(LLVMContext::MD_invariant_group, InvGroupMD); 1371 if (auto *RangeMD = Load->getMetadata(LLVMContext::MD_range)) 1372 NewLoad->setMetadata(LLVMContext::MD_range, RangeMD); 1373 if (auto *AccessMD = Load->getMetadata(LLVMContext::MD_access_group)) 1374 if (LI && 1375 LI->getLoopFor(Load->getParent()) == LI->getLoopFor(UnavailableBlock)) 1376 NewLoad->setMetadata(LLVMContext::MD_access_group, AccessMD); 1377 1378 // We do not propagate the old load's debug location, because the new 1379 // load now lives in a different BB, and we want to avoid a jumpy line 1380 // table. 1381 // FIXME: How do we retain source locations without causing poor debugging 1382 // behavior? 1383 1384 // Add the newly created load. 1385 ValuesPerBlock.push_back( 1386 AvailableValueInBlock::get(UnavailableBlock, NewLoad)); 1387 MD->invalidateCachedPointerInfo(LoadPtr); 1388 LLVM_DEBUG(dbgs() << "GVN INSERTED " << *NewLoad << '\n'); 1389 } 1390 1391 // Perform PHI construction. 1392 Value *V = ConstructSSAForLoadSet(Load, ValuesPerBlock, *this); 1393 Load->replaceAllUsesWith(V); 1394 if (isa<PHINode>(V)) 1395 V->takeName(Load); 1396 if (Instruction *I = dyn_cast<Instruction>(V)) 1397 I->setDebugLoc(Load->getDebugLoc()); 1398 if (V->getType()->isPtrOrPtrVectorTy()) 1399 MD->invalidateCachedPointerInfo(V); 1400 markInstructionForDeletion(Load); 1401 ORE->emit([&]() { 1402 return OptimizationRemark(DEBUG_TYPE, "LoadPRE", Load) 1403 << "load eliminated by PRE"; 1404 }); 1405 } 1406 1407 bool GVNPass::PerformLoadPRE(LoadInst *Load, AvailValInBlkVect &ValuesPerBlock, 1408 UnavailBlkVect &UnavailableBlocks) { 1409 // Okay, we have *some* definitions of the value. This means that the value 1410 // is available in some of our (transitive) predecessors. Lets think about 1411 // doing PRE of this load. This will involve inserting a new load into the 1412 // predecessor when it's not available. We could do this in general, but 1413 // prefer to not increase code size. As such, we only do this when we know 1414 // that we only have to insert *one* load (which means we're basically moving 1415 // the load, not inserting a new one). 1416 1417 SmallPtrSet<BasicBlock *, 4> Blockers(UnavailableBlocks.begin(), 1418 UnavailableBlocks.end()); 1419 1420 // Let's find the first basic block with more than one predecessor. Walk 1421 // backwards through predecessors if needed. 1422 BasicBlock *LoadBB = Load->getParent(); 1423 BasicBlock *TmpBB = LoadBB; 1424 1425 // Check that there is no implicit control flow instructions above our load in 1426 // its block. If there is an instruction that doesn't always pass the 1427 // execution to the following instruction, then moving through it may become 1428 // invalid. For example: 1429 // 1430 // int arr[LEN]; 1431 // int index = ???; 1432 // ... 1433 // guard(0 <= index && index < LEN); 1434 // use(arr[index]); 1435 // 1436 // It is illegal to move the array access to any point above the guard, 1437 // because if the index is out of bounds we should deoptimize rather than 1438 // access the array. 1439 // Check that there is no guard in this block above our instruction. 1440 bool MustEnsureSafetyOfSpeculativeExecution = 1441 ICF->isDominatedByICFIFromSameBlock(Load); 1442 1443 while (TmpBB->getSinglePredecessor()) { 1444 TmpBB = TmpBB->getSinglePredecessor(); 1445 if (TmpBB == LoadBB) // Infinite (unreachable) loop. 1446 return false; 1447 if (Blockers.count(TmpBB)) 1448 return false; 1449 1450 // If any of these blocks has more than one successor (i.e. if the edge we 1451 // just traversed was critical), then there are other paths through this 1452 // block along which the load may not be anticipated. Hoisting the load 1453 // above this block would be adding the load to execution paths along 1454 // which it was not previously executed. 1455 if (TmpBB->getTerminator()->getNumSuccessors() != 1) 1456 return false; 1457 1458 // Check that there is no implicit control flow in a block above. 1459 MustEnsureSafetyOfSpeculativeExecution = 1460 MustEnsureSafetyOfSpeculativeExecution || ICF->hasICF(TmpBB); 1461 } 1462 1463 assert(TmpBB); 1464 LoadBB = TmpBB; 1465 1466 // Check to see how many predecessors have the loaded value fully 1467 // available. 1468 MapVector<BasicBlock *, Value *> PredLoads; 1469 DenseMap<BasicBlock *, AvailabilityState> FullyAvailableBlocks; 1470 for (const AvailableValueInBlock &AV : ValuesPerBlock) 1471 FullyAvailableBlocks[AV.BB] = AvailabilityState::Available; 1472 for (BasicBlock *UnavailableBB : UnavailableBlocks) 1473 FullyAvailableBlocks[UnavailableBB] = AvailabilityState::Unavailable; 1474 1475 SmallVector<BasicBlock *, 4> CriticalEdgePred; 1476 for (BasicBlock *Pred : predecessors(LoadBB)) { 1477 // If any predecessor block is an EH pad that does not allow non-PHI 1478 // instructions before the terminator, we can't PRE the load. 1479 if (Pred->getTerminator()->isEHPad()) { 1480 LLVM_DEBUG( 1481 dbgs() << "COULD NOT PRE LOAD BECAUSE OF AN EH PAD PREDECESSOR '" 1482 << Pred->getName() << "': " << *Load << '\n'); 1483 return false; 1484 } 1485 1486 if (IsValueFullyAvailableInBlock(Pred, FullyAvailableBlocks)) { 1487 continue; 1488 } 1489 1490 if (Pred->getTerminator()->getNumSuccessors() != 1) { 1491 if (isa<IndirectBrInst>(Pred->getTerminator())) { 1492 LLVM_DEBUG( 1493 dbgs() << "COULD NOT PRE LOAD BECAUSE OF INDBR CRITICAL EDGE '" 1494 << Pred->getName() << "': " << *Load << '\n'); 1495 return false; 1496 } 1497 1498 // FIXME: Can we support the fallthrough edge? 1499 if (isa<CallBrInst>(Pred->getTerminator())) { 1500 LLVM_DEBUG( 1501 dbgs() << "COULD NOT PRE LOAD BECAUSE OF CALLBR CRITICAL EDGE '" 1502 << Pred->getName() << "': " << *Load << '\n'); 1503 return false; 1504 } 1505 1506 if (LoadBB->isEHPad()) { 1507 LLVM_DEBUG( 1508 dbgs() << "COULD NOT PRE LOAD BECAUSE OF AN EH PAD CRITICAL EDGE '" 1509 << Pred->getName() << "': " << *Load << '\n'); 1510 return false; 1511 } 1512 1513 // Do not split backedge as it will break the canonical loop form. 1514 if (!isLoadPRESplitBackedgeEnabled()) 1515 if (DT->dominates(LoadBB, Pred)) { 1516 LLVM_DEBUG( 1517 dbgs() 1518 << "COULD NOT PRE LOAD BECAUSE OF A BACKEDGE CRITICAL EDGE '" 1519 << Pred->getName() << "': " << *Load << '\n'); 1520 return false; 1521 } 1522 1523 CriticalEdgePred.push_back(Pred); 1524 } else { 1525 // Only add the predecessors that will not be split for now. 1526 PredLoads[Pred] = nullptr; 1527 } 1528 } 1529 1530 // Decide whether PRE is profitable for this load. 1531 unsigned NumUnavailablePreds = PredLoads.size() + CriticalEdgePred.size(); 1532 assert(NumUnavailablePreds != 0 && 1533 "Fully available value should already be eliminated!"); 1534 1535 // If this load is unavailable in multiple predecessors, reject it. 1536 // FIXME: If we could restructure the CFG, we could make a common pred with 1537 // all the preds that don't have an available Load and insert a new load into 1538 // that one block. 1539 if (NumUnavailablePreds != 1) 1540 return false; 1541 1542 // Now we know where we will insert load. We must ensure that it is safe 1543 // to speculatively execute the load at that points. 1544 if (MustEnsureSafetyOfSpeculativeExecution) { 1545 if (CriticalEdgePred.size()) 1546 if (!isSafeToSpeculativelyExecute(Load, LoadBB->getFirstNonPHI(), DT)) 1547 return false; 1548 for (auto &PL : PredLoads) 1549 if (!isSafeToSpeculativelyExecute(Load, PL.first->getTerminator(), DT)) 1550 return false; 1551 } 1552 1553 // Split critical edges, and update the unavailable predecessors accordingly. 1554 for (BasicBlock *OrigPred : CriticalEdgePred) { 1555 BasicBlock *NewPred = splitCriticalEdges(OrigPred, LoadBB); 1556 assert(!PredLoads.count(OrigPred) && "Split edges shouldn't be in map!"); 1557 PredLoads[NewPred] = nullptr; 1558 LLVM_DEBUG(dbgs() << "Split critical edge " << OrigPred->getName() << "->" 1559 << LoadBB->getName() << '\n'); 1560 } 1561 1562 // Check if the load can safely be moved to all the unavailable predecessors. 1563 bool CanDoPRE = true; 1564 const DataLayout &DL = Load->getModule()->getDataLayout(); 1565 SmallVector<Instruction*, 8> NewInsts; 1566 for (auto &PredLoad : PredLoads) { 1567 BasicBlock *UnavailablePred = PredLoad.first; 1568 1569 // Do PHI translation to get its value in the predecessor if necessary. The 1570 // returned pointer (if non-null) is guaranteed to dominate UnavailablePred. 1571 // We do the translation for each edge we skipped by going from Load's block 1572 // to LoadBB, otherwise we might miss pieces needing translation. 1573 1574 // If all preds have a single successor, then we know it is safe to insert 1575 // the load on the pred (?!?), so we can insert code to materialize the 1576 // pointer if it is not available. 1577 Value *LoadPtr = Load->getPointerOperand(); 1578 BasicBlock *Cur = Load->getParent(); 1579 while (Cur != LoadBB) { 1580 PHITransAddr Address(LoadPtr, DL, AC); 1581 LoadPtr = Address.PHITranslateWithInsertion( 1582 Cur, Cur->getSinglePredecessor(), *DT, NewInsts); 1583 if (!LoadPtr) { 1584 CanDoPRE = false; 1585 break; 1586 } 1587 Cur = Cur->getSinglePredecessor(); 1588 } 1589 1590 if (LoadPtr) { 1591 PHITransAddr Address(LoadPtr, DL, AC); 1592 LoadPtr = Address.PHITranslateWithInsertion(LoadBB, UnavailablePred, *DT, 1593 NewInsts); 1594 } 1595 // If we couldn't find or insert a computation of this phi translated value, 1596 // we fail PRE. 1597 if (!LoadPtr) { 1598 LLVM_DEBUG(dbgs() << "COULDN'T INSERT PHI TRANSLATED VALUE OF: " 1599 << *Load->getPointerOperand() << "\n"); 1600 CanDoPRE = false; 1601 break; 1602 } 1603 1604 PredLoad.second = LoadPtr; 1605 } 1606 1607 if (!CanDoPRE) { 1608 while (!NewInsts.empty()) { 1609 // Erase instructions generated by the failed PHI translation before 1610 // trying to number them. PHI translation might insert instructions 1611 // in basic blocks other than the current one, and we delete them 1612 // directly, as markInstructionForDeletion only allows removing from the 1613 // current basic block. 1614 NewInsts.pop_back_val()->eraseFromParent(); 1615 } 1616 // HINT: Don't revert the edge-splitting as following transformation may 1617 // also need to split these critical edges. 1618 return !CriticalEdgePred.empty(); 1619 } 1620 1621 // Okay, we can eliminate this load by inserting a reload in the predecessor 1622 // and using PHI construction to get the value in the other predecessors, do 1623 // it. 1624 LLVM_DEBUG(dbgs() << "GVN REMOVING PRE LOAD: " << *Load << '\n'); 1625 LLVM_DEBUG(if (!NewInsts.empty()) dbgs() << "INSERTED " << NewInsts.size() 1626 << " INSTS: " << *NewInsts.back() 1627 << '\n'); 1628 1629 // Assign value numbers to the new instructions. 1630 for (Instruction *I : NewInsts) { 1631 // Instructions that have been inserted in predecessor(s) to materialize 1632 // the load address do not retain their original debug locations. Doing 1633 // so could lead to confusing (but correct) source attributions. 1634 I->updateLocationAfterHoist(); 1635 1636 // FIXME: We really _ought_ to insert these value numbers into their 1637 // parent's availability map. However, in doing so, we risk getting into 1638 // ordering issues. If a block hasn't been processed yet, we would be 1639 // marking a value as AVAIL-IN, which isn't what we intend. 1640 VN.lookupOrAdd(I); 1641 } 1642 1643 eliminatePartiallyRedundantLoad(Load, ValuesPerBlock, PredLoads); 1644 ++NumPRELoad; 1645 return true; 1646 } 1647 1648 bool GVNPass::performLoopLoadPRE(LoadInst *Load, 1649 AvailValInBlkVect &ValuesPerBlock, 1650 UnavailBlkVect &UnavailableBlocks) { 1651 if (!LI) 1652 return false; 1653 1654 const Loop *L = LI->getLoopFor(Load->getParent()); 1655 // TODO: Generalize to other loop blocks that dominate the latch. 1656 if (!L || L->getHeader() != Load->getParent()) 1657 return false; 1658 1659 BasicBlock *Preheader = L->getLoopPreheader(); 1660 BasicBlock *Latch = L->getLoopLatch(); 1661 if (!Preheader || !Latch) 1662 return false; 1663 1664 Value *LoadPtr = Load->getPointerOperand(); 1665 // Must be available in preheader. 1666 if (!L->isLoopInvariant(LoadPtr)) 1667 return false; 1668 1669 // We plan to hoist the load to preheader without introducing a new fault. 1670 // In order to do it, we need to prove that we cannot side-exit the loop 1671 // once loop header is first entered before execution of the load. 1672 if (ICF->isDominatedByICFIFromSameBlock(Load)) 1673 return false; 1674 1675 BasicBlock *LoopBlock = nullptr; 1676 for (auto *Blocker : UnavailableBlocks) { 1677 // Blockers from outside the loop are handled in preheader. 1678 if (!L->contains(Blocker)) 1679 continue; 1680 1681 // Only allow one loop block. Loop header is not less frequently executed 1682 // than each loop block, and likely it is much more frequently executed. But 1683 // in case of multiple loop blocks, we need extra information (such as block 1684 // frequency info) to understand whether it is profitable to PRE into 1685 // multiple loop blocks. 1686 if (LoopBlock) 1687 return false; 1688 1689 // Do not sink into inner loops. This may be non-profitable. 1690 if (L != LI->getLoopFor(Blocker)) 1691 return false; 1692 1693 // Blocks that dominate the latch execute on every single iteration, maybe 1694 // except the last one. So PREing into these blocks doesn't make much sense 1695 // in most cases. But the blocks that do not necessarily execute on each 1696 // iteration are sometimes much colder than the header, and this is when 1697 // PRE is potentially profitable. 1698 if (DT->dominates(Blocker, Latch)) 1699 return false; 1700 1701 // Make sure that the terminator itself doesn't clobber. 1702 if (Blocker->getTerminator()->mayWriteToMemory()) 1703 return false; 1704 1705 LoopBlock = Blocker; 1706 } 1707 1708 if (!LoopBlock) 1709 return false; 1710 1711 // Make sure the memory at this pointer cannot be freed, therefore we can 1712 // safely reload from it after clobber. 1713 if (LoadPtr->canBeFreed()) 1714 return false; 1715 1716 // TODO: Support critical edge splitting if blocker has more than 1 successor. 1717 MapVector<BasicBlock *, Value *> AvailableLoads; 1718 AvailableLoads[LoopBlock] = LoadPtr; 1719 AvailableLoads[Preheader] = LoadPtr; 1720 1721 LLVM_DEBUG(dbgs() << "GVN REMOVING PRE LOOP LOAD: " << *Load << '\n'); 1722 eliminatePartiallyRedundantLoad(Load, ValuesPerBlock, AvailableLoads); 1723 ++NumPRELoopLoad; 1724 return true; 1725 } 1726 1727 static void reportLoadElim(LoadInst *Load, Value *AvailableValue, 1728 OptimizationRemarkEmitter *ORE) { 1729 using namespace ore; 1730 1731 ORE->emit([&]() { 1732 return OptimizationRemark(DEBUG_TYPE, "LoadElim", Load) 1733 << "load of type " << NV("Type", Load->getType()) << " eliminated" 1734 << setExtraArgs() << " in favor of " 1735 << NV("InfavorOfValue", AvailableValue); 1736 }); 1737 } 1738 1739 /// Attempt to eliminate a load whose dependencies are 1740 /// non-local by performing PHI construction. 1741 bool GVNPass::processNonLocalLoad(LoadInst *Load) { 1742 // non-local speculations are not allowed under asan. 1743 if (Load->getParent()->getParent()->hasFnAttribute( 1744 Attribute::SanitizeAddress) || 1745 Load->getParent()->getParent()->hasFnAttribute( 1746 Attribute::SanitizeHWAddress)) 1747 return false; 1748 1749 // Step 1: Find the non-local dependencies of the load. 1750 LoadDepVect Deps; 1751 MD->getNonLocalPointerDependency(Load, Deps); 1752 1753 // If we had to process more than one hundred blocks to find the 1754 // dependencies, this load isn't worth worrying about. Optimizing 1755 // it will be too expensive. 1756 unsigned NumDeps = Deps.size(); 1757 if (NumDeps > MaxNumDeps) 1758 return false; 1759 1760 // If we had a phi translation failure, we'll have a single entry which is a 1761 // clobber in the current block. Reject this early. 1762 if (NumDeps == 1 && 1763 !Deps[0].getResult().isDef() && !Deps[0].getResult().isClobber()) { 1764 LLVM_DEBUG(dbgs() << "GVN: non-local load "; Load->printAsOperand(dbgs()); 1765 dbgs() << " has unknown dependencies\n";); 1766 return false; 1767 } 1768 1769 bool Changed = false; 1770 // If this load follows a GEP, see if we can PRE the indices before analyzing. 1771 if (GetElementPtrInst *GEP = 1772 dyn_cast<GetElementPtrInst>(Load->getOperand(0))) { 1773 for (Use &U : GEP->indices()) 1774 if (Instruction *I = dyn_cast<Instruction>(U.get())) 1775 Changed |= performScalarPRE(I); 1776 } 1777 1778 // Step 2: Analyze the availability of the load 1779 AvailValInBlkVect ValuesPerBlock; 1780 UnavailBlkVect UnavailableBlocks; 1781 AnalyzeLoadAvailability(Load, Deps, ValuesPerBlock, UnavailableBlocks); 1782 1783 // If we have no predecessors that produce a known value for this load, exit 1784 // early. 1785 if (ValuesPerBlock.empty()) 1786 return Changed; 1787 1788 // Step 3: Eliminate fully redundancy. 1789 // 1790 // If all of the instructions we depend on produce a known value for this 1791 // load, then it is fully redundant and we can use PHI insertion to compute 1792 // its value. Insert PHIs and remove the fully redundant value now. 1793 if (UnavailableBlocks.empty()) { 1794 LLVM_DEBUG(dbgs() << "GVN REMOVING NONLOCAL LOAD: " << *Load << '\n'); 1795 1796 // Perform PHI construction. 1797 Value *V = ConstructSSAForLoadSet(Load, ValuesPerBlock, *this); 1798 Load->replaceAllUsesWith(V); 1799 1800 if (isa<PHINode>(V)) 1801 V->takeName(Load); 1802 if (Instruction *I = dyn_cast<Instruction>(V)) 1803 // If instruction I has debug info, then we should not update it. 1804 // Also, if I has a null DebugLoc, then it is still potentially incorrect 1805 // to propagate Load's DebugLoc because Load may not post-dominate I. 1806 if (Load->getDebugLoc() && Load->getParent() == I->getParent()) 1807 I->setDebugLoc(Load->getDebugLoc()); 1808 if (V->getType()->isPtrOrPtrVectorTy()) 1809 MD->invalidateCachedPointerInfo(V); 1810 markInstructionForDeletion(Load); 1811 ++NumGVNLoad; 1812 reportLoadElim(Load, V, ORE); 1813 return true; 1814 } 1815 1816 // Step 4: Eliminate partial redundancy. 1817 if (!isPREEnabled() || !isLoadPREEnabled()) 1818 return Changed; 1819 if (!isLoadInLoopPREEnabled() && LI && LI->getLoopFor(Load->getParent())) 1820 return Changed; 1821 1822 if (performLoopLoadPRE(Load, ValuesPerBlock, UnavailableBlocks) || 1823 PerformLoadPRE(Load, ValuesPerBlock, UnavailableBlocks)) 1824 return true; 1825 1826 return Changed; 1827 } 1828 1829 static bool impliesEquivalanceIfTrue(CmpInst* Cmp) { 1830 if (Cmp->getPredicate() == CmpInst::Predicate::ICMP_EQ) 1831 return true; 1832 1833 // Floating point comparisons can be equal, but not equivalent. Cases: 1834 // NaNs for unordered operators 1835 // +0.0 vs 0.0 for all operators 1836 if (Cmp->getPredicate() == CmpInst::Predicate::FCMP_OEQ || 1837 (Cmp->getPredicate() == CmpInst::Predicate::FCMP_UEQ && 1838 Cmp->getFastMathFlags().noNaNs())) { 1839 Value *LHS = Cmp->getOperand(0); 1840 Value *RHS = Cmp->getOperand(1); 1841 // If we can prove either side non-zero, then equality must imply 1842 // equivalence. 1843 // FIXME: We should do this optimization if 'no signed zeros' is 1844 // applicable via an instruction-level fast-math-flag or some other 1845 // indicator that relaxed FP semantics are being used. 1846 if (isa<ConstantFP>(LHS) && !cast<ConstantFP>(LHS)->isZero()) 1847 return true; 1848 if (isa<ConstantFP>(RHS) && !cast<ConstantFP>(RHS)->isZero()) 1849 return true;; 1850 // TODO: Handle vector floating point constants 1851 } 1852 return false; 1853 } 1854 1855 static bool impliesEquivalanceIfFalse(CmpInst* Cmp) { 1856 if (Cmp->getPredicate() == CmpInst::Predicate::ICMP_NE) 1857 return true; 1858 1859 // Floating point comparisons can be equal, but not equivelent. Cases: 1860 // NaNs for unordered operators 1861 // +0.0 vs 0.0 for all operators 1862 if ((Cmp->getPredicate() == CmpInst::Predicate::FCMP_ONE && 1863 Cmp->getFastMathFlags().noNaNs()) || 1864 Cmp->getPredicate() == CmpInst::Predicate::FCMP_UNE) { 1865 Value *LHS = Cmp->getOperand(0); 1866 Value *RHS = Cmp->getOperand(1); 1867 // If we can prove either side non-zero, then equality must imply 1868 // equivalence. 1869 // FIXME: We should do this optimization if 'no signed zeros' is 1870 // applicable via an instruction-level fast-math-flag or some other 1871 // indicator that relaxed FP semantics are being used. 1872 if (isa<ConstantFP>(LHS) && !cast<ConstantFP>(LHS)->isZero()) 1873 return true; 1874 if (isa<ConstantFP>(RHS) && !cast<ConstantFP>(RHS)->isZero()) 1875 return true;; 1876 // TODO: Handle vector floating point constants 1877 } 1878 return false; 1879 } 1880 1881 1882 static bool hasUsersIn(Value *V, BasicBlock *BB) { 1883 for (User *U : V->users()) 1884 if (isa<Instruction>(U) && 1885 cast<Instruction>(U)->getParent() == BB) 1886 return true; 1887 return false; 1888 } 1889 1890 bool GVNPass::processAssumeIntrinsic(AssumeInst *IntrinsicI) { 1891 Value *V = IntrinsicI->getArgOperand(0); 1892 1893 if (ConstantInt *Cond = dyn_cast<ConstantInt>(V)) { 1894 if (Cond->isZero()) { 1895 Type *Int8Ty = Type::getInt8Ty(V->getContext()); 1896 // Insert a new store to null instruction before the load to indicate that 1897 // this code is not reachable. FIXME: We could insert unreachable 1898 // instruction directly because we can modify the CFG. 1899 auto *NewS = new StoreInst(PoisonValue::get(Int8Ty), 1900 Constant::getNullValue(Int8Ty->getPointerTo()), 1901 IntrinsicI); 1902 if (MSSAU) { 1903 const MemoryUseOrDef *FirstNonDom = nullptr; 1904 const auto *AL = 1905 MSSAU->getMemorySSA()->getBlockAccesses(IntrinsicI->getParent()); 1906 1907 // If there are accesses in the current basic block, find the first one 1908 // that does not come before NewS. The new memory access is inserted 1909 // after the found access or before the terminator if no such access is 1910 // found. 1911 if (AL) { 1912 for (auto &Acc : *AL) { 1913 if (auto *Current = dyn_cast<MemoryUseOrDef>(&Acc)) 1914 if (!Current->getMemoryInst()->comesBefore(NewS)) { 1915 FirstNonDom = Current; 1916 break; 1917 } 1918 } 1919 } 1920 1921 // This added store is to null, so it will never executed and we can 1922 // just use the LiveOnEntry def as defining access. 1923 auto *NewDef = 1924 FirstNonDom ? MSSAU->createMemoryAccessBefore( 1925 NewS, MSSAU->getMemorySSA()->getLiveOnEntryDef(), 1926 const_cast<MemoryUseOrDef *>(FirstNonDom)) 1927 : MSSAU->createMemoryAccessInBB( 1928 NewS, MSSAU->getMemorySSA()->getLiveOnEntryDef(), 1929 NewS->getParent(), MemorySSA::BeforeTerminator); 1930 1931 MSSAU->insertDef(cast<MemoryDef>(NewDef), /*RenameUses=*/false); 1932 } 1933 } 1934 if (isAssumeWithEmptyBundle(*IntrinsicI)) 1935 markInstructionForDeletion(IntrinsicI); 1936 return false; 1937 } else if (isa<Constant>(V)) { 1938 // If it's not false, and constant, it must evaluate to true. This means our 1939 // assume is assume(true), and thus, pointless, and we don't want to do 1940 // anything more here. 1941 return false; 1942 } 1943 1944 Constant *True = ConstantInt::getTrue(V->getContext()); 1945 bool Changed = false; 1946 1947 for (BasicBlock *Successor : successors(IntrinsicI->getParent())) { 1948 BasicBlockEdge Edge(IntrinsicI->getParent(), Successor); 1949 1950 // This property is only true in dominated successors, propagateEquality 1951 // will check dominance for us. 1952 Changed |= propagateEquality(V, True, Edge, false); 1953 } 1954 1955 // We can replace assume value with true, which covers cases like this: 1956 // call void @llvm.assume(i1 %cmp) 1957 // br i1 %cmp, label %bb1, label %bb2 ; will change %cmp to true 1958 ReplaceOperandsWithMap[V] = True; 1959 1960 // Similarly, after assume(!NotV) we know that NotV == false. 1961 Value *NotV; 1962 if (match(V, m_Not(m_Value(NotV)))) 1963 ReplaceOperandsWithMap[NotV] = ConstantInt::getFalse(V->getContext()); 1964 1965 // If we find an equality fact, canonicalize all dominated uses in this block 1966 // to one of the two values. We heuristically choice the "oldest" of the 1967 // two where age is determined by value number. (Note that propagateEquality 1968 // above handles the cross block case.) 1969 // 1970 // Key case to cover are: 1971 // 1) 1972 // %cmp = fcmp oeq float 3.000000e+00, %0 ; const on lhs could happen 1973 // call void @llvm.assume(i1 %cmp) 1974 // ret float %0 ; will change it to ret float 3.000000e+00 1975 // 2) 1976 // %load = load float, float* %addr 1977 // %cmp = fcmp oeq float %load, %0 1978 // call void @llvm.assume(i1 %cmp) 1979 // ret float %load ; will change it to ret float %0 1980 if (auto *CmpI = dyn_cast<CmpInst>(V)) { 1981 if (impliesEquivalanceIfTrue(CmpI)) { 1982 Value *CmpLHS = CmpI->getOperand(0); 1983 Value *CmpRHS = CmpI->getOperand(1); 1984 // Heuristically pick the better replacement -- the choice of heuristic 1985 // isn't terribly important here, but the fact we canonicalize on some 1986 // replacement is for exposing other simplifications. 1987 // TODO: pull this out as a helper function and reuse w/existing 1988 // (slightly different) logic. 1989 if (isa<Constant>(CmpLHS) && !isa<Constant>(CmpRHS)) 1990 std::swap(CmpLHS, CmpRHS); 1991 if (!isa<Instruction>(CmpLHS) && isa<Instruction>(CmpRHS)) 1992 std::swap(CmpLHS, CmpRHS); 1993 if ((isa<Argument>(CmpLHS) && isa<Argument>(CmpRHS)) || 1994 (isa<Instruction>(CmpLHS) && isa<Instruction>(CmpRHS))) { 1995 // Move the 'oldest' value to the right-hand side, using the value 1996 // number as a proxy for age. 1997 uint32_t LVN = VN.lookupOrAdd(CmpLHS); 1998 uint32_t RVN = VN.lookupOrAdd(CmpRHS); 1999 if (LVN < RVN) 2000 std::swap(CmpLHS, CmpRHS); 2001 } 2002 2003 // Handle degenerate case where we either haven't pruned a dead path or a 2004 // removed a trivial assume yet. 2005 if (isa<Constant>(CmpLHS) && isa<Constant>(CmpRHS)) 2006 return Changed; 2007 2008 LLVM_DEBUG(dbgs() << "Replacing dominated uses of " 2009 << *CmpLHS << " with " 2010 << *CmpRHS << " in block " 2011 << IntrinsicI->getParent()->getName() << "\n"); 2012 2013 2014 // Setup the replacement map - this handles uses within the same block 2015 if (hasUsersIn(CmpLHS, IntrinsicI->getParent())) 2016 ReplaceOperandsWithMap[CmpLHS] = CmpRHS; 2017 2018 // NOTE: The non-block local cases are handled by the call to 2019 // propagateEquality above; this block is just about handling the block 2020 // local cases. TODO: There's a bunch of logic in propagateEqualiy which 2021 // isn't duplicated for the block local case, can we share it somehow? 2022 } 2023 } 2024 return Changed; 2025 } 2026 2027 static void patchAndReplaceAllUsesWith(Instruction *I, Value *Repl) { 2028 patchReplacementInstruction(I, Repl); 2029 I->replaceAllUsesWith(Repl); 2030 } 2031 2032 /// Attempt to eliminate a load, first by eliminating it 2033 /// locally, and then attempting non-local elimination if that fails. 2034 bool GVNPass::processLoad(LoadInst *L) { 2035 if (!MD) 2036 return false; 2037 2038 // This code hasn't been audited for ordered or volatile memory access 2039 if (!L->isUnordered()) 2040 return false; 2041 2042 if (L->use_empty()) { 2043 markInstructionForDeletion(L); 2044 return true; 2045 } 2046 2047 // ... to a pointer that has been loaded from before... 2048 MemDepResult Dep = MD->getDependency(L); 2049 2050 // If it is defined in another block, try harder. 2051 if (Dep.isNonLocal()) 2052 return processNonLocalLoad(L); 2053 2054 Value *Address = L->getPointerOperand(); 2055 // Only handle the local case below 2056 if (!Dep.isDef() && !Dep.isClobber() && !isa<SelectInst>(Address)) { 2057 // This might be a NonFuncLocal or an Unknown 2058 LLVM_DEBUG( 2059 // fast print dep, using operator<< on instruction is too slow. 2060 dbgs() << "GVN: load "; L->printAsOperand(dbgs()); 2061 dbgs() << " has unknown dependence\n";); 2062 return false; 2063 } 2064 2065 AvailableValue AV; 2066 if (AnalyzeLoadAvailability(L, Dep, Address, AV)) { 2067 Value *AvailableValue = AV.MaterializeAdjustedValue(L, L, *this); 2068 2069 // Replace the load! 2070 patchAndReplaceAllUsesWith(L, AvailableValue); 2071 markInstructionForDeletion(L); 2072 if (MSSAU) 2073 MSSAU->removeMemoryAccess(L); 2074 ++NumGVNLoad; 2075 reportLoadElim(L, AvailableValue, ORE); 2076 // Tell MDA to reexamine the reused pointer since we might have more 2077 // information after forwarding it. 2078 if (MD && AvailableValue->getType()->isPtrOrPtrVectorTy()) 2079 MD->invalidateCachedPointerInfo(AvailableValue); 2080 return true; 2081 } 2082 2083 return false; 2084 } 2085 2086 /// Return a pair the first field showing the value number of \p Exp and the 2087 /// second field showing whether it is a value number newly created. 2088 std::pair<uint32_t, bool> 2089 GVNPass::ValueTable::assignExpNewValueNum(Expression &Exp) { 2090 uint32_t &e = expressionNumbering[Exp]; 2091 bool CreateNewValNum = !e; 2092 if (CreateNewValNum) { 2093 Expressions.push_back(Exp); 2094 if (ExprIdx.size() < nextValueNumber + 1) 2095 ExprIdx.resize(nextValueNumber * 2); 2096 e = nextValueNumber; 2097 ExprIdx[nextValueNumber++] = nextExprNumber++; 2098 } 2099 return {e, CreateNewValNum}; 2100 } 2101 2102 /// Return whether all the values related with the same \p num are 2103 /// defined in \p BB. 2104 bool GVNPass::ValueTable::areAllValsInBB(uint32_t Num, const BasicBlock *BB, 2105 GVNPass &Gvn) { 2106 LeaderTableEntry *Vals = &Gvn.LeaderTable[Num]; 2107 while (Vals && Vals->BB == BB) 2108 Vals = Vals->Next; 2109 return !Vals; 2110 } 2111 2112 /// Wrap phiTranslateImpl to provide caching functionality. 2113 uint32_t GVNPass::ValueTable::phiTranslate(const BasicBlock *Pred, 2114 const BasicBlock *PhiBlock, 2115 uint32_t Num, GVNPass &Gvn) { 2116 auto FindRes = PhiTranslateTable.find({Num, Pred}); 2117 if (FindRes != PhiTranslateTable.end()) 2118 return FindRes->second; 2119 uint32_t NewNum = phiTranslateImpl(Pred, PhiBlock, Num, Gvn); 2120 PhiTranslateTable.insert({{Num, Pred}, NewNum}); 2121 return NewNum; 2122 } 2123 2124 // Return true if the value number \p Num and NewNum have equal value. 2125 // Return false if the result is unknown. 2126 bool GVNPass::ValueTable::areCallValsEqual(uint32_t Num, uint32_t NewNum, 2127 const BasicBlock *Pred, 2128 const BasicBlock *PhiBlock, 2129 GVNPass &Gvn) { 2130 CallInst *Call = nullptr; 2131 LeaderTableEntry *Vals = &Gvn.LeaderTable[Num]; 2132 while (Vals) { 2133 Call = dyn_cast<CallInst>(Vals->Val); 2134 if (Call && Call->getParent() == PhiBlock) 2135 break; 2136 Vals = Vals->Next; 2137 } 2138 2139 if (AA->doesNotAccessMemory(Call)) 2140 return true; 2141 2142 if (!MD || !AA->onlyReadsMemory(Call)) 2143 return false; 2144 2145 MemDepResult local_dep = MD->getDependency(Call); 2146 if (!local_dep.isNonLocal()) 2147 return false; 2148 2149 const MemoryDependenceResults::NonLocalDepInfo &deps = 2150 MD->getNonLocalCallDependency(Call); 2151 2152 // Check to see if the Call has no function local clobber. 2153 for (const NonLocalDepEntry &D : deps) { 2154 if (D.getResult().isNonFuncLocal()) 2155 return true; 2156 } 2157 return false; 2158 } 2159 2160 /// Translate value number \p Num using phis, so that it has the values of 2161 /// the phis in BB. 2162 uint32_t GVNPass::ValueTable::phiTranslateImpl(const BasicBlock *Pred, 2163 const BasicBlock *PhiBlock, 2164 uint32_t Num, GVNPass &Gvn) { 2165 if (PHINode *PN = NumberingPhi[Num]) { 2166 for (unsigned i = 0; i != PN->getNumIncomingValues(); ++i) { 2167 if (PN->getParent() == PhiBlock && PN->getIncomingBlock(i) == Pred) 2168 if (uint32_t TransVal = lookup(PN->getIncomingValue(i), false)) 2169 return TransVal; 2170 } 2171 return Num; 2172 } 2173 2174 // If there is any value related with Num is defined in a BB other than 2175 // PhiBlock, it cannot depend on a phi in PhiBlock without going through 2176 // a backedge. We can do an early exit in that case to save compile time. 2177 if (!areAllValsInBB(Num, PhiBlock, Gvn)) 2178 return Num; 2179 2180 if (Num >= ExprIdx.size() || ExprIdx[Num] == 0) 2181 return Num; 2182 Expression Exp = Expressions[ExprIdx[Num]]; 2183 2184 for (unsigned i = 0; i < Exp.varargs.size(); i++) { 2185 // For InsertValue and ExtractValue, some varargs are index numbers 2186 // instead of value numbers. Those index numbers should not be 2187 // translated. 2188 if ((i > 1 && Exp.opcode == Instruction::InsertValue) || 2189 (i > 0 && Exp.opcode == Instruction::ExtractValue) || 2190 (i > 1 && Exp.opcode == Instruction::ShuffleVector)) 2191 continue; 2192 Exp.varargs[i] = phiTranslate(Pred, PhiBlock, Exp.varargs[i], Gvn); 2193 } 2194 2195 if (Exp.commutative) { 2196 assert(Exp.varargs.size() >= 2 && "Unsupported commutative instruction!"); 2197 if (Exp.varargs[0] > Exp.varargs[1]) { 2198 std::swap(Exp.varargs[0], Exp.varargs[1]); 2199 uint32_t Opcode = Exp.opcode >> 8; 2200 if (Opcode == Instruction::ICmp || Opcode == Instruction::FCmp) 2201 Exp.opcode = (Opcode << 8) | 2202 CmpInst::getSwappedPredicate( 2203 static_cast<CmpInst::Predicate>(Exp.opcode & 255)); 2204 } 2205 } 2206 2207 if (uint32_t NewNum = expressionNumbering[Exp]) { 2208 if (Exp.opcode == Instruction::Call && NewNum != Num) 2209 return areCallValsEqual(Num, NewNum, Pred, PhiBlock, Gvn) ? NewNum : Num; 2210 return NewNum; 2211 } 2212 return Num; 2213 } 2214 2215 /// Erase stale entry from phiTranslate cache so phiTranslate can be computed 2216 /// again. 2217 void GVNPass::ValueTable::eraseTranslateCacheEntry( 2218 uint32_t Num, const BasicBlock &CurrBlock) { 2219 for (const BasicBlock *Pred : predecessors(&CurrBlock)) 2220 PhiTranslateTable.erase({Num, Pred}); 2221 } 2222 2223 // In order to find a leader for a given value number at a 2224 // specific basic block, we first obtain the list of all Values for that number, 2225 // and then scan the list to find one whose block dominates the block in 2226 // question. This is fast because dominator tree queries consist of only 2227 // a few comparisons of DFS numbers. 2228 Value *GVNPass::findLeader(const BasicBlock *BB, uint32_t num) { 2229 LeaderTableEntry Vals = LeaderTable[num]; 2230 if (!Vals.Val) return nullptr; 2231 2232 Value *Val = nullptr; 2233 if (DT->dominates(Vals.BB, BB)) { 2234 Val = Vals.Val; 2235 if (isa<Constant>(Val)) return Val; 2236 } 2237 2238 LeaderTableEntry* Next = Vals.Next; 2239 while (Next) { 2240 if (DT->dominates(Next->BB, BB)) { 2241 if (isa<Constant>(Next->Val)) return Next->Val; 2242 if (!Val) Val = Next->Val; 2243 } 2244 2245 Next = Next->Next; 2246 } 2247 2248 return Val; 2249 } 2250 2251 /// There is an edge from 'Src' to 'Dst'. Return 2252 /// true if every path from the entry block to 'Dst' passes via this edge. In 2253 /// particular 'Dst' must not be reachable via another edge from 'Src'. 2254 static bool isOnlyReachableViaThisEdge(const BasicBlockEdge &E, 2255 DominatorTree *DT) { 2256 // While in theory it is interesting to consider the case in which Dst has 2257 // more than one predecessor, because Dst might be part of a loop which is 2258 // only reachable from Src, in practice it is pointless since at the time 2259 // GVN runs all such loops have preheaders, which means that Dst will have 2260 // been changed to have only one predecessor, namely Src. 2261 const BasicBlock *Pred = E.getEnd()->getSinglePredecessor(); 2262 assert((!Pred || Pred == E.getStart()) && 2263 "No edge between these basic blocks!"); 2264 return Pred != nullptr; 2265 } 2266 2267 void GVNPass::assignBlockRPONumber(Function &F) { 2268 BlockRPONumber.clear(); 2269 uint32_t NextBlockNumber = 1; 2270 ReversePostOrderTraversal<Function *> RPOT(&F); 2271 for (BasicBlock *BB : RPOT) 2272 BlockRPONumber[BB] = NextBlockNumber++; 2273 InvalidBlockRPONumbers = false; 2274 } 2275 2276 bool GVNPass::replaceOperandsForInBlockEquality(Instruction *Instr) const { 2277 bool Changed = false; 2278 for (unsigned OpNum = 0; OpNum < Instr->getNumOperands(); ++OpNum) { 2279 Value *Operand = Instr->getOperand(OpNum); 2280 auto it = ReplaceOperandsWithMap.find(Operand); 2281 if (it != ReplaceOperandsWithMap.end()) { 2282 LLVM_DEBUG(dbgs() << "GVN replacing: " << *Operand << " with " 2283 << *it->second << " in instruction " << *Instr << '\n'); 2284 Instr->setOperand(OpNum, it->second); 2285 Changed = true; 2286 } 2287 } 2288 return Changed; 2289 } 2290 2291 /// The given values are known to be equal in every block 2292 /// dominated by 'Root'. Exploit this, for example by replacing 'LHS' with 2293 /// 'RHS' everywhere in the scope. Returns whether a change was made. 2294 /// If DominatesByEdge is false, then it means that we will propagate the RHS 2295 /// value starting from the end of Root.Start. 2296 bool GVNPass::propagateEquality(Value *LHS, Value *RHS, 2297 const BasicBlockEdge &Root, 2298 bool DominatesByEdge) { 2299 SmallVector<std::pair<Value*, Value*>, 4> Worklist; 2300 Worklist.push_back(std::make_pair(LHS, RHS)); 2301 bool Changed = false; 2302 // For speed, compute a conservative fast approximation to 2303 // DT->dominates(Root, Root.getEnd()); 2304 const bool RootDominatesEnd = isOnlyReachableViaThisEdge(Root, DT); 2305 2306 while (!Worklist.empty()) { 2307 std::pair<Value*, Value*> Item = Worklist.pop_back_val(); 2308 LHS = Item.first; RHS = Item.second; 2309 2310 if (LHS == RHS) 2311 continue; 2312 assert(LHS->getType() == RHS->getType() && "Equality but unequal types!"); 2313 2314 // Don't try to propagate equalities between constants. 2315 if (isa<Constant>(LHS) && isa<Constant>(RHS)) 2316 continue; 2317 2318 // Prefer a constant on the right-hand side, or an Argument if no constants. 2319 if (isa<Constant>(LHS) || (isa<Argument>(LHS) && !isa<Constant>(RHS))) 2320 std::swap(LHS, RHS); 2321 assert((isa<Argument>(LHS) || isa<Instruction>(LHS)) && "Unexpected value!"); 2322 2323 // If there is no obvious reason to prefer the left-hand side over the 2324 // right-hand side, ensure the longest lived term is on the right-hand side, 2325 // so the shortest lived term will be replaced by the longest lived. 2326 // This tends to expose more simplifications. 2327 uint32_t LVN = VN.lookupOrAdd(LHS); 2328 if ((isa<Argument>(LHS) && isa<Argument>(RHS)) || 2329 (isa<Instruction>(LHS) && isa<Instruction>(RHS))) { 2330 // Move the 'oldest' value to the right-hand side, using the value number 2331 // as a proxy for age. 2332 uint32_t RVN = VN.lookupOrAdd(RHS); 2333 if (LVN < RVN) { 2334 std::swap(LHS, RHS); 2335 LVN = RVN; 2336 } 2337 } 2338 2339 // If value numbering later sees that an instruction in the scope is equal 2340 // to 'LHS' then ensure it will be turned into 'RHS'. In order to preserve 2341 // the invariant that instructions only occur in the leader table for their 2342 // own value number (this is used by removeFromLeaderTable), do not do this 2343 // if RHS is an instruction (if an instruction in the scope is morphed into 2344 // LHS then it will be turned into RHS by the next GVN iteration anyway, so 2345 // using the leader table is about compiling faster, not optimizing better). 2346 // The leader table only tracks basic blocks, not edges. Only add to if we 2347 // have the simple case where the edge dominates the end. 2348 if (RootDominatesEnd && !isa<Instruction>(RHS)) 2349 addToLeaderTable(LVN, RHS, Root.getEnd()); 2350 2351 // Replace all occurrences of 'LHS' with 'RHS' everywhere in the scope. As 2352 // LHS always has at least one use that is not dominated by Root, this will 2353 // never do anything if LHS has only one use. 2354 if (!LHS->hasOneUse()) { 2355 unsigned NumReplacements = 2356 DominatesByEdge 2357 ? replaceDominatedUsesWith(LHS, RHS, *DT, Root) 2358 : replaceDominatedUsesWith(LHS, RHS, *DT, Root.getStart()); 2359 2360 Changed |= NumReplacements > 0; 2361 NumGVNEqProp += NumReplacements; 2362 // Cached information for anything that uses LHS will be invalid. 2363 if (MD) 2364 MD->invalidateCachedPointerInfo(LHS); 2365 } 2366 2367 // Now try to deduce additional equalities from this one. For example, if 2368 // the known equality was "(A != B)" == "false" then it follows that A and B 2369 // are equal in the scope. Only boolean equalities with an explicit true or 2370 // false RHS are currently supported. 2371 if (!RHS->getType()->isIntegerTy(1)) 2372 // Not a boolean equality - bail out. 2373 continue; 2374 ConstantInt *CI = dyn_cast<ConstantInt>(RHS); 2375 if (!CI) 2376 // RHS neither 'true' nor 'false' - bail out. 2377 continue; 2378 // Whether RHS equals 'true'. Otherwise it equals 'false'. 2379 bool isKnownTrue = CI->isMinusOne(); 2380 bool isKnownFalse = !isKnownTrue; 2381 2382 // If "A && B" is known true then both A and B are known true. If "A || B" 2383 // is known false then both A and B are known false. 2384 Value *A, *B; 2385 if ((isKnownTrue && match(LHS, m_LogicalAnd(m_Value(A), m_Value(B)))) || 2386 (isKnownFalse && match(LHS, m_LogicalOr(m_Value(A), m_Value(B))))) { 2387 Worklist.push_back(std::make_pair(A, RHS)); 2388 Worklist.push_back(std::make_pair(B, RHS)); 2389 continue; 2390 } 2391 2392 // If we are propagating an equality like "(A == B)" == "true" then also 2393 // propagate the equality A == B. When propagating a comparison such as 2394 // "(A >= B)" == "true", replace all instances of "A < B" with "false". 2395 if (CmpInst *Cmp = dyn_cast<CmpInst>(LHS)) { 2396 Value *Op0 = Cmp->getOperand(0), *Op1 = Cmp->getOperand(1); 2397 2398 // If "A == B" is known true, or "A != B" is known false, then replace 2399 // A with B everywhere in the scope. For floating point operations, we 2400 // have to be careful since equality does not always imply equivalance. 2401 if ((isKnownTrue && impliesEquivalanceIfTrue(Cmp)) || 2402 (isKnownFalse && impliesEquivalanceIfFalse(Cmp))) 2403 Worklist.push_back(std::make_pair(Op0, Op1)); 2404 2405 // If "A >= B" is known true, replace "A < B" with false everywhere. 2406 CmpInst::Predicate NotPred = Cmp->getInversePredicate(); 2407 Constant *NotVal = ConstantInt::get(Cmp->getType(), isKnownFalse); 2408 // Since we don't have the instruction "A < B" immediately to hand, work 2409 // out the value number that it would have and use that to find an 2410 // appropriate instruction (if any). 2411 uint32_t NextNum = VN.getNextUnusedValueNumber(); 2412 uint32_t Num = VN.lookupOrAddCmp(Cmp->getOpcode(), NotPred, Op0, Op1); 2413 // If the number we were assigned was brand new then there is no point in 2414 // looking for an instruction realizing it: there cannot be one! 2415 if (Num < NextNum) { 2416 Value *NotCmp = findLeader(Root.getEnd(), Num); 2417 if (NotCmp && isa<Instruction>(NotCmp)) { 2418 unsigned NumReplacements = 2419 DominatesByEdge 2420 ? replaceDominatedUsesWith(NotCmp, NotVal, *DT, Root) 2421 : replaceDominatedUsesWith(NotCmp, NotVal, *DT, 2422 Root.getStart()); 2423 Changed |= NumReplacements > 0; 2424 NumGVNEqProp += NumReplacements; 2425 // Cached information for anything that uses NotCmp will be invalid. 2426 if (MD) 2427 MD->invalidateCachedPointerInfo(NotCmp); 2428 } 2429 } 2430 // Ensure that any instruction in scope that gets the "A < B" value number 2431 // is replaced with false. 2432 // The leader table only tracks basic blocks, not edges. Only add to if we 2433 // have the simple case where the edge dominates the end. 2434 if (RootDominatesEnd) 2435 addToLeaderTable(Num, NotVal, Root.getEnd()); 2436 2437 continue; 2438 } 2439 } 2440 2441 return Changed; 2442 } 2443 2444 /// When calculating availability, handle an instruction 2445 /// by inserting it into the appropriate sets 2446 bool GVNPass::processInstruction(Instruction *I) { 2447 // Ignore dbg info intrinsics. 2448 if (isa<DbgInfoIntrinsic>(I)) 2449 return false; 2450 2451 // If the instruction can be easily simplified then do so now in preference 2452 // to value numbering it. Value numbering often exposes redundancies, for 2453 // example if it determines that %y is equal to %x then the instruction 2454 // "%z = and i32 %x, %y" becomes "%z = and i32 %x, %x" which we now simplify. 2455 const DataLayout &DL = I->getModule()->getDataLayout(); 2456 if (Value *V = simplifyInstruction(I, {DL, TLI, DT, AC})) { 2457 bool Changed = false; 2458 if (!I->use_empty()) { 2459 // Simplification can cause a special instruction to become not special. 2460 // For example, devirtualization to a willreturn function. 2461 ICF->removeUsersOf(I); 2462 I->replaceAllUsesWith(V); 2463 Changed = true; 2464 } 2465 if (isInstructionTriviallyDead(I, TLI)) { 2466 markInstructionForDeletion(I); 2467 Changed = true; 2468 } 2469 if (Changed) { 2470 if (MD && V->getType()->isPtrOrPtrVectorTy()) 2471 MD->invalidateCachedPointerInfo(V); 2472 ++NumGVNSimpl; 2473 return true; 2474 } 2475 } 2476 2477 if (auto *Assume = dyn_cast<AssumeInst>(I)) 2478 return processAssumeIntrinsic(Assume); 2479 2480 if (LoadInst *Load = dyn_cast<LoadInst>(I)) { 2481 if (processLoad(Load)) 2482 return true; 2483 2484 unsigned Num = VN.lookupOrAdd(Load); 2485 addToLeaderTable(Num, Load, Load->getParent()); 2486 return false; 2487 } 2488 2489 // For conditional branches, we can perform simple conditional propagation on 2490 // the condition value itself. 2491 if (BranchInst *BI = dyn_cast<BranchInst>(I)) { 2492 if (!BI->isConditional()) 2493 return false; 2494 2495 if (isa<Constant>(BI->getCondition())) 2496 return processFoldableCondBr(BI); 2497 2498 Value *BranchCond = BI->getCondition(); 2499 BasicBlock *TrueSucc = BI->getSuccessor(0); 2500 BasicBlock *FalseSucc = BI->getSuccessor(1); 2501 // Avoid multiple edges early. 2502 if (TrueSucc == FalseSucc) 2503 return false; 2504 2505 BasicBlock *Parent = BI->getParent(); 2506 bool Changed = false; 2507 2508 Value *TrueVal = ConstantInt::getTrue(TrueSucc->getContext()); 2509 BasicBlockEdge TrueE(Parent, TrueSucc); 2510 Changed |= propagateEquality(BranchCond, TrueVal, TrueE, true); 2511 2512 Value *FalseVal = ConstantInt::getFalse(FalseSucc->getContext()); 2513 BasicBlockEdge FalseE(Parent, FalseSucc); 2514 Changed |= propagateEquality(BranchCond, FalseVal, FalseE, true); 2515 2516 return Changed; 2517 } 2518 2519 // For switches, propagate the case values into the case destinations. 2520 if (SwitchInst *SI = dyn_cast<SwitchInst>(I)) { 2521 Value *SwitchCond = SI->getCondition(); 2522 BasicBlock *Parent = SI->getParent(); 2523 bool Changed = false; 2524 2525 // Remember how many outgoing edges there are to every successor. 2526 SmallDenseMap<BasicBlock *, unsigned, 16> SwitchEdges; 2527 for (unsigned i = 0, n = SI->getNumSuccessors(); i != n; ++i) 2528 ++SwitchEdges[SI->getSuccessor(i)]; 2529 2530 for (SwitchInst::CaseIt i = SI->case_begin(), e = SI->case_end(); 2531 i != e; ++i) { 2532 BasicBlock *Dst = i->getCaseSuccessor(); 2533 // If there is only a single edge, propagate the case value into it. 2534 if (SwitchEdges.lookup(Dst) == 1) { 2535 BasicBlockEdge E(Parent, Dst); 2536 Changed |= propagateEquality(SwitchCond, i->getCaseValue(), E, true); 2537 } 2538 } 2539 return Changed; 2540 } 2541 2542 // Instructions with void type don't return a value, so there's 2543 // no point in trying to find redundancies in them. 2544 if (I->getType()->isVoidTy()) 2545 return false; 2546 2547 uint32_t NextNum = VN.getNextUnusedValueNumber(); 2548 unsigned Num = VN.lookupOrAdd(I); 2549 2550 // Allocations are always uniquely numbered, so we can save time and memory 2551 // by fast failing them. 2552 if (isa<AllocaInst>(I) || I->isTerminator() || isa<PHINode>(I)) { 2553 addToLeaderTable(Num, I, I->getParent()); 2554 return false; 2555 } 2556 2557 // If the number we were assigned was a brand new VN, then we don't 2558 // need to do a lookup to see if the number already exists 2559 // somewhere in the domtree: it can't! 2560 if (Num >= NextNum) { 2561 addToLeaderTable(Num, I, I->getParent()); 2562 return false; 2563 } 2564 2565 // Perform fast-path value-number based elimination of values inherited from 2566 // dominators. 2567 Value *Repl = findLeader(I->getParent(), Num); 2568 if (!Repl) { 2569 // Failure, just remember this instance for future use. 2570 addToLeaderTable(Num, I, I->getParent()); 2571 return false; 2572 } else if (Repl == I) { 2573 // If I was the result of a shortcut PRE, it might already be in the table 2574 // and the best replacement for itself. Nothing to do. 2575 return false; 2576 } 2577 2578 // Remove it! 2579 patchAndReplaceAllUsesWith(I, Repl); 2580 if (MD && Repl->getType()->isPtrOrPtrVectorTy()) 2581 MD->invalidateCachedPointerInfo(Repl); 2582 markInstructionForDeletion(I); 2583 return true; 2584 } 2585 2586 /// runOnFunction - This is the main transformation entry point for a function. 2587 bool GVNPass::runImpl(Function &F, AssumptionCache &RunAC, DominatorTree &RunDT, 2588 const TargetLibraryInfo &RunTLI, AAResults &RunAA, 2589 MemoryDependenceResults *RunMD, LoopInfo *LI, 2590 OptimizationRemarkEmitter *RunORE, MemorySSA *MSSA) { 2591 AC = &RunAC; 2592 DT = &RunDT; 2593 VN.setDomTree(DT); 2594 TLI = &RunTLI; 2595 VN.setAliasAnalysis(&RunAA); 2596 MD = RunMD; 2597 ImplicitControlFlowTracking ImplicitCFT; 2598 ICF = &ImplicitCFT; 2599 this->LI = LI; 2600 VN.setMemDep(MD); 2601 ORE = RunORE; 2602 InvalidBlockRPONumbers = true; 2603 MemorySSAUpdater Updater(MSSA); 2604 MSSAU = MSSA ? &Updater : nullptr; 2605 2606 bool Changed = false; 2607 bool ShouldContinue = true; 2608 2609 DomTreeUpdater DTU(DT, DomTreeUpdater::UpdateStrategy::Eager); 2610 // Merge unconditional branches, allowing PRE to catch more 2611 // optimization opportunities. 2612 for (BasicBlock &BB : llvm::make_early_inc_range(F)) { 2613 bool removedBlock = MergeBlockIntoPredecessor(&BB, &DTU, LI, MSSAU, MD); 2614 if (removedBlock) 2615 ++NumGVNBlocks; 2616 2617 Changed |= removedBlock; 2618 } 2619 2620 unsigned Iteration = 0; 2621 while (ShouldContinue) { 2622 LLVM_DEBUG(dbgs() << "GVN iteration: " << Iteration << "\n"); 2623 (void) Iteration; 2624 ShouldContinue = iterateOnFunction(F); 2625 Changed |= ShouldContinue; 2626 ++Iteration; 2627 } 2628 2629 if (isPREEnabled()) { 2630 // Fabricate val-num for dead-code in order to suppress assertion in 2631 // performPRE(). 2632 assignValNumForDeadCode(); 2633 bool PREChanged = true; 2634 while (PREChanged) { 2635 PREChanged = performPRE(F); 2636 Changed |= PREChanged; 2637 } 2638 } 2639 2640 // FIXME: Should perform GVN again after PRE does something. PRE can move 2641 // computations into blocks where they become fully redundant. Note that 2642 // we can't do this until PRE's critical edge splitting updates memdep. 2643 // Actually, when this happens, we should just fully integrate PRE into GVN. 2644 2645 cleanupGlobalSets(); 2646 // Do not cleanup DeadBlocks in cleanupGlobalSets() as it's called for each 2647 // iteration. 2648 DeadBlocks.clear(); 2649 2650 if (MSSA && VerifyMemorySSA) 2651 MSSA->verifyMemorySSA(); 2652 2653 return Changed; 2654 } 2655 2656 bool GVNPass::processBlock(BasicBlock *BB) { 2657 // FIXME: Kill off InstrsToErase by doing erasing eagerly in a helper function 2658 // (and incrementing BI before processing an instruction). 2659 assert(InstrsToErase.empty() && 2660 "We expect InstrsToErase to be empty across iterations"); 2661 if (DeadBlocks.count(BB)) 2662 return false; 2663 2664 // Clearing map before every BB because it can be used only for single BB. 2665 ReplaceOperandsWithMap.clear(); 2666 bool ChangedFunction = false; 2667 2668 // Since we may not have visited the input blocks of the phis, we can't 2669 // use our normal hash approach for phis. Instead, simply look for 2670 // obvious duplicates. The first pass of GVN will tend to create 2671 // identical phis, and the second or later passes can eliminate them. 2672 ChangedFunction |= EliminateDuplicatePHINodes(BB); 2673 2674 for (BasicBlock::iterator BI = BB->begin(), BE = BB->end(); 2675 BI != BE;) { 2676 if (!ReplaceOperandsWithMap.empty()) 2677 ChangedFunction |= replaceOperandsForInBlockEquality(&*BI); 2678 ChangedFunction |= processInstruction(&*BI); 2679 2680 if (InstrsToErase.empty()) { 2681 ++BI; 2682 continue; 2683 } 2684 2685 // If we need some instructions deleted, do it now. 2686 NumGVNInstr += InstrsToErase.size(); 2687 2688 // Avoid iterator invalidation. 2689 bool AtStart = BI == BB->begin(); 2690 if (!AtStart) 2691 --BI; 2692 2693 for (auto *I : InstrsToErase) { 2694 assert(I->getParent() == BB && "Removing instruction from wrong block?"); 2695 LLVM_DEBUG(dbgs() << "GVN removed: " << *I << '\n'); 2696 salvageKnowledge(I, AC); 2697 salvageDebugInfo(*I); 2698 if (MD) MD->removeInstruction(I); 2699 if (MSSAU) 2700 MSSAU->removeMemoryAccess(I); 2701 LLVM_DEBUG(verifyRemoved(I)); 2702 ICF->removeInstruction(I); 2703 I->eraseFromParent(); 2704 } 2705 InstrsToErase.clear(); 2706 2707 if (AtStart) 2708 BI = BB->begin(); 2709 else 2710 ++BI; 2711 } 2712 2713 return ChangedFunction; 2714 } 2715 2716 // Instantiate an expression in a predecessor that lacked it. 2717 bool GVNPass::performScalarPREInsertion(Instruction *Instr, BasicBlock *Pred, 2718 BasicBlock *Curr, unsigned int ValNo) { 2719 // Because we are going top-down through the block, all value numbers 2720 // will be available in the predecessor by the time we need them. Any 2721 // that weren't originally present will have been instantiated earlier 2722 // in this loop. 2723 bool success = true; 2724 for (unsigned i = 0, e = Instr->getNumOperands(); i != e; ++i) { 2725 Value *Op = Instr->getOperand(i); 2726 if (isa<Argument>(Op) || isa<Constant>(Op) || isa<GlobalValue>(Op)) 2727 continue; 2728 // This could be a newly inserted instruction, in which case, we won't 2729 // find a value number, and should give up before we hurt ourselves. 2730 // FIXME: Rewrite the infrastructure to let it easier to value number 2731 // and process newly inserted instructions. 2732 if (!VN.exists(Op)) { 2733 success = false; 2734 break; 2735 } 2736 uint32_t TValNo = 2737 VN.phiTranslate(Pred, Curr, VN.lookup(Op), *this); 2738 if (Value *V = findLeader(Pred, TValNo)) { 2739 Instr->setOperand(i, V); 2740 } else { 2741 success = false; 2742 break; 2743 } 2744 } 2745 2746 // Fail out if we encounter an operand that is not available in 2747 // the PRE predecessor. This is typically because of loads which 2748 // are not value numbered precisely. 2749 if (!success) 2750 return false; 2751 2752 Instr->insertBefore(Pred->getTerminator()); 2753 Instr->setName(Instr->getName() + ".pre"); 2754 Instr->setDebugLoc(Instr->getDebugLoc()); 2755 2756 ICF->insertInstructionTo(Instr, Pred); 2757 2758 unsigned Num = VN.lookupOrAdd(Instr); 2759 VN.add(Instr, Num); 2760 2761 // Update the availability map to include the new instruction. 2762 addToLeaderTable(Num, Instr, Pred); 2763 return true; 2764 } 2765 2766 bool GVNPass::performScalarPRE(Instruction *CurInst) { 2767 if (isa<AllocaInst>(CurInst) || CurInst->isTerminator() || 2768 isa<PHINode>(CurInst) || CurInst->getType()->isVoidTy() || 2769 CurInst->mayReadFromMemory() || CurInst->mayHaveSideEffects() || 2770 isa<DbgInfoIntrinsic>(CurInst)) 2771 return false; 2772 2773 // Don't do PRE on compares. The PHI would prevent CodeGenPrepare from 2774 // sinking the compare again, and it would force the code generator to 2775 // move the i1 from processor flags or predicate registers into a general 2776 // purpose register. 2777 if (isa<CmpInst>(CurInst)) 2778 return false; 2779 2780 // Don't do PRE on GEPs. The inserted PHI would prevent CodeGenPrepare from 2781 // sinking the addressing mode computation back to its uses. Extending the 2782 // GEP's live range increases the register pressure, and therefore it can 2783 // introduce unnecessary spills. 2784 // 2785 // This doesn't prevent Load PRE. PHI translation will make the GEP available 2786 // to the load by moving it to the predecessor block if necessary. 2787 if (isa<GetElementPtrInst>(CurInst)) 2788 return false; 2789 2790 if (auto *CallB = dyn_cast<CallBase>(CurInst)) { 2791 // We don't currently value number ANY inline asm calls. 2792 if (CallB->isInlineAsm()) 2793 return false; 2794 // Don't do PRE on convergent calls. 2795 if (CallB->isConvergent()) 2796 return false; 2797 } 2798 2799 uint32_t ValNo = VN.lookup(CurInst); 2800 2801 // Look for the predecessors for PRE opportunities. We're 2802 // only trying to solve the basic diamond case, where 2803 // a value is computed in the successor and one predecessor, 2804 // but not the other. We also explicitly disallow cases 2805 // where the successor is its own predecessor, because they're 2806 // more complicated to get right. 2807 unsigned NumWith = 0; 2808 unsigned NumWithout = 0; 2809 BasicBlock *PREPred = nullptr; 2810 BasicBlock *CurrentBlock = CurInst->getParent(); 2811 2812 // Update the RPO numbers for this function. 2813 if (InvalidBlockRPONumbers) 2814 assignBlockRPONumber(*CurrentBlock->getParent()); 2815 2816 SmallVector<std::pair<Value *, BasicBlock *>, 8> predMap; 2817 for (BasicBlock *P : predecessors(CurrentBlock)) { 2818 // We're not interested in PRE where blocks with predecessors that are 2819 // not reachable. 2820 if (!DT->isReachableFromEntry(P)) { 2821 NumWithout = 2; 2822 break; 2823 } 2824 // It is not safe to do PRE when P->CurrentBlock is a loop backedge, and 2825 // when CurInst has operand defined in CurrentBlock (so it may be defined 2826 // by phi in the loop header). 2827 assert(BlockRPONumber.count(P) && BlockRPONumber.count(CurrentBlock) && 2828 "Invalid BlockRPONumber map."); 2829 if (BlockRPONumber[P] >= BlockRPONumber[CurrentBlock] && 2830 llvm::any_of(CurInst->operands(), [&](const Use &U) { 2831 if (auto *Inst = dyn_cast<Instruction>(U.get())) 2832 return Inst->getParent() == CurrentBlock; 2833 return false; 2834 })) { 2835 NumWithout = 2; 2836 break; 2837 } 2838 2839 uint32_t TValNo = VN.phiTranslate(P, CurrentBlock, ValNo, *this); 2840 Value *predV = findLeader(P, TValNo); 2841 if (!predV) { 2842 predMap.push_back(std::make_pair(static_cast<Value *>(nullptr), P)); 2843 PREPred = P; 2844 ++NumWithout; 2845 } else if (predV == CurInst) { 2846 /* CurInst dominates this predecessor. */ 2847 NumWithout = 2; 2848 break; 2849 } else { 2850 predMap.push_back(std::make_pair(predV, P)); 2851 ++NumWith; 2852 } 2853 } 2854 2855 // Don't do PRE when it might increase code size, i.e. when 2856 // we would need to insert instructions in more than one pred. 2857 if (NumWithout > 1 || NumWith == 0) 2858 return false; 2859 2860 // We may have a case where all predecessors have the instruction, 2861 // and we just need to insert a phi node. Otherwise, perform 2862 // insertion. 2863 Instruction *PREInstr = nullptr; 2864 2865 if (NumWithout != 0) { 2866 if (!isSafeToSpeculativelyExecute(CurInst)) { 2867 // It is only valid to insert a new instruction if the current instruction 2868 // is always executed. An instruction with implicit control flow could 2869 // prevent us from doing it. If we cannot speculate the execution, then 2870 // PRE should be prohibited. 2871 if (ICF->isDominatedByICFIFromSameBlock(CurInst)) 2872 return false; 2873 } 2874 2875 // Don't do PRE across indirect branch. 2876 if (isa<IndirectBrInst>(PREPred->getTerminator())) 2877 return false; 2878 2879 // Don't do PRE across callbr. 2880 // FIXME: Can we do this across the fallthrough edge? 2881 if (isa<CallBrInst>(PREPred->getTerminator())) 2882 return false; 2883 2884 // We can't do PRE safely on a critical edge, so instead we schedule 2885 // the edge to be split and perform the PRE the next time we iterate 2886 // on the function. 2887 unsigned SuccNum = GetSuccessorNumber(PREPred, CurrentBlock); 2888 if (isCriticalEdge(PREPred->getTerminator(), SuccNum)) { 2889 toSplit.push_back(std::make_pair(PREPred->getTerminator(), SuccNum)); 2890 return false; 2891 } 2892 // We need to insert somewhere, so let's give it a shot 2893 PREInstr = CurInst->clone(); 2894 if (!performScalarPREInsertion(PREInstr, PREPred, CurrentBlock, ValNo)) { 2895 // If we failed insertion, make sure we remove the instruction. 2896 LLVM_DEBUG(verifyRemoved(PREInstr)); 2897 PREInstr->deleteValue(); 2898 return false; 2899 } 2900 } 2901 2902 // Either we should have filled in the PRE instruction, or we should 2903 // not have needed insertions. 2904 assert(PREInstr != nullptr || NumWithout == 0); 2905 2906 ++NumGVNPRE; 2907 2908 // Create a PHI to make the value available in this block. 2909 PHINode *Phi = 2910 PHINode::Create(CurInst->getType(), predMap.size(), 2911 CurInst->getName() + ".pre-phi", &CurrentBlock->front()); 2912 for (unsigned i = 0, e = predMap.size(); i != e; ++i) { 2913 if (Value *V = predMap[i].first) { 2914 // If we use an existing value in this phi, we have to patch the original 2915 // value because the phi will be used to replace a later value. 2916 patchReplacementInstruction(CurInst, V); 2917 Phi->addIncoming(V, predMap[i].second); 2918 } else 2919 Phi->addIncoming(PREInstr, PREPred); 2920 } 2921 2922 VN.add(Phi, ValNo); 2923 // After creating a new PHI for ValNo, the phi translate result for ValNo will 2924 // be changed, so erase the related stale entries in phi translate cache. 2925 VN.eraseTranslateCacheEntry(ValNo, *CurrentBlock); 2926 addToLeaderTable(ValNo, Phi, CurrentBlock); 2927 Phi->setDebugLoc(CurInst->getDebugLoc()); 2928 CurInst->replaceAllUsesWith(Phi); 2929 if (MD && Phi->getType()->isPtrOrPtrVectorTy()) 2930 MD->invalidateCachedPointerInfo(Phi); 2931 VN.erase(CurInst); 2932 removeFromLeaderTable(ValNo, CurInst, CurrentBlock); 2933 2934 LLVM_DEBUG(dbgs() << "GVN PRE removed: " << *CurInst << '\n'); 2935 if (MD) 2936 MD->removeInstruction(CurInst); 2937 if (MSSAU) 2938 MSSAU->removeMemoryAccess(CurInst); 2939 LLVM_DEBUG(verifyRemoved(CurInst)); 2940 // FIXME: Intended to be markInstructionForDeletion(CurInst), but it causes 2941 // some assertion failures. 2942 ICF->removeInstruction(CurInst); 2943 CurInst->eraseFromParent(); 2944 ++NumGVNInstr; 2945 2946 return true; 2947 } 2948 2949 /// Perform a purely local form of PRE that looks for diamond 2950 /// control flow patterns and attempts to perform simple PRE at the join point. 2951 bool GVNPass::performPRE(Function &F) { 2952 bool Changed = false; 2953 for (BasicBlock *CurrentBlock : depth_first(&F.getEntryBlock())) { 2954 // Nothing to PRE in the entry block. 2955 if (CurrentBlock == &F.getEntryBlock()) 2956 continue; 2957 2958 // Don't perform PRE on an EH pad. 2959 if (CurrentBlock->isEHPad()) 2960 continue; 2961 2962 for (BasicBlock::iterator BI = CurrentBlock->begin(), 2963 BE = CurrentBlock->end(); 2964 BI != BE;) { 2965 Instruction *CurInst = &*BI++; 2966 Changed |= performScalarPRE(CurInst); 2967 } 2968 } 2969 2970 if (splitCriticalEdges()) 2971 Changed = true; 2972 2973 return Changed; 2974 } 2975 2976 /// Split the critical edge connecting the given two blocks, and return 2977 /// the block inserted to the critical edge. 2978 BasicBlock *GVNPass::splitCriticalEdges(BasicBlock *Pred, BasicBlock *Succ) { 2979 // GVN does not require loop-simplify, do not try to preserve it if it is not 2980 // possible. 2981 BasicBlock *BB = SplitCriticalEdge( 2982 Pred, Succ, 2983 CriticalEdgeSplittingOptions(DT, LI, MSSAU).unsetPreserveLoopSimplify()); 2984 if (BB) { 2985 if (MD) 2986 MD->invalidateCachedPredecessors(); 2987 InvalidBlockRPONumbers = true; 2988 } 2989 return BB; 2990 } 2991 2992 /// Split critical edges found during the previous 2993 /// iteration that may enable further optimization. 2994 bool GVNPass::splitCriticalEdges() { 2995 if (toSplit.empty()) 2996 return false; 2997 2998 bool Changed = false; 2999 do { 3000 std::pair<Instruction *, unsigned> Edge = toSplit.pop_back_val(); 3001 Changed |= SplitCriticalEdge(Edge.first, Edge.second, 3002 CriticalEdgeSplittingOptions(DT, LI, MSSAU)) != 3003 nullptr; 3004 } while (!toSplit.empty()); 3005 if (Changed) { 3006 if (MD) 3007 MD->invalidateCachedPredecessors(); 3008 InvalidBlockRPONumbers = true; 3009 } 3010 return Changed; 3011 } 3012 3013 /// Executes one iteration of GVN 3014 bool GVNPass::iterateOnFunction(Function &F) { 3015 cleanupGlobalSets(); 3016 3017 // Top-down walk of the dominator tree 3018 bool Changed = false; 3019 // Needed for value numbering with phi construction to work. 3020 // RPOT walks the graph in its constructor and will not be invalidated during 3021 // processBlock. 3022 ReversePostOrderTraversal<Function *> RPOT(&F); 3023 3024 for (BasicBlock *BB : RPOT) 3025 Changed |= processBlock(BB); 3026 3027 return Changed; 3028 } 3029 3030 void GVNPass::cleanupGlobalSets() { 3031 VN.clear(); 3032 LeaderTable.clear(); 3033 BlockRPONumber.clear(); 3034 TableAllocator.Reset(); 3035 ICF->clear(); 3036 InvalidBlockRPONumbers = true; 3037 } 3038 3039 /// Verify that the specified instruction does not occur in our 3040 /// internal data structures. 3041 void GVNPass::verifyRemoved(const Instruction *Inst) const { 3042 VN.verifyRemoved(Inst); 3043 3044 // Walk through the value number scope to make sure the instruction isn't 3045 // ferreted away in it. 3046 for (const auto &I : LeaderTable) { 3047 const LeaderTableEntry *Node = &I.second; 3048 assert(Node->Val != Inst && "Inst still in value numbering scope!"); 3049 3050 while (Node->Next) { 3051 Node = Node->Next; 3052 assert(Node->Val != Inst && "Inst still in value numbering scope!"); 3053 } 3054 } 3055 } 3056 3057 /// BB is declared dead, which implied other blocks become dead as well. This 3058 /// function is to add all these blocks to "DeadBlocks". For the dead blocks' 3059 /// live successors, update their phi nodes by replacing the operands 3060 /// corresponding to dead blocks with UndefVal. 3061 void GVNPass::addDeadBlock(BasicBlock *BB) { 3062 SmallVector<BasicBlock *, 4> NewDead; 3063 SmallSetVector<BasicBlock *, 4> DF; 3064 3065 NewDead.push_back(BB); 3066 while (!NewDead.empty()) { 3067 BasicBlock *D = NewDead.pop_back_val(); 3068 if (DeadBlocks.count(D)) 3069 continue; 3070 3071 // All blocks dominated by D are dead. 3072 SmallVector<BasicBlock *, 8> Dom; 3073 DT->getDescendants(D, Dom); 3074 DeadBlocks.insert(Dom.begin(), Dom.end()); 3075 3076 // Figure out the dominance-frontier(D). 3077 for (BasicBlock *B : Dom) { 3078 for (BasicBlock *S : successors(B)) { 3079 if (DeadBlocks.count(S)) 3080 continue; 3081 3082 bool AllPredDead = true; 3083 for (BasicBlock *P : predecessors(S)) 3084 if (!DeadBlocks.count(P)) { 3085 AllPredDead = false; 3086 break; 3087 } 3088 3089 if (!AllPredDead) { 3090 // S could be proved dead later on. That is why we don't update phi 3091 // operands at this moment. 3092 DF.insert(S); 3093 } else { 3094 // While S is not dominated by D, it is dead by now. This could take 3095 // place if S already have a dead predecessor before D is declared 3096 // dead. 3097 NewDead.push_back(S); 3098 } 3099 } 3100 } 3101 } 3102 3103 // For the dead blocks' live successors, update their phi nodes by replacing 3104 // the operands corresponding to dead blocks with UndefVal. 3105 for (BasicBlock *B : DF) { 3106 if (DeadBlocks.count(B)) 3107 continue; 3108 3109 // First, split the critical edges. This might also create additional blocks 3110 // to preserve LoopSimplify form and adjust edges accordingly. 3111 SmallVector<BasicBlock *, 4> Preds(predecessors(B)); 3112 for (BasicBlock *P : Preds) { 3113 if (!DeadBlocks.count(P)) 3114 continue; 3115 3116 if (llvm::is_contained(successors(P), B) && 3117 isCriticalEdge(P->getTerminator(), B)) { 3118 if (BasicBlock *S = splitCriticalEdges(P, B)) 3119 DeadBlocks.insert(P = S); 3120 } 3121 } 3122 3123 // Now poison the incoming values from the dead predecessors. 3124 for (BasicBlock *P : predecessors(B)) { 3125 if (!DeadBlocks.count(P)) 3126 continue; 3127 for (PHINode &Phi : B->phis()) { 3128 Phi.setIncomingValueForBlock(P, PoisonValue::get(Phi.getType())); 3129 if (MD) 3130 MD->invalidateCachedPointerInfo(&Phi); 3131 } 3132 } 3133 } 3134 } 3135 3136 // If the given branch is recognized as a foldable branch (i.e. conditional 3137 // branch with constant condition), it will perform following analyses and 3138 // transformation. 3139 // 1) If the dead out-coming edge is a critical-edge, split it. Let 3140 // R be the target of the dead out-coming edge. 3141 // 1) Identify the set of dead blocks implied by the branch's dead outcoming 3142 // edge. The result of this step will be {X| X is dominated by R} 3143 // 2) Identify those blocks which haves at least one dead predecessor. The 3144 // result of this step will be dominance-frontier(R). 3145 // 3) Update the PHIs in DF(R) by replacing the operands corresponding to 3146 // dead blocks with "UndefVal" in an hope these PHIs will optimized away. 3147 // 3148 // Return true iff *NEW* dead code are found. 3149 bool GVNPass::processFoldableCondBr(BranchInst *BI) { 3150 if (!BI || BI->isUnconditional()) 3151 return false; 3152 3153 // If a branch has two identical successors, we cannot declare either dead. 3154 if (BI->getSuccessor(0) == BI->getSuccessor(1)) 3155 return false; 3156 3157 ConstantInt *Cond = dyn_cast<ConstantInt>(BI->getCondition()); 3158 if (!Cond) 3159 return false; 3160 3161 BasicBlock *DeadRoot = 3162 Cond->getZExtValue() ? BI->getSuccessor(1) : BI->getSuccessor(0); 3163 if (DeadBlocks.count(DeadRoot)) 3164 return false; 3165 3166 if (!DeadRoot->getSinglePredecessor()) 3167 DeadRoot = splitCriticalEdges(BI->getParent(), DeadRoot); 3168 3169 addDeadBlock(DeadRoot); 3170 return true; 3171 } 3172 3173 // performPRE() will trigger assert if it comes across an instruction without 3174 // associated val-num. As it normally has far more live instructions than dead 3175 // instructions, it makes more sense just to "fabricate" a val-number for the 3176 // dead code than checking if instruction involved is dead or not. 3177 void GVNPass::assignValNumForDeadCode() { 3178 for (BasicBlock *BB : DeadBlocks) { 3179 for (Instruction &Inst : *BB) { 3180 unsigned ValNum = VN.lookupOrAdd(&Inst); 3181 addToLeaderTable(ValNum, &Inst, BB); 3182 } 3183 } 3184 } 3185 3186 class llvm::gvn::GVNLegacyPass : public FunctionPass { 3187 public: 3188 static char ID; // Pass identification, replacement for typeid 3189 3190 explicit GVNLegacyPass(bool NoMemDepAnalysis = !GVNEnableMemDep) 3191 : FunctionPass(ID), Impl(GVNOptions().setMemDep(!NoMemDepAnalysis)) { 3192 initializeGVNLegacyPassPass(*PassRegistry::getPassRegistry()); 3193 } 3194 3195 bool runOnFunction(Function &F) override { 3196 if (skipFunction(F)) 3197 return false; 3198 3199 auto *LIWP = getAnalysisIfAvailable<LoopInfoWrapperPass>(); 3200 3201 auto *MSSAWP = getAnalysisIfAvailable<MemorySSAWrapperPass>(); 3202 return Impl.runImpl( 3203 F, getAnalysis<AssumptionCacheTracker>().getAssumptionCache(F), 3204 getAnalysis<DominatorTreeWrapperPass>().getDomTree(), 3205 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F), 3206 getAnalysis<AAResultsWrapperPass>().getAAResults(), 3207 Impl.isMemDepEnabled() 3208 ? &getAnalysis<MemoryDependenceWrapperPass>().getMemDep() 3209 : nullptr, 3210 LIWP ? &LIWP->getLoopInfo() : nullptr, 3211 &getAnalysis<OptimizationRemarkEmitterWrapperPass>().getORE(), 3212 MSSAWP ? &MSSAWP->getMSSA() : nullptr); 3213 } 3214 3215 void getAnalysisUsage(AnalysisUsage &AU) const override { 3216 AU.addRequired<AssumptionCacheTracker>(); 3217 AU.addRequired<DominatorTreeWrapperPass>(); 3218 AU.addRequired<TargetLibraryInfoWrapperPass>(); 3219 AU.addRequired<LoopInfoWrapperPass>(); 3220 if (Impl.isMemDepEnabled()) 3221 AU.addRequired<MemoryDependenceWrapperPass>(); 3222 AU.addRequired<AAResultsWrapperPass>(); 3223 AU.addPreserved<DominatorTreeWrapperPass>(); 3224 AU.addPreserved<GlobalsAAWrapperPass>(); 3225 AU.addPreserved<TargetLibraryInfoWrapperPass>(); 3226 AU.addPreserved<LoopInfoWrapperPass>(); 3227 AU.addRequired<OptimizationRemarkEmitterWrapperPass>(); 3228 AU.addPreserved<MemorySSAWrapperPass>(); 3229 } 3230 3231 private: 3232 GVNPass Impl; 3233 }; 3234 3235 char GVNLegacyPass::ID = 0; 3236 3237 INITIALIZE_PASS_BEGIN(GVNLegacyPass, "gvn", "Global Value Numbering", false, false) 3238 INITIALIZE_PASS_DEPENDENCY(AssumptionCacheTracker) 3239 INITIALIZE_PASS_DEPENDENCY(MemoryDependenceWrapperPass) 3240 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 3241 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 3242 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) 3243 INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass) 3244 INITIALIZE_PASS_DEPENDENCY(OptimizationRemarkEmitterWrapperPass) 3245 INITIALIZE_PASS_END(GVNLegacyPass, "gvn", "Global Value Numbering", false, false) 3246 3247 // The public interface to this file... 3248 FunctionPass *llvm::createGVNPass(bool NoMemDepAnalysis) { 3249 return new GVNLegacyPass(NoMemDepAnalysis); 3250 } 3251