1 //===- PromoteMemoryToRegister.cpp - Convert allocas to registers ---------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file promotes memory references to be register references. It promotes 11 // alloca instructions which only have loads and stores as uses. An alloca is 12 // transformed by using iterated dominator frontiers to place PHI nodes, then 13 // traversing the function in depth-first order to rewrite loads and stores as 14 // appropriate. 15 // 16 //===----------------------------------------------------------------------===// 17 18 #include "llvm/Transforms/Utils/PromoteMemToReg.h" 19 #include "llvm/ADT/ArrayRef.h" 20 #include "llvm/ADT/DenseMap.h" 21 #include "llvm/ADT/STLExtras.h" 22 #include "llvm/ADT/SmallPtrSet.h" 23 #include "llvm/ADT/SmallVector.h" 24 #include "llvm/ADT/Statistic.h" 25 #include "llvm/Analysis/AliasSetTracker.h" 26 #include "llvm/Analysis/InstructionSimplify.h" 27 #include "llvm/Analysis/IteratedDominanceFrontier.h" 28 #include "llvm/Analysis/ValueTracking.h" 29 #include "llvm/IR/CFG.h" 30 #include "llvm/IR/Constants.h" 31 #include "llvm/IR/DIBuilder.h" 32 #include "llvm/IR/DebugInfo.h" 33 #include "llvm/IR/DerivedTypes.h" 34 #include "llvm/IR/Dominators.h" 35 #include "llvm/IR/Function.h" 36 #include "llvm/IR/Instructions.h" 37 #include "llvm/IR/IntrinsicInst.h" 38 #include "llvm/IR/Metadata.h" 39 #include "llvm/IR/Module.h" 40 #include "llvm/Transforms/Utils/Local.h" 41 #include <algorithm> 42 using namespace llvm; 43 44 #define DEBUG_TYPE "mem2reg" 45 46 STATISTIC(NumLocalPromoted, "Number of alloca's promoted within one block"); 47 STATISTIC(NumSingleStore, "Number of alloca's promoted with a single store"); 48 STATISTIC(NumDeadAlloca, "Number of dead alloca's removed"); 49 STATISTIC(NumPHIInsert, "Number of PHI nodes inserted"); 50 51 bool llvm::isAllocaPromotable(const AllocaInst *AI) { 52 // FIXME: If the memory unit is of pointer or integer type, we can permit 53 // assignments to subsections of the memory unit. 54 unsigned AS = AI->getType()->getAddressSpace(); 55 56 // Only allow direct and non-volatile loads and stores... 57 for (const User *U : AI->users()) { 58 if (const LoadInst *LI = dyn_cast<LoadInst>(U)) { 59 // Note that atomic loads can be transformed; atomic semantics do 60 // not have any meaning for a local alloca. 61 if (LI->isVolatile()) 62 return false; 63 } else if (const StoreInst *SI = dyn_cast<StoreInst>(U)) { 64 if (SI->getOperand(0) == AI) 65 return false; // Don't allow a store OF the AI, only INTO the AI. 66 // Note that atomic stores can be transformed; atomic semantics do 67 // not have any meaning for a local alloca. 68 if (SI->isVolatile()) 69 return false; 70 } else if (const IntrinsicInst *II = dyn_cast<IntrinsicInst>(U)) { 71 if (II->getIntrinsicID() != Intrinsic::lifetime_start && 72 II->getIntrinsicID() != Intrinsic::lifetime_end) 73 return false; 74 } else if (const BitCastInst *BCI = dyn_cast<BitCastInst>(U)) { 75 if (BCI->getType() != Type::getInt8PtrTy(U->getContext(), AS)) 76 return false; 77 if (!onlyUsedByLifetimeMarkers(BCI)) 78 return false; 79 } else if (const GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(U)) { 80 if (GEPI->getType() != Type::getInt8PtrTy(U->getContext(), AS)) 81 return false; 82 if (!GEPI->hasAllZeroIndices()) 83 return false; 84 if (!onlyUsedByLifetimeMarkers(GEPI)) 85 return false; 86 } else { 87 return false; 88 } 89 } 90 91 return true; 92 } 93 94 namespace { 95 96 struct AllocaInfo { 97 SmallVector<BasicBlock *, 32> DefiningBlocks; 98 SmallVector<BasicBlock *, 32> UsingBlocks; 99 100 StoreInst *OnlyStore; 101 BasicBlock *OnlyBlock; 102 bool OnlyUsedInOneBlock; 103 104 Value *AllocaPointerVal; 105 DbgDeclareInst *DbgDeclare; 106 107 void clear() { 108 DefiningBlocks.clear(); 109 UsingBlocks.clear(); 110 OnlyStore = nullptr; 111 OnlyBlock = nullptr; 112 OnlyUsedInOneBlock = true; 113 AllocaPointerVal = nullptr; 114 DbgDeclare = nullptr; 115 } 116 117 /// Scan the uses of the specified alloca, filling in the AllocaInfo used 118 /// by the rest of the pass to reason about the uses of this alloca. 119 void AnalyzeAlloca(AllocaInst *AI) { 120 clear(); 121 122 // As we scan the uses of the alloca instruction, keep track of stores, 123 // and decide whether all of the loads and stores to the alloca are within 124 // the same basic block. 125 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { 126 Instruction *User = cast<Instruction>(*UI++); 127 128 if (StoreInst *SI = dyn_cast<StoreInst>(User)) { 129 // Remember the basic blocks which define new values for the alloca 130 DefiningBlocks.push_back(SI->getParent()); 131 AllocaPointerVal = SI->getOperand(0); 132 OnlyStore = SI; 133 } else { 134 LoadInst *LI = cast<LoadInst>(User); 135 // Otherwise it must be a load instruction, keep track of variable 136 // reads. 137 UsingBlocks.push_back(LI->getParent()); 138 AllocaPointerVal = LI; 139 } 140 141 if (OnlyUsedInOneBlock) { 142 if (!OnlyBlock) 143 OnlyBlock = User->getParent(); 144 else if (OnlyBlock != User->getParent()) 145 OnlyUsedInOneBlock = false; 146 } 147 } 148 149 DbgDeclare = FindAllocaDbgDeclare(AI); 150 } 151 }; 152 153 // Data package used by RenamePass() 154 class RenamePassData { 155 public: 156 typedef std::vector<Value *> ValVector; 157 158 RenamePassData() : BB(nullptr), Pred(nullptr), Values() {} 159 RenamePassData(BasicBlock *B, BasicBlock *P, const ValVector &V) 160 : BB(B), Pred(P), Values(V) {} 161 BasicBlock *BB; 162 BasicBlock *Pred; 163 ValVector Values; 164 165 void swap(RenamePassData &RHS) { 166 std::swap(BB, RHS.BB); 167 std::swap(Pred, RHS.Pred); 168 Values.swap(RHS.Values); 169 } 170 }; 171 172 /// \brief This assigns and keeps a per-bb relative ordering of load/store 173 /// instructions in the block that directly load or store an alloca. 174 /// 175 /// This functionality is important because it avoids scanning large basic 176 /// blocks multiple times when promoting many allocas in the same block. 177 class LargeBlockInfo { 178 /// \brief For each instruction that we track, keep the index of the 179 /// instruction. 180 /// 181 /// The index starts out as the number of the instruction from the start of 182 /// the block. 183 DenseMap<const Instruction *, unsigned> InstNumbers; 184 185 public: 186 187 /// This code only looks at accesses to allocas. 188 static bool isInterestingInstruction(const Instruction *I) { 189 return (isa<LoadInst>(I) && isa<AllocaInst>(I->getOperand(0))) || 190 (isa<StoreInst>(I) && isa<AllocaInst>(I->getOperand(1))); 191 } 192 193 /// Get or calculate the index of the specified instruction. 194 unsigned getInstructionIndex(const Instruction *I) { 195 assert(isInterestingInstruction(I) && 196 "Not a load/store to/from an alloca?"); 197 198 // If we already have this instruction number, return it. 199 DenseMap<const Instruction *, unsigned>::iterator It = InstNumbers.find(I); 200 if (It != InstNumbers.end()) 201 return It->second; 202 203 // Scan the whole block to get the instruction. This accumulates 204 // information for every interesting instruction in the block, in order to 205 // avoid gratuitus rescans. 206 const BasicBlock *BB = I->getParent(); 207 unsigned InstNo = 0; 208 for (BasicBlock::const_iterator BBI = BB->begin(), E = BB->end(); BBI != E; 209 ++BBI) 210 if (isInterestingInstruction(BBI)) 211 InstNumbers[BBI] = InstNo++; 212 It = InstNumbers.find(I); 213 214 assert(It != InstNumbers.end() && "Didn't insert instruction?"); 215 return It->second; 216 } 217 218 void deleteValue(const Instruction *I) { InstNumbers.erase(I); } 219 220 void clear() { InstNumbers.clear(); } 221 }; 222 223 struct PromoteMem2Reg { 224 /// The alloca instructions being promoted. 225 std::vector<AllocaInst *> Allocas; 226 DominatorTree &DT; 227 DIBuilder DIB; 228 229 /// An AliasSetTracker object to update. If null, don't update it. 230 AliasSetTracker *AST; 231 232 /// A cache of @llvm.assume intrinsics used by SimplifyInstruction. 233 AssumptionCache *AC; 234 235 /// Reverse mapping of Allocas. 236 DenseMap<AllocaInst *, unsigned> AllocaLookup; 237 238 /// \brief The PhiNodes we're adding. 239 /// 240 /// That map is used to simplify some Phi nodes as we iterate over it, so 241 /// it should have deterministic iterators. We could use a MapVector, but 242 /// since we already maintain a map from BasicBlock* to a stable numbering 243 /// (BBNumbers), the DenseMap is more efficient (also supports removal). 244 DenseMap<std::pair<unsigned, unsigned>, PHINode *> NewPhiNodes; 245 246 /// For each PHI node, keep track of which entry in Allocas it corresponds 247 /// to. 248 DenseMap<PHINode *, unsigned> PhiToAllocaMap; 249 250 /// If we are updating an AliasSetTracker, then for each alloca that is of 251 /// pointer type, we keep track of what to copyValue to the inserted PHI 252 /// nodes here. 253 std::vector<Value *> PointerAllocaValues; 254 255 /// For each alloca, we keep track of the dbg.declare intrinsic that 256 /// describes it, if any, so that we can convert it to a dbg.value 257 /// intrinsic if the alloca gets promoted. 258 SmallVector<DbgDeclareInst *, 8> AllocaDbgDeclares; 259 260 /// The set of basic blocks the renamer has already visited. 261 /// 262 SmallPtrSet<BasicBlock *, 16> Visited; 263 264 /// Contains a stable numbering of basic blocks to avoid non-determinstic 265 /// behavior. 266 DenseMap<BasicBlock *, unsigned> BBNumbers; 267 268 /// Lazily compute the number of predecessors a block has. 269 DenseMap<const BasicBlock *, unsigned> BBNumPreds; 270 271 public: 272 PromoteMem2Reg(ArrayRef<AllocaInst *> Allocas, DominatorTree &DT, 273 AliasSetTracker *AST, AssumptionCache *AC) 274 : Allocas(Allocas.begin(), Allocas.end()), DT(DT), 275 DIB(*DT.getRoot()->getParent()->getParent(), /*AllowUnresolved*/ false), 276 AST(AST), AC(AC) {} 277 278 void run(); 279 280 private: 281 void RemoveFromAllocasList(unsigned &AllocaIdx) { 282 Allocas[AllocaIdx] = Allocas.back(); 283 Allocas.pop_back(); 284 --AllocaIdx; 285 } 286 287 unsigned getNumPreds(const BasicBlock *BB) { 288 unsigned &NP = BBNumPreds[BB]; 289 if (NP == 0) 290 NP = std::distance(pred_begin(BB), pred_end(BB)) + 1; 291 return NP - 1; 292 } 293 294 void ComputeLiveInBlocks(AllocaInst *AI, AllocaInfo &Info, 295 const SmallPtrSetImpl<BasicBlock *> &DefBlocks, 296 SmallPtrSetImpl<BasicBlock *> &LiveInBlocks); 297 void RenamePass(BasicBlock *BB, BasicBlock *Pred, 298 RenamePassData::ValVector &IncVals, 299 std::vector<RenamePassData> &Worklist); 300 bool QueuePhiNode(BasicBlock *BB, unsigned AllocaIdx, unsigned &Version); 301 }; 302 303 } // end of anonymous namespace 304 305 static void removeLifetimeIntrinsicUsers(AllocaInst *AI) { 306 // Knowing that this alloca is promotable, we know that it's safe to kill all 307 // instructions except for load and store. 308 309 for (auto UI = AI->user_begin(), UE = AI->user_end(); UI != UE;) { 310 Instruction *I = cast<Instruction>(*UI); 311 ++UI; 312 if (isa<LoadInst>(I) || isa<StoreInst>(I)) 313 continue; 314 315 if (!I->getType()->isVoidTy()) { 316 // The only users of this bitcast/GEP instruction are lifetime intrinsics. 317 // Follow the use/def chain to erase them now instead of leaving it for 318 // dead code elimination later. 319 for (auto UUI = I->user_begin(), UUE = I->user_end(); UUI != UUE;) { 320 Instruction *Inst = cast<Instruction>(*UUI); 321 ++UUI; 322 Inst->eraseFromParent(); 323 } 324 } 325 I->eraseFromParent(); 326 } 327 } 328 329 /// \brief Rewrite as many loads as possible given a single store. 330 /// 331 /// When there is only a single store, we can use the domtree to trivially 332 /// replace all of the dominated loads with the stored value. Do so, and return 333 /// true if this has successfully promoted the alloca entirely. If this returns 334 /// false there were some loads which were not dominated by the single store 335 /// and thus must be phi-ed with undef. We fall back to the standard alloca 336 /// promotion algorithm in that case. 337 static bool rewriteSingleStoreAlloca(AllocaInst *AI, AllocaInfo &Info, 338 LargeBlockInfo &LBI, 339 DominatorTree &DT, 340 AliasSetTracker *AST) { 341 StoreInst *OnlyStore = Info.OnlyStore; 342 bool StoringGlobalVal = !isa<Instruction>(OnlyStore->getOperand(0)); 343 BasicBlock *StoreBB = OnlyStore->getParent(); 344 int StoreIndex = -1; 345 346 // Clear out UsingBlocks. We will reconstruct it here if needed. 347 Info.UsingBlocks.clear(); 348 349 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { 350 Instruction *UserInst = cast<Instruction>(*UI++); 351 if (!isa<LoadInst>(UserInst)) { 352 assert(UserInst == OnlyStore && "Should only have load/stores"); 353 continue; 354 } 355 LoadInst *LI = cast<LoadInst>(UserInst); 356 357 // Okay, if we have a load from the alloca, we want to replace it with the 358 // only value stored to the alloca. We can do this if the value is 359 // dominated by the store. If not, we use the rest of the mem2reg machinery 360 // to insert the phi nodes as needed. 361 if (!StoringGlobalVal) { // Non-instructions are always dominated. 362 if (LI->getParent() == StoreBB) { 363 // If we have a use that is in the same block as the store, compare the 364 // indices of the two instructions to see which one came first. If the 365 // load came before the store, we can't handle it. 366 if (StoreIndex == -1) 367 StoreIndex = LBI.getInstructionIndex(OnlyStore); 368 369 if (unsigned(StoreIndex) > LBI.getInstructionIndex(LI)) { 370 // Can't handle this load, bail out. 371 Info.UsingBlocks.push_back(StoreBB); 372 continue; 373 } 374 375 } else if (LI->getParent() != StoreBB && 376 !DT.dominates(StoreBB, LI->getParent())) { 377 // If the load and store are in different blocks, use BB dominance to 378 // check their relationships. If the store doesn't dom the use, bail 379 // out. 380 Info.UsingBlocks.push_back(LI->getParent()); 381 continue; 382 } 383 } 384 385 // Otherwise, we *can* safely rewrite this load. 386 Value *ReplVal = OnlyStore->getOperand(0); 387 // If the replacement value is the load, this must occur in unreachable 388 // code. 389 if (ReplVal == LI) 390 ReplVal = UndefValue::get(LI->getType()); 391 LI->replaceAllUsesWith(ReplVal); 392 if (AST && LI->getType()->isPointerTy()) 393 AST->deleteValue(LI); 394 LI->eraseFromParent(); 395 LBI.deleteValue(LI); 396 } 397 398 // Finally, after the scan, check to see if the store is all that is left. 399 if (!Info.UsingBlocks.empty()) 400 return false; // If not, we'll have to fall back for the remainder. 401 402 // Record debuginfo for the store and remove the declaration's 403 // debuginfo. 404 if (DbgDeclareInst *DDI = Info.DbgDeclare) { 405 DIBuilder DIB(*AI->getParent()->getParent()->getParent(), 406 /*AllowUnresolved*/ false); 407 ConvertDebugDeclareToDebugValue(DDI, Info.OnlyStore, DIB); 408 DDI->eraseFromParent(); 409 LBI.deleteValue(DDI); 410 } 411 // Remove the (now dead) store and alloca. 412 Info.OnlyStore->eraseFromParent(); 413 LBI.deleteValue(Info.OnlyStore); 414 415 if (AST) 416 AST->deleteValue(AI); 417 AI->eraseFromParent(); 418 LBI.deleteValue(AI); 419 return true; 420 } 421 422 /// Many allocas are only used within a single basic block. If this is the 423 /// case, avoid traversing the CFG and inserting a lot of potentially useless 424 /// PHI nodes by just performing a single linear pass over the basic block 425 /// using the Alloca. 426 /// 427 /// If we cannot promote this alloca (because it is read before it is written), 428 /// return false. This is necessary in cases where, due to control flow, the 429 /// alloca is undefined only on some control flow paths. e.g. code like 430 /// this is correct in LLVM IR: 431 /// // A is an alloca with no stores so far 432 /// for (...) { 433 /// int t = *A; 434 /// if (!first_iteration) 435 /// use(t); 436 /// *A = 42; 437 /// } 438 static bool promoteSingleBlockAlloca(AllocaInst *AI, const AllocaInfo &Info, 439 LargeBlockInfo &LBI, 440 AliasSetTracker *AST) { 441 // The trickiest case to handle is when we have large blocks. Because of this, 442 // this code is optimized assuming that large blocks happen. This does not 443 // significantly pessimize the small block case. This uses LargeBlockInfo to 444 // make it efficient to get the index of various operations in the block. 445 446 // Walk the use-def list of the alloca, getting the locations of all stores. 447 typedef SmallVector<std::pair<unsigned, StoreInst *>, 64> StoresByIndexTy; 448 StoresByIndexTy StoresByIndex; 449 450 for (User *U : AI->users()) 451 if (StoreInst *SI = dyn_cast<StoreInst>(U)) 452 StoresByIndex.push_back(std::make_pair(LBI.getInstructionIndex(SI), SI)); 453 454 // Sort the stores by their index, making it efficient to do a lookup with a 455 // binary search. 456 std::sort(StoresByIndex.begin(), StoresByIndex.end(), less_first()); 457 458 // Walk all of the loads from this alloca, replacing them with the nearest 459 // store above them, if any. 460 for (auto UI = AI->user_begin(), E = AI->user_end(); UI != E;) { 461 LoadInst *LI = dyn_cast<LoadInst>(*UI++); 462 if (!LI) 463 continue; 464 465 unsigned LoadIdx = LBI.getInstructionIndex(LI); 466 467 // Find the nearest store that has a lower index than this load. 468 StoresByIndexTy::iterator I = 469 std::lower_bound(StoresByIndex.begin(), StoresByIndex.end(), 470 std::make_pair(LoadIdx, 471 static_cast<StoreInst *>(nullptr)), 472 less_first()); 473 if (I == StoresByIndex.begin()) { 474 if (StoresByIndex.empty()) 475 // If there are no stores, the load takes the undef value. 476 LI->replaceAllUsesWith(UndefValue::get(LI->getType())); 477 else 478 // There is no store before this load, bail out (load may be affected 479 // by the following stores - see main comment). 480 return false; 481 } 482 else 483 // Otherwise, there was a store before this load, the load takes its value. 484 LI->replaceAllUsesWith(std::prev(I)->second->getOperand(0)); 485 486 if (AST && LI->getType()->isPointerTy()) 487 AST->deleteValue(LI); 488 LI->eraseFromParent(); 489 LBI.deleteValue(LI); 490 } 491 492 // Remove the (now dead) stores and alloca. 493 while (!AI->use_empty()) { 494 StoreInst *SI = cast<StoreInst>(AI->user_back()); 495 // Record debuginfo for the store before removing it. 496 if (DbgDeclareInst *DDI = Info.DbgDeclare) { 497 DIBuilder DIB(*AI->getParent()->getParent()->getParent(), 498 /*AllowUnresolved*/ false); 499 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); 500 } 501 SI->eraseFromParent(); 502 LBI.deleteValue(SI); 503 } 504 505 if (AST) 506 AST->deleteValue(AI); 507 AI->eraseFromParent(); 508 LBI.deleteValue(AI); 509 510 // The alloca's debuginfo can be removed as well. 511 if (DbgDeclareInst *DDI = Info.DbgDeclare) { 512 DDI->eraseFromParent(); 513 LBI.deleteValue(DDI); 514 } 515 516 ++NumLocalPromoted; 517 return true; 518 } 519 520 void PromoteMem2Reg::run() { 521 Function &F = *DT.getRoot()->getParent(); 522 523 if (AST) 524 PointerAllocaValues.resize(Allocas.size()); 525 AllocaDbgDeclares.resize(Allocas.size()); 526 527 AllocaInfo Info; 528 LargeBlockInfo LBI; 529 IDFCalculator IDF(DT); 530 531 for (unsigned AllocaNum = 0; AllocaNum != Allocas.size(); ++AllocaNum) { 532 AllocaInst *AI = Allocas[AllocaNum]; 533 534 assert(isAllocaPromotable(AI) && "Cannot promote non-promotable alloca!"); 535 assert(AI->getParent()->getParent() == &F && 536 "All allocas should be in the same function, which is same as DF!"); 537 538 removeLifetimeIntrinsicUsers(AI); 539 540 if (AI->use_empty()) { 541 // If there are no uses of the alloca, just delete it now. 542 if (AST) 543 AST->deleteValue(AI); 544 AI->eraseFromParent(); 545 546 // Remove the alloca from the Allocas list, since it has been processed 547 RemoveFromAllocasList(AllocaNum); 548 ++NumDeadAlloca; 549 continue; 550 } 551 552 // Calculate the set of read and write-locations for each alloca. This is 553 // analogous to finding the 'uses' and 'definitions' of each variable. 554 Info.AnalyzeAlloca(AI); 555 556 // If there is only a single store to this value, replace any loads of 557 // it that are directly dominated by the definition with the value stored. 558 if (Info.DefiningBlocks.size() == 1) { 559 if (rewriteSingleStoreAlloca(AI, Info, LBI, DT, AST)) { 560 // The alloca has been processed, move on. 561 RemoveFromAllocasList(AllocaNum); 562 ++NumSingleStore; 563 continue; 564 } 565 } 566 567 // If the alloca is only read and written in one basic block, just perform a 568 // linear sweep over the block to eliminate it. 569 if (Info.OnlyUsedInOneBlock && 570 promoteSingleBlockAlloca(AI, Info, LBI, AST)) { 571 // The alloca has been processed, move on. 572 RemoveFromAllocasList(AllocaNum); 573 continue; 574 } 575 576 // If we haven't computed a numbering for the BB's in the function, do so 577 // now. 578 if (BBNumbers.empty()) { 579 unsigned ID = 0; 580 for (auto &BB : F) 581 BBNumbers[&BB] = ID++; 582 } 583 584 // If we have an AST to keep updated, remember some pointer value that is 585 // stored into the alloca. 586 if (AST) 587 PointerAllocaValues[AllocaNum] = Info.AllocaPointerVal; 588 589 // Remember the dbg.declare intrinsic describing this alloca, if any. 590 if (Info.DbgDeclare) 591 AllocaDbgDeclares[AllocaNum] = Info.DbgDeclare; 592 593 // Keep the reverse mapping of the 'Allocas' array for the rename pass. 594 AllocaLookup[Allocas[AllocaNum]] = AllocaNum; 595 596 // At this point, we're committed to promoting the alloca using IDF's, and 597 // the standard SSA construction algorithm. Determine which blocks need PHI 598 // nodes and see if we can optimize out some work by avoiding insertion of 599 // dead phi nodes. 600 601 602 // Unique the set of defining blocks for efficient lookup. 603 SmallPtrSet<BasicBlock *, 32> DefBlocks; 604 DefBlocks.insert(Info.DefiningBlocks.begin(), Info.DefiningBlocks.end()); 605 606 // Determine which blocks the value is live in. These are blocks which lead 607 // to uses. 608 SmallPtrSet<BasicBlock *, 32> LiveInBlocks; 609 ComputeLiveInBlocks(AI, Info, DefBlocks, LiveInBlocks); 610 611 // At this point, we're committed to promoting the alloca using IDF's, and 612 // the standard SSA construction algorithm. Determine which blocks need phi 613 // nodes and see if we can optimize out some work by avoiding insertion of 614 // dead phi nodes. 615 IDF.setLiveInBlocks(LiveInBlocks); 616 IDF.setDefiningBlocks(DefBlocks); 617 SmallVector<BasicBlock *, 32> PHIBlocks; 618 IDF.calculate(PHIBlocks); 619 if (PHIBlocks.size() > 1) 620 std::sort(PHIBlocks.begin(), PHIBlocks.end(), 621 [this](BasicBlock *A, BasicBlock *B) { 622 return BBNumbers.lookup(A) < BBNumbers.lookup(B); 623 }); 624 625 unsigned CurrentVersion = 0; 626 for (unsigned i = 0, e = PHIBlocks.size(); i != e; ++i) 627 QueuePhiNode(PHIBlocks[i], AllocaNum, CurrentVersion); 628 } 629 630 if (Allocas.empty()) 631 return; // All of the allocas must have been trivial! 632 633 LBI.clear(); 634 635 // Set the incoming values for the basic block to be null values for all of 636 // the alloca's. We do this in case there is a load of a value that has not 637 // been stored yet. In this case, it will get this null value. 638 // 639 RenamePassData::ValVector Values(Allocas.size()); 640 for (unsigned i = 0, e = Allocas.size(); i != e; ++i) 641 Values[i] = UndefValue::get(Allocas[i]->getAllocatedType()); 642 643 // Walks all basic blocks in the function performing the SSA rename algorithm 644 // and inserting the phi nodes we marked as necessary 645 // 646 std::vector<RenamePassData> RenamePassWorkList; 647 RenamePassWorkList.emplace_back(F.begin(), nullptr, std::move(Values)); 648 do { 649 RenamePassData RPD; 650 RPD.swap(RenamePassWorkList.back()); 651 RenamePassWorkList.pop_back(); 652 // RenamePass may add new worklist entries. 653 RenamePass(RPD.BB, RPD.Pred, RPD.Values, RenamePassWorkList); 654 } while (!RenamePassWorkList.empty()); 655 656 // The renamer uses the Visited set to avoid infinite loops. Clear it now. 657 Visited.clear(); 658 659 // Remove the allocas themselves from the function. 660 for (unsigned i = 0, e = Allocas.size(); i != e; ++i) { 661 Instruction *A = Allocas[i]; 662 663 // If there are any uses of the alloca instructions left, they must be in 664 // unreachable basic blocks that were not processed by walking the dominator 665 // tree. Just delete the users now. 666 if (!A->use_empty()) 667 A->replaceAllUsesWith(UndefValue::get(A->getType())); 668 if (AST) 669 AST->deleteValue(A); 670 A->eraseFromParent(); 671 } 672 673 const DataLayout &DL = F.getParent()->getDataLayout(); 674 675 // Remove alloca's dbg.declare instrinsics from the function. 676 for (unsigned i = 0, e = AllocaDbgDeclares.size(); i != e; ++i) 677 if (DbgDeclareInst *DDI = AllocaDbgDeclares[i]) 678 DDI->eraseFromParent(); 679 680 // Loop over all of the PHI nodes and see if there are any that we can get 681 // rid of because they merge all of the same incoming values. This can 682 // happen due to undef values coming into the PHI nodes. This process is 683 // iterative, because eliminating one PHI node can cause others to be removed. 684 bool EliminatedAPHI = true; 685 while (EliminatedAPHI) { 686 EliminatedAPHI = false; 687 688 // Iterating over NewPhiNodes is deterministic, so it is safe to try to 689 // simplify and RAUW them as we go. If it was not, we could add uses to 690 // the values we replace with in a non-deterministic order, thus creating 691 // non-deterministic def->use chains. 692 for (DenseMap<std::pair<unsigned, unsigned>, PHINode *>::iterator 693 I = NewPhiNodes.begin(), 694 E = NewPhiNodes.end(); 695 I != E;) { 696 PHINode *PN = I->second; 697 698 // If this PHI node merges one value and/or undefs, get the value. 699 if (Value *V = SimplifyInstruction(PN, DL, nullptr, &DT, AC)) { 700 if (AST && PN->getType()->isPointerTy()) 701 AST->deleteValue(PN); 702 PN->replaceAllUsesWith(V); 703 PN->eraseFromParent(); 704 NewPhiNodes.erase(I++); 705 EliminatedAPHI = true; 706 continue; 707 } 708 ++I; 709 } 710 } 711 712 // At this point, the renamer has added entries to PHI nodes for all reachable 713 // code. Unfortunately, there may be unreachable blocks which the renamer 714 // hasn't traversed. If this is the case, the PHI nodes may not 715 // have incoming values for all predecessors. Loop over all PHI nodes we have 716 // created, inserting undef values if they are missing any incoming values. 717 // 718 for (DenseMap<std::pair<unsigned, unsigned>, PHINode *>::iterator 719 I = NewPhiNodes.begin(), 720 E = NewPhiNodes.end(); 721 I != E; ++I) { 722 // We want to do this once per basic block. As such, only process a block 723 // when we find the PHI that is the first entry in the block. 724 PHINode *SomePHI = I->second; 725 BasicBlock *BB = SomePHI->getParent(); 726 if (&BB->front() != SomePHI) 727 continue; 728 729 // Only do work here if there the PHI nodes are missing incoming values. We 730 // know that all PHI nodes that were inserted in a block will have the same 731 // number of incoming values, so we can just check any of them. 732 if (SomePHI->getNumIncomingValues() == getNumPreds(BB)) 733 continue; 734 735 // Get the preds for BB. 736 SmallVector<BasicBlock *, 16> Preds(pred_begin(BB), pred_end(BB)); 737 738 // Ok, now we know that all of the PHI nodes are missing entries for some 739 // basic blocks. Start by sorting the incoming predecessors for efficient 740 // access. 741 std::sort(Preds.begin(), Preds.end()); 742 743 // Now we loop through all BB's which have entries in SomePHI and remove 744 // them from the Preds list. 745 for (unsigned i = 0, e = SomePHI->getNumIncomingValues(); i != e; ++i) { 746 // Do a log(n) search of the Preds list for the entry we want. 747 SmallVectorImpl<BasicBlock *>::iterator EntIt = std::lower_bound( 748 Preds.begin(), Preds.end(), SomePHI->getIncomingBlock(i)); 749 assert(EntIt != Preds.end() && *EntIt == SomePHI->getIncomingBlock(i) && 750 "PHI node has entry for a block which is not a predecessor!"); 751 752 // Remove the entry 753 Preds.erase(EntIt); 754 } 755 756 // At this point, the blocks left in the preds list must have dummy 757 // entries inserted into every PHI nodes for the block. Update all the phi 758 // nodes in this block that we are inserting (there could be phis before 759 // mem2reg runs). 760 unsigned NumBadPreds = SomePHI->getNumIncomingValues(); 761 BasicBlock::iterator BBI = BB->begin(); 762 while ((SomePHI = dyn_cast<PHINode>(BBI++)) && 763 SomePHI->getNumIncomingValues() == NumBadPreds) { 764 Value *UndefVal = UndefValue::get(SomePHI->getType()); 765 for (unsigned pred = 0, e = Preds.size(); pred != e; ++pred) 766 SomePHI->addIncoming(UndefVal, Preds[pred]); 767 } 768 } 769 770 NewPhiNodes.clear(); 771 } 772 773 /// \brief Determine which blocks the value is live in. 774 /// 775 /// These are blocks which lead to uses. Knowing this allows us to avoid 776 /// inserting PHI nodes into blocks which don't lead to uses (thus, the 777 /// inserted phi nodes would be dead). 778 void PromoteMem2Reg::ComputeLiveInBlocks( 779 AllocaInst *AI, AllocaInfo &Info, 780 const SmallPtrSetImpl<BasicBlock *> &DefBlocks, 781 SmallPtrSetImpl<BasicBlock *> &LiveInBlocks) { 782 783 // To determine liveness, we must iterate through the predecessors of blocks 784 // where the def is live. Blocks are added to the worklist if we need to 785 // check their predecessors. Start with all the using blocks. 786 SmallVector<BasicBlock *, 64> LiveInBlockWorklist(Info.UsingBlocks.begin(), 787 Info.UsingBlocks.end()); 788 789 // If any of the using blocks is also a definition block, check to see if the 790 // definition occurs before or after the use. If it happens before the use, 791 // the value isn't really live-in. 792 for (unsigned i = 0, e = LiveInBlockWorklist.size(); i != e; ++i) { 793 BasicBlock *BB = LiveInBlockWorklist[i]; 794 if (!DefBlocks.count(BB)) 795 continue; 796 797 // Okay, this is a block that both uses and defines the value. If the first 798 // reference to the alloca is a def (store), then we know it isn't live-in. 799 for (BasicBlock::iterator I = BB->begin();; ++I) { 800 if (StoreInst *SI = dyn_cast<StoreInst>(I)) { 801 if (SI->getOperand(1) != AI) 802 continue; 803 804 // We found a store to the alloca before a load. The alloca is not 805 // actually live-in here. 806 LiveInBlockWorklist[i] = LiveInBlockWorklist.back(); 807 LiveInBlockWorklist.pop_back(); 808 --i, --e; 809 break; 810 } 811 812 if (LoadInst *LI = dyn_cast<LoadInst>(I)) { 813 if (LI->getOperand(0) != AI) 814 continue; 815 816 // Okay, we found a load before a store to the alloca. It is actually 817 // live into this block. 818 break; 819 } 820 } 821 } 822 823 // Now that we have a set of blocks where the phi is live-in, recursively add 824 // their predecessors until we find the full region the value is live. 825 while (!LiveInBlockWorklist.empty()) { 826 BasicBlock *BB = LiveInBlockWorklist.pop_back_val(); 827 828 // The block really is live in here, insert it into the set. If already in 829 // the set, then it has already been processed. 830 if (!LiveInBlocks.insert(BB).second) 831 continue; 832 833 // Since the value is live into BB, it is either defined in a predecessor or 834 // live into it to. Add the preds to the worklist unless they are a 835 // defining block. 836 for (pred_iterator PI = pred_begin(BB), E = pred_end(BB); PI != E; ++PI) { 837 BasicBlock *P = *PI; 838 839 // The value is not live into a predecessor if it defines the value. 840 if (DefBlocks.count(P)) 841 continue; 842 843 // Otherwise it is, add to the worklist. 844 LiveInBlockWorklist.push_back(P); 845 } 846 } 847 } 848 849 /// \brief Queue a phi-node to be added to a basic-block for a specific Alloca. 850 /// 851 /// Returns true if there wasn't already a phi-node for that variable 852 bool PromoteMem2Reg::QueuePhiNode(BasicBlock *BB, unsigned AllocaNo, 853 unsigned &Version) { 854 // Look up the basic-block in question. 855 PHINode *&PN = NewPhiNodes[std::make_pair(BBNumbers[BB], AllocaNo)]; 856 857 // If the BB already has a phi node added for the i'th alloca then we're done! 858 if (PN) 859 return false; 860 861 // Create a PhiNode using the dereferenced type... and add the phi-node to the 862 // BasicBlock. 863 PN = PHINode::Create(Allocas[AllocaNo]->getAllocatedType(), getNumPreds(BB), 864 Allocas[AllocaNo]->getName() + "." + Twine(Version++), 865 BB->begin()); 866 ++NumPHIInsert; 867 PhiToAllocaMap[PN] = AllocaNo; 868 869 if (AST && PN->getType()->isPointerTy()) 870 AST->copyValue(PointerAllocaValues[AllocaNo], PN); 871 872 return true; 873 } 874 875 /// \brief Recursively traverse the CFG of the function, renaming loads and 876 /// stores to the allocas which we are promoting. 877 /// 878 /// IncomingVals indicates what value each Alloca contains on exit from the 879 /// predecessor block Pred. 880 void PromoteMem2Reg::RenamePass(BasicBlock *BB, BasicBlock *Pred, 881 RenamePassData::ValVector &IncomingVals, 882 std::vector<RenamePassData> &Worklist) { 883 NextIteration: 884 // If we are inserting any phi nodes into this BB, they will already be in the 885 // block. 886 if (PHINode *APN = dyn_cast<PHINode>(BB->begin())) { 887 // If we have PHI nodes to update, compute the number of edges from Pred to 888 // BB. 889 if (PhiToAllocaMap.count(APN)) { 890 // We want to be able to distinguish between PHI nodes being inserted by 891 // this invocation of mem2reg from those phi nodes that already existed in 892 // the IR before mem2reg was run. We determine that APN is being inserted 893 // because it is missing incoming edges. All other PHI nodes being 894 // inserted by this pass of mem2reg will have the same number of incoming 895 // operands so far. Remember this count. 896 unsigned NewPHINumOperands = APN->getNumOperands(); 897 898 unsigned NumEdges = std::count(succ_begin(Pred), succ_end(Pred), BB); 899 assert(NumEdges && "Must be at least one edge from Pred to BB!"); 900 901 // Add entries for all the phis. 902 BasicBlock::iterator PNI = BB->begin(); 903 do { 904 unsigned AllocaNo = PhiToAllocaMap[APN]; 905 906 // Add N incoming values to the PHI node. 907 for (unsigned i = 0; i != NumEdges; ++i) 908 APN->addIncoming(IncomingVals[AllocaNo], Pred); 909 910 // The currently active variable for this block is now the PHI. 911 IncomingVals[AllocaNo] = APN; 912 913 // Get the next phi node. 914 ++PNI; 915 APN = dyn_cast<PHINode>(PNI); 916 if (!APN) 917 break; 918 919 // Verify that it is missing entries. If not, it is not being inserted 920 // by this mem2reg invocation so we want to ignore it. 921 } while (APN->getNumOperands() == NewPHINumOperands); 922 } 923 } 924 925 // Don't revisit blocks. 926 if (!Visited.insert(BB).second) 927 return; 928 929 for (BasicBlock::iterator II = BB->begin(); !isa<TerminatorInst>(II);) { 930 Instruction *I = II++; // get the instruction, increment iterator 931 932 if (LoadInst *LI = dyn_cast<LoadInst>(I)) { 933 AllocaInst *Src = dyn_cast<AllocaInst>(LI->getPointerOperand()); 934 if (!Src) 935 continue; 936 937 DenseMap<AllocaInst *, unsigned>::iterator AI = AllocaLookup.find(Src); 938 if (AI == AllocaLookup.end()) 939 continue; 940 941 Value *V = IncomingVals[AI->second]; 942 943 // Anything using the load now uses the current value. 944 LI->replaceAllUsesWith(V); 945 if (AST && LI->getType()->isPointerTy()) 946 AST->deleteValue(LI); 947 BB->getInstList().erase(LI); 948 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { 949 // Delete this instruction and mark the name as the current holder of the 950 // value 951 AllocaInst *Dest = dyn_cast<AllocaInst>(SI->getPointerOperand()); 952 if (!Dest) 953 continue; 954 955 DenseMap<AllocaInst *, unsigned>::iterator ai = AllocaLookup.find(Dest); 956 if (ai == AllocaLookup.end()) 957 continue; 958 959 // what value were we writing? 960 IncomingVals[ai->second] = SI->getOperand(0); 961 // Record debuginfo for the store before removing it. 962 if (DbgDeclareInst *DDI = AllocaDbgDeclares[ai->second]) 963 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); 964 BB->getInstList().erase(SI); 965 } 966 } 967 968 // 'Recurse' to our successors. 969 succ_iterator I = succ_begin(BB), E = succ_end(BB); 970 if (I == E) 971 return; 972 973 // Keep track of the successors so we don't visit the same successor twice 974 SmallPtrSet<BasicBlock *, 8> VisitedSuccs; 975 976 // Handle the first successor without using the worklist. 977 VisitedSuccs.insert(*I); 978 Pred = BB; 979 BB = *I; 980 ++I; 981 982 for (; I != E; ++I) 983 if (VisitedSuccs.insert(*I).second) 984 Worklist.emplace_back(*I, Pred, IncomingVals); 985 986 goto NextIteration; 987 } 988 989 void llvm::PromoteMemToReg(ArrayRef<AllocaInst *> Allocas, DominatorTree &DT, 990 AliasSetTracker *AST, AssumptionCache *AC) { 991 // If there is nothing to do, bail out... 992 if (Allocas.empty()) 993 return; 994 995 PromoteMem2Reg(Allocas, DT, AST, AC).run(); 996 } 997