1 //===- DeadStoreElimination.cpp - MemorySSA Backed Dead Store Elimination -===// 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 // The code below implements dead store elimination using MemorySSA. It uses 10 // the following general approach: given a MemoryDef, walk upwards to find 11 // clobbering MemoryDefs that may be killed by the starting def. Then check 12 // that there are no uses that may read the location of the original MemoryDef 13 // in between both MemoryDefs. A bit more concretely: 14 // 15 // For all MemoryDefs StartDef: 16 // 1. Get the next dominating clobbering MemoryDef (MaybeDeadAccess) by walking 17 // upwards. 18 // 2. Check that there are no reads between MaybeDeadAccess and the StartDef by 19 // checking all uses starting at MaybeDeadAccess and walking until we see 20 // StartDef. 21 // 3. For each found CurrentDef, check that: 22 // 1. There are no barrier instructions between CurrentDef and StartDef (like 23 // throws or stores with ordering constraints). 24 // 2. StartDef is executed whenever CurrentDef is executed. 25 // 3. StartDef completely overwrites CurrentDef. 26 // 4. Erase CurrentDef from the function and MemorySSA. 27 // 28 //===----------------------------------------------------------------------===// 29 30 #include "llvm/Transforms/Scalar/DeadStoreElimination.h" 31 #include "llvm/ADT/APInt.h" 32 #include "llvm/ADT/DenseMap.h" 33 #include "llvm/ADT/MapVector.h" 34 #include "llvm/ADT/PostOrderIterator.h" 35 #include "llvm/ADT/SetVector.h" 36 #include "llvm/ADT/SmallPtrSet.h" 37 #include "llvm/ADT/SmallVector.h" 38 #include "llvm/ADT/Statistic.h" 39 #include "llvm/ADT/StringRef.h" 40 #include "llvm/Analysis/AliasAnalysis.h" 41 #include "llvm/Analysis/CaptureTracking.h" 42 #include "llvm/Analysis/GlobalsModRef.h" 43 #include "llvm/Analysis/LoopInfo.h" 44 #include "llvm/Analysis/MemoryBuiltins.h" 45 #include "llvm/Analysis/MemoryLocation.h" 46 #include "llvm/Analysis/MemorySSA.h" 47 #include "llvm/Analysis/MemorySSAUpdater.h" 48 #include "llvm/Analysis/MustExecute.h" 49 #include "llvm/Analysis/PostDominators.h" 50 #include "llvm/Analysis/TargetLibraryInfo.h" 51 #include "llvm/Analysis/ValueTracking.h" 52 #include "llvm/IR/Argument.h" 53 #include "llvm/IR/BasicBlock.h" 54 #include "llvm/IR/Constant.h" 55 #include "llvm/IR/Constants.h" 56 #include "llvm/IR/DataLayout.h" 57 #include "llvm/IR/Dominators.h" 58 #include "llvm/IR/Function.h" 59 #include "llvm/IR/IRBuilder.h" 60 #include "llvm/IR/InstIterator.h" 61 #include "llvm/IR/InstrTypes.h" 62 #include "llvm/IR/Instruction.h" 63 #include "llvm/IR/Instructions.h" 64 #include "llvm/IR/IntrinsicInst.h" 65 #include "llvm/IR/Intrinsics.h" 66 #include "llvm/IR/LLVMContext.h" 67 #include "llvm/IR/Module.h" 68 #include "llvm/IR/PassManager.h" 69 #include "llvm/IR/PatternMatch.h" 70 #include "llvm/IR/Value.h" 71 #include "llvm/InitializePasses.h" 72 #include "llvm/Pass.h" 73 #include "llvm/Support/Casting.h" 74 #include "llvm/Support/CommandLine.h" 75 #include "llvm/Support/Debug.h" 76 #include "llvm/Support/DebugCounter.h" 77 #include "llvm/Support/ErrorHandling.h" 78 #include "llvm/Support/MathExtras.h" 79 #include "llvm/Support/raw_ostream.h" 80 #include "llvm/Transforms/Scalar.h" 81 #include "llvm/Transforms/Utils/AssumeBundleBuilder.h" 82 #include "llvm/Transforms/Utils/BuildLibCalls.h" 83 #include "llvm/Transforms/Utils/Local.h" 84 #include <algorithm> 85 #include <cassert> 86 #include <cstddef> 87 #include <cstdint> 88 #include <iterator> 89 #include <map> 90 #include <utility> 91 92 using namespace llvm; 93 using namespace PatternMatch; 94 95 #define DEBUG_TYPE "dse" 96 97 STATISTIC(NumRemainingStores, "Number of stores remaining after DSE"); 98 STATISTIC(NumRedundantStores, "Number of redundant stores deleted"); 99 STATISTIC(NumFastStores, "Number of stores deleted"); 100 STATISTIC(NumFastOther, "Number of other instrs removed"); 101 STATISTIC(NumCompletePartials, "Number of stores dead by later partials"); 102 STATISTIC(NumModifiedStores, "Number of stores modified"); 103 STATISTIC(NumCFGChecks, "Number of stores modified"); 104 STATISTIC(NumCFGTries, "Number of stores modified"); 105 STATISTIC(NumCFGSuccess, "Number of stores modified"); 106 STATISTIC(NumGetDomMemoryDefPassed, 107 "Number of times a valid candidate is returned from getDomMemoryDef"); 108 STATISTIC(NumDomMemDefChecks, 109 "Number iterations check for reads in getDomMemoryDef"); 110 111 DEBUG_COUNTER(MemorySSACounter, "dse-memoryssa", 112 "Controls which MemoryDefs are eliminated."); 113 114 static cl::opt<bool> 115 EnablePartialOverwriteTracking("enable-dse-partial-overwrite-tracking", 116 cl::init(true), cl::Hidden, 117 cl::desc("Enable partial-overwrite tracking in DSE")); 118 119 static cl::opt<bool> 120 EnablePartialStoreMerging("enable-dse-partial-store-merging", 121 cl::init(true), cl::Hidden, 122 cl::desc("Enable partial store merging in DSE")); 123 124 static cl::opt<unsigned> 125 MemorySSAScanLimit("dse-memoryssa-scanlimit", cl::init(150), cl::Hidden, 126 cl::desc("The number of memory instructions to scan for " 127 "dead store elimination (default = 150)")); 128 static cl::opt<unsigned> MemorySSAUpwardsStepLimit( 129 "dse-memoryssa-walklimit", cl::init(90), cl::Hidden, 130 cl::desc("The maximum number of steps while walking upwards to find " 131 "MemoryDefs that may be killed (default = 90)")); 132 133 static cl::opt<unsigned> MemorySSAPartialStoreLimit( 134 "dse-memoryssa-partial-store-limit", cl::init(5), cl::Hidden, 135 cl::desc("The maximum number candidates that only partially overwrite the " 136 "killing MemoryDef to consider" 137 " (default = 5)")); 138 139 static cl::opt<unsigned> MemorySSADefsPerBlockLimit( 140 "dse-memoryssa-defs-per-block-limit", cl::init(5000), cl::Hidden, 141 cl::desc("The number of MemoryDefs we consider as candidates to eliminated " 142 "other stores per basic block (default = 5000)")); 143 144 static cl::opt<unsigned> MemorySSASameBBStepCost( 145 "dse-memoryssa-samebb-cost", cl::init(1), cl::Hidden, 146 cl::desc( 147 "The cost of a step in the same basic block as the killing MemoryDef" 148 "(default = 1)")); 149 150 static cl::opt<unsigned> 151 MemorySSAOtherBBStepCost("dse-memoryssa-otherbb-cost", cl::init(5), 152 cl::Hidden, 153 cl::desc("The cost of a step in a different basic " 154 "block than the killing MemoryDef" 155 "(default = 5)")); 156 157 static cl::opt<unsigned> MemorySSAPathCheckLimit( 158 "dse-memoryssa-path-check-limit", cl::init(50), cl::Hidden, 159 cl::desc("The maximum number of blocks to check when trying to prove that " 160 "all paths to an exit go through a killing block (default = 50)")); 161 162 // This flags allows or disallows DSE to optimize MemorySSA during its 163 // traversal. Note that DSE optimizing MemorySSA may impact other passes 164 // downstream of the DSE invocation and can lead to issues not being 165 // reproducible in isolation (i.e. when MemorySSA is built from scratch). In 166 // those cases, the flag can be used to check if DSE's MemorySSA optimizations 167 // impact follow-up passes. 168 static cl::opt<bool> 169 OptimizeMemorySSA("dse-optimize-memoryssa", cl::init(true), cl::Hidden, 170 cl::desc("Allow DSE to optimize memory accesses.")); 171 172 //===----------------------------------------------------------------------===// 173 // Helper functions 174 //===----------------------------------------------------------------------===// 175 using OverlapIntervalsTy = std::map<int64_t, int64_t>; 176 using InstOverlapIntervalsTy = DenseMap<Instruction *, OverlapIntervalsTy>; 177 178 /// Returns true if the end of this instruction can be safely shortened in 179 /// length. 180 static bool isShortenableAtTheEnd(Instruction *I) { 181 // Don't shorten stores for now 182 if (isa<StoreInst>(I)) 183 return false; 184 185 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { 186 switch (II->getIntrinsicID()) { 187 default: return false; 188 case Intrinsic::memset: 189 case Intrinsic::memcpy: 190 case Intrinsic::memcpy_element_unordered_atomic: 191 case Intrinsic::memset_element_unordered_atomic: 192 // Do shorten memory intrinsics. 193 // FIXME: Add memmove if it's also safe to transform. 194 return true; 195 } 196 } 197 198 // Don't shorten libcalls calls for now. 199 200 return false; 201 } 202 203 /// Returns true if the beginning of this instruction can be safely shortened 204 /// in length. 205 static bool isShortenableAtTheBeginning(Instruction *I) { 206 // FIXME: Handle only memset for now. Supporting memcpy/memmove should be 207 // easily done by offsetting the source address. 208 return isa<AnyMemSetInst>(I); 209 } 210 211 static uint64_t getPointerSize(const Value *V, const DataLayout &DL, 212 const TargetLibraryInfo &TLI, 213 const Function *F) { 214 uint64_t Size; 215 ObjectSizeOpts Opts; 216 Opts.NullIsUnknownSize = NullPointerIsDefined(F); 217 218 if (getObjectSize(V, Size, DL, &TLI, Opts)) 219 return Size; 220 return MemoryLocation::UnknownSize; 221 } 222 223 namespace { 224 225 enum OverwriteResult { 226 OW_Begin, 227 OW_Complete, 228 OW_End, 229 OW_PartialEarlierWithFullLater, 230 OW_MaybePartial, 231 OW_None, 232 OW_Unknown 233 }; 234 235 } // end anonymous namespace 236 237 /// Check if two instruction are masked stores that completely 238 /// overwrite one another. More specifically, \p KillingI has to 239 /// overwrite \p DeadI. 240 static OverwriteResult isMaskedStoreOverwrite(const Instruction *KillingI, 241 const Instruction *DeadI, 242 BatchAAResults &AA) { 243 const auto *KillingII = dyn_cast<IntrinsicInst>(KillingI); 244 const auto *DeadII = dyn_cast<IntrinsicInst>(DeadI); 245 if (KillingII == nullptr || DeadII == nullptr) 246 return OW_Unknown; 247 if (KillingII->getIntrinsicID() != Intrinsic::masked_store || 248 DeadII->getIntrinsicID() != Intrinsic::masked_store) 249 return OW_Unknown; 250 // Pointers. 251 Value *KillingPtr = KillingII->getArgOperand(1)->stripPointerCasts(); 252 Value *DeadPtr = DeadII->getArgOperand(1)->stripPointerCasts(); 253 if (KillingPtr != DeadPtr && !AA.isMustAlias(KillingPtr, DeadPtr)) 254 return OW_Unknown; 255 // Masks. 256 // TODO: check that KillingII's mask is a superset of the DeadII's mask. 257 if (KillingII->getArgOperand(3) != DeadII->getArgOperand(3)) 258 return OW_Unknown; 259 return OW_Complete; 260 } 261 262 /// Return 'OW_Complete' if a store to the 'KillingLoc' location completely 263 /// overwrites a store to the 'DeadLoc' location, 'OW_End' if the end of the 264 /// 'DeadLoc' location is completely overwritten by 'KillingLoc', 'OW_Begin' 265 /// if the beginning of the 'DeadLoc' location is overwritten by 'KillingLoc'. 266 /// 'OW_PartialEarlierWithFullLater' means that a dead (big) store was 267 /// overwritten by a killing (smaller) store which doesn't write outside the big 268 /// store's memory locations. Returns 'OW_Unknown' if nothing can be determined. 269 /// NOTE: This function must only be called if both \p KillingLoc and \p 270 /// DeadLoc belong to the same underlying object with valid \p KillingOff and 271 /// \p DeadOff. 272 static OverwriteResult isPartialOverwrite(const MemoryLocation &KillingLoc, 273 const MemoryLocation &DeadLoc, 274 int64_t KillingOff, int64_t DeadOff, 275 Instruction *DeadI, 276 InstOverlapIntervalsTy &IOL) { 277 const uint64_t KillingSize = KillingLoc.Size.getValue(); 278 const uint64_t DeadSize = DeadLoc.Size.getValue(); 279 // We may now overlap, although the overlap is not complete. There might also 280 // be other incomplete overlaps, and together, they might cover the complete 281 // dead store. 282 // Note: The correctness of this logic depends on the fact that this function 283 // is not even called providing DepWrite when there are any intervening reads. 284 if (EnablePartialOverwriteTracking && 285 KillingOff < int64_t(DeadOff + DeadSize) && 286 int64_t(KillingOff + KillingSize) >= DeadOff) { 287 288 // Insert our part of the overlap into the map. 289 auto &IM = IOL[DeadI]; 290 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite: DeadLoc [" << DeadOff << ", " 291 << int64_t(DeadOff + DeadSize) << ") KillingLoc [" 292 << KillingOff << ", " << int64_t(KillingOff + KillingSize) 293 << ")\n"); 294 295 // Make sure that we only insert non-overlapping intervals and combine 296 // adjacent intervals. The intervals are stored in the map with the ending 297 // offset as the key (in the half-open sense) and the starting offset as 298 // the value. 299 int64_t KillingIntStart = KillingOff; 300 int64_t KillingIntEnd = KillingOff + KillingSize; 301 302 // Find any intervals ending at, or after, KillingIntStart which start 303 // before KillingIntEnd. 304 auto ILI = IM.lower_bound(KillingIntStart); 305 if (ILI != IM.end() && ILI->second <= KillingIntEnd) { 306 // This existing interval is overlapped with the current store somewhere 307 // in [KillingIntStart, KillingIntEnd]. Merge them by erasing the existing 308 // intervals and adjusting our start and end. 309 KillingIntStart = std::min(KillingIntStart, ILI->second); 310 KillingIntEnd = std::max(KillingIntEnd, ILI->first); 311 ILI = IM.erase(ILI); 312 313 // Continue erasing and adjusting our end in case other previous 314 // intervals are also overlapped with the current store. 315 // 316 // |--- dead 1 ---| |--- dead 2 ---| 317 // |------- killing---------| 318 // 319 while (ILI != IM.end() && ILI->second <= KillingIntEnd) { 320 assert(ILI->second > KillingIntStart && "Unexpected interval"); 321 KillingIntEnd = std::max(KillingIntEnd, ILI->first); 322 ILI = IM.erase(ILI); 323 } 324 } 325 326 IM[KillingIntEnd] = KillingIntStart; 327 328 ILI = IM.begin(); 329 if (ILI->second <= DeadOff && ILI->first >= int64_t(DeadOff + DeadSize)) { 330 LLVM_DEBUG(dbgs() << "DSE: Full overwrite from partials: DeadLoc [" 331 << DeadOff << ", " << int64_t(DeadOff + DeadSize) 332 << ") Composite KillingLoc [" << ILI->second << ", " 333 << ILI->first << ")\n"); 334 ++NumCompletePartials; 335 return OW_Complete; 336 } 337 } 338 339 // Check for a dead store which writes to all the memory locations that 340 // the killing store writes to. 341 if (EnablePartialStoreMerging && KillingOff >= DeadOff && 342 int64_t(DeadOff + DeadSize) > KillingOff && 343 uint64_t(KillingOff - DeadOff) + KillingSize <= DeadSize) { 344 LLVM_DEBUG(dbgs() << "DSE: Partial overwrite a dead load [" << DeadOff 345 << ", " << int64_t(DeadOff + DeadSize) 346 << ") by a killing store [" << KillingOff << ", " 347 << int64_t(KillingOff + KillingSize) << ")\n"); 348 // TODO: Maybe come up with a better name? 349 return OW_PartialEarlierWithFullLater; 350 } 351 352 // Another interesting case is if the killing store overwrites the end of the 353 // dead store. 354 // 355 // |--dead--| 356 // |-- killing --| 357 // 358 // In this case we may want to trim the size of dead store to avoid 359 // generating stores to addresses which will definitely be overwritten killing 360 // store. 361 if (!EnablePartialOverwriteTracking && 362 (KillingOff > DeadOff && KillingOff < int64_t(DeadOff + DeadSize) && 363 int64_t(KillingOff + KillingSize) >= int64_t(DeadOff + DeadSize))) 364 return OW_End; 365 366 // Finally, we also need to check if the killing store overwrites the 367 // beginning of the dead store. 368 // 369 // |--dead--| 370 // |-- killing --| 371 // 372 // In this case we may want to move the destination address and trim the size 373 // of dead store to avoid generating stores to addresses which will definitely 374 // be overwritten killing store. 375 if (!EnablePartialOverwriteTracking && 376 (KillingOff <= DeadOff && int64_t(KillingOff + KillingSize) > DeadOff)) { 377 assert(int64_t(KillingOff + KillingSize) < int64_t(DeadOff + DeadSize) && 378 "Expect to be handled as OW_Complete"); 379 return OW_Begin; 380 } 381 // Otherwise, they don't completely overlap. 382 return OW_Unknown; 383 } 384 385 /// Returns true if the memory which is accessed by the second instruction is not 386 /// modified between the first and the second instruction. 387 /// Precondition: Second instruction must be dominated by the first 388 /// instruction. 389 static bool 390 memoryIsNotModifiedBetween(Instruction *FirstI, Instruction *SecondI, 391 BatchAAResults &AA, const DataLayout &DL, 392 DominatorTree *DT) { 393 // Do a backwards scan through the CFG from SecondI to FirstI. Look for 394 // instructions which can modify the memory location accessed by SecondI. 395 // 396 // While doing the walk keep track of the address to check. It might be 397 // different in different basic blocks due to PHI translation. 398 using BlockAddressPair = std::pair<BasicBlock *, PHITransAddr>; 399 SmallVector<BlockAddressPair, 16> WorkList; 400 // Keep track of the address we visited each block with. Bail out if we 401 // visit a block with different addresses. 402 DenseMap<BasicBlock *, Value *> Visited; 403 404 BasicBlock::iterator FirstBBI(FirstI); 405 ++FirstBBI; 406 BasicBlock::iterator SecondBBI(SecondI); 407 BasicBlock *FirstBB = FirstI->getParent(); 408 BasicBlock *SecondBB = SecondI->getParent(); 409 MemoryLocation MemLoc; 410 if (auto *MemSet = dyn_cast<MemSetInst>(SecondI)) 411 MemLoc = MemoryLocation::getForDest(MemSet); 412 else 413 MemLoc = MemoryLocation::get(SecondI); 414 415 auto *MemLocPtr = const_cast<Value *>(MemLoc.Ptr); 416 417 // Start checking the SecondBB. 418 WorkList.push_back( 419 std::make_pair(SecondBB, PHITransAddr(MemLocPtr, DL, nullptr))); 420 bool isFirstBlock = true; 421 422 // Check all blocks going backward until we reach the FirstBB. 423 while (!WorkList.empty()) { 424 BlockAddressPair Current = WorkList.pop_back_val(); 425 BasicBlock *B = Current.first; 426 PHITransAddr &Addr = Current.second; 427 Value *Ptr = Addr.getAddr(); 428 429 // Ignore instructions before FirstI if this is the FirstBB. 430 BasicBlock::iterator BI = (B == FirstBB ? FirstBBI : B->begin()); 431 432 BasicBlock::iterator EI; 433 if (isFirstBlock) { 434 // Ignore instructions after SecondI if this is the first visit of SecondBB. 435 assert(B == SecondBB && "first block is not the store block"); 436 EI = SecondBBI; 437 isFirstBlock = false; 438 } else { 439 // It's not SecondBB or (in case of a loop) the second visit of SecondBB. 440 // In this case we also have to look at instructions after SecondI. 441 EI = B->end(); 442 } 443 for (; BI != EI; ++BI) { 444 Instruction *I = &*BI; 445 if (I->mayWriteToMemory() && I != SecondI) 446 if (isModSet(AA.getModRefInfo(I, MemLoc.getWithNewPtr(Ptr)))) 447 return false; 448 } 449 if (B != FirstBB) { 450 assert(B != &FirstBB->getParent()->getEntryBlock() && 451 "Should not hit the entry block because SI must be dominated by LI"); 452 for (BasicBlock *Pred : predecessors(B)) { 453 PHITransAddr PredAddr = Addr; 454 if (PredAddr.NeedsPHITranslationFromBlock(B)) { 455 if (!PredAddr.IsPotentiallyPHITranslatable()) 456 return false; 457 if (PredAddr.PHITranslateValue(B, Pred, DT, false)) 458 return false; 459 } 460 Value *TranslatedPtr = PredAddr.getAddr(); 461 auto Inserted = Visited.insert(std::make_pair(Pred, TranslatedPtr)); 462 if (!Inserted.second) { 463 // We already visited this block before. If it was with a different 464 // address - bail out! 465 if (TranslatedPtr != Inserted.first->second) 466 return false; 467 // ... otherwise just skip it. 468 continue; 469 } 470 WorkList.push_back(std::make_pair(Pred, PredAddr)); 471 } 472 } 473 } 474 return true; 475 } 476 477 static bool tryToShorten(Instruction *DeadI, int64_t &DeadStart, 478 uint64_t &DeadSize, int64_t KillingStart, 479 uint64_t KillingSize, bool IsOverwriteEnd) { 480 auto *DeadIntrinsic = cast<AnyMemIntrinsic>(DeadI); 481 Align PrefAlign = DeadIntrinsic->getDestAlign().valueOrOne(); 482 483 // We assume that memet/memcpy operates in chunks of the "largest" native 484 // type size and aligned on the same value. That means optimal start and size 485 // of memset/memcpy should be modulo of preferred alignment of that type. That 486 // is it there is no any sense in trying to reduce store size any further 487 // since any "extra" stores comes for free anyway. 488 // On the other hand, maximum alignment we can achieve is limited by alignment 489 // of initial store. 490 491 // TODO: Limit maximum alignment by preferred (or abi?) alignment of the 492 // "largest" native type. 493 // Note: What is the proper way to get that value? 494 // Should TargetTransformInfo::getRegisterBitWidth be used or anything else? 495 // PrefAlign = std::min(DL.getPrefTypeAlign(LargestType), PrefAlign); 496 497 int64_t ToRemoveStart = 0; 498 uint64_t ToRemoveSize = 0; 499 // Compute start and size of the region to remove. Make sure 'PrefAlign' is 500 // maintained on the remaining store. 501 if (IsOverwriteEnd) { 502 // Calculate required adjustment for 'KillingStart' in order to keep 503 // remaining store size aligned on 'PerfAlign'. 504 uint64_t Off = 505 offsetToAlignment(uint64_t(KillingStart - DeadStart), PrefAlign); 506 ToRemoveStart = KillingStart + Off; 507 if (DeadSize <= uint64_t(ToRemoveStart - DeadStart)) 508 return false; 509 ToRemoveSize = DeadSize - uint64_t(ToRemoveStart - DeadStart); 510 } else { 511 ToRemoveStart = DeadStart; 512 assert(KillingSize >= uint64_t(DeadStart - KillingStart) && 513 "Not overlapping accesses?"); 514 ToRemoveSize = KillingSize - uint64_t(DeadStart - KillingStart); 515 // Calculate required adjustment for 'ToRemoveSize'in order to keep 516 // start of the remaining store aligned on 'PerfAlign'. 517 uint64_t Off = offsetToAlignment(ToRemoveSize, PrefAlign); 518 if (Off != 0) { 519 if (ToRemoveSize <= (PrefAlign.value() - Off)) 520 return false; 521 ToRemoveSize -= PrefAlign.value() - Off; 522 } 523 assert(isAligned(PrefAlign, ToRemoveSize) && 524 "Should preserve selected alignment"); 525 } 526 527 assert(ToRemoveSize > 0 && "Shouldn't reach here if nothing to remove"); 528 assert(DeadSize > ToRemoveSize && "Can't remove more than original size"); 529 530 uint64_t NewSize = DeadSize - ToRemoveSize; 531 if (auto *AMI = dyn_cast<AtomicMemIntrinsic>(DeadI)) { 532 // When shortening an atomic memory intrinsic, the newly shortened 533 // length must remain an integer multiple of the element size. 534 const uint32_t ElementSize = AMI->getElementSizeInBytes(); 535 if (0 != NewSize % ElementSize) 536 return false; 537 } 538 539 LLVM_DEBUG(dbgs() << "DSE: Remove Dead Store:\n OW " 540 << (IsOverwriteEnd ? "END" : "BEGIN") << ": " << *DeadI 541 << "\n KILLER [" << ToRemoveStart << ", " 542 << int64_t(ToRemoveStart + ToRemoveSize) << ")\n"); 543 544 Value *DeadWriteLength = DeadIntrinsic->getLength(); 545 Value *TrimmedLength = ConstantInt::get(DeadWriteLength->getType(), NewSize); 546 DeadIntrinsic->setLength(TrimmedLength); 547 DeadIntrinsic->setDestAlignment(PrefAlign); 548 549 if (!IsOverwriteEnd) { 550 Value *OrigDest = DeadIntrinsic->getRawDest(); 551 Type *Int8PtrTy = 552 Type::getInt8PtrTy(DeadIntrinsic->getContext(), 553 OrigDest->getType()->getPointerAddressSpace()); 554 Value *Dest = OrigDest; 555 if (OrigDest->getType() != Int8PtrTy) 556 Dest = CastInst::CreatePointerCast(OrigDest, Int8PtrTy, "", DeadI); 557 Value *Indices[1] = { 558 ConstantInt::get(DeadWriteLength->getType(), ToRemoveSize)}; 559 Instruction *NewDestGEP = GetElementPtrInst::CreateInBounds( 560 Type::getInt8Ty(DeadIntrinsic->getContext()), Dest, Indices, "", DeadI); 561 NewDestGEP->setDebugLoc(DeadIntrinsic->getDebugLoc()); 562 if (NewDestGEP->getType() != OrigDest->getType()) 563 NewDestGEP = CastInst::CreatePointerCast(NewDestGEP, OrigDest->getType(), 564 "", DeadI); 565 DeadIntrinsic->setDest(NewDestGEP); 566 } 567 568 // Finally update start and size of dead access. 569 if (!IsOverwriteEnd) 570 DeadStart += ToRemoveSize; 571 DeadSize = NewSize; 572 573 return true; 574 } 575 576 static bool tryToShortenEnd(Instruction *DeadI, OverlapIntervalsTy &IntervalMap, 577 int64_t &DeadStart, uint64_t &DeadSize) { 578 if (IntervalMap.empty() || !isShortenableAtTheEnd(DeadI)) 579 return false; 580 581 OverlapIntervalsTy::iterator OII = --IntervalMap.end(); 582 int64_t KillingStart = OII->second; 583 uint64_t KillingSize = OII->first - KillingStart; 584 585 assert(OII->first - KillingStart >= 0 && "Size expected to be positive"); 586 587 if (KillingStart > DeadStart && 588 // Note: "KillingStart - KillingStart" is known to be positive due to 589 // preceding check. 590 (uint64_t)(KillingStart - DeadStart) < DeadSize && 591 // Note: "DeadSize - (uint64_t)(KillingStart - DeadStart)" is known to 592 // be non negative due to preceding checks. 593 KillingSize >= DeadSize - (uint64_t)(KillingStart - DeadStart)) { 594 if (tryToShorten(DeadI, DeadStart, DeadSize, KillingStart, KillingSize, 595 true)) { 596 IntervalMap.erase(OII); 597 return true; 598 } 599 } 600 return false; 601 } 602 603 static bool tryToShortenBegin(Instruction *DeadI, 604 OverlapIntervalsTy &IntervalMap, 605 int64_t &DeadStart, uint64_t &DeadSize) { 606 if (IntervalMap.empty() || !isShortenableAtTheBeginning(DeadI)) 607 return false; 608 609 OverlapIntervalsTy::iterator OII = IntervalMap.begin(); 610 int64_t KillingStart = OII->second; 611 uint64_t KillingSize = OII->first - KillingStart; 612 613 assert(OII->first - KillingStart >= 0 && "Size expected to be positive"); 614 615 if (KillingStart <= DeadStart && 616 // Note: "DeadStart - KillingStart" is known to be non negative due to 617 // preceding check. 618 KillingSize > (uint64_t)(DeadStart - KillingStart)) { 619 // Note: "KillingSize - (uint64_t)(DeadStart - DeadStart)" is known to 620 // be positive due to preceding checks. 621 assert(KillingSize - (uint64_t)(DeadStart - KillingStart) < DeadSize && 622 "Should have been handled as OW_Complete"); 623 if (tryToShorten(DeadI, DeadStart, DeadSize, KillingStart, KillingSize, 624 false)) { 625 IntervalMap.erase(OII); 626 return true; 627 } 628 } 629 return false; 630 } 631 632 static Constant * 633 tryToMergePartialOverlappingStores(StoreInst *KillingI, StoreInst *DeadI, 634 int64_t KillingOffset, int64_t DeadOffset, 635 const DataLayout &DL, BatchAAResults &AA, 636 DominatorTree *DT) { 637 638 if (DeadI && isa<ConstantInt>(DeadI->getValueOperand()) && 639 DL.typeSizeEqualsStoreSize(DeadI->getValueOperand()->getType()) && 640 KillingI && isa<ConstantInt>(KillingI->getValueOperand()) && 641 DL.typeSizeEqualsStoreSize(KillingI->getValueOperand()->getType()) && 642 memoryIsNotModifiedBetween(DeadI, KillingI, AA, DL, DT)) { 643 // If the store we find is: 644 // a) partially overwritten by the store to 'Loc' 645 // b) the killing store is fully contained in the dead one and 646 // c) they both have a constant value 647 // d) none of the two stores need padding 648 // Merge the two stores, replacing the dead store's value with a 649 // merge of both values. 650 // TODO: Deal with other constant types (vectors, etc), and probably 651 // some mem intrinsics (if needed) 652 653 APInt DeadValue = cast<ConstantInt>(DeadI->getValueOperand())->getValue(); 654 APInt KillingValue = 655 cast<ConstantInt>(KillingI->getValueOperand())->getValue(); 656 unsigned KillingBits = KillingValue.getBitWidth(); 657 assert(DeadValue.getBitWidth() > KillingValue.getBitWidth()); 658 KillingValue = KillingValue.zext(DeadValue.getBitWidth()); 659 660 // Offset of the smaller store inside the larger store 661 unsigned BitOffsetDiff = (KillingOffset - DeadOffset) * 8; 662 unsigned LShiftAmount = 663 DL.isBigEndian() ? DeadValue.getBitWidth() - BitOffsetDiff - KillingBits 664 : BitOffsetDiff; 665 APInt Mask = APInt::getBitsSet(DeadValue.getBitWidth(), LShiftAmount, 666 LShiftAmount + KillingBits); 667 // Clear the bits we'll be replacing, then OR with the smaller 668 // store, shifted appropriately. 669 APInt Merged = (DeadValue & ~Mask) | (KillingValue << LShiftAmount); 670 LLVM_DEBUG(dbgs() << "DSE: Merge Stores:\n Dead: " << *DeadI 671 << "\n Killing: " << *KillingI 672 << "\n Merged Value: " << Merged << '\n'); 673 return ConstantInt::get(DeadI->getValueOperand()->getType(), Merged); 674 } 675 return nullptr; 676 } 677 678 namespace { 679 // Returns true if \p I is an intrisnic that does not read or write memory. 680 bool isNoopIntrinsic(Instruction *I) { 681 if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { 682 switch (II->getIntrinsicID()) { 683 case Intrinsic::lifetime_start: 684 case Intrinsic::lifetime_end: 685 case Intrinsic::invariant_end: 686 case Intrinsic::launder_invariant_group: 687 case Intrinsic::assume: 688 return true; 689 case Intrinsic::dbg_addr: 690 case Intrinsic::dbg_declare: 691 case Intrinsic::dbg_label: 692 case Intrinsic::dbg_value: 693 llvm_unreachable("Intrinsic should not be modeled in MemorySSA"); 694 default: 695 return false; 696 } 697 } 698 return false; 699 } 700 701 // Check if we can ignore \p D for DSE. 702 bool canSkipDef(MemoryDef *D, bool DefVisibleToCaller, 703 const TargetLibraryInfo &TLI) { 704 Instruction *DI = D->getMemoryInst(); 705 // Calls that only access inaccessible memory cannot read or write any memory 706 // locations we consider for elimination. 707 if (auto *CB = dyn_cast<CallBase>(DI)) 708 if (CB->onlyAccessesInaccessibleMemory()) { 709 if (isAllocLikeFn(DI, &TLI)) 710 return false; 711 return true; 712 } 713 // We can eliminate stores to locations not visible to the caller across 714 // throwing instructions. 715 if (DI->mayThrow() && !DefVisibleToCaller) 716 return true; 717 718 // We can remove the dead stores, irrespective of the fence and its ordering 719 // (release/acquire/seq_cst). Fences only constraints the ordering of 720 // already visible stores, it does not make a store visible to other 721 // threads. So, skipping over a fence does not change a store from being 722 // dead. 723 if (isa<FenceInst>(DI)) 724 return true; 725 726 // Skip intrinsics that do not really read or modify memory. 727 if (isNoopIntrinsic(DI)) 728 return true; 729 730 return false; 731 } 732 733 struct DSEState { 734 Function &F; 735 AliasAnalysis &AA; 736 EarliestEscapeInfo EI; 737 738 /// The single BatchAA instance that is used to cache AA queries. It will 739 /// not be invalidated over the whole run. This is safe, because: 740 /// 1. Only memory writes are removed, so the alias cache for memory 741 /// locations remains valid. 742 /// 2. No new instructions are added (only instructions removed), so cached 743 /// information for a deleted value cannot be accessed by a re-used new 744 /// value pointer. 745 BatchAAResults BatchAA; 746 747 MemorySSA &MSSA; 748 DominatorTree &DT; 749 PostDominatorTree &PDT; 750 const TargetLibraryInfo &TLI; 751 const DataLayout &DL; 752 const LoopInfo &LI; 753 754 // Whether the function contains any irreducible control flow, useful for 755 // being accurately able to detect loops. 756 bool ContainsIrreducibleLoops; 757 758 // All MemoryDefs that potentially could kill other MemDefs. 759 SmallVector<MemoryDef *, 64> MemDefs; 760 // Any that should be skipped as they are already deleted 761 SmallPtrSet<MemoryAccess *, 4> SkipStores; 762 // Keep track of all of the objects that are invisible to the caller before 763 // the function returns. 764 // SmallPtrSet<const Value *, 16> InvisibleToCallerBeforeRet; 765 DenseMap<const Value *, bool> InvisibleToCallerBeforeRet; 766 // Keep track of all of the objects that are invisible to the caller after 767 // the function returns. 768 DenseMap<const Value *, bool> InvisibleToCallerAfterRet; 769 // Keep track of blocks with throwing instructions not modeled in MemorySSA. 770 SmallPtrSet<BasicBlock *, 16> ThrowingBlocks; 771 // Post-order numbers for each basic block. Used to figure out if memory 772 // accesses are executed before another access. 773 DenseMap<BasicBlock *, unsigned> PostOrderNumbers; 774 775 /// Keep track of instructions (partly) overlapping with killing MemoryDefs per 776 /// basic block. 777 MapVector<BasicBlock *, InstOverlapIntervalsTy> IOLs; 778 779 // Class contains self-reference, make sure it's not copied/moved. 780 DSEState(const DSEState &) = delete; 781 DSEState &operator=(const DSEState &) = delete; 782 783 DSEState(Function &F, AliasAnalysis &AA, MemorySSA &MSSA, DominatorTree &DT, 784 PostDominatorTree &PDT, const TargetLibraryInfo &TLI, 785 const LoopInfo &LI) 786 : F(F), AA(AA), EI(DT, LI), BatchAA(AA, &EI), MSSA(MSSA), DT(DT), 787 PDT(PDT), TLI(TLI), DL(F.getParent()->getDataLayout()), LI(LI) { 788 // Collect blocks with throwing instructions not modeled in MemorySSA and 789 // alloc-like objects. 790 unsigned PO = 0; 791 for (BasicBlock *BB : post_order(&F)) { 792 PostOrderNumbers[BB] = PO++; 793 for (Instruction &I : *BB) { 794 MemoryAccess *MA = MSSA.getMemoryAccess(&I); 795 if (I.mayThrow() && !MA) 796 ThrowingBlocks.insert(I.getParent()); 797 798 auto *MD = dyn_cast_or_null<MemoryDef>(MA); 799 if (MD && MemDefs.size() < MemorySSADefsPerBlockLimit && 800 (getLocForWrite(&I) || isMemTerminatorInst(&I))) 801 MemDefs.push_back(MD); 802 } 803 } 804 805 // Treat byval or inalloca arguments the same as Allocas, stores to them are 806 // dead at the end of the function. 807 for (Argument &AI : F.args()) 808 if (AI.hasPassPointeeByValueCopyAttr()) { 809 // For byval, the caller doesn't know the address of the allocation. 810 if (AI.hasByValAttr()) 811 InvisibleToCallerBeforeRet.insert({&AI, true}); 812 InvisibleToCallerAfterRet.insert({&AI, true}); 813 } 814 815 // Collect whether there is any irreducible control flow in the function. 816 ContainsIrreducibleLoops = mayContainIrreducibleControl(F, &LI); 817 } 818 819 /// Return 'OW_Complete' if a store to the 'KillingLoc' location (by \p 820 /// KillingI instruction) completely overwrites a store to the 'DeadLoc' 821 /// location (by \p DeadI instruction). 822 /// Return OW_MaybePartial if \p KillingI does not completely overwrite 823 /// \p DeadI, but they both write to the same underlying object. In that 824 /// case, use isPartialOverwrite to check if \p KillingI partially overwrites 825 /// \p DeadI. Returns 'OR_None' if \p KillingI is known to not overwrite the 826 /// \p DeadI. Returns 'OW_Unknown' if nothing can be determined. 827 OverwriteResult isOverwrite(const Instruction *KillingI, 828 const Instruction *DeadI, 829 const MemoryLocation &KillingLoc, 830 const MemoryLocation &DeadLoc, 831 int64_t &KillingOff, int64_t &DeadOff) { 832 // AliasAnalysis does not always account for loops. Limit overwrite checks 833 // to dependencies for which we can guarantee they are independent of any 834 // loops they are in. 835 if (!isGuaranteedLoopIndependent(DeadI, KillingI, DeadLoc)) 836 return OW_Unknown; 837 838 const Value *DeadPtr = DeadLoc.Ptr->stripPointerCasts(); 839 const Value *KillingPtr = KillingLoc.Ptr->stripPointerCasts(); 840 const Value *DeadUndObj = getUnderlyingObject(DeadPtr); 841 const Value *KillingUndObj = getUnderlyingObject(KillingPtr); 842 843 // Check whether the killing store overwrites the whole object, in which 844 // case the size/offset of the dead store does not matter. 845 if (DeadUndObj == KillingUndObj && KillingLoc.Size.isPrecise()) { 846 uint64_t KillingUndObjSize = getPointerSize(KillingUndObj, DL, TLI, &F); 847 if (KillingUndObjSize != MemoryLocation::UnknownSize && 848 KillingUndObjSize == KillingLoc.Size.getValue()) 849 return OW_Complete; 850 } 851 852 // FIXME: Vet that this works for size upper-bounds. Seems unlikely that we'll 853 // get imprecise values here, though (except for unknown sizes). 854 if (!KillingLoc.Size.isPrecise() || !DeadLoc.Size.isPrecise()) { 855 // In case no constant size is known, try to an IR values for the number 856 // of bytes written and check if they match. 857 const auto *KillingMemI = dyn_cast<MemIntrinsic>(KillingI); 858 const auto *DeadMemI = dyn_cast<MemIntrinsic>(DeadI); 859 if (KillingMemI && DeadMemI) { 860 const Value *KillingV = KillingMemI->getLength(); 861 const Value *DeadV = DeadMemI->getLength(); 862 if (KillingV == DeadV && BatchAA.isMustAlias(DeadLoc, KillingLoc)) 863 return OW_Complete; 864 } 865 866 // Masked stores have imprecise locations, but we can reason about them 867 // to some extent. 868 return isMaskedStoreOverwrite(KillingI, DeadI, BatchAA); 869 } 870 871 const uint64_t KillingSize = KillingLoc.Size.getValue(); 872 const uint64_t DeadSize = DeadLoc.Size.getValue(); 873 874 // Query the alias information 875 AliasResult AAR = BatchAA.alias(KillingLoc, DeadLoc); 876 877 // If the start pointers are the same, we just have to compare sizes to see if 878 // the killing store was larger than the dead store. 879 if (AAR == AliasResult::MustAlias) { 880 // Make sure that the KillingSize size is >= the DeadSize size. 881 if (KillingSize >= DeadSize) 882 return OW_Complete; 883 } 884 885 // If we hit a partial alias we may have a full overwrite 886 if (AAR == AliasResult::PartialAlias && AAR.hasOffset()) { 887 int32_t Off = AAR.getOffset(); 888 if (Off >= 0 && (uint64_t)Off + DeadSize <= KillingSize) 889 return OW_Complete; 890 } 891 892 // If we can't resolve the same pointers to the same object, then we can't 893 // analyze them at all. 894 if (DeadUndObj != KillingUndObj) { 895 // Non aliasing stores to different objects don't overlap. Note that 896 // if the killing store is known to overwrite whole object (out of 897 // bounds access overwrites whole object as well) then it is assumed to 898 // completely overwrite any store to the same object even if they don't 899 // actually alias (see next check). 900 if (AAR == AliasResult::NoAlias) 901 return OW_None; 902 return OW_Unknown; 903 } 904 905 // Okay, we have stores to two completely different pointers. Try to 906 // decompose the pointer into a "base + constant_offset" form. If the base 907 // pointers are equal, then we can reason about the two stores. 908 DeadOff = 0; 909 KillingOff = 0; 910 const Value *DeadBasePtr = 911 GetPointerBaseWithConstantOffset(DeadPtr, DeadOff, DL); 912 const Value *KillingBasePtr = 913 GetPointerBaseWithConstantOffset(KillingPtr, KillingOff, DL); 914 915 // If the base pointers still differ, we have two completely different 916 // stores. 917 if (DeadBasePtr != KillingBasePtr) 918 return OW_Unknown; 919 920 // The killing access completely overlaps the dead store if and only if 921 // both start and end of the dead one is "inside" the killing one: 922 // |<->|--dead--|<->| 923 // |-----killing------| 924 // Accesses may overlap if and only if start of one of them is "inside" 925 // another one: 926 // |<->|--dead--|<-------->| 927 // |-------killing--------| 928 // OR 929 // |-------dead-------| 930 // |<->|---killing---|<----->| 931 // 932 // We have to be careful here as *Off is signed while *.Size is unsigned. 933 934 // Check if the dead access starts "not before" the killing one. 935 if (DeadOff >= KillingOff) { 936 // If the dead access ends "not after" the killing access then the 937 // dead one is completely overwritten by the killing one. 938 if (uint64_t(DeadOff - KillingOff) + DeadSize <= KillingSize) 939 return OW_Complete; 940 // If start of the dead access is "before" end of the killing access 941 // then accesses overlap. 942 else if ((uint64_t)(DeadOff - KillingOff) < KillingSize) 943 return OW_MaybePartial; 944 } 945 // If start of the killing access is "before" end of the dead access then 946 // accesses overlap. 947 else if ((uint64_t)(KillingOff - DeadOff) < DeadSize) { 948 return OW_MaybePartial; 949 } 950 951 // Can reach here only if accesses are known not to overlap. 952 return OW_None; 953 } 954 955 bool isInvisibleToCallerAfterRet(const Value *V) { 956 if (isa<AllocaInst>(V)) 957 return true; 958 auto I = InvisibleToCallerAfterRet.insert({V, false}); 959 if (I.second) { 960 if (!isInvisibleToCallerBeforeRet(V)) { 961 I.first->second = false; 962 } else { 963 auto *Inst = dyn_cast<Instruction>(V); 964 if (Inst && isAllocLikeFn(Inst, &TLI)) 965 I.first->second = !PointerMayBeCaptured(V, true, false); 966 } 967 } 968 return I.first->second; 969 } 970 971 bool isInvisibleToCallerBeforeRet(const Value *V) { 972 if (isa<AllocaInst>(V)) 973 return true; 974 auto I = InvisibleToCallerBeforeRet.insert({V, false}); 975 if (I.second) { 976 auto *Inst = dyn_cast<Instruction>(V); 977 if (Inst && isAllocLikeFn(Inst, &TLI)) 978 // NOTE: This could be made more precise by PointerMayBeCapturedBefore 979 // with the killing MemoryDef. But we refrain from doing so for now to 980 // limit compile-time and this does not cause any changes to the number 981 // of stores removed on a large test set in practice. 982 I.first->second = !PointerMayBeCaptured(V, false, true); 983 } 984 return I.first->second; 985 } 986 987 Optional<MemoryLocation> getLocForWrite(Instruction *I) const { 988 if (!I->mayWriteToMemory()) 989 return None; 990 991 if (auto *CB = dyn_cast<CallBase>(I)) 992 return MemoryLocation::getForDest(CB, TLI); 993 994 return MemoryLocation::getOrNone(I); 995 } 996 997 /// Assuming this instruction has a dead analyzable write, can we delete 998 /// this instruction? 999 bool isRemovable(Instruction *I) { 1000 assert(getLocForWrite(I) && "Must have analyzable write"); 1001 1002 // Don't remove volatile/atomic stores. 1003 if (StoreInst *SI = dyn_cast<StoreInst>(I)) 1004 return SI->isUnordered(); 1005 1006 if (auto *CB = dyn_cast<CallBase>(I)) { 1007 // Don't remove volatile memory intrinsics. 1008 if (auto *MI = dyn_cast<MemIntrinsic>(CB)) 1009 return !MI->isVolatile(); 1010 1011 // Never remove dead lifetime intrinsics, e.g. because they are followed 1012 // by a free. 1013 if (CB->isLifetimeStartOrEnd()) 1014 return false; 1015 1016 return CB->use_empty() && CB->willReturn() && CB->doesNotThrow(); 1017 } 1018 1019 return false; 1020 } 1021 1022 /// Returns true if \p UseInst completely overwrites \p DefLoc 1023 /// (stored by \p DefInst). 1024 bool isCompleteOverwrite(const MemoryLocation &DefLoc, Instruction *DefInst, 1025 Instruction *UseInst) { 1026 // UseInst has a MemoryDef associated in MemorySSA. It's possible for a 1027 // MemoryDef to not write to memory, e.g. a volatile load is modeled as a 1028 // MemoryDef. 1029 if (!UseInst->mayWriteToMemory()) 1030 return false; 1031 1032 if (auto *CB = dyn_cast<CallBase>(UseInst)) 1033 if (CB->onlyAccessesInaccessibleMemory()) 1034 return false; 1035 1036 int64_t InstWriteOffset, DepWriteOffset; 1037 if (auto CC = getLocForWrite(UseInst)) 1038 return isOverwrite(UseInst, DefInst, *CC, DefLoc, InstWriteOffset, 1039 DepWriteOffset) == OW_Complete; 1040 return false; 1041 } 1042 1043 /// Returns true if \p Def is not read before returning from the function. 1044 bool isWriteAtEndOfFunction(MemoryDef *Def) { 1045 LLVM_DEBUG(dbgs() << " Check if def " << *Def << " (" 1046 << *Def->getMemoryInst() 1047 << ") is at the end the function \n"); 1048 1049 auto MaybeLoc = getLocForWrite(Def->getMemoryInst()); 1050 if (!MaybeLoc) { 1051 LLVM_DEBUG(dbgs() << " ... could not get location for write.\n"); 1052 return false; 1053 } 1054 1055 SmallVector<MemoryAccess *, 4> WorkList; 1056 SmallPtrSet<MemoryAccess *, 8> Visited; 1057 auto PushMemUses = [&WorkList, &Visited](MemoryAccess *Acc) { 1058 if (!Visited.insert(Acc).second) 1059 return; 1060 for (Use &U : Acc->uses()) 1061 WorkList.push_back(cast<MemoryAccess>(U.getUser())); 1062 }; 1063 PushMemUses(Def); 1064 for (unsigned I = 0; I < WorkList.size(); I++) { 1065 if (WorkList.size() >= MemorySSAScanLimit) { 1066 LLVM_DEBUG(dbgs() << " ... hit exploration limit.\n"); 1067 return false; 1068 } 1069 1070 MemoryAccess *UseAccess = WorkList[I]; 1071 // Simply adding the users of MemoryPhi to the worklist is not enough, 1072 // because we might miss read clobbers in different iterations of a loop, 1073 // for example. 1074 // TODO: Add support for phi translation to handle the loop case. 1075 if (isa<MemoryPhi>(UseAccess)) 1076 return false; 1077 1078 // TODO: Checking for aliasing is expensive. Consider reducing the amount 1079 // of times this is called and/or caching it. 1080 Instruction *UseInst = cast<MemoryUseOrDef>(UseAccess)->getMemoryInst(); 1081 if (isReadClobber(*MaybeLoc, UseInst)) { 1082 LLVM_DEBUG(dbgs() << " ... hit read clobber " << *UseInst << ".\n"); 1083 return false; 1084 } 1085 1086 if (MemoryDef *UseDef = dyn_cast<MemoryDef>(UseAccess)) 1087 PushMemUses(UseDef); 1088 } 1089 return true; 1090 } 1091 1092 /// If \p I is a memory terminator like llvm.lifetime.end or free, return a 1093 /// pair with the MemoryLocation terminated by \p I and a boolean flag 1094 /// indicating whether \p I is a free-like call. 1095 Optional<std::pair<MemoryLocation, bool>> 1096 getLocForTerminator(Instruction *I) const { 1097 uint64_t Len; 1098 Value *Ptr; 1099 if (match(I, m_Intrinsic<Intrinsic::lifetime_end>(m_ConstantInt(Len), 1100 m_Value(Ptr)))) 1101 return {std::make_pair(MemoryLocation(Ptr, Len), false)}; 1102 1103 if (auto *CB = dyn_cast<CallBase>(I)) { 1104 if (isFreeCall(I, &TLI)) 1105 return {std::make_pair(MemoryLocation::getAfter(CB->getArgOperand(0)), 1106 true)}; 1107 } 1108 1109 return None; 1110 } 1111 1112 /// Returns true if \p I is a memory terminator instruction like 1113 /// llvm.lifetime.end or free. 1114 bool isMemTerminatorInst(Instruction *I) const { 1115 IntrinsicInst *II = dyn_cast<IntrinsicInst>(I); 1116 return (II && II->getIntrinsicID() == Intrinsic::lifetime_end) || 1117 isFreeCall(I, &TLI); 1118 } 1119 1120 /// Returns true if \p MaybeTerm is a memory terminator for \p Loc from 1121 /// instruction \p AccessI. 1122 bool isMemTerminator(const MemoryLocation &Loc, Instruction *AccessI, 1123 Instruction *MaybeTerm) { 1124 Optional<std::pair<MemoryLocation, bool>> MaybeTermLoc = 1125 getLocForTerminator(MaybeTerm); 1126 1127 if (!MaybeTermLoc) 1128 return false; 1129 1130 // If the terminator is a free-like call, all accesses to the underlying 1131 // object can be considered terminated. 1132 if (getUnderlyingObject(Loc.Ptr) != 1133 getUnderlyingObject(MaybeTermLoc->first.Ptr)) 1134 return false; 1135 1136 auto TermLoc = MaybeTermLoc->first; 1137 if (MaybeTermLoc->second) { 1138 const Value *LocUO = getUnderlyingObject(Loc.Ptr); 1139 return BatchAA.isMustAlias(TermLoc.Ptr, LocUO); 1140 } 1141 int64_t InstWriteOffset = 0; 1142 int64_t DepWriteOffset = 0; 1143 return isOverwrite(MaybeTerm, AccessI, TermLoc, Loc, InstWriteOffset, 1144 DepWriteOffset) == OW_Complete; 1145 } 1146 1147 // Returns true if \p Use may read from \p DefLoc. 1148 bool isReadClobber(const MemoryLocation &DefLoc, Instruction *UseInst) { 1149 if (isNoopIntrinsic(UseInst)) 1150 return false; 1151 1152 // Monotonic or weaker atomic stores can be re-ordered and do not need to be 1153 // treated as read clobber. 1154 if (auto SI = dyn_cast<StoreInst>(UseInst)) 1155 return isStrongerThan(SI->getOrdering(), AtomicOrdering::Monotonic); 1156 1157 if (!UseInst->mayReadFromMemory()) 1158 return false; 1159 1160 if (auto *CB = dyn_cast<CallBase>(UseInst)) 1161 if (CB->onlyAccessesInaccessibleMemory()) 1162 return false; 1163 1164 return isRefSet(BatchAA.getModRefInfo(UseInst, DefLoc)); 1165 } 1166 1167 /// Returns true if a dependency between \p Current and \p KillingDef is 1168 /// guaranteed to be loop invariant for the loops that they are in. Either 1169 /// because they are known to be in the same block, in the same loop level or 1170 /// by guaranteeing that \p CurrentLoc only references a single MemoryLocation 1171 /// during execution of the containing function. 1172 bool isGuaranteedLoopIndependent(const Instruction *Current, 1173 const Instruction *KillingDef, 1174 const MemoryLocation &CurrentLoc) { 1175 // If the dependency is within the same block or loop level (being careful 1176 // of irreducible loops), we know that AA will return a valid result for the 1177 // memory dependency. (Both at the function level, outside of any loop, 1178 // would also be valid but we currently disable that to limit compile time). 1179 if (Current->getParent() == KillingDef->getParent()) 1180 return true; 1181 const Loop *CurrentLI = LI.getLoopFor(Current->getParent()); 1182 if (!ContainsIrreducibleLoops && CurrentLI && 1183 CurrentLI == LI.getLoopFor(KillingDef->getParent())) 1184 return true; 1185 // Otherwise check the memory location is invariant to any loops. 1186 return isGuaranteedLoopInvariant(CurrentLoc.Ptr); 1187 } 1188 1189 /// Returns true if \p Ptr is guaranteed to be loop invariant for any possible 1190 /// loop. In particular, this guarantees that it only references a single 1191 /// MemoryLocation during execution of the containing function. 1192 bool isGuaranteedLoopInvariant(const Value *Ptr) { 1193 Ptr = Ptr->stripPointerCasts(); 1194 if (auto *GEP = dyn_cast<GEPOperator>(Ptr)) 1195 if (GEP->hasAllConstantIndices()) 1196 Ptr = GEP->getPointerOperand()->stripPointerCasts(); 1197 1198 if (auto *I = dyn_cast<Instruction>(Ptr)) 1199 return I->getParent()->isEntryBlock(); 1200 return true; 1201 } 1202 1203 // Find a MemoryDef writing to \p KillingLoc and dominating \p StartAccess, 1204 // with no read access between them or on any other path to a function exit 1205 // block if \p KillingLoc is not accessible after the function returns. If 1206 // there is no such MemoryDef, return None. The returned value may not 1207 // (completely) overwrite \p KillingLoc. Currently we bail out when we 1208 // encounter an aliasing MemoryUse (read). 1209 Optional<MemoryAccess *> 1210 getDomMemoryDef(MemoryDef *KillingDef, MemoryAccess *StartAccess, 1211 const MemoryLocation &KillingLoc, const Value *KillingUndObj, 1212 unsigned &ScanLimit, unsigned &WalkerStepLimit, 1213 bool IsMemTerm, unsigned &PartialLimit) { 1214 if (ScanLimit == 0 || WalkerStepLimit == 0) { 1215 LLVM_DEBUG(dbgs() << "\n ... hit scan limit\n"); 1216 return None; 1217 } 1218 1219 MemoryAccess *Current = StartAccess; 1220 Instruction *KillingI = KillingDef->getMemoryInst(); 1221 LLVM_DEBUG(dbgs() << " trying to get dominating access\n"); 1222 1223 // Only optimize defining access of KillingDef when directly starting at its 1224 // defining access. The defining access also must only access KillingLoc. At 1225 // the moment we only support instructions with a single write location, so 1226 // it should be sufficient to disable optimizations for instructions that 1227 // also read from memory. 1228 bool CanOptimize = OptimizeMemorySSA && 1229 KillingDef->getDefiningAccess() == StartAccess && 1230 !KillingI->mayReadFromMemory(); 1231 1232 // Find the next clobbering Mod access for DefLoc, starting at StartAccess. 1233 Optional<MemoryLocation> CurrentLoc; 1234 for (;; Current = cast<MemoryDef>(Current)->getDefiningAccess()) { 1235 LLVM_DEBUG({ 1236 dbgs() << " visiting " << *Current; 1237 if (!MSSA.isLiveOnEntryDef(Current) && isa<MemoryUseOrDef>(Current)) 1238 dbgs() << " (" << *cast<MemoryUseOrDef>(Current)->getMemoryInst() 1239 << ")"; 1240 dbgs() << "\n"; 1241 }); 1242 1243 // Reached TOP. 1244 if (MSSA.isLiveOnEntryDef(Current)) { 1245 LLVM_DEBUG(dbgs() << " ... found LiveOnEntryDef\n"); 1246 return None; 1247 } 1248 1249 // Cost of a step. Accesses in the same block are more likely to be valid 1250 // candidates for elimination, hence consider them cheaper. 1251 unsigned StepCost = KillingDef->getBlock() == Current->getBlock() 1252 ? MemorySSASameBBStepCost 1253 : MemorySSAOtherBBStepCost; 1254 if (WalkerStepLimit <= StepCost) { 1255 LLVM_DEBUG(dbgs() << " ... hit walker step limit\n"); 1256 return None; 1257 } 1258 WalkerStepLimit -= StepCost; 1259 1260 // Return for MemoryPhis. They cannot be eliminated directly and the 1261 // caller is responsible for traversing them. 1262 if (isa<MemoryPhi>(Current)) { 1263 LLVM_DEBUG(dbgs() << " ... found MemoryPhi\n"); 1264 return Current; 1265 } 1266 1267 // Below, check if CurrentDef is a valid candidate to be eliminated by 1268 // KillingDef. If it is not, check the next candidate. 1269 MemoryDef *CurrentDef = cast<MemoryDef>(Current); 1270 Instruction *CurrentI = CurrentDef->getMemoryInst(); 1271 1272 if (canSkipDef(CurrentDef, !isInvisibleToCallerBeforeRet(KillingUndObj), 1273 TLI)) { 1274 CanOptimize = false; 1275 continue; 1276 } 1277 1278 // Before we try to remove anything, check for any extra throwing 1279 // instructions that block us from DSEing 1280 if (mayThrowBetween(KillingI, CurrentI, KillingUndObj)) { 1281 LLVM_DEBUG(dbgs() << " ... skip, may throw!\n"); 1282 return None; 1283 } 1284 1285 // Check for anything that looks like it will be a barrier to further 1286 // removal 1287 if (isDSEBarrier(KillingUndObj, CurrentI)) { 1288 LLVM_DEBUG(dbgs() << " ... skip, barrier\n"); 1289 return None; 1290 } 1291 1292 // If Current is known to be on path that reads DefLoc or is a read 1293 // clobber, bail out, as the path is not profitable. We skip this check 1294 // for intrinsic calls, because the code knows how to handle memcpy 1295 // intrinsics. 1296 if (!isa<IntrinsicInst>(CurrentI) && isReadClobber(KillingLoc, CurrentI)) 1297 return None; 1298 1299 // Quick check if there are direct uses that are read-clobbers. 1300 if (any_of(Current->uses(), [this, &KillingLoc, StartAccess](Use &U) { 1301 if (auto *UseOrDef = dyn_cast<MemoryUseOrDef>(U.getUser())) 1302 return !MSSA.dominates(StartAccess, UseOrDef) && 1303 isReadClobber(KillingLoc, UseOrDef->getMemoryInst()); 1304 return false; 1305 })) { 1306 LLVM_DEBUG(dbgs() << " ... found a read clobber\n"); 1307 return None; 1308 } 1309 1310 // If Current does not have an analyzable write location or is not 1311 // removable, skip it. 1312 CurrentLoc = getLocForWrite(CurrentI); 1313 if (!CurrentLoc || !isRemovable(CurrentI)) { 1314 CanOptimize = false; 1315 continue; 1316 } 1317 1318 // AliasAnalysis does not account for loops. Limit elimination to 1319 // candidates for which we can guarantee they always store to the same 1320 // memory location and not located in different loops. 1321 if (!isGuaranteedLoopIndependent(CurrentI, KillingI, *CurrentLoc)) { 1322 LLVM_DEBUG(dbgs() << " ... not guaranteed loop independent\n"); 1323 WalkerStepLimit -= 1; 1324 CanOptimize = false; 1325 continue; 1326 } 1327 1328 if (IsMemTerm) { 1329 // If the killing def is a memory terminator (e.g. lifetime.end), check 1330 // the next candidate if the current Current does not write the same 1331 // underlying object as the terminator. 1332 if (!isMemTerminator(*CurrentLoc, CurrentI, KillingI)) { 1333 CanOptimize = false; 1334 continue; 1335 } 1336 } else { 1337 int64_t KillingOffset = 0; 1338 int64_t DeadOffset = 0; 1339 auto OR = isOverwrite(KillingI, CurrentI, KillingLoc, *CurrentLoc, 1340 KillingOffset, DeadOffset); 1341 if (CanOptimize) { 1342 // CurrentDef is the earliest write clobber of KillingDef. Use it as 1343 // optimized access. Do not optimize if CurrentDef is already the 1344 // defining access of KillingDef. 1345 if (CurrentDef != KillingDef->getDefiningAccess() && 1346 (OR == OW_Complete || OR == OW_MaybePartial)) 1347 KillingDef->setOptimized(CurrentDef); 1348 1349 // Once a may-aliasing def is encountered do not set an optimized 1350 // access. 1351 if (OR != OW_None) 1352 CanOptimize = false; 1353 } 1354 1355 // If Current does not write to the same object as KillingDef, check 1356 // the next candidate. 1357 if (OR == OW_Unknown || OR == OW_None) 1358 continue; 1359 else if (OR == OW_MaybePartial) { 1360 // If KillingDef only partially overwrites Current, check the next 1361 // candidate if the partial step limit is exceeded. This aggressively 1362 // limits the number of candidates for partial store elimination, 1363 // which are less likely to be removable in the end. 1364 if (PartialLimit <= 1) { 1365 WalkerStepLimit -= 1; 1366 LLVM_DEBUG(dbgs() << " ... reached partial limit ... continue with next access\n"); 1367 continue; 1368 } 1369 PartialLimit -= 1; 1370 } 1371 } 1372 break; 1373 }; 1374 1375 // Accesses to objects accessible after the function returns can only be 1376 // eliminated if the access is dead along all paths to the exit. Collect 1377 // the blocks with killing (=completely overwriting MemoryDefs) and check if 1378 // they cover all paths from MaybeDeadAccess to any function exit. 1379 SmallPtrSet<Instruction *, 16> KillingDefs; 1380 KillingDefs.insert(KillingDef->getMemoryInst()); 1381 MemoryAccess *MaybeDeadAccess = Current; 1382 MemoryLocation MaybeDeadLoc = *CurrentLoc; 1383 Instruction *MaybeDeadI = cast<MemoryDef>(MaybeDeadAccess)->getMemoryInst(); 1384 LLVM_DEBUG(dbgs() << " Checking for reads of " << *MaybeDeadAccess << " (" 1385 << *MaybeDeadI << ")\n"); 1386 1387 SmallSetVector<MemoryAccess *, 32> WorkList; 1388 auto PushMemUses = [&WorkList](MemoryAccess *Acc) { 1389 for (Use &U : Acc->uses()) 1390 WorkList.insert(cast<MemoryAccess>(U.getUser())); 1391 }; 1392 PushMemUses(MaybeDeadAccess); 1393 1394 // Check if DeadDef may be read. 1395 for (unsigned I = 0; I < WorkList.size(); I++) { 1396 MemoryAccess *UseAccess = WorkList[I]; 1397 1398 LLVM_DEBUG(dbgs() << " " << *UseAccess); 1399 // Bail out if the number of accesses to check exceeds the scan limit. 1400 if (ScanLimit < (WorkList.size() - I)) { 1401 LLVM_DEBUG(dbgs() << "\n ... hit scan limit\n"); 1402 return None; 1403 } 1404 --ScanLimit; 1405 NumDomMemDefChecks++; 1406 1407 if (isa<MemoryPhi>(UseAccess)) { 1408 if (any_of(KillingDefs, [this, UseAccess](Instruction *KI) { 1409 return DT.properlyDominates(KI->getParent(), 1410 UseAccess->getBlock()); 1411 })) { 1412 LLVM_DEBUG(dbgs() << " ... skipping, dominated by killing block\n"); 1413 continue; 1414 } 1415 LLVM_DEBUG(dbgs() << "\n ... adding PHI uses\n"); 1416 PushMemUses(UseAccess); 1417 continue; 1418 } 1419 1420 Instruction *UseInst = cast<MemoryUseOrDef>(UseAccess)->getMemoryInst(); 1421 LLVM_DEBUG(dbgs() << " (" << *UseInst << ")\n"); 1422 1423 if (any_of(KillingDefs, [this, UseInst](Instruction *KI) { 1424 return DT.dominates(KI, UseInst); 1425 })) { 1426 LLVM_DEBUG(dbgs() << " ... skipping, dominated by killing def\n"); 1427 continue; 1428 } 1429 1430 // A memory terminator kills all preceeding MemoryDefs and all succeeding 1431 // MemoryAccesses. We do not have to check it's users. 1432 if (isMemTerminator(MaybeDeadLoc, MaybeDeadI, UseInst)) { 1433 LLVM_DEBUG( 1434 dbgs() 1435 << " ... skipping, memterminator invalidates following accesses\n"); 1436 continue; 1437 } 1438 1439 if (isNoopIntrinsic(cast<MemoryUseOrDef>(UseAccess)->getMemoryInst())) { 1440 LLVM_DEBUG(dbgs() << " ... adding uses of intrinsic\n"); 1441 PushMemUses(UseAccess); 1442 continue; 1443 } 1444 1445 if (UseInst->mayThrow() && !isInvisibleToCallerBeforeRet(KillingUndObj)) { 1446 LLVM_DEBUG(dbgs() << " ... found throwing instruction\n"); 1447 return None; 1448 } 1449 1450 // Uses which may read the original MemoryDef mean we cannot eliminate the 1451 // original MD. Stop walk. 1452 if (isReadClobber(MaybeDeadLoc, UseInst)) { 1453 LLVM_DEBUG(dbgs() << " ... found read clobber\n"); 1454 return None; 1455 } 1456 1457 // If this worklist walks back to the original memory access (and the 1458 // pointer is not guarenteed loop invariant) then we cannot assume that a 1459 // store kills itself. 1460 if (MaybeDeadAccess == UseAccess && 1461 !isGuaranteedLoopInvariant(MaybeDeadLoc.Ptr)) { 1462 LLVM_DEBUG(dbgs() << " ... found not loop invariant self access\n"); 1463 return None; 1464 } 1465 // Otherwise, for the KillingDef and MaybeDeadAccess we only have to check 1466 // if it reads the memory location. 1467 // TODO: It would probably be better to check for self-reads before 1468 // calling the function. 1469 if (KillingDef == UseAccess || MaybeDeadAccess == UseAccess) { 1470 LLVM_DEBUG(dbgs() << " ... skipping killing def/dom access\n"); 1471 continue; 1472 } 1473 1474 // Check all uses for MemoryDefs, except for defs completely overwriting 1475 // the original location. Otherwise we have to check uses of *all* 1476 // MemoryDefs we discover, including non-aliasing ones. Otherwise we might 1477 // miss cases like the following 1478 // 1 = Def(LoE) ; <----- DeadDef stores [0,1] 1479 // 2 = Def(1) ; (2, 1) = NoAlias, stores [2,3] 1480 // Use(2) ; MayAlias 2 *and* 1, loads [0, 3]. 1481 // (The Use points to the *first* Def it may alias) 1482 // 3 = Def(1) ; <---- Current (3, 2) = NoAlias, (3,1) = MayAlias, 1483 // stores [0,1] 1484 if (MemoryDef *UseDef = dyn_cast<MemoryDef>(UseAccess)) { 1485 if (isCompleteOverwrite(MaybeDeadLoc, MaybeDeadI, UseInst)) { 1486 BasicBlock *MaybeKillingBlock = UseInst->getParent(); 1487 if (PostOrderNumbers.find(MaybeKillingBlock)->second < 1488 PostOrderNumbers.find(MaybeDeadAccess->getBlock())->second) { 1489 if (!isInvisibleToCallerAfterRet(KillingUndObj)) { 1490 LLVM_DEBUG(dbgs() 1491 << " ... found killing def " << *UseInst << "\n"); 1492 KillingDefs.insert(UseInst); 1493 } 1494 } else { 1495 LLVM_DEBUG(dbgs() 1496 << " ... found preceeding def " << *UseInst << "\n"); 1497 return None; 1498 } 1499 } else 1500 PushMemUses(UseDef); 1501 } 1502 } 1503 1504 // For accesses to locations visible after the function returns, make sure 1505 // that the location is dead (=overwritten) along all paths from 1506 // MaybeDeadAccess to the exit. 1507 if (!isInvisibleToCallerAfterRet(KillingUndObj)) { 1508 SmallPtrSet<BasicBlock *, 16> KillingBlocks; 1509 for (Instruction *KD : KillingDefs) 1510 KillingBlocks.insert(KD->getParent()); 1511 assert(!KillingBlocks.empty() && 1512 "Expected at least a single killing block"); 1513 1514 // Find the common post-dominator of all killing blocks. 1515 BasicBlock *CommonPred = *KillingBlocks.begin(); 1516 for (BasicBlock *BB : llvm::drop_begin(KillingBlocks)) { 1517 if (!CommonPred) 1518 break; 1519 CommonPred = PDT.findNearestCommonDominator(CommonPred, BB); 1520 } 1521 1522 // If CommonPred is in the set of killing blocks, just check if it 1523 // post-dominates MaybeDeadAccess. 1524 if (KillingBlocks.count(CommonPred)) { 1525 if (PDT.dominates(CommonPred, MaybeDeadAccess->getBlock())) 1526 return {MaybeDeadAccess}; 1527 return None; 1528 } 1529 1530 // If the common post-dominator does not post-dominate MaybeDeadAccess, 1531 // there is a path from MaybeDeadAccess to an exit not going through a 1532 // killing block. 1533 if (PDT.dominates(CommonPred, MaybeDeadAccess->getBlock())) { 1534 SetVector<BasicBlock *> WorkList; 1535 1536 // If CommonPred is null, there are multiple exits from the function. 1537 // They all have to be added to the worklist. 1538 if (CommonPred) 1539 WorkList.insert(CommonPred); 1540 else 1541 for (BasicBlock *R : PDT.roots()) 1542 WorkList.insert(R); 1543 1544 NumCFGTries++; 1545 // Check if all paths starting from an exit node go through one of the 1546 // killing blocks before reaching MaybeDeadAccess. 1547 for (unsigned I = 0; I < WorkList.size(); I++) { 1548 NumCFGChecks++; 1549 BasicBlock *Current = WorkList[I]; 1550 if (KillingBlocks.count(Current)) 1551 continue; 1552 if (Current == MaybeDeadAccess->getBlock()) 1553 return None; 1554 1555 // MaybeDeadAccess is reachable from the entry, so we don't have to 1556 // explore unreachable blocks further. 1557 if (!DT.isReachableFromEntry(Current)) 1558 continue; 1559 1560 for (BasicBlock *Pred : predecessors(Current)) 1561 WorkList.insert(Pred); 1562 1563 if (WorkList.size() >= MemorySSAPathCheckLimit) 1564 return None; 1565 } 1566 NumCFGSuccess++; 1567 return {MaybeDeadAccess}; 1568 } 1569 return None; 1570 } 1571 1572 // No aliasing MemoryUses of MaybeDeadAccess found, MaybeDeadAccess is 1573 // potentially dead. 1574 return {MaybeDeadAccess}; 1575 } 1576 1577 // Delete dead memory defs 1578 void deleteDeadInstruction(Instruction *SI) { 1579 MemorySSAUpdater Updater(&MSSA); 1580 SmallVector<Instruction *, 32> NowDeadInsts; 1581 NowDeadInsts.push_back(SI); 1582 --NumFastOther; 1583 1584 while (!NowDeadInsts.empty()) { 1585 Instruction *DeadInst = NowDeadInsts.pop_back_val(); 1586 ++NumFastOther; 1587 1588 // Try to preserve debug information attached to the dead instruction. 1589 salvageDebugInfo(*DeadInst); 1590 salvageKnowledge(DeadInst); 1591 1592 // Remove the Instruction from MSSA. 1593 if (MemoryAccess *MA = MSSA.getMemoryAccess(DeadInst)) { 1594 if (MemoryDef *MD = dyn_cast<MemoryDef>(MA)) { 1595 SkipStores.insert(MD); 1596 } 1597 1598 Updater.removeMemoryAccess(MA); 1599 } 1600 1601 auto I = IOLs.find(DeadInst->getParent()); 1602 if (I != IOLs.end()) 1603 I->second.erase(DeadInst); 1604 // Remove its operands 1605 for (Use &O : DeadInst->operands()) 1606 if (Instruction *OpI = dyn_cast<Instruction>(O)) { 1607 O = nullptr; 1608 if (isInstructionTriviallyDead(OpI, &TLI)) 1609 NowDeadInsts.push_back(OpI); 1610 } 1611 1612 EI.removeInstruction(DeadInst); 1613 DeadInst->eraseFromParent(); 1614 } 1615 } 1616 1617 // Check for any extra throws between \p KillingI and \p DeadI that block 1618 // DSE. This only checks extra maythrows (those that aren't MemoryDef's). 1619 // MemoryDef that may throw are handled during the walk from one def to the 1620 // next. 1621 bool mayThrowBetween(Instruction *KillingI, Instruction *DeadI, 1622 const Value *KillingUndObj) { 1623 // First see if we can ignore it by using the fact that KillingI is an 1624 // alloca/alloca like object that is not visible to the caller during 1625 // execution of the function. 1626 if (KillingUndObj && isInvisibleToCallerBeforeRet(KillingUndObj)) 1627 return false; 1628 1629 if (KillingI->getParent() == DeadI->getParent()) 1630 return ThrowingBlocks.count(KillingI->getParent()); 1631 return !ThrowingBlocks.empty(); 1632 } 1633 1634 // Check if \p DeadI acts as a DSE barrier for \p KillingI. The following 1635 // instructions act as barriers: 1636 // * A memory instruction that may throw and \p KillingI accesses a non-stack 1637 // object. 1638 // * Atomic stores stronger that monotonic. 1639 bool isDSEBarrier(const Value *KillingUndObj, Instruction *DeadI) { 1640 // If DeadI may throw it acts as a barrier, unless we are to an 1641 // alloca/alloca like object that does not escape. 1642 if (DeadI->mayThrow() && !isInvisibleToCallerBeforeRet(KillingUndObj)) 1643 return true; 1644 1645 // If DeadI is an atomic load/store stronger than monotonic, do not try to 1646 // eliminate/reorder it. 1647 if (DeadI->isAtomic()) { 1648 if (auto *LI = dyn_cast<LoadInst>(DeadI)) 1649 return isStrongerThanMonotonic(LI->getOrdering()); 1650 if (auto *SI = dyn_cast<StoreInst>(DeadI)) 1651 return isStrongerThanMonotonic(SI->getOrdering()); 1652 if (auto *ARMW = dyn_cast<AtomicRMWInst>(DeadI)) 1653 return isStrongerThanMonotonic(ARMW->getOrdering()); 1654 if (auto *CmpXchg = dyn_cast<AtomicCmpXchgInst>(DeadI)) 1655 return isStrongerThanMonotonic(CmpXchg->getSuccessOrdering()) || 1656 isStrongerThanMonotonic(CmpXchg->getFailureOrdering()); 1657 llvm_unreachable("other instructions should be skipped in MemorySSA"); 1658 } 1659 return false; 1660 } 1661 1662 /// Eliminate writes to objects that are not visible in the caller and are not 1663 /// accessed before returning from the function. 1664 bool eliminateDeadWritesAtEndOfFunction() { 1665 bool MadeChange = false; 1666 LLVM_DEBUG( 1667 dbgs() 1668 << "Trying to eliminate MemoryDefs at the end of the function\n"); 1669 for (MemoryDef *Def : llvm::reverse(MemDefs)) { 1670 if (SkipStores.contains(Def)) 1671 continue; 1672 1673 Instruction *DefI = Def->getMemoryInst(); 1674 auto DefLoc = getLocForWrite(DefI); 1675 if (!DefLoc || !isRemovable(DefI)) 1676 continue; 1677 1678 // NOTE: Currently eliminating writes at the end of a function is limited 1679 // to MemoryDefs with a single underlying object, to save compile-time. In 1680 // practice it appears the case with multiple underlying objects is very 1681 // uncommon. If it turns out to be important, we can use 1682 // getUnderlyingObjects here instead. 1683 const Value *UO = getUnderlyingObject(DefLoc->Ptr); 1684 if (!isInvisibleToCallerAfterRet(UO)) 1685 continue; 1686 1687 if (isWriteAtEndOfFunction(Def)) { 1688 // See through pointer-to-pointer bitcasts 1689 LLVM_DEBUG(dbgs() << " ... MemoryDef is not accessed until the end " 1690 "of the function\n"); 1691 deleteDeadInstruction(DefI); 1692 ++NumFastStores; 1693 MadeChange = true; 1694 } 1695 } 1696 return MadeChange; 1697 } 1698 1699 /// \returns true if \p Def is a no-op store, either because it 1700 /// directly stores back a loaded value or stores zero to a calloced object. 1701 bool storeIsNoop(MemoryDef *Def, const Value *DefUO) { 1702 Instruction *DefI = Def->getMemoryInst(); 1703 StoreInst *Store = dyn_cast<StoreInst>(DefI); 1704 MemSetInst *MemSet = dyn_cast<MemSetInst>(DefI); 1705 Constant *StoredConstant = nullptr; 1706 if (Store) 1707 StoredConstant = dyn_cast<Constant>(Store->getOperand(0)); 1708 else if (MemSet) 1709 StoredConstant = dyn_cast<Constant>(MemSet->getValue()); 1710 else 1711 return false; 1712 1713 if (!isRemovable(DefI)) 1714 return false; 1715 1716 if (StoredConstant && StoredConstant->isNullValue()) { 1717 auto *DefUOInst = dyn_cast<Instruction>(DefUO); 1718 if (DefUOInst) { 1719 if (isCallocLikeFn(DefUOInst, &TLI)) { 1720 auto *UnderlyingDef = 1721 cast<MemoryDef>(MSSA.getMemoryAccess(DefUOInst)); 1722 // If UnderlyingDef is the clobbering access of Def, no instructions 1723 // between them can modify the memory location. 1724 auto *ClobberDef = 1725 MSSA.getSkipSelfWalker()->getClobberingMemoryAccess(Def); 1726 return UnderlyingDef == ClobberDef; 1727 } 1728 1729 if (MemSet) { 1730 if (F.hasFnAttribute(Attribute::SanitizeMemory) || 1731 F.hasFnAttribute(Attribute::SanitizeAddress) || 1732 F.hasFnAttribute(Attribute::SanitizeHWAddress) || 1733 F.getName() == "calloc") 1734 return false; 1735 auto *Malloc = const_cast<CallInst *>(dyn_cast<CallInst>(DefUOInst)); 1736 if (!Malloc) 1737 return false; 1738 auto *InnerCallee = Malloc->getCalledFunction(); 1739 if (!InnerCallee) 1740 return false; 1741 LibFunc Func; 1742 if (!TLI.getLibFunc(*InnerCallee, Func) || !TLI.has(Func) || 1743 Func != LibFunc_malloc) 1744 return false; 1745 1746 auto shouldCreateCalloc = [](CallInst *Malloc, CallInst *Memset) { 1747 // Check for br(icmp ptr, null), truebb, falsebb) pattern at the end 1748 // of malloc block 1749 auto *MallocBB = Malloc->getParent(), 1750 *MemsetBB = Memset->getParent(); 1751 if (MallocBB == MemsetBB) 1752 return true; 1753 auto *Ptr = Memset->getArgOperand(0); 1754 auto *TI = MallocBB->getTerminator(); 1755 ICmpInst::Predicate Pred; 1756 BasicBlock *TrueBB, *FalseBB; 1757 if (!match(TI, m_Br(m_ICmp(Pred, m_Specific(Ptr), m_Zero()), TrueBB, 1758 FalseBB))) 1759 return false; 1760 if (Pred != ICmpInst::ICMP_EQ || MemsetBB != FalseBB) 1761 return false; 1762 return true; 1763 }; 1764 1765 if (Malloc->getOperand(0) == MemSet->getLength()) { 1766 if (shouldCreateCalloc(Malloc, MemSet) && 1767 DT.dominates(Malloc, MemSet) && 1768 memoryIsNotModifiedBetween(Malloc, MemSet, BatchAA, DL, &DT)) { 1769 IRBuilder<> IRB(Malloc); 1770 const auto &DL = Malloc->getModule()->getDataLayout(); 1771 if (auto *Calloc = 1772 emitCalloc(ConstantInt::get(IRB.getIntPtrTy(DL), 1), 1773 Malloc->getArgOperand(0), IRB, TLI)) { 1774 MemorySSAUpdater Updater(&MSSA); 1775 auto *LastDef = cast<MemoryDef>( 1776 Updater.getMemorySSA()->getMemoryAccess(Malloc)); 1777 auto *NewAccess = Updater.createMemoryAccessAfter( 1778 cast<Instruction>(Calloc), LastDef, LastDef); 1779 auto *NewAccessMD = cast<MemoryDef>(NewAccess); 1780 Updater.insertDef(NewAccessMD, /*RenameUses=*/true); 1781 Updater.removeMemoryAccess(Malloc); 1782 Malloc->replaceAllUsesWith(Calloc); 1783 Malloc->eraseFromParent(); 1784 return true; 1785 } 1786 return false; 1787 } 1788 } 1789 } 1790 } 1791 } 1792 1793 if (!Store) 1794 return false; 1795 1796 if (auto *LoadI = dyn_cast<LoadInst>(Store->getOperand(0))) { 1797 if (LoadI->getPointerOperand() == Store->getOperand(1)) { 1798 // Get the defining access for the load. 1799 auto *LoadAccess = MSSA.getMemoryAccess(LoadI)->getDefiningAccess(); 1800 // Fast path: the defining accesses are the same. 1801 if (LoadAccess == Def->getDefiningAccess()) 1802 return true; 1803 1804 // Look through phi accesses. Recursively scan all phi accesses by 1805 // adding them to a worklist. Bail when we run into a memory def that 1806 // does not match LoadAccess. 1807 SetVector<MemoryAccess *> ToCheck; 1808 MemoryAccess *Current = 1809 MSSA.getWalker()->getClobberingMemoryAccess(Def); 1810 // We don't want to bail when we run into the store memory def. But, 1811 // the phi access may point to it. So, pretend like we've already 1812 // checked it. 1813 ToCheck.insert(Def); 1814 ToCheck.insert(Current); 1815 // Start at current (1) to simulate already having checked Def. 1816 for (unsigned I = 1; I < ToCheck.size(); ++I) { 1817 Current = ToCheck[I]; 1818 if (auto PhiAccess = dyn_cast<MemoryPhi>(Current)) { 1819 // Check all the operands. 1820 for (auto &Use : PhiAccess->incoming_values()) 1821 ToCheck.insert(cast<MemoryAccess>(&Use)); 1822 continue; 1823 } 1824 1825 // If we found a memory def, bail. This happens when we have an 1826 // unrelated write in between an otherwise noop store. 1827 assert(isa<MemoryDef>(Current) && 1828 "Only MemoryDefs should reach here."); 1829 // TODO: Skip no alias MemoryDefs that have no aliasing reads. 1830 // We are searching for the definition of the store's destination. 1831 // So, if that is the same definition as the load, then this is a 1832 // noop. Otherwise, fail. 1833 if (LoadAccess != Current) 1834 return false; 1835 } 1836 return true; 1837 } 1838 } 1839 1840 return false; 1841 } 1842 1843 bool removePartiallyOverlappedStores(InstOverlapIntervalsTy &IOL) { 1844 bool Changed = false; 1845 for (auto OI : IOL) { 1846 Instruction *DeadI = OI.first; 1847 MemoryLocation Loc = *getLocForWrite(DeadI); 1848 assert(isRemovable(DeadI) && "Expect only removable instruction"); 1849 1850 const Value *Ptr = Loc.Ptr->stripPointerCasts(); 1851 int64_t DeadStart = 0; 1852 uint64_t DeadSize = Loc.Size.getValue(); 1853 GetPointerBaseWithConstantOffset(Ptr, DeadStart, DL); 1854 OverlapIntervalsTy &IntervalMap = OI.second; 1855 Changed |= tryToShortenEnd(DeadI, IntervalMap, DeadStart, DeadSize); 1856 if (IntervalMap.empty()) 1857 continue; 1858 Changed |= tryToShortenBegin(DeadI, IntervalMap, DeadStart, DeadSize); 1859 } 1860 return Changed; 1861 } 1862 1863 /// Eliminates writes to locations where the value that is being written 1864 /// is already stored at the same location. 1865 bool eliminateRedundantStoresOfExistingValues() { 1866 bool MadeChange = false; 1867 LLVM_DEBUG(dbgs() << "Trying to eliminate MemoryDefs that write the " 1868 "already existing value\n"); 1869 for (auto *Def : MemDefs) { 1870 if (SkipStores.contains(Def) || MSSA.isLiveOnEntryDef(Def)) 1871 continue; 1872 1873 Instruction *DefInst = Def->getMemoryInst(); 1874 auto MaybeDefLoc = getLocForWrite(DefInst); 1875 if (!MaybeDefLoc || !isRemovable(DefInst)) 1876 continue; 1877 1878 MemoryDef *UpperDef; 1879 // To conserve compile-time, we avoid walking to the next clobbering def. 1880 // Instead, we just try to get the optimized access, if it exists. DSE 1881 // will try to optimize defs during the earlier traversal. 1882 if (Def->isOptimized()) 1883 UpperDef = dyn_cast<MemoryDef>(Def->getOptimized()); 1884 else 1885 UpperDef = dyn_cast<MemoryDef>(Def->getDefiningAccess()); 1886 if (!UpperDef || MSSA.isLiveOnEntryDef(UpperDef)) 1887 continue; 1888 1889 Instruction *UpperInst = UpperDef->getMemoryInst(); 1890 auto IsRedundantStore = [&]() { 1891 if (DefInst->isIdenticalTo(UpperInst)) 1892 return true; 1893 if (auto *MemSetI = dyn_cast<MemSetInst>(UpperInst)) { 1894 if (auto *SI = dyn_cast<StoreInst>(DefInst)) { 1895 // MemSetInst must have a write location. 1896 MemoryLocation UpperLoc = *getLocForWrite(UpperInst); 1897 int64_t InstWriteOffset = 0; 1898 int64_t DepWriteOffset = 0; 1899 auto OR = isOverwrite(UpperInst, DefInst, UpperLoc, *MaybeDefLoc, 1900 InstWriteOffset, DepWriteOffset); 1901 Value *StoredByte = isBytewiseValue(SI->getValueOperand(), DL); 1902 return StoredByte && StoredByte == MemSetI->getOperand(1) && 1903 OR == OW_Complete; 1904 } 1905 } 1906 return false; 1907 }; 1908 1909 if (!IsRedundantStore() || isReadClobber(*MaybeDefLoc, DefInst)) 1910 continue; 1911 LLVM_DEBUG(dbgs() << "DSE: Remove No-Op Store:\n DEAD: " << *DefInst 1912 << '\n'); 1913 deleteDeadInstruction(DefInst); 1914 NumRedundantStores++; 1915 MadeChange = true; 1916 } 1917 return MadeChange; 1918 } 1919 }; 1920 1921 static bool eliminateDeadStores(Function &F, AliasAnalysis &AA, MemorySSA &MSSA, 1922 DominatorTree &DT, PostDominatorTree &PDT, 1923 const TargetLibraryInfo &TLI, 1924 const LoopInfo &LI) { 1925 bool MadeChange = false; 1926 1927 DSEState State(F, AA, MSSA, DT, PDT, TLI, LI); 1928 // For each store: 1929 for (unsigned I = 0; I < State.MemDefs.size(); I++) { 1930 MemoryDef *KillingDef = State.MemDefs[I]; 1931 if (State.SkipStores.count(KillingDef)) 1932 continue; 1933 Instruction *KillingI = KillingDef->getMemoryInst(); 1934 1935 Optional<MemoryLocation> MaybeKillingLoc; 1936 if (State.isMemTerminatorInst(KillingI)) 1937 MaybeKillingLoc = State.getLocForTerminator(KillingI).map( 1938 [](const std::pair<MemoryLocation, bool> &P) { return P.first; }); 1939 else 1940 MaybeKillingLoc = State.getLocForWrite(KillingI); 1941 1942 if (!MaybeKillingLoc) { 1943 LLVM_DEBUG(dbgs() << "Failed to find analyzable write location for " 1944 << *KillingI << "\n"); 1945 continue; 1946 } 1947 MemoryLocation KillingLoc = *MaybeKillingLoc; 1948 assert(KillingLoc.Ptr && "KillingLoc should not be null"); 1949 const Value *KillingUndObj = getUnderlyingObject(KillingLoc.Ptr); 1950 LLVM_DEBUG(dbgs() << "Trying to eliminate MemoryDefs killed by " 1951 << *KillingDef << " (" << *KillingI << ")\n"); 1952 1953 unsigned ScanLimit = MemorySSAScanLimit; 1954 unsigned WalkerStepLimit = MemorySSAUpwardsStepLimit; 1955 unsigned PartialLimit = MemorySSAPartialStoreLimit; 1956 // Worklist of MemoryAccesses that may be killed by KillingDef. 1957 SetVector<MemoryAccess *> ToCheck; 1958 ToCheck.insert(KillingDef->getDefiningAccess()); 1959 1960 bool Shortend = false; 1961 bool IsMemTerm = State.isMemTerminatorInst(KillingI); 1962 // Check if MemoryAccesses in the worklist are killed by KillingDef. 1963 for (unsigned I = 0; I < ToCheck.size(); I++) { 1964 MemoryAccess *Current = ToCheck[I]; 1965 if (State.SkipStores.count(Current)) 1966 continue; 1967 1968 Optional<MemoryAccess *> MaybeDeadAccess = State.getDomMemoryDef( 1969 KillingDef, Current, KillingLoc, KillingUndObj, ScanLimit, 1970 WalkerStepLimit, IsMemTerm, PartialLimit); 1971 1972 if (!MaybeDeadAccess) { 1973 LLVM_DEBUG(dbgs() << " finished walk\n"); 1974 continue; 1975 } 1976 1977 MemoryAccess *DeadAccess = *MaybeDeadAccess; 1978 LLVM_DEBUG(dbgs() << " Checking if we can kill " << *DeadAccess); 1979 if (isa<MemoryPhi>(DeadAccess)) { 1980 LLVM_DEBUG(dbgs() << "\n ... adding incoming values to worklist\n"); 1981 for (Value *V : cast<MemoryPhi>(DeadAccess)->incoming_values()) { 1982 MemoryAccess *IncomingAccess = cast<MemoryAccess>(V); 1983 BasicBlock *IncomingBlock = IncomingAccess->getBlock(); 1984 BasicBlock *PhiBlock = DeadAccess->getBlock(); 1985 1986 // We only consider incoming MemoryAccesses that come before the 1987 // MemoryPhi. Otherwise we could discover candidates that do not 1988 // strictly dominate our starting def. 1989 if (State.PostOrderNumbers[IncomingBlock] > 1990 State.PostOrderNumbers[PhiBlock]) 1991 ToCheck.insert(IncomingAccess); 1992 } 1993 continue; 1994 } 1995 auto *DeadDefAccess = cast<MemoryDef>(DeadAccess); 1996 Instruction *DeadI = DeadDefAccess->getMemoryInst(); 1997 LLVM_DEBUG(dbgs() << " (" << *DeadI << ")\n"); 1998 ToCheck.insert(DeadDefAccess->getDefiningAccess()); 1999 NumGetDomMemoryDefPassed++; 2000 2001 if (!DebugCounter::shouldExecute(MemorySSACounter)) 2002 continue; 2003 2004 MemoryLocation DeadLoc = *State.getLocForWrite(DeadI); 2005 2006 if (IsMemTerm) { 2007 const Value *DeadUndObj = getUnderlyingObject(DeadLoc.Ptr); 2008 if (KillingUndObj != DeadUndObj) 2009 continue; 2010 LLVM_DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: " << *DeadI 2011 << "\n KILLER: " << *KillingI << '\n'); 2012 State.deleteDeadInstruction(DeadI); 2013 ++NumFastStores; 2014 MadeChange = true; 2015 } else { 2016 // Check if DeadI overwrites KillingI. 2017 int64_t KillingOffset = 0; 2018 int64_t DeadOffset = 0; 2019 OverwriteResult OR = State.isOverwrite( 2020 KillingI, DeadI, KillingLoc, DeadLoc, KillingOffset, DeadOffset); 2021 if (OR == OW_MaybePartial) { 2022 auto Iter = State.IOLs.insert( 2023 std::make_pair<BasicBlock *, InstOverlapIntervalsTy>( 2024 DeadI->getParent(), InstOverlapIntervalsTy())); 2025 auto &IOL = Iter.first->second; 2026 OR = isPartialOverwrite(KillingLoc, DeadLoc, KillingOffset, 2027 DeadOffset, DeadI, IOL); 2028 } 2029 2030 if (EnablePartialStoreMerging && OR == OW_PartialEarlierWithFullLater) { 2031 auto *DeadSI = dyn_cast<StoreInst>(DeadI); 2032 auto *KillingSI = dyn_cast<StoreInst>(KillingI); 2033 // We are re-using tryToMergePartialOverlappingStores, which requires 2034 // DeadSI to dominate DeadSI. 2035 // TODO: implement tryToMergeParialOverlappingStores using MemorySSA. 2036 if (DeadSI && KillingSI && DT.dominates(DeadSI, KillingSI)) { 2037 if (Constant *Merged = tryToMergePartialOverlappingStores( 2038 KillingSI, DeadSI, KillingOffset, DeadOffset, State.DL, 2039 State.BatchAA, &DT)) { 2040 2041 // Update stored value of earlier store to merged constant. 2042 DeadSI->setOperand(0, Merged); 2043 ++NumModifiedStores; 2044 MadeChange = true; 2045 2046 Shortend = true; 2047 // Remove killing store and remove any outstanding overlap 2048 // intervals for the updated store. 2049 State.deleteDeadInstruction(KillingSI); 2050 auto I = State.IOLs.find(DeadSI->getParent()); 2051 if (I != State.IOLs.end()) 2052 I->second.erase(DeadSI); 2053 break; 2054 } 2055 } 2056 } 2057 2058 if (OR == OW_Complete) { 2059 LLVM_DEBUG(dbgs() << "DSE: Remove Dead Store:\n DEAD: " << *DeadI 2060 << "\n KILLER: " << *KillingI << '\n'); 2061 State.deleteDeadInstruction(DeadI); 2062 ++NumFastStores; 2063 MadeChange = true; 2064 } 2065 } 2066 } 2067 2068 // Check if the store is a no-op. 2069 if (!Shortend && State.storeIsNoop(KillingDef, KillingUndObj)) { 2070 LLVM_DEBUG(dbgs() << "DSE: Remove No-Op Store:\n DEAD: " << *KillingI 2071 << '\n'); 2072 State.deleteDeadInstruction(KillingI); 2073 NumRedundantStores++; 2074 MadeChange = true; 2075 continue; 2076 } 2077 } 2078 2079 if (EnablePartialOverwriteTracking) 2080 for (auto &KV : State.IOLs) 2081 MadeChange |= State.removePartiallyOverlappedStores(KV.second); 2082 2083 MadeChange |= State.eliminateRedundantStoresOfExistingValues(); 2084 MadeChange |= State.eliminateDeadWritesAtEndOfFunction(); 2085 return MadeChange; 2086 } 2087 } // end anonymous namespace 2088 2089 //===----------------------------------------------------------------------===// 2090 // DSE Pass 2091 //===----------------------------------------------------------------------===// 2092 PreservedAnalyses DSEPass::run(Function &F, FunctionAnalysisManager &AM) { 2093 AliasAnalysis &AA = AM.getResult<AAManager>(F); 2094 const TargetLibraryInfo &TLI = AM.getResult<TargetLibraryAnalysis>(F); 2095 DominatorTree &DT = AM.getResult<DominatorTreeAnalysis>(F); 2096 MemorySSA &MSSA = AM.getResult<MemorySSAAnalysis>(F).getMSSA(); 2097 PostDominatorTree &PDT = AM.getResult<PostDominatorTreeAnalysis>(F); 2098 LoopInfo &LI = AM.getResult<LoopAnalysis>(F); 2099 2100 bool Changed = eliminateDeadStores(F, AA, MSSA, DT, PDT, TLI, LI); 2101 2102 #ifdef LLVM_ENABLE_STATS 2103 if (AreStatisticsEnabled()) 2104 for (auto &I : instructions(F)) 2105 NumRemainingStores += isa<StoreInst>(&I); 2106 #endif 2107 2108 if (!Changed) 2109 return PreservedAnalyses::all(); 2110 2111 PreservedAnalyses PA; 2112 PA.preserveSet<CFGAnalyses>(); 2113 PA.preserve<MemorySSAAnalysis>(); 2114 PA.preserve<LoopAnalysis>(); 2115 return PA; 2116 } 2117 2118 namespace { 2119 2120 /// A legacy pass for the legacy pass manager that wraps \c DSEPass. 2121 class DSELegacyPass : public FunctionPass { 2122 public: 2123 static char ID; // Pass identification, replacement for typeid 2124 2125 DSELegacyPass() : FunctionPass(ID) { 2126 initializeDSELegacyPassPass(*PassRegistry::getPassRegistry()); 2127 } 2128 2129 bool runOnFunction(Function &F) override { 2130 if (skipFunction(F)) 2131 return false; 2132 2133 AliasAnalysis &AA = getAnalysis<AAResultsWrapperPass>().getAAResults(); 2134 DominatorTree &DT = getAnalysis<DominatorTreeWrapperPass>().getDomTree(); 2135 const TargetLibraryInfo &TLI = 2136 getAnalysis<TargetLibraryInfoWrapperPass>().getTLI(F); 2137 MemorySSA &MSSA = getAnalysis<MemorySSAWrapperPass>().getMSSA(); 2138 PostDominatorTree &PDT = 2139 getAnalysis<PostDominatorTreeWrapperPass>().getPostDomTree(); 2140 LoopInfo &LI = getAnalysis<LoopInfoWrapperPass>().getLoopInfo(); 2141 2142 bool Changed = eliminateDeadStores(F, AA, MSSA, DT, PDT, TLI, LI); 2143 2144 #ifdef LLVM_ENABLE_STATS 2145 if (AreStatisticsEnabled()) 2146 for (auto &I : instructions(F)) 2147 NumRemainingStores += isa<StoreInst>(&I); 2148 #endif 2149 2150 return Changed; 2151 } 2152 2153 void getAnalysisUsage(AnalysisUsage &AU) const override { 2154 AU.setPreservesCFG(); 2155 AU.addRequired<AAResultsWrapperPass>(); 2156 AU.addRequired<TargetLibraryInfoWrapperPass>(); 2157 AU.addPreserved<GlobalsAAWrapperPass>(); 2158 AU.addRequired<DominatorTreeWrapperPass>(); 2159 AU.addPreserved<DominatorTreeWrapperPass>(); 2160 AU.addRequired<PostDominatorTreeWrapperPass>(); 2161 AU.addRequired<MemorySSAWrapperPass>(); 2162 AU.addPreserved<PostDominatorTreeWrapperPass>(); 2163 AU.addPreserved<MemorySSAWrapperPass>(); 2164 AU.addRequired<LoopInfoWrapperPass>(); 2165 AU.addPreserved<LoopInfoWrapperPass>(); 2166 } 2167 }; 2168 2169 } // end anonymous namespace 2170 2171 char DSELegacyPass::ID = 0; 2172 2173 INITIALIZE_PASS_BEGIN(DSELegacyPass, "dse", "Dead Store Elimination", false, 2174 false) 2175 INITIALIZE_PASS_DEPENDENCY(DominatorTreeWrapperPass) 2176 INITIALIZE_PASS_DEPENDENCY(PostDominatorTreeWrapperPass) 2177 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass) 2178 INITIALIZE_PASS_DEPENDENCY(GlobalsAAWrapperPass) 2179 INITIALIZE_PASS_DEPENDENCY(MemorySSAWrapperPass) 2180 INITIALIZE_PASS_DEPENDENCY(MemoryDependenceWrapperPass) 2181 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass) 2182 INITIALIZE_PASS_DEPENDENCY(LoopInfoWrapperPass) 2183 INITIALIZE_PASS_END(DSELegacyPass, "dse", "Dead Store Elimination", false, 2184 false) 2185 2186 FunctionPass *llvm::createDeadStoreEliminationPass() { 2187 return new DSELegacyPass(); 2188 } 2189