1 //===- InstCombineLoadStoreAlloca.cpp -------------------------------------===// 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 implements the visit functions for load, store and alloca. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "InstCombineInternal.h" 15 #include "llvm/ADT/MapVector.h" 16 #include "llvm/ADT/SmallString.h" 17 #include "llvm/ADT/Statistic.h" 18 #include "llvm/Analysis/Loads.h" 19 #include "llvm/IR/ConstantRange.h" 20 #include "llvm/IR/DataLayout.h" 21 #include "llvm/IR/DebugInfo.h" 22 #include "llvm/IR/IntrinsicInst.h" 23 #include "llvm/IR/LLVMContext.h" 24 #include "llvm/IR/MDBuilder.h" 25 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 26 #include "llvm/Transforms/Utils/Local.h" 27 using namespace llvm; 28 29 #define DEBUG_TYPE "instcombine" 30 31 STATISTIC(NumDeadStore, "Number of dead stores eliminated"); 32 STATISTIC(NumGlobalCopies, "Number of allocas copied from constant global"); 33 34 /// pointsToConstantGlobal - Return true if V (possibly indirectly) points to 35 /// some part of a constant global variable. This intentionally only accepts 36 /// constant expressions because we can't rewrite arbitrary instructions. 37 static bool pointsToConstantGlobal(Value *V) { 38 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V)) 39 return GV->isConstant(); 40 41 if (ConstantExpr *CE = dyn_cast<ConstantExpr>(V)) { 42 if (CE->getOpcode() == Instruction::BitCast || 43 CE->getOpcode() == Instruction::AddrSpaceCast || 44 CE->getOpcode() == Instruction::GetElementPtr) 45 return pointsToConstantGlobal(CE->getOperand(0)); 46 } 47 return false; 48 } 49 50 /// isOnlyCopiedFromConstantGlobal - Recursively walk the uses of a (derived) 51 /// pointer to an alloca. Ignore any reads of the pointer, return false if we 52 /// see any stores or other unknown uses. If we see pointer arithmetic, keep 53 /// track of whether it moves the pointer (with IsOffset) but otherwise traverse 54 /// the uses. If we see a memcpy/memmove that targets an unoffseted pointer to 55 /// the alloca, and if the source pointer is a pointer to a constant global, we 56 /// can optimize this. 57 static bool 58 isOnlyCopiedFromConstantGlobal(Value *V, MemTransferInst *&TheCopy, 59 SmallVectorImpl<Instruction *> &ToDelete) { 60 // We track lifetime intrinsics as we encounter them. If we decide to go 61 // ahead and replace the value with the global, this lets the caller quickly 62 // eliminate the markers. 63 64 SmallVector<std::pair<Value *, bool>, 35> ValuesToInspect; 65 ValuesToInspect.emplace_back(V, false); 66 while (!ValuesToInspect.empty()) { 67 auto ValuePair = ValuesToInspect.pop_back_val(); 68 const bool IsOffset = ValuePair.second; 69 for (auto &U : ValuePair.first->uses()) { 70 auto *I = cast<Instruction>(U.getUser()); 71 72 if (auto *LI = dyn_cast<LoadInst>(I)) { 73 // Ignore non-volatile loads, they are always ok. 74 if (!LI->isSimple()) return false; 75 continue; 76 } 77 78 if (isa<BitCastInst>(I) || isa<AddrSpaceCastInst>(I)) { 79 // If uses of the bitcast are ok, we are ok. 80 ValuesToInspect.emplace_back(I, IsOffset); 81 continue; 82 } 83 if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) { 84 // If the GEP has all zero indices, it doesn't offset the pointer. If it 85 // doesn't, it does. 86 ValuesToInspect.emplace_back(I, IsOffset || !GEP->hasAllZeroIndices()); 87 continue; 88 } 89 90 if (auto CS = CallSite(I)) { 91 // If this is the function being called then we treat it like a load and 92 // ignore it. 93 if (CS.isCallee(&U)) 94 continue; 95 96 unsigned DataOpNo = CS.getDataOperandNo(&U); 97 bool IsArgOperand = CS.isArgOperand(&U); 98 99 // Inalloca arguments are clobbered by the call. 100 if (IsArgOperand && CS.isInAllocaArgument(DataOpNo)) 101 return false; 102 103 // If this is a readonly/readnone call site, then we know it is just a 104 // load (but one that potentially returns the value itself), so we can 105 // ignore it if we know that the value isn't captured. 106 if (CS.onlyReadsMemory() && 107 (CS.getInstruction()->use_empty() || CS.doesNotCapture(DataOpNo))) 108 continue; 109 110 // If this is being passed as a byval argument, the caller is making a 111 // copy, so it is only a read of the alloca. 112 if (IsArgOperand && CS.isByValArgument(DataOpNo)) 113 continue; 114 } 115 116 // Lifetime intrinsics can be handled by the caller. 117 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { 118 if (II->getIntrinsicID() == Intrinsic::lifetime_start || 119 II->getIntrinsicID() == Intrinsic::lifetime_end) { 120 assert(II->use_empty() && "Lifetime markers have no result to use!"); 121 ToDelete.push_back(II); 122 continue; 123 } 124 } 125 126 // If this is isn't our memcpy/memmove, reject it as something we can't 127 // handle. 128 MemTransferInst *MI = dyn_cast<MemTransferInst>(I); 129 if (!MI) 130 return false; 131 132 // If the transfer is using the alloca as a source of the transfer, then 133 // ignore it since it is a load (unless the transfer is volatile). 134 if (U.getOperandNo() == 1) { 135 if (MI->isVolatile()) return false; 136 continue; 137 } 138 139 // If we already have seen a copy, reject the second one. 140 if (TheCopy) return false; 141 142 // If the pointer has been offset from the start of the alloca, we can't 143 // safely handle this. 144 if (IsOffset) return false; 145 146 // If the memintrinsic isn't using the alloca as the dest, reject it. 147 if (U.getOperandNo() != 0) return false; 148 149 // If the source of the memcpy/move is not a constant global, reject it. 150 if (!pointsToConstantGlobal(MI->getSource())) 151 return false; 152 153 // Otherwise, the transform is safe. Remember the copy instruction. 154 TheCopy = MI; 155 } 156 } 157 return true; 158 } 159 160 /// isOnlyCopiedFromConstantGlobal - Return true if the specified alloca is only 161 /// modified by a copy from a constant global. If we can prove this, we can 162 /// replace any uses of the alloca with uses of the global directly. 163 static MemTransferInst * 164 isOnlyCopiedFromConstantGlobal(AllocaInst *AI, 165 SmallVectorImpl<Instruction *> &ToDelete) { 166 MemTransferInst *TheCopy = nullptr; 167 if (isOnlyCopiedFromConstantGlobal(AI, TheCopy, ToDelete)) 168 return TheCopy; 169 return nullptr; 170 } 171 172 static Instruction *simplifyAllocaArraySize(InstCombiner &IC, AllocaInst &AI) { 173 // Check for array size of 1 (scalar allocation). 174 if (!AI.isArrayAllocation()) { 175 // i32 1 is the canonical array size for scalar allocations. 176 if (AI.getArraySize()->getType()->isIntegerTy(32)) 177 return nullptr; 178 179 // Canonicalize it. 180 Value *V = IC.Builder->getInt32(1); 181 AI.setOperand(0, V); 182 return &AI; 183 } 184 185 // Convert: alloca Ty, C - where C is a constant != 1 into: alloca [C x Ty], 1 186 if (const ConstantInt *C = dyn_cast<ConstantInt>(AI.getArraySize())) { 187 Type *NewTy = ArrayType::get(AI.getAllocatedType(), C->getZExtValue()); 188 AllocaInst *New = IC.Builder->CreateAlloca(NewTy, nullptr, AI.getName()); 189 New->setAlignment(AI.getAlignment()); 190 191 // Scan to the end of the allocation instructions, to skip over a block of 192 // allocas if possible...also skip interleaved debug info 193 // 194 BasicBlock::iterator It(New); 195 while (isa<AllocaInst>(*It) || isa<DbgInfoIntrinsic>(*It)) 196 ++It; 197 198 // Now that I is pointing to the first non-allocation-inst in the block, 199 // insert our getelementptr instruction... 200 // 201 Type *IdxTy = IC.getDataLayout().getIntPtrType(AI.getType()); 202 Value *NullIdx = Constant::getNullValue(IdxTy); 203 Value *Idx[2] = {NullIdx, NullIdx}; 204 Instruction *GEP = 205 GetElementPtrInst::CreateInBounds(New, Idx, New->getName() + ".sub"); 206 IC.InsertNewInstBefore(GEP, *It); 207 208 // Now make everything use the getelementptr instead of the original 209 // allocation. 210 return IC.replaceInstUsesWith(AI, GEP); 211 } 212 213 if (isa<UndefValue>(AI.getArraySize())) 214 return IC.replaceInstUsesWith(AI, Constant::getNullValue(AI.getType())); 215 216 // Ensure that the alloca array size argument has type intptr_t, so that 217 // any casting is exposed early. 218 Type *IntPtrTy = IC.getDataLayout().getIntPtrType(AI.getType()); 219 if (AI.getArraySize()->getType() != IntPtrTy) { 220 Value *V = IC.Builder->CreateIntCast(AI.getArraySize(), IntPtrTy, false); 221 AI.setOperand(0, V); 222 return &AI; 223 } 224 225 return nullptr; 226 } 227 228 namespace { 229 // If I and V are pointers in different address space, it is not allowed to 230 // use replaceAllUsesWith since I and V have different types. A 231 // non-target-specific transformation should not use addrspacecast on V since 232 // the two address space may be disjoint depending on target. 233 // 234 // This class chases down uses of the old pointer until reaching the load 235 // instructions, then replaces the old pointer in the load instructions with 236 // the new pointer. If during the chasing it sees bitcast or GEP, it will 237 // create new bitcast or GEP with the new pointer and use them in the load 238 // instruction. 239 class PointerReplacer { 240 public: 241 PointerReplacer(InstCombiner &IC) : IC(IC) {} 242 void replacePointer(Instruction &I, Value *V); 243 244 private: 245 void findLoadAndReplace(Instruction &I); 246 void replace(Instruction *I); 247 Value *getReplacement(Value *I); 248 249 SmallVector<Instruction *, 4> Path; 250 MapVector<Value *, Value *> WorkMap; 251 InstCombiner &IC; 252 }; 253 } // end anonymous namespace 254 255 void PointerReplacer::findLoadAndReplace(Instruction &I) { 256 for (auto U : I.users()) { 257 auto *Inst = dyn_cast<Instruction>(&*U); 258 if (!Inst) 259 return; 260 DEBUG(dbgs() << "Found pointer user: " << *U << '\n'); 261 if (isa<LoadInst>(Inst)) { 262 for (auto P : Path) 263 replace(P); 264 replace(Inst); 265 } else if (isa<GetElementPtrInst>(Inst) || isa<BitCastInst>(Inst)) { 266 Path.push_back(Inst); 267 findLoadAndReplace(*Inst); 268 Path.pop_back(); 269 } else { 270 return; 271 } 272 } 273 } 274 275 Value *PointerReplacer::getReplacement(Value *V) { 276 auto Loc = WorkMap.find(V); 277 if (Loc != WorkMap.end()) 278 return Loc->second; 279 return nullptr; 280 } 281 282 void PointerReplacer::replace(Instruction *I) { 283 if (getReplacement(I)) 284 return; 285 286 if (auto *LT = dyn_cast<LoadInst>(I)) { 287 auto *V = getReplacement(LT->getPointerOperand()); 288 assert(V && "Operand not replaced"); 289 auto *NewI = new LoadInst(V); 290 NewI->takeName(LT); 291 IC.InsertNewInstWith(NewI, *LT); 292 IC.replaceInstUsesWith(*LT, NewI); 293 WorkMap[LT] = NewI; 294 } else if (auto *GEP = dyn_cast<GetElementPtrInst>(I)) { 295 auto *V = getReplacement(GEP->getPointerOperand()); 296 assert(V && "Operand not replaced"); 297 SmallVector<Value *, 8> Indices; 298 Indices.append(GEP->idx_begin(), GEP->idx_end()); 299 auto *NewI = GetElementPtrInst::Create( 300 V->getType()->getPointerElementType(), V, Indices); 301 IC.InsertNewInstWith(NewI, *GEP); 302 NewI->takeName(GEP); 303 WorkMap[GEP] = NewI; 304 } else if (auto *BC = dyn_cast<BitCastInst>(I)) { 305 auto *V = getReplacement(BC->getOperand(0)); 306 assert(V && "Operand not replaced"); 307 auto *NewT = PointerType::get(BC->getType()->getPointerElementType(), 308 V->getType()->getPointerAddressSpace()); 309 auto *NewI = new BitCastInst(V, NewT); 310 IC.InsertNewInstWith(NewI, *BC); 311 NewI->takeName(BC); 312 WorkMap[BC] = NewI; 313 } else { 314 llvm_unreachable("should never reach here"); 315 } 316 } 317 318 void PointerReplacer::replacePointer(Instruction &I, Value *V) { 319 #ifndef NDEBUG 320 auto *PT = cast<PointerType>(I.getType()); 321 auto *NT = cast<PointerType>(V->getType()); 322 assert(PT != NT && PT->getElementType() == NT->getElementType() && 323 "Invalid usage"); 324 #endif 325 WorkMap[&I] = V; 326 findLoadAndReplace(I); 327 } 328 329 Instruction *InstCombiner::visitAllocaInst(AllocaInst &AI) { 330 if (auto *I = simplifyAllocaArraySize(*this, AI)) 331 return I; 332 333 if (AI.getAllocatedType()->isSized()) { 334 // If the alignment is 0 (unspecified), assign it the preferred alignment. 335 if (AI.getAlignment() == 0) 336 AI.setAlignment(DL.getPrefTypeAlignment(AI.getAllocatedType())); 337 338 // Move all alloca's of zero byte objects to the entry block and merge them 339 // together. Note that we only do this for alloca's, because malloc should 340 // allocate and return a unique pointer, even for a zero byte allocation. 341 if (DL.getTypeAllocSize(AI.getAllocatedType()) == 0) { 342 // For a zero sized alloca there is no point in doing an array allocation. 343 // This is helpful if the array size is a complicated expression not used 344 // elsewhere. 345 if (AI.isArrayAllocation()) { 346 AI.setOperand(0, ConstantInt::get(AI.getArraySize()->getType(), 1)); 347 return &AI; 348 } 349 350 // Get the first instruction in the entry block. 351 BasicBlock &EntryBlock = AI.getParent()->getParent()->getEntryBlock(); 352 Instruction *FirstInst = EntryBlock.getFirstNonPHIOrDbg(); 353 if (FirstInst != &AI) { 354 // If the entry block doesn't start with a zero-size alloca then move 355 // this one to the start of the entry block. There is no problem with 356 // dominance as the array size was forced to a constant earlier already. 357 AllocaInst *EntryAI = dyn_cast<AllocaInst>(FirstInst); 358 if (!EntryAI || !EntryAI->getAllocatedType()->isSized() || 359 DL.getTypeAllocSize(EntryAI->getAllocatedType()) != 0) { 360 AI.moveBefore(FirstInst); 361 return &AI; 362 } 363 364 // If the alignment of the entry block alloca is 0 (unspecified), 365 // assign it the preferred alignment. 366 if (EntryAI->getAlignment() == 0) 367 EntryAI->setAlignment( 368 DL.getPrefTypeAlignment(EntryAI->getAllocatedType())); 369 // Replace this zero-sized alloca with the one at the start of the entry 370 // block after ensuring that the address will be aligned enough for both 371 // types. 372 unsigned MaxAlign = std::max(EntryAI->getAlignment(), 373 AI.getAlignment()); 374 EntryAI->setAlignment(MaxAlign); 375 if (AI.getType() != EntryAI->getType()) 376 return new BitCastInst(EntryAI, AI.getType()); 377 return replaceInstUsesWith(AI, EntryAI); 378 } 379 } 380 } 381 382 if (AI.getAlignment()) { 383 // Check to see if this allocation is only modified by a memcpy/memmove from 384 // a constant global whose alignment is equal to or exceeds that of the 385 // allocation. If this is the case, we can change all users to use 386 // the constant global instead. This is commonly produced by the CFE by 387 // constructs like "void foo() { int A[] = {1,2,3,4,5,6,7,8,9...}; }" if 'A' 388 // is only subsequently read. 389 SmallVector<Instruction *, 4> ToDelete; 390 if (MemTransferInst *Copy = isOnlyCopiedFromConstantGlobal(&AI, ToDelete)) { 391 unsigned SourceAlign = getOrEnforceKnownAlignment( 392 Copy->getSource(), AI.getAlignment(), DL, &AI, &AC, &DT); 393 if (AI.getAlignment() <= SourceAlign) { 394 DEBUG(dbgs() << "Found alloca equal to global: " << AI << '\n'); 395 DEBUG(dbgs() << " memcpy = " << *Copy << '\n'); 396 for (unsigned i = 0, e = ToDelete.size(); i != e; ++i) 397 eraseInstFromFunction(*ToDelete[i]); 398 Constant *TheSrc = cast<Constant>(Copy->getSource()); 399 auto *SrcTy = TheSrc->getType(); 400 auto *DestTy = PointerType::get(AI.getType()->getPointerElementType(), 401 SrcTy->getPointerAddressSpace()); 402 Constant *Cast = 403 ConstantExpr::getPointerBitCastOrAddrSpaceCast(TheSrc, DestTy); 404 if (AI.getType()->getPointerAddressSpace() == 405 SrcTy->getPointerAddressSpace()) { 406 Instruction *NewI = replaceInstUsesWith(AI, Cast); 407 eraseInstFromFunction(*Copy); 408 ++NumGlobalCopies; 409 return NewI; 410 } else { 411 PointerReplacer PtrReplacer(*this); 412 PtrReplacer.replacePointer(AI, Cast); 413 ++NumGlobalCopies; 414 } 415 } 416 } 417 } 418 419 // At last, use the generic allocation site handler to aggressively remove 420 // unused allocas. 421 return visitAllocSite(AI); 422 } 423 424 // Are we allowed to form a atomic load or store of this type? 425 static bool isSupportedAtomicType(Type *Ty) { 426 return Ty->isIntegerTy() || Ty->isPointerTy() || Ty->isFloatingPointTy(); 427 } 428 429 /// \brief Helper to combine a load to a new type. 430 /// 431 /// This just does the work of combining a load to a new type. It handles 432 /// metadata, etc., and returns the new instruction. The \c NewTy should be the 433 /// loaded *value* type. This will convert it to a pointer, cast the operand to 434 /// that pointer type, load it, etc. 435 /// 436 /// Note that this will create all of the instructions with whatever insert 437 /// point the \c InstCombiner currently is using. 438 static LoadInst *combineLoadToNewType(InstCombiner &IC, LoadInst &LI, Type *NewTy, 439 const Twine &Suffix = "") { 440 assert((!LI.isAtomic() || isSupportedAtomicType(NewTy)) && 441 "can't fold an atomic load to requested type"); 442 443 Value *Ptr = LI.getPointerOperand(); 444 unsigned AS = LI.getPointerAddressSpace(); 445 SmallVector<std::pair<unsigned, MDNode *>, 8> MD; 446 LI.getAllMetadata(MD); 447 448 LoadInst *NewLoad = IC.Builder->CreateAlignedLoad( 449 IC.Builder->CreateBitCast(Ptr, NewTy->getPointerTo(AS)), 450 LI.getAlignment(), LI.isVolatile(), LI.getName() + Suffix); 451 NewLoad->setAtomic(LI.getOrdering(), LI.getSynchScope()); 452 MDBuilder MDB(NewLoad->getContext()); 453 for (const auto &MDPair : MD) { 454 unsigned ID = MDPair.first; 455 MDNode *N = MDPair.second; 456 // Note, essentially every kind of metadata should be preserved here! This 457 // routine is supposed to clone a load instruction changing *only its type*. 458 // The only metadata it makes sense to drop is metadata which is invalidated 459 // when the pointer type changes. This should essentially never be the case 460 // in LLVM, but we explicitly switch over only known metadata to be 461 // conservatively correct. If you are adding metadata to LLVM which pertains 462 // to loads, you almost certainly want to add it here. 463 switch (ID) { 464 case LLVMContext::MD_dbg: 465 case LLVMContext::MD_tbaa: 466 case LLVMContext::MD_prof: 467 case LLVMContext::MD_fpmath: 468 case LLVMContext::MD_tbaa_struct: 469 case LLVMContext::MD_invariant_load: 470 case LLVMContext::MD_alias_scope: 471 case LLVMContext::MD_noalias: 472 case LLVMContext::MD_nontemporal: 473 case LLVMContext::MD_mem_parallel_loop_access: 474 // All of these directly apply. 475 NewLoad->setMetadata(ID, N); 476 break; 477 478 case LLVMContext::MD_nonnull: 479 // This only directly applies if the new type is also a pointer. 480 if (NewTy->isPointerTy()) { 481 NewLoad->setMetadata(ID, N); 482 break; 483 } 484 // If it's integral now, translate it to !range metadata. 485 if (NewTy->isIntegerTy()) { 486 auto *ITy = cast<IntegerType>(NewTy); 487 auto *NullInt = ConstantExpr::getPtrToInt( 488 ConstantPointerNull::get(cast<PointerType>(Ptr->getType())), ITy); 489 auto *NonNullInt = 490 ConstantExpr::getAdd(NullInt, ConstantInt::get(ITy, 1)); 491 NewLoad->setMetadata(LLVMContext::MD_range, 492 MDB.createRange(NonNullInt, NullInt)); 493 } 494 break; 495 case LLVMContext::MD_align: 496 case LLVMContext::MD_dereferenceable: 497 case LLVMContext::MD_dereferenceable_or_null: 498 // These only directly apply if the new type is also a pointer. 499 if (NewTy->isPointerTy()) 500 NewLoad->setMetadata(ID, N); 501 break; 502 case LLVMContext::MD_range: 503 // FIXME: It would be nice to propagate this in some way, but the type 504 // conversions make it hard. 505 506 // If it's a pointer now and the range does not contain 0, make it !nonnull. 507 if (NewTy->isPointerTy()) { 508 unsigned BitWidth = IC.getDataLayout().getTypeSizeInBits(NewTy); 509 if (!getConstantRangeFromMetadata(*N).contains(APInt(BitWidth, 0))) { 510 MDNode *NN = MDNode::get(LI.getContext(), None); 511 NewLoad->setMetadata(LLVMContext::MD_nonnull, NN); 512 } 513 } 514 break; 515 } 516 } 517 return NewLoad; 518 } 519 520 /// \brief Combine a store to a new type. 521 /// 522 /// Returns the newly created store instruction. 523 static StoreInst *combineStoreToNewValue(InstCombiner &IC, StoreInst &SI, Value *V) { 524 assert((!SI.isAtomic() || isSupportedAtomicType(V->getType())) && 525 "can't fold an atomic store of requested type"); 526 527 Value *Ptr = SI.getPointerOperand(); 528 unsigned AS = SI.getPointerAddressSpace(); 529 SmallVector<std::pair<unsigned, MDNode *>, 8> MD; 530 SI.getAllMetadata(MD); 531 532 StoreInst *NewStore = IC.Builder->CreateAlignedStore( 533 V, IC.Builder->CreateBitCast(Ptr, V->getType()->getPointerTo(AS)), 534 SI.getAlignment(), SI.isVolatile()); 535 NewStore->setAtomic(SI.getOrdering(), SI.getSynchScope()); 536 for (const auto &MDPair : MD) { 537 unsigned ID = MDPair.first; 538 MDNode *N = MDPair.second; 539 // Note, essentially every kind of metadata should be preserved here! This 540 // routine is supposed to clone a store instruction changing *only its 541 // type*. The only metadata it makes sense to drop is metadata which is 542 // invalidated when the pointer type changes. This should essentially 543 // never be the case in LLVM, but we explicitly switch over only known 544 // metadata to be conservatively correct. If you are adding metadata to 545 // LLVM which pertains to stores, you almost certainly want to add it 546 // here. 547 switch (ID) { 548 case LLVMContext::MD_dbg: 549 case LLVMContext::MD_tbaa: 550 case LLVMContext::MD_prof: 551 case LLVMContext::MD_fpmath: 552 case LLVMContext::MD_tbaa_struct: 553 case LLVMContext::MD_alias_scope: 554 case LLVMContext::MD_noalias: 555 case LLVMContext::MD_nontemporal: 556 case LLVMContext::MD_mem_parallel_loop_access: 557 // All of these directly apply. 558 NewStore->setMetadata(ID, N); 559 break; 560 561 case LLVMContext::MD_invariant_load: 562 case LLVMContext::MD_nonnull: 563 case LLVMContext::MD_range: 564 case LLVMContext::MD_align: 565 case LLVMContext::MD_dereferenceable: 566 case LLVMContext::MD_dereferenceable_or_null: 567 // These don't apply for stores. 568 break; 569 } 570 } 571 572 return NewStore; 573 } 574 575 /// \brief Combine loads to match the type of their uses' value after looking 576 /// through intervening bitcasts. 577 /// 578 /// The core idea here is that if the result of a load is used in an operation, 579 /// we should load the type most conducive to that operation. For example, when 580 /// loading an integer and converting that immediately to a pointer, we should 581 /// instead directly load a pointer. 582 /// 583 /// However, this routine must never change the width of a load or the number of 584 /// loads as that would introduce a semantic change. This combine is expected to 585 /// be a semantic no-op which just allows loads to more closely model the types 586 /// of their consuming operations. 587 /// 588 /// Currently, we also refuse to change the precise type used for an atomic load 589 /// or a volatile load. This is debatable, and might be reasonable to change 590 /// later. However, it is risky in case some backend or other part of LLVM is 591 /// relying on the exact type loaded to select appropriate atomic operations. 592 static Instruction *combineLoadToOperationType(InstCombiner &IC, LoadInst &LI) { 593 // FIXME: We could probably with some care handle both volatile and ordered 594 // atomic loads here but it isn't clear that this is important. 595 if (!LI.isUnordered()) 596 return nullptr; 597 598 if (LI.use_empty()) 599 return nullptr; 600 601 // swifterror values can't be bitcasted. 602 if (LI.getPointerOperand()->isSwiftError()) 603 return nullptr; 604 605 Type *Ty = LI.getType(); 606 const DataLayout &DL = IC.getDataLayout(); 607 608 // Try to canonicalize loads which are only ever stored to operate over 609 // integers instead of any other type. We only do this when the loaded type 610 // is sized and has a size exactly the same as its store size and the store 611 // size is a legal integer type. 612 if (!Ty->isIntegerTy() && Ty->isSized() && 613 DL.isLegalInteger(DL.getTypeStoreSizeInBits(Ty)) && 614 DL.getTypeStoreSizeInBits(Ty) == DL.getTypeSizeInBits(Ty) && 615 !DL.isNonIntegralPointerType(Ty)) { 616 if (all_of(LI.users(), [&LI](User *U) { 617 auto *SI = dyn_cast<StoreInst>(U); 618 return SI && SI->getPointerOperand() != &LI && 619 !SI->getPointerOperand()->isSwiftError(); 620 })) { 621 LoadInst *NewLoad = combineLoadToNewType( 622 IC, LI, 623 Type::getIntNTy(LI.getContext(), DL.getTypeStoreSizeInBits(Ty))); 624 // Replace all the stores with stores of the newly loaded value. 625 for (auto UI = LI.user_begin(), UE = LI.user_end(); UI != UE;) { 626 auto *SI = cast<StoreInst>(*UI++); 627 IC.Builder->SetInsertPoint(SI); 628 combineStoreToNewValue(IC, *SI, NewLoad); 629 IC.eraseInstFromFunction(*SI); 630 } 631 assert(LI.use_empty() && "Failed to remove all users of the load!"); 632 // Return the old load so the combiner can delete it safely. 633 return &LI; 634 } 635 } 636 637 // Fold away bit casts of the loaded value by loading the desired type. 638 // We can do this for BitCastInsts as well as casts from and to pointer types, 639 // as long as those are noops (i.e., the source or dest type have the same 640 // bitwidth as the target's pointers). 641 if (LI.hasOneUse()) 642 if (auto* CI = dyn_cast<CastInst>(LI.user_back())) 643 if (CI->isNoopCast(DL)) 644 if (!LI.isAtomic() || isSupportedAtomicType(CI->getDestTy())) { 645 LoadInst *NewLoad = combineLoadToNewType(IC, LI, CI->getDestTy()); 646 CI->replaceAllUsesWith(NewLoad); 647 IC.eraseInstFromFunction(*CI); 648 return &LI; 649 } 650 651 // FIXME: We should also canonicalize loads of vectors when their elements are 652 // cast to other types. 653 return nullptr; 654 } 655 656 static Instruction *unpackLoadToAggregate(InstCombiner &IC, LoadInst &LI) { 657 // FIXME: We could probably with some care handle both volatile and atomic 658 // stores here but it isn't clear that this is important. 659 if (!LI.isSimple()) 660 return nullptr; 661 662 Type *T = LI.getType(); 663 if (!T->isAggregateType()) 664 return nullptr; 665 666 StringRef Name = LI.getName(); 667 assert(LI.getAlignment() && "Alignment must be set at this point"); 668 669 if (auto *ST = dyn_cast<StructType>(T)) { 670 // If the struct only have one element, we unpack. 671 auto NumElements = ST->getNumElements(); 672 if (NumElements == 1) { 673 LoadInst *NewLoad = combineLoadToNewType(IC, LI, ST->getTypeAtIndex(0U), 674 ".unpack"); 675 return IC.replaceInstUsesWith(LI, IC.Builder->CreateInsertValue( 676 UndefValue::get(T), NewLoad, 0, Name)); 677 } 678 679 // We don't want to break loads with padding here as we'd loose 680 // the knowledge that padding exists for the rest of the pipeline. 681 const DataLayout &DL = IC.getDataLayout(); 682 auto *SL = DL.getStructLayout(ST); 683 if (SL->hasPadding()) 684 return nullptr; 685 686 auto Align = LI.getAlignment(); 687 if (!Align) 688 Align = DL.getABITypeAlignment(ST); 689 690 auto *Addr = LI.getPointerOperand(); 691 auto *IdxType = Type::getInt32Ty(T->getContext()); 692 auto *Zero = ConstantInt::get(IdxType, 0); 693 694 Value *V = UndefValue::get(T); 695 for (unsigned i = 0; i < NumElements; i++) { 696 Value *Indices[2] = { 697 Zero, 698 ConstantInt::get(IdxType, i), 699 }; 700 auto *Ptr = IC.Builder->CreateInBoundsGEP(ST, Addr, makeArrayRef(Indices), 701 Name + ".elt"); 702 auto EltAlign = MinAlign(Align, SL->getElementOffset(i)); 703 auto *L = IC.Builder->CreateAlignedLoad(Ptr, EltAlign, Name + ".unpack"); 704 V = IC.Builder->CreateInsertValue(V, L, i); 705 } 706 707 V->setName(Name); 708 return IC.replaceInstUsesWith(LI, V); 709 } 710 711 if (auto *AT = dyn_cast<ArrayType>(T)) { 712 auto *ET = AT->getElementType(); 713 auto NumElements = AT->getNumElements(); 714 if (NumElements == 1) { 715 LoadInst *NewLoad = combineLoadToNewType(IC, LI, ET, ".unpack"); 716 return IC.replaceInstUsesWith(LI, IC.Builder->CreateInsertValue( 717 UndefValue::get(T), NewLoad, 0, Name)); 718 } 719 720 // Bail out if the array is too large. Ideally we would like to optimize 721 // arrays of arbitrary size but this has a terrible impact on compile time. 722 // The threshold here is chosen arbitrarily, maybe needs a little bit of 723 // tuning. 724 if (NumElements > IC.MaxArraySizeForCombine) 725 return nullptr; 726 727 const DataLayout &DL = IC.getDataLayout(); 728 auto EltSize = DL.getTypeAllocSize(ET); 729 auto Align = LI.getAlignment(); 730 if (!Align) 731 Align = DL.getABITypeAlignment(T); 732 733 auto *Addr = LI.getPointerOperand(); 734 auto *IdxType = Type::getInt64Ty(T->getContext()); 735 auto *Zero = ConstantInt::get(IdxType, 0); 736 737 Value *V = UndefValue::get(T); 738 uint64_t Offset = 0; 739 for (uint64_t i = 0; i < NumElements; i++) { 740 Value *Indices[2] = { 741 Zero, 742 ConstantInt::get(IdxType, i), 743 }; 744 auto *Ptr = IC.Builder->CreateInBoundsGEP(AT, Addr, makeArrayRef(Indices), 745 Name + ".elt"); 746 auto *L = IC.Builder->CreateAlignedLoad(Ptr, MinAlign(Align, Offset), 747 Name + ".unpack"); 748 V = IC.Builder->CreateInsertValue(V, L, i); 749 Offset += EltSize; 750 } 751 752 V->setName(Name); 753 return IC.replaceInstUsesWith(LI, V); 754 } 755 756 return nullptr; 757 } 758 759 // If we can determine that all possible objects pointed to by the provided 760 // pointer value are, not only dereferenceable, but also definitively less than 761 // or equal to the provided maximum size, then return true. Otherwise, return 762 // false (constant global values and allocas fall into this category). 763 // 764 // FIXME: This should probably live in ValueTracking (or similar). 765 static bool isObjectSizeLessThanOrEq(Value *V, uint64_t MaxSize, 766 const DataLayout &DL) { 767 SmallPtrSet<Value *, 4> Visited; 768 SmallVector<Value *, 4> Worklist(1, V); 769 770 do { 771 Value *P = Worklist.pop_back_val(); 772 P = P->stripPointerCasts(); 773 774 if (!Visited.insert(P).second) 775 continue; 776 777 if (SelectInst *SI = dyn_cast<SelectInst>(P)) { 778 Worklist.push_back(SI->getTrueValue()); 779 Worklist.push_back(SI->getFalseValue()); 780 continue; 781 } 782 783 if (PHINode *PN = dyn_cast<PHINode>(P)) { 784 for (Value *IncValue : PN->incoming_values()) 785 Worklist.push_back(IncValue); 786 continue; 787 } 788 789 if (GlobalAlias *GA = dyn_cast<GlobalAlias>(P)) { 790 if (GA->isInterposable()) 791 return false; 792 Worklist.push_back(GA->getAliasee()); 793 continue; 794 } 795 796 // If we know how big this object is, and it is less than MaxSize, continue 797 // searching. Otherwise, return false. 798 if (AllocaInst *AI = dyn_cast<AllocaInst>(P)) { 799 if (!AI->getAllocatedType()->isSized()) 800 return false; 801 802 ConstantInt *CS = dyn_cast<ConstantInt>(AI->getArraySize()); 803 if (!CS) 804 return false; 805 806 uint64_t TypeSize = DL.getTypeAllocSize(AI->getAllocatedType()); 807 // Make sure that, even if the multiplication below would wrap as an 808 // uint64_t, we still do the right thing. 809 if ((CS->getValue().zextOrSelf(128)*APInt(128, TypeSize)).ugt(MaxSize)) 810 return false; 811 continue; 812 } 813 814 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(P)) { 815 if (!GV->hasDefinitiveInitializer() || !GV->isConstant()) 816 return false; 817 818 uint64_t InitSize = DL.getTypeAllocSize(GV->getValueType()); 819 if (InitSize > MaxSize) 820 return false; 821 continue; 822 } 823 824 return false; 825 } while (!Worklist.empty()); 826 827 return true; 828 } 829 830 // If we're indexing into an object of a known size, and the outer index is 831 // not a constant, but having any value but zero would lead to undefined 832 // behavior, replace it with zero. 833 // 834 // For example, if we have: 835 // @f.a = private unnamed_addr constant [1 x i32] [i32 12], align 4 836 // ... 837 // %arrayidx = getelementptr inbounds [1 x i32]* @f.a, i64 0, i64 %x 838 // ... = load i32* %arrayidx, align 4 839 // Then we know that we can replace %x in the GEP with i64 0. 840 // 841 // FIXME: We could fold any GEP index to zero that would cause UB if it were 842 // not zero. Currently, we only handle the first such index. Also, we could 843 // also search through non-zero constant indices if we kept track of the 844 // offsets those indices implied. 845 static bool canReplaceGEPIdxWithZero(InstCombiner &IC, GetElementPtrInst *GEPI, 846 Instruction *MemI, unsigned &Idx) { 847 if (GEPI->getNumOperands() < 2) 848 return false; 849 850 // Find the first non-zero index of a GEP. If all indices are zero, return 851 // one past the last index. 852 auto FirstNZIdx = [](const GetElementPtrInst *GEPI) { 853 unsigned I = 1; 854 for (unsigned IE = GEPI->getNumOperands(); I != IE; ++I) { 855 Value *V = GEPI->getOperand(I); 856 if (const ConstantInt *CI = dyn_cast<ConstantInt>(V)) 857 if (CI->isZero()) 858 continue; 859 860 break; 861 } 862 863 return I; 864 }; 865 866 // Skip through initial 'zero' indices, and find the corresponding pointer 867 // type. See if the next index is not a constant. 868 Idx = FirstNZIdx(GEPI); 869 if (Idx == GEPI->getNumOperands()) 870 return false; 871 if (isa<Constant>(GEPI->getOperand(Idx))) 872 return false; 873 874 SmallVector<Value *, 4> Ops(GEPI->idx_begin(), GEPI->idx_begin() + Idx); 875 Type *AllocTy = 876 GetElementPtrInst::getIndexedType(GEPI->getSourceElementType(), Ops); 877 if (!AllocTy || !AllocTy->isSized()) 878 return false; 879 const DataLayout &DL = IC.getDataLayout(); 880 uint64_t TyAllocSize = DL.getTypeAllocSize(AllocTy); 881 882 // If there are more indices after the one we might replace with a zero, make 883 // sure they're all non-negative. If any of them are negative, the overall 884 // address being computed might be before the base address determined by the 885 // first non-zero index. 886 auto IsAllNonNegative = [&]() { 887 for (unsigned i = Idx+1, e = GEPI->getNumOperands(); i != e; ++i) { 888 bool KnownNonNegative, KnownNegative; 889 IC.ComputeSignBit(GEPI->getOperand(i), KnownNonNegative, 890 KnownNegative, 0, MemI); 891 if (KnownNonNegative) 892 continue; 893 return false; 894 } 895 896 return true; 897 }; 898 899 // FIXME: If the GEP is not inbounds, and there are extra indices after the 900 // one we'll replace, those could cause the address computation to wrap 901 // (rendering the IsAllNonNegative() check below insufficient). We can do 902 // better, ignoring zero indices (and other indices we can prove small 903 // enough not to wrap). 904 if (Idx+1 != GEPI->getNumOperands() && !GEPI->isInBounds()) 905 return false; 906 907 // Note that isObjectSizeLessThanOrEq will return true only if the pointer is 908 // also known to be dereferenceable. 909 return isObjectSizeLessThanOrEq(GEPI->getOperand(0), TyAllocSize, DL) && 910 IsAllNonNegative(); 911 } 912 913 // If we're indexing into an object with a variable index for the memory 914 // access, but the object has only one element, we can assume that the index 915 // will always be zero. If we replace the GEP, return it. 916 template <typename T> 917 static Instruction *replaceGEPIdxWithZero(InstCombiner &IC, Value *Ptr, 918 T &MemI) { 919 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Ptr)) { 920 unsigned Idx; 921 if (canReplaceGEPIdxWithZero(IC, GEPI, &MemI, Idx)) { 922 Instruction *NewGEPI = GEPI->clone(); 923 NewGEPI->setOperand(Idx, 924 ConstantInt::get(GEPI->getOperand(Idx)->getType(), 0)); 925 NewGEPI->insertBefore(GEPI); 926 MemI.setOperand(MemI.getPointerOperandIndex(), NewGEPI); 927 return NewGEPI; 928 } 929 } 930 931 return nullptr; 932 } 933 934 static bool canSimplifyNullLoadOrGEP(LoadInst &LI, Value *Op) { 935 if (GetElementPtrInst *GEPI = dyn_cast<GetElementPtrInst>(Op)) { 936 const Value *GEPI0 = GEPI->getOperand(0); 937 if (isa<ConstantPointerNull>(GEPI0) && GEPI->getPointerAddressSpace() == 0) 938 return true; 939 } 940 if (isa<UndefValue>(Op) || 941 (isa<ConstantPointerNull>(Op) && LI.getPointerAddressSpace() == 0)) 942 return true; 943 return false; 944 } 945 946 Instruction *InstCombiner::visitLoadInst(LoadInst &LI) { 947 Value *Op = LI.getOperand(0); 948 949 // Try to canonicalize the loaded type. 950 if (Instruction *Res = combineLoadToOperationType(*this, LI)) 951 return Res; 952 953 // Attempt to improve the alignment. 954 unsigned KnownAlign = getOrEnforceKnownAlignment( 955 Op, DL.getPrefTypeAlignment(LI.getType()), DL, &LI, &AC, &DT); 956 unsigned LoadAlign = LI.getAlignment(); 957 unsigned EffectiveLoadAlign = 958 LoadAlign != 0 ? LoadAlign : DL.getABITypeAlignment(LI.getType()); 959 960 if (KnownAlign > EffectiveLoadAlign) 961 LI.setAlignment(KnownAlign); 962 else if (LoadAlign == 0) 963 LI.setAlignment(EffectiveLoadAlign); 964 965 // Replace GEP indices if possible. 966 if (Instruction *NewGEPI = replaceGEPIdxWithZero(*this, Op, LI)) { 967 Worklist.Add(NewGEPI); 968 return &LI; 969 } 970 971 if (Instruction *Res = unpackLoadToAggregate(*this, LI)) 972 return Res; 973 974 // Do really simple store-to-load forwarding and load CSE, to catch cases 975 // where there are several consecutive memory accesses to the same location, 976 // separated by a few arithmetic operations. 977 BasicBlock::iterator BBI(LI); 978 bool IsLoadCSE = false; 979 if (Value *AvailableVal = FindAvailableLoadedValue( 980 &LI, LI.getParent(), BBI, DefMaxInstsToScan, AA, &IsLoadCSE)) { 981 if (IsLoadCSE) 982 combineMetadataForCSE(cast<LoadInst>(AvailableVal), &LI); 983 984 return replaceInstUsesWith( 985 LI, Builder->CreateBitOrPointerCast(AvailableVal, LI.getType(), 986 LI.getName() + ".cast")); 987 } 988 989 // None of the following transforms are legal for volatile/ordered atomic 990 // loads. Most of them do apply for unordered atomics. 991 if (!LI.isUnordered()) return nullptr; 992 993 // load(gep null, ...) -> unreachable 994 // load null/undef -> unreachable 995 // TODO: Consider a target hook for valid address spaces for this xforms. 996 if (canSimplifyNullLoadOrGEP(LI, Op)) { 997 // Insert a new store to null instruction before the load to indicate 998 // that this code is not reachable. We do this instead of inserting 999 // an unreachable instruction directly because we cannot modify the 1000 // CFG. 1001 new StoreInst(UndefValue::get(LI.getType()), 1002 Constant::getNullValue(Op->getType()), &LI); 1003 return replaceInstUsesWith(LI, UndefValue::get(LI.getType())); 1004 } 1005 1006 if (Op->hasOneUse()) { 1007 // Change select and PHI nodes to select values instead of addresses: this 1008 // helps alias analysis out a lot, allows many others simplifications, and 1009 // exposes redundancy in the code. 1010 // 1011 // Note that we cannot do the transformation unless we know that the 1012 // introduced loads cannot trap! Something like this is valid as long as 1013 // the condition is always false: load (select bool %C, int* null, int* %G), 1014 // but it would not be valid if we transformed it to load from null 1015 // unconditionally. 1016 // 1017 if (SelectInst *SI = dyn_cast<SelectInst>(Op)) { 1018 // load (select (Cond, &V1, &V2)) --> select(Cond, load &V1, load &V2). 1019 unsigned Align = LI.getAlignment(); 1020 if (isSafeToLoadUnconditionally(SI->getOperand(1), Align, DL, SI) && 1021 isSafeToLoadUnconditionally(SI->getOperand(2), Align, DL, SI)) { 1022 LoadInst *V1 = Builder->CreateLoad(SI->getOperand(1), 1023 SI->getOperand(1)->getName()+".val"); 1024 LoadInst *V2 = Builder->CreateLoad(SI->getOperand(2), 1025 SI->getOperand(2)->getName()+".val"); 1026 assert(LI.isUnordered() && "implied by above"); 1027 V1->setAlignment(Align); 1028 V1->setAtomic(LI.getOrdering(), LI.getSynchScope()); 1029 V2->setAlignment(Align); 1030 V2->setAtomic(LI.getOrdering(), LI.getSynchScope()); 1031 return SelectInst::Create(SI->getCondition(), V1, V2); 1032 } 1033 1034 // load (select (cond, null, P)) -> load P 1035 if (isa<ConstantPointerNull>(SI->getOperand(1)) && 1036 LI.getPointerAddressSpace() == 0) { 1037 LI.setOperand(0, SI->getOperand(2)); 1038 return &LI; 1039 } 1040 1041 // load (select (cond, P, null)) -> load P 1042 if (isa<ConstantPointerNull>(SI->getOperand(2)) && 1043 LI.getPointerAddressSpace() == 0) { 1044 LI.setOperand(0, SI->getOperand(1)); 1045 return &LI; 1046 } 1047 } 1048 } 1049 return nullptr; 1050 } 1051 1052 /// \brief Look for extractelement/insertvalue sequence that acts like a bitcast. 1053 /// 1054 /// \returns underlying value that was "cast", or nullptr otherwise. 1055 /// 1056 /// For example, if we have: 1057 /// 1058 /// %E0 = extractelement <2 x double> %U, i32 0 1059 /// %V0 = insertvalue [2 x double] undef, double %E0, 0 1060 /// %E1 = extractelement <2 x double> %U, i32 1 1061 /// %V1 = insertvalue [2 x double] %V0, double %E1, 1 1062 /// 1063 /// and the layout of a <2 x double> is isomorphic to a [2 x double], 1064 /// then %V1 can be safely approximated by a conceptual "bitcast" of %U. 1065 /// Note that %U may contain non-undef values where %V1 has undef. 1066 static Value *likeBitCastFromVector(InstCombiner &IC, Value *V) { 1067 Value *U = nullptr; 1068 while (auto *IV = dyn_cast<InsertValueInst>(V)) { 1069 auto *E = dyn_cast<ExtractElementInst>(IV->getInsertedValueOperand()); 1070 if (!E) 1071 return nullptr; 1072 auto *W = E->getVectorOperand(); 1073 if (!U) 1074 U = W; 1075 else if (U != W) 1076 return nullptr; 1077 auto *CI = dyn_cast<ConstantInt>(E->getIndexOperand()); 1078 if (!CI || IV->getNumIndices() != 1 || CI->getZExtValue() != *IV->idx_begin()) 1079 return nullptr; 1080 V = IV->getAggregateOperand(); 1081 } 1082 if (!isa<UndefValue>(V) ||!U) 1083 return nullptr; 1084 1085 auto *UT = cast<VectorType>(U->getType()); 1086 auto *VT = V->getType(); 1087 // Check that types UT and VT are bitwise isomorphic. 1088 const auto &DL = IC.getDataLayout(); 1089 if (DL.getTypeStoreSizeInBits(UT) != DL.getTypeStoreSizeInBits(VT)) { 1090 return nullptr; 1091 } 1092 if (auto *AT = dyn_cast<ArrayType>(VT)) { 1093 if (AT->getNumElements() != UT->getNumElements()) 1094 return nullptr; 1095 } else { 1096 auto *ST = cast<StructType>(VT); 1097 if (ST->getNumElements() != UT->getNumElements()) 1098 return nullptr; 1099 for (const auto *EltT : ST->elements()) { 1100 if (EltT != UT->getElementType()) 1101 return nullptr; 1102 } 1103 } 1104 return U; 1105 } 1106 1107 /// \brief Combine stores to match the type of value being stored. 1108 /// 1109 /// The core idea here is that the memory does not have any intrinsic type and 1110 /// where we can we should match the type of a store to the type of value being 1111 /// stored. 1112 /// 1113 /// However, this routine must never change the width of a store or the number of 1114 /// stores as that would introduce a semantic change. This combine is expected to 1115 /// be a semantic no-op which just allows stores to more closely model the types 1116 /// of their incoming values. 1117 /// 1118 /// Currently, we also refuse to change the precise type used for an atomic or 1119 /// volatile store. This is debatable, and might be reasonable to change later. 1120 /// However, it is risky in case some backend or other part of LLVM is relying 1121 /// on the exact type stored to select appropriate atomic operations. 1122 /// 1123 /// \returns true if the store was successfully combined away. This indicates 1124 /// the caller must erase the store instruction. We have to let the caller erase 1125 /// the store instruction as otherwise there is no way to signal whether it was 1126 /// combined or not: IC.EraseInstFromFunction returns a null pointer. 1127 static bool combineStoreToValueType(InstCombiner &IC, StoreInst &SI) { 1128 // FIXME: We could probably with some care handle both volatile and ordered 1129 // atomic stores here but it isn't clear that this is important. 1130 if (!SI.isUnordered()) 1131 return false; 1132 1133 // swifterror values can't be bitcasted. 1134 if (SI.getPointerOperand()->isSwiftError()) 1135 return false; 1136 1137 Value *V = SI.getValueOperand(); 1138 1139 // Fold away bit casts of the stored value by storing the original type. 1140 if (auto *BC = dyn_cast<BitCastInst>(V)) { 1141 V = BC->getOperand(0); 1142 if (!SI.isAtomic() || isSupportedAtomicType(V->getType())) { 1143 combineStoreToNewValue(IC, SI, V); 1144 return true; 1145 } 1146 } 1147 1148 if (Value *U = likeBitCastFromVector(IC, V)) 1149 if (!SI.isAtomic() || isSupportedAtomicType(U->getType())) { 1150 combineStoreToNewValue(IC, SI, U); 1151 return true; 1152 } 1153 1154 // FIXME: We should also canonicalize stores of vectors when their elements 1155 // are cast to other types. 1156 return false; 1157 } 1158 1159 static bool unpackStoreToAggregate(InstCombiner &IC, StoreInst &SI) { 1160 // FIXME: We could probably with some care handle both volatile and atomic 1161 // stores here but it isn't clear that this is important. 1162 if (!SI.isSimple()) 1163 return false; 1164 1165 Value *V = SI.getValueOperand(); 1166 Type *T = V->getType(); 1167 1168 if (!T->isAggregateType()) 1169 return false; 1170 1171 if (auto *ST = dyn_cast<StructType>(T)) { 1172 // If the struct only have one element, we unpack. 1173 unsigned Count = ST->getNumElements(); 1174 if (Count == 1) { 1175 V = IC.Builder->CreateExtractValue(V, 0); 1176 combineStoreToNewValue(IC, SI, V); 1177 return true; 1178 } 1179 1180 // We don't want to break loads with padding here as we'd loose 1181 // the knowledge that padding exists for the rest of the pipeline. 1182 const DataLayout &DL = IC.getDataLayout(); 1183 auto *SL = DL.getStructLayout(ST); 1184 if (SL->hasPadding()) 1185 return false; 1186 1187 auto Align = SI.getAlignment(); 1188 if (!Align) 1189 Align = DL.getABITypeAlignment(ST); 1190 1191 SmallString<16> EltName = V->getName(); 1192 EltName += ".elt"; 1193 auto *Addr = SI.getPointerOperand(); 1194 SmallString<16> AddrName = Addr->getName(); 1195 AddrName += ".repack"; 1196 1197 auto *IdxType = Type::getInt32Ty(ST->getContext()); 1198 auto *Zero = ConstantInt::get(IdxType, 0); 1199 for (unsigned i = 0; i < Count; i++) { 1200 Value *Indices[2] = { 1201 Zero, 1202 ConstantInt::get(IdxType, i), 1203 }; 1204 auto *Ptr = IC.Builder->CreateInBoundsGEP(ST, Addr, makeArrayRef(Indices), 1205 AddrName); 1206 auto *Val = IC.Builder->CreateExtractValue(V, i, EltName); 1207 auto EltAlign = MinAlign(Align, SL->getElementOffset(i)); 1208 IC.Builder->CreateAlignedStore(Val, Ptr, EltAlign); 1209 } 1210 1211 return true; 1212 } 1213 1214 if (auto *AT = dyn_cast<ArrayType>(T)) { 1215 // If the array only have one element, we unpack. 1216 auto NumElements = AT->getNumElements(); 1217 if (NumElements == 1) { 1218 V = IC.Builder->CreateExtractValue(V, 0); 1219 combineStoreToNewValue(IC, SI, V); 1220 return true; 1221 } 1222 1223 // Bail out if the array is too large. Ideally we would like to optimize 1224 // arrays of arbitrary size but this has a terrible impact on compile time. 1225 // The threshold here is chosen arbitrarily, maybe needs a little bit of 1226 // tuning. 1227 if (NumElements > IC.MaxArraySizeForCombine) 1228 return false; 1229 1230 const DataLayout &DL = IC.getDataLayout(); 1231 auto EltSize = DL.getTypeAllocSize(AT->getElementType()); 1232 auto Align = SI.getAlignment(); 1233 if (!Align) 1234 Align = DL.getABITypeAlignment(T); 1235 1236 SmallString<16> EltName = V->getName(); 1237 EltName += ".elt"; 1238 auto *Addr = SI.getPointerOperand(); 1239 SmallString<16> AddrName = Addr->getName(); 1240 AddrName += ".repack"; 1241 1242 auto *IdxType = Type::getInt64Ty(T->getContext()); 1243 auto *Zero = ConstantInt::get(IdxType, 0); 1244 1245 uint64_t Offset = 0; 1246 for (uint64_t i = 0; i < NumElements; i++) { 1247 Value *Indices[2] = { 1248 Zero, 1249 ConstantInt::get(IdxType, i), 1250 }; 1251 auto *Ptr = IC.Builder->CreateInBoundsGEP(AT, Addr, makeArrayRef(Indices), 1252 AddrName); 1253 auto *Val = IC.Builder->CreateExtractValue(V, i, EltName); 1254 auto EltAlign = MinAlign(Align, Offset); 1255 IC.Builder->CreateAlignedStore(Val, Ptr, EltAlign); 1256 Offset += EltSize; 1257 } 1258 1259 return true; 1260 } 1261 1262 return false; 1263 } 1264 1265 /// equivalentAddressValues - Test if A and B will obviously have the same 1266 /// value. This includes recognizing that %t0 and %t1 will have the same 1267 /// value in code like this: 1268 /// %t0 = getelementptr \@a, 0, 3 1269 /// store i32 0, i32* %t0 1270 /// %t1 = getelementptr \@a, 0, 3 1271 /// %t2 = load i32* %t1 1272 /// 1273 static bool equivalentAddressValues(Value *A, Value *B) { 1274 // Test if the values are trivially equivalent. 1275 if (A == B) return true; 1276 1277 // Test if the values come form identical arithmetic instructions. 1278 // This uses isIdenticalToWhenDefined instead of isIdenticalTo because 1279 // its only used to compare two uses within the same basic block, which 1280 // means that they'll always either have the same value or one of them 1281 // will have an undefined value. 1282 if (isa<BinaryOperator>(A) || 1283 isa<CastInst>(A) || 1284 isa<PHINode>(A) || 1285 isa<GetElementPtrInst>(A)) 1286 if (Instruction *BI = dyn_cast<Instruction>(B)) 1287 if (cast<Instruction>(A)->isIdenticalToWhenDefined(BI)) 1288 return true; 1289 1290 // Otherwise they may not be equivalent. 1291 return false; 1292 } 1293 1294 Instruction *InstCombiner::visitStoreInst(StoreInst &SI) { 1295 Value *Val = SI.getOperand(0); 1296 Value *Ptr = SI.getOperand(1); 1297 1298 // Try to canonicalize the stored type. 1299 if (combineStoreToValueType(*this, SI)) 1300 return eraseInstFromFunction(SI); 1301 1302 // Attempt to improve the alignment. 1303 unsigned KnownAlign = getOrEnforceKnownAlignment( 1304 Ptr, DL.getPrefTypeAlignment(Val->getType()), DL, &SI, &AC, &DT); 1305 unsigned StoreAlign = SI.getAlignment(); 1306 unsigned EffectiveStoreAlign = 1307 StoreAlign != 0 ? StoreAlign : DL.getABITypeAlignment(Val->getType()); 1308 1309 if (KnownAlign > EffectiveStoreAlign) 1310 SI.setAlignment(KnownAlign); 1311 else if (StoreAlign == 0) 1312 SI.setAlignment(EffectiveStoreAlign); 1313 1314 // Try to canonicalize the stored type. 1315 if (unpackStoreToAggregate(*this, SI)) 1316 return eraseInstFromFunction(SI); 1317 1318 // Replace GEP indices if possible. 1319 if (Instruction *NewGEPI = replaceGEPIdxWithZero(*this, Ptr, SI)) { 1320 Worklist.Add(NewGEPI); 1321 return &SI; 1322 } 1323 1324 // Don't hack volatile/ordered stores. 1325 // FIXME: Some bits are legal for ordered atomic stores; needs refactoring. 1326 if (!SI.isUnordered()) return nullptr; 1327 1328 // If the RHS is an alloca with a single use, zapify the store, making the 1329 // alloca dead. 1330 if (Ptr->hasOneUse()) { 1331 if (isa<AllocaInst>(Ptr)) 1332 return eraseInstFromFunction(SI); 1333 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Ptr)) { 1334 if (isa<AllocaInst>(GEP->getOperand(0))) { 1335 if (GEP->getOperand(0)->hasOneUse()) 1336 return eraseInstFromFunction(SI); 1337 } 1338 } 1339 } 1340 1341 // Do really simple DSE, to catch cases where there are several consecutive 1342 // stores to the same location, separated by a few arithmetic operations. This 1343 // situation often occurs with bitfield accesses. 1344 BasicBlock::iterator BBI(SI); 1345 for (unsigned ScanInsts = 6; BBI != SI.getParent()->begin() && ScanInsts; 1346 --ScanInsts) { 1347 --BBI; 1348 // Don't count debug info directives, lest they affect codegen, 1349 // and we skip pointer-to-pointer bitcasts, which are NOPs. 1350 if (isa<DbgInfoIntrinsic>(BBI) || 1351 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) { 1352 ScanInsts++; 1353 continue; 1354 } 1355 1356 if (StoreInst *PrevSI = dyn_cast<StoreInst>(BBI)) { 1357 // Prev store isn't volatile, and stores to the same location? 1358 if (PrevSI->isUnordered() && equivalentAddressValues(PrevSI->getOperand(1), 1359 SI.getOperand(1))) { 1360 ++NumDeadStore; 1361 ++BBI; 1362 eraseInstFromFunction(*PrevSI); 1363 continue; 1364 } 1365 break; 1366 } 1367 1368 // If this is a load, we have to stop. However, if the loaded value is from 1369 // the pointer we're loading and is producing the pointer we're storing, 1370 // then *this* store is dead (X = load P; store X -> P). 1371 if (LoadInst *LI = dyn_cast<LoadInst>(BBI)) { 1372 if (LI == Val && equivalentAddressValues(LI->getOperand(0), Ptr)) { 1373 assert(SI.isUnordered() && "can't eliminate ordering operation"); 1374 return eraseInstFromFunction(SI); 1375 } 1376 1377 // Otherwise, this is a load from some other location. Stores before it 1378 // may not be dead. 1379 break; 1380 } 1381 1382 // Don't skip over loads, throws or things that can modify memory. 1383 if (BBI->mayWriteToMemory() || BBI->mayReadFromMemory() || BBI->mayThrow()) 1384 break; 1385 } 1386 1387 // store X, null -> turns into 'unreachable' in SimplifyCFG 1388 if (isa<ConstantPointerNull>(Ptr) && SI.getPointerAddressSpace() == 0) { 1389 if (!isa<UndefValue>(Val)) { 1390 SI.setOperand(0, UndefValue::get(Val->getType())); 1391 if (Instruction *U = dyn_cast<Instruction>(Val)) 1392 Worklist.Add(U); // Dropped a use. 1393 } 1394 return nullptr; // Do not modify these! 1395 } 1396 1397 // store undef, Ptr -> noop 1398 if (isa<UndefValue>(Val)) 1399 return eraseInstFromFunction(SI); 1400 1401 // If this store is the last instruction in the basic block (possibly 1402 // excepting debug info instructions), and if the block ends with an 1403 // unconditional branch, try to move it to the successor block. 1404 BBI = SI.getIterator(); 1405 do { 1406 ++BBI; 1407 } while (isa<DbgInfoIntrinsic>(BBI) || 1408 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())); 1409 if (BranchInst *BI = dyn_cast<BranchInst>(BBI)) 1410 if (BI->isUnconditional()) 1411 if (SimplifyStoreAtEndOfBlock(SI)) 1412 return nullptr; // xform done! 1413 1414 return nullptr; 1415 } 1416 1417 /// SimplifyStoreAtEndOfBlock - Turn things like: 1418 /// if () { *P = v1; } else { *P = v2 } 1419 /// into a phi node with a store in the successor. 1420 /// 1421 /// Simplify things like: 1422 /// *P = v1; if () { *P = v2; } 1423 /// into a phi node with a store in the successor. 1424 /// 1425 bool InstCombiner::SimplifyStoreAtEndOfBlock(StoreInst &SI) { 1426 assert(SI.isUnordered() && 1427 "this code has not been auditted for volatile or ordered store case"); 1428 1429 BasicBlock *StoreBB = SI.getParent(); 1430 1431 // Check to see if the successor block has exactly two incoming edges. If 1432 // so, see if the other predecessor contains a store to the same location. 1433 // if so, insert a PHI node (if needed) and move the stores down. 1434 BasicBlock *DestBB = StoreBB->getTerminator()->getSuccessor(0); 1435 1436 // Determine whether Dest has exactly two predecessors and, if so, compute 1437 // the other predecessor. 1438 pred_iterator PI = pred_begin(DestBB); 1439 BasicBlock *P = *PI; 1440 BasicBlock *OtherBB = nullptr; 1441 1442 if (P != StoreBB) 1443 OtherBB = P; 1444 1445 if (++PI == pred_end(DestBB)) 1446 return false; 1447 1448 P = *PI; 1449 if (P != StoreBB) { 1450 if (OtherBB) 1451 return false; 1452 OtherBB = P; 1453 } 1454 if (++PI != pred_end(DestBB)) 1455 return false; 1456 1457 // Bail out if all the relevant blocks aren't distinct (this can happen, 1458 // for example, if SI is in an infinite loop) 1459 if (StoreBB == DestBB || OtherBB == DestBB) 1460 return false; 1461 1462 // Verify that the other block ends in a branch and is not otherwise empty. 1463 BasicBlock::iterator BBI(OtherBB->getTerminator()); 1464 BranchInst *OtherBr = dyn_cast<BranchInst>(BBI); 1465 if (!OtherBr || BBI == OtherBB->begin()) 1466 return false; 1467 1468 // If the other block ends in an unconditional branch, check for the 'if then 1469 // else' case. there is an instruction before the branch. 1470 StoreInst *OtherStore = nullptr; 1471 if (OtherBr->isUnconditional()) { 1472 --BBI; 1473 // Skip over debugging info. 1474 while (isa<DbgInfoIntrinsic>(BBI) || 1475 (isa<BitCastInst>(BBI) && BBI->getType()->isPointerTy())) { 1476 if (BBI==OtherBB->begin()) 1477 return false; 1478 --BBI; 1479 } 1480 // If this isn't a store, isn't a store to the same location, or is not the 1481 // right kind of store, bail out. 1482 OtherStore = dyn_cast<StoreInst>(BBI); 1483 if (!OtherStore || OtherStore->getOperand(1) != SI.getOperand(1) || 1484 !SI.isSameOperationAs(OtherStore)) 1485 return false; 1486 } else { 1487 // Otherwise, the other block ended with a conditional branch. If one of the 1488 // destinations is StoreBB, then we have the if/then case. 1489 if (OtherBr->getSuccessor(0) != StoreBB && 1490 OtherBr->getSuccessor(1) != StoreBB) 1491 return false; 1492 1493 // Okay, we know that OtherBr now goes to Dest and StoreBB, so this is an 1494 // if/then triangle. See if there is a store to the same ptr as SI that 1495 // lives in OtherBB. 1496 for (;; --BBI) { 1497 // Check to see if we find the matching store. 1498 if ((OtherStore = dyn_cast<StoreInst>(BBI))) { 1499 if (OtherStore->getOperand(1) != SI.getOperand(1) || 1500 !SI.isSameOperationAs(OtherStore)) 1501 return false; 1502 break; 1503 } 1504 // If we find something that may be using or overwriting the stored 1505 // value, or if we run out of instructions, we can't do the xform. 1506 if (BBI->mayReadFromMemory() || BBI->mayThrow() || 1507 BBI->mayWriteToMemory() || BBI == OtherBB->begin()) 1508 return false; 1509 } 1510 1511 // In order to eliminate the store in OtherBr, we have to 1512 // make sure nothing reads or overwrites the stored value in 1513 // StoreBB. 1514 for (BasicBlock::iterator I = StoreBB->begin(); &*I != &SI; ++I) { 1515 // FIXME: This should really be AA driven. 1516 if (I->mayReadFromMemory() || I->mayThrow() || I->mayWriteToMemory()) 1517 return false; 1518 } 1519 } 1520 1521 // Insert a PHI node now if we need it. 1522 Value *MergedVal = OtherStore->getOperand(0); 1523 if (MergedVal != SI.getOperand(0)) { 1524 PHINode *PN = PHINode::Create(MergedVal->getType(), 2, "storemerge"); 1525 PN->addIncoming(SI.getOperand(0), SI.getParent()); 1526 PN->addIncoming(OtherStore->getOperand(0), OtherBB); 1527 MergedVal = InsertNewInstBefore(PN, DestBB->front()); 1528 } 1529 1530 // Advance to a place where it is safe to insert the new store and 1531 // insert it. 1532 BBI = DestBB->getFirstInsertionPt(); 1533 StoreInst *NewSI = new StoreInst(MergedVal, SI.getOperand(1), 1534 SI.isVolatile(), 1535 SI.getAlignment(), 1536 SI.getOrdering(), 1537 SI.getSynchScope()); 1538 InsertNewInstBefore(NewSI, *BBI); 1539 // The debug locations of the original instructions might differ; merge them. 1540 NewSI->setDebugLoc(DILocation::getMergedLocation(SI.getDebugLoc(), 1541 OtherStore->getDebugLoc())); 1542 1543 // If the two stores had AA tags, merge them. 1544 AAMDNodes AATags; 1545 SI.getAAMetadata(AATags); 1546 if (AATags) { 1547 OtherStore->getAAMetadata(AATags, /* Merge = */ true); 1548 NewSI->setAAMetadata(AATags); 1549 } 1550 1551 // Nuke the old stores. 1552 eraseInstFromFunction(SI); 1553 eraseInstFromFunction(*OtherStore); 1554 return true; 1555 } 1556