1 //===- Local.cpp - Functions to perform local transformations -------------===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This family of functions perform various local transformations to the 10 // program. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "llvm/Transforms/Utils/Local.h" 15 #include "llvm/ADT/APInt.h" 16 #include "llvm/ADT/DenseMap.h" 17 #include "llvm/ADT/DenseMapInfo.h" 18 #include "llvm/ADT/DenseSet.h" 19 #include "llvm/ADT/Hashing.h" 20 #include "llvm/ADT/None.h" 21 #include "llvm/ADT/Optional.h" 22 #include "llvm/ADT/STLExtras.h" 23 #include "llvm/ADT/SetVector.h" 24 #include "llvm/ADT/SmallPtrSet.h" 25 #include "llvm/ADT/SmallVector.h" 26 #include "llvm/ADT/Statistic.h" 27 #include "llvm/Analysis/AssumeBundleQueries.h" 28 #include "llvm/Analysis/ConstantFolding.h" 29 #include "llvm/Analysis/DomTreeUpdater.h" 30 #include "llvm/Analysis/EHPersonalities.h" 31 #include "llvm/Analysis/InstructionSimplify.h" 32 #include "llvm/Analysis/LazyValueInfo.h" 33 #include "llvm/Analysis/MemoryBuiltins.h" 34 #include "llvm/Analysis/MemorySSAUpdater.h" 35 #include "llvm/Analysis/TargetLibraryInfo.h" 36 #include "llvm/Analysis/ValueTracking.h" 37 #include "llvm/Analysis/VectorUtils.h" 38 #include "llvm/BinaryFormat/Dwarf.h" 39 #include "llvm/IR/Argument.h" 40 #include "llvm/IR/Attributes.h" 41 #include "llvm/IR/BasicBlock.h" 42 #include "llvm/IR/CFG.h" 43 #include "llvm/IR/Constant.h" 44 #include "llvm/IR/ConstantRange.h" 45 #include "llvm/IR/Constants.h" 46 #include "llvm/IR/DIBuilder.h" 47 #include "llvm/IR/DataLayout.h" 48 #include "llvm/IR/DebugInfoMetadata.h" 49 #include "llvm/IR/DebugLoc.h" 50 #include "llvm/IR/DerivedTypes.h" 51 #include "llvm/IR/Dominators.h" 52 #include "llvm/IR/Function.h" 53 #include "llvm/IR/GetElementPtrTypeIterator.h" 54 #include "llvm/IR/GlobalObject.h" 55 #include "llvm/IR/IRBuilder.h" 56 #include "llvm/IR/InstrTypes.h" 57 #include "llvm/IR/Instruction.h" 58 #include "llvm/IR/Instructions.h" 59 #include "llvm/IR/IntrinsicInst.h" 60 #include "llvm/IR/Intrinsics.h" 61 #include "llvm/IR/LLVMContext.h" 62 #include "llvm/IR/MDBuilder.h" 63 #include "llvm/IR/Metadata.h" 64 #include "llvm/IR/Module.h" 65 #include "llvm/IR/Operator.h" 66 #include "llvm/IR/PatternMatch.h" 67 #include "llvm/IR/PseudoProbe.h" 68 #include "llvm/IR/Type.h" 69 #include "llvm/IR/Use.h" 70 #include "llvm/IR/User.h" 71 #include "llvm/IR/Value.h" 72 #include "llvm/IR/ValueHandle.h" 73 #include "llvm/Support/Casting.h" 74 #include "llvm/Support/Debug.h" 75 #include "llvm/Support/ErrorHandling.h" 76 #include "llvm/Support/KnownBits.h" 77 #include "llvm/Support/raw_ostream.h" 78 #include "llvm/Transforms/Utils/BasicBlockUtils.h" 79 #include "llvm/Transforms/Utils/ValueMapper.h" 80 #include <algorithm> 81 #include <cassert> 82 #include <climits> 83 #include <cstdint> 84 #include <iterator> 85 #include <map> 86 #include <utility> 87 88 using namespace llvm; 89 using namespace llvm::PatternMatch; 90 91 #define DEBUG_TYPE "local" 92 93 STATISTIC(NumRemoved, "Number of unreachable basic blocks removed"); 94 STATISTIC(NumPHICSEs, "Number of PHI's that got CSE'd"); 95 96 static cl::opt<bool> PHICSEDebugHash( 97 "phicse-debug-hash", 98 #ifdef EXPENSIVE_CHECKS 99 cl::init(true), 100 #else 101 cl::init(false), 102 #endif 103 cl::Hidden, 104 cl::desc("Perform extra assertion checking to verify that PHINodes's hash " 105 "function is well-behaved w.r.t. its isEqual predicate")); 106 107 static cl::opt<unsigned> PHICSENumPHISmallSize( 108 "phicse-num-phi-smallsize", cl::init(32), cl::Hidden, 109 cl::desc( 110 "When the basic block contains not more than this number of PHI nodes, " 111 "perform a (faster!) exhaustive search instead of set-driven one.")); 112 113 // Max recursion depth for collectBitParts used when detecting bswap and 114 // bitreverse idioms. 115 static const unsigned BitPartRecursionMaxDepth = 48; 116 117 //===----------------------------------------------------------------------===// 118 // Local constant propagation. 119 // 120 121 /// ConstantFoldTerminator - If a terminator instruction is predicated on a 122 /// constant value, convert it into an unconditional branch to the constant 123 /// destination. This is a nontrivial operation because the successors of this 124 /// basic block must have their PHI nodes updated. 125 /// Also calls RecursivelyDeleteTriviallyDeadInstructions() on any branch/switch 126 /// conditions and indirectbr addresses this might make dead if 127 /// DeleteDeadConditions is true. 128 bool llvm::ConstantFoldTerminator(BasicBlock *BB, bool DeleteDeadConditions, 129 const TargetLibraryInfo *TLI, 130 DomTreeUpdater *DTU) { 131 Instruction *T = BB->getTerminator(); 132 IRBuilder<> Builder(T); 133 134 // Branch - See if we are conditional jumping on constant 135 if (auto *BI = dyn_cast<BranchInst>(T)) { 136 if (BI->isUnconditional()) return false; // Can't optimize uncond branch 137 138 BasicBlock *Dest1 = BI->getSuccessor(0); 139 BasicBlock *Dest2 = BI->getSuccessor(1); 140 141 if (Dest2 == Dest1) { // Conditional branch to same location? 142 // This branch matches something like this: 143 // br bool %cond, label %Dest, label %Dest 144 // and changes it into: br label %Dest 145 146 // Let the basic block know that we are letting go of one copy of it. 147 assert(BI->getParent() && "Terminator not inserted in block!"); 148 Dest1->removePredecessor(BI->getParent()); 149 150 // Replace the conditional branch with an unconditional one. 151 BranchInst *NewBI = Builder.CreateBr(Dest1); 152 153 // Transfer the metadata to the new branch instruction. 154 NewBI->copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg, 155 LLVMContext::MD_annotation}); 156 157 Value *Cond = BI->getCondition(); 158 BI->eraseFromParent(); 159 if (DeleteDeadConditions) 160 RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI); 161 return true; 162 } 163 164 if (auto *Cond = dyn_cast<ConstantInt>(BI->getCondition())) { 165 // Are we branching on constant? 166 // YES. Change to unconditional branch... 167 BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2; 168 BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1; 169 170 // Let the basic block know that we are letting go of it. Based on this, 171 // it will adjust it's PHI nodes. 172 OldDest->removePredecessor(BB); 173 174 // Replace the conditional branch with an unconditional one. 175 BranchInst *NewBI = Builder.CreateBr(Destination); 176 177 // Transfer the metadata to the new branch instruction. 178 NewBI->copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg, 179 LLVMContext::MD_annotation}); 180 181 BI->eraseFromParent(); 182 if (DTU) 183 DTU->applyUpdates({{DominatorTree::Delete, BB, OldDest}}); 184 return true; 185 } 186 187 return false; 188 } 189 190 if (auto *SI = dyn_cast<SwitchInst>(T)) { 191 // If we are switching on a constant, we can convert the switch to an 192 // unconditional branch. 193 auto *CI = dyn_cast<ConstantInt>(SI->getCondition()); 194 BasicBlock *DefaultDest = SI->getDefaultDest(); 195 BasicBlock *TheOnlyDest = DefaultDest; 196 197 // If the default is unreachable, ignore it when searching for TheOnlyDest. 198 if (isa<UnreachableInst>(DefaultDest->getFirstNonPHIOrDbg()) && 199 SI->getNumCases() > 0) { 200 TheOnlyDest = SI->case_begin()->getCaseSuccessor(); 201 } 202 203 bool Changed = false; 204 205 // Figure out which case it goes to. 206 for (auto i = SI->case_begin(), e = SI->case_end(); i != e;) { 207 // Found case matching a constant operand? 208 if (i->getCaseValue() == CI) { 209 TheOnlyDest = i->getCaseSuccessor(); 210 break; 211 } 212 213 // Check to see if this branch is going to the same place as the default 214 // dest. If so, eliminate it as an explicit compare. 215 if (i->getCaseSuccessor() == DefaultDest) { 216 MDNode *MD = SI->getMetadata(LLVMContext::MD_prof); 217 unsigned NCases = SI->getNumCases(); 218 // Fold the case metadata into the default if there will be any branches 219 // left, unless the metadata doesn't match the switch. 220 if (NCases > 1 && MD && MD->getNumOperands() == 2 + NCases) { 221 // Collect branch weights into a vector. 222 SmallVector<uint32_t, 8> Weights; 223 for (unsigned MD_i = 1, MD_e = MD->getNumOperands(); MD_i < MD_e; 224 ++MD_i) { 225 auto *CI = mdconst::extract<ConstantInt>(MD->getOperand(MD_i)); 226 Weights.push_back(CI->getValue().getZExtValue()); 227 } 228 // Merge weight of this case to the default weight. 229 unsigned idx = i->getCaseIndex(); 230 Weights[0] += Weights[idx+1]; 231 // Remove weight for this case. 232 std::swap(Weights[idx+1], Weights.back()); 233 Weights.pop_back(); 234 SI->setMetadata(LLVMContext::MD_prof, 235 MDBuilder(BB->getContext()). 236 createBranchWeights(Weights)); 237 } 238 // Remove this entry. 239 BasicBlock *ParentBB = SI->getParent(); 240 DefaultDest->removePredecessor(ParentBB); 241 i = SI->removeCase(i); 242 e = SI->case_end(); 243 Changed = true; 244 continue; 245 } 246 247 // Otherwise, check to see if the switch only branches to one destination. 248 // We do this by reseting "TheOnlyDest" to null when we find two non-equal 249 // destinations. 250 if (i->getCaseSuccessor() != TheOnlyDest) 251 TheOnlyDest = nullptr; 252 253 // Increment this iterator as we haven't removed the case. 254 ++i; 255 } 256 257 if (CI && !TheOnlyDest) { 258 // Branching on a constant, but not any of the cases, go to the default 259 // successor. 260 TheOnlyDest = SI->getDefaultDest(); 261 } 262 263 // If we found a single destination that we can fold the switch into, do so 264 // now. 265 if (TheOnlyDest) { 266 // Insert the new branch. 267 Builder.CreateBr(TheOnlyDest); 268 BasicBlock *BB = SI->getParent(); 269 270 SmallSet<BasicBlock *, 8> RemovedSuccessors; 271 272 // Remove entries from PHI nodes which we no longer branch to... 273 BasicBlock *SuccToKeep = TheOnlyDest; 274 for (BasicBlock *Succ : successors(SI)) { 275 if (DTU && Succ != TheOnlyDest) 276 RemovedSuccessors.insert(Succ); 277 // Found case matching a constant operand? 278 if (Succ == SuccToKeep) { 279 SuccToKeep = nullptr; // Don't modify the first branch to TheOnlyDest 280 } else { 281 Succ->removePredecessor(BB); 282 } 283 } 284 285 // Delete the old switch. 286 Value *Cond = SI->getCondition(); 287 SI->eraseFromParent(); 288 if (DeleteDeadConditions) 289 RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI); 290 if (DTU) { 291 std::vector<DominatorTree::UpdateType> Updates; 292 Updates.reserve(RemovedSuccessors.size()); 293 for (auto *RemovedSuccessor : RemovedSuccessors) 294 Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor}); 295 DTU->applyUpdates(Updates); 296 } 297 return true; 298 } 299 300 if (SI->getNumCases() == 1) { 301 // Otherwise, we can fold this switch into a conditional branch 302 // instruction if it has only one non-default destination. 303 auto FirstCase = *SI->case_begin(); 304 Value *Cond = Builder.CreateICmpEQ(SI->getCondition(), 305 FirstCase.getCaseValue(), "cond"); 306 307 // Insert the new branch. 308 BranchInst *NewBr = Builder.CreateCondBr(Cond, 309 FirstCase.getCaseSuccessor(), 310 SI->getDefaultDest()); 311 MDNode *MD = SI->getMetadata(LLVMContext::MD_prof); 312 if (MD && MD->getNumOperands() == 3) { 313 ConstantInt *SICase = 314 mdconst::dyn_extract<ConstantInt>(MD->getOperand(2)); 315 ConstantInt *SIDef = 316 mdconst::dyn_extract<ConstantInt>(MD->getOperand(1)); 317 assert(SICase && SIDef); 318 // The TrueWeight should be the weight for the single case of SI. 319 NewBr->setMetadata(LLVMContext::MD_prof, 320 MDBuilder(BB->getContext()). 321 createBranchWeights(SICase->getValue().getZExtValue(), 322 SIDef->getValue().getZExtValue())); 323 } 324 325 // Update make.implicit metadata to the newly-created conditional branch. 326 MDNode *MakeImplicitMD = SI->getMetadata(LLVMContext::MD_make_implicit); 327 if (MakeImplicitMD) 328 NewBr->setMetadata(LLVMContext::MD_make_implicit, MakeImplicitMD); 329 330 // Delete the old switch. 331 SI->eraseFromParent(); 332 return true; 333 } 334 return Changed; 335 } 336 337 if (auto *IBI = dyn_cast<IndirectBrInst>(T)) { 338 // indirectbr blockaddress(@F, @BB) -> br label @BB 339 if (auto *BA = 340 dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) { 341 BasicBlock *TheOnlyDest = BA->getBasicBlock(); 342 SmallSet<BasicBlock *, 8> RemovedSuccessors; 343 344 // Insert the new branch. 345 Builder.CreateBr(TheOnlyDest); 346 347 BasicBlock *SuccToKeep = TheOnlyDest; 348 for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) { 349 BasicBlock *DestBB = IBI->getDestination(i); 350 if (DTU && DestBB != TheOnlyDest) 351 RemovedSuccessors.insert(DestBB); 352 if (IBI->getDestination(i) == SuccToKeep) { 353 SuccToKeep = nullptr; 354 } else { 355 DestBB->removePredecessor(BB); 356 } 357 } 358 Value *Address = IBI->getAddress(); 359 IBI->eraseFromParent(); 360 if (DeleteDeadConditions) 361 // Delete pointer cast instructions. 362 RecursivelyDeleteTriviallyDeadInstructions(Address, TLI); 363 364 // Also zap the blockaddress constant if there are no users remaining, 365 // otherwise the destination is still marked as having its address taken. 366 if (BA->use_empty()) 367 BA->destroyConstant(); 368 369 // If we didn't find our destination in the IBI successor list, then we 370 // have undefined behavior. Replace the unconditional branch with an 371 // 'unreachable' instruction. 372 if (SuccToKeep) { 373 BB->getTerminator()->eraseFromParent(); 374 new UnreachableInst(BB->getContext(), BB); 375 } 376 377 if (DTU) { 378 std::vector<DominatorTree::UpdateType> Updates; 379 Updates.reserve(RemovedSuccessors.size()); 380 for (auto *RemovedSuccessor : RemovedSuccessors) 381 Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor}); 382 DTU->applyUpdates(Updates); 383 } 384 return true; 385 } 386 } 387 388 return false; 389 } 390 391 //===----------------------------------------------------------------------===// 392 // Local dead code elimination. 393 // 394 395 /// isInstructionTriviallyDead - Return true if the result produced by the 396 /// instruction is not used, and the instruction has no side effects. 397 /// 398 bool llvm::isInstructionTriviallyDead(Instruction *I, 399 const TargetLibraryInfo *TLI) { 400 if (!I->use_empty()) 401 return false; 402 return wouldInstructionBeTriviallyDead(I, TLI); 403 } 404 405 bool llvm::wouldInstructionBeTriviallyDead(Instruction *I, 406 const TargetLibraryInfo *TLI) { 407 if (I->isTerminator()) 408 return false; 409 410 // We don't want the landingpad-like instructions removed by anything this 411 // general. 412 if (I->isEHPad()) 413 return false; 414 415 // We don't want debug info removed by anything this general, unless 416 // debug info is empty. 417 if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) { 418 if (DDI->getAddress()) 419 return false; 420 return true; 421 } 422 if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) { 423 if (DVI->hasArgList() || DVI->getValue(0)) 424 return false; 425 return true; 426 } 427 if (DbgLabelInst *DLI = dyn_cast<DbgLabelInst>(I)) { 428 if (DLI->getLabel()) 429 return false; 430 return true; 431 } 432 433 if (!I->willReturn()) 434 return false; 435 436 if (!I->mayHaveSideEffects()) 437 return true; 438 439 // Special case intrinsics that "may have side effects" but can be deleted 440 // when dead. 441 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) { 442 // Safe to delete llvm.stacksave and launder.invariant.group if dead. 443 if (II->getIntrinsicID() == Intrinsic::stacksave || 444 II->getIntrinsicID() == Intrinsic::launder_invariant_group) 445 return true; 446 447 if (II->isLifetimeStartOrEnd()) { 448 auto *Arg = II->getArgOperand(1); 449 // Lifetime intrinsics are dead when their right-hand is undef. 450 if (isa<UndefValue>(Arg)) 451 return true; 452 // If the right-hand is an alloc, global, or argument and the only uses 453 // are lifetime intrinsics then the intrinsics are dead. 454 if (isa<AllocaInst>(Arg) || isa<GlobalValue>(Arg) || isa<Argument>(Arg)) 455 return llvm::all_of(Arg->uses(), [](Use &Use) { 456 if (IntrinsicInst *IntrinsicUse = 457 dyn_cast<IntrinsicInst>(Use.getUser())) 458 return IntrinsicUse->isLifetimeStartOrEnd(); 459 return false; 460 }); 461 return false; 462 } 463 464 // Assumptions are dead if their condition is trivially true. Guards on 465 // true are operationally no-ops. In the future we can consider more 466 // sophisticated tradeoffs for guards considering potential for check 467 // widening, but for now we keep things simple. 468 if ((II->getIntrinsicID() == Intrinsic::assume && 469 isAssumeWithEmptyBundle(cast<AssumeInst>(*II))) || 470 II->getIntrinsicID() == Intrinsic::experimental_guard) { 471 if (ConstantInt *Cond = dyn_cast<ConstantInt>(II->getArgOperand(0))) 472 return !Cond->isZero(); 473 474 return false; 475 } 476 } 477 478 if (isAllocLikeFn(I, TLI)) 479 return true; 480 481 if (CallInst *CI = isFreeCall(I, TLI)) 482 if (Constant *C = dyn_cast<Constant>(CI->getArgOperand(0))) 483 return C->isNullValue() || isa<UndefValue>(C); 484 485 if (auto *Call = dyn_cast<CallBase>(I)) 486 if (isMathLibCallNoop(Call, TLI)) 487 return true; 488 489 return false; 490 } 491 492 /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a 493 /// trivially dead instruction, delete it. If that makes any of its operands 494 /// trivially dead, delete them too, recursively. Return true if any 495 /// instructions were deleted. 496 bool llvm::RecursivelyDeleteTriviallyDeadInstructions( 497 Value *V, const TargetLibraryInfo *TLI, MemorySSAUpdater *MSSAU, 498 std::function<void(Value *)> AboutToDeleteCallback) { 499 Instruction *I = dyn_cast<Instruction>(V); 500 if (!I || !isInstructionTriviallyDead(I, TLI)) 501 return false; 502 503 SmallVector<WeakTrackingVH, 16> DeadInsts; 504 DeadInsts.push_back(I); 505 RecursivelyDeleteTriviallyDeadInstructions(DeadInsts, TLI, MSSAU, 506 AboutToDeleteCallback); 507 508 return true; 509 } 510 511 bool llvm::RecursivelyDeleteTriviallyDeadInstructionsPermissive( 512 SmallVectorImpl<WeakTrackingVH> &DeadInsts, const TargetLibraryInfo *TLI, 513 MemorySSAUpdater *MSSAU, 514 std::function<void(Value *)> AboutToDeleteCallback) { 515 unsigned S = 0, E = DeadInsts.size(), Alive = 0; 516 for (; S != E; ++S) { 517 auto *I = cast<Instruction>(DeadInsts[S]); 518 if (!isInstructionTriviallyDead(I)) { 519 DeadInsts[S] = nullptr; 520 ++Alive; 521 } 522 } 523 if (Alive == E) 524 return false; 525 RecursivelyDeleteTriviallyDeadInstructions(DeadInsts, TLI, MSSAU, 526 AboutToDeleteCallback); 527 return true; 528 } 529 530 void llvm::RecursivelyDeleteTriviallyDeadInstructions( 531 SmallVectorImpl<WeakTrackingVH> &DeadInsts, const TargetLibraryInfo *TLI, 532 MemorySSAUpdater *MSSAU, 533 std::function<void(Value *)> AboutToDeleteCallback) { 534 // Process the dead instruction list until empty. 535 while (!DeadInsts.empty()) { 536 Value *V = DeadInsts.pop_back_val(); 537 Instruction *I = cast_or_null<Instruction>(V); 538 if (!I) 539 continue; 540 assert(isInstructionTriviallyDead(I, TLI) && 541 "Live instruction found in dead worklist!"); 542 assert(I->use_empty() && "Instructions with uses are not dead."); 543 544 // Don't lose the debug info while deleting the instructions. 545 salvageDebugInfo(*I); 546 547 if (AboutToDeleteCallback) 548 AboutToDeleteCallback(I); 549 550 // Null out all of the instruction's operands to see if any operand becomes 551 // dead as we go. 552 for (Use &OpU : I->operands()) { 553 Value *OpV = OpU.get(); 554 OpU.set(nullptr); 555 556 if (!OpV->use_empty()) 557 continue; 558 559 // If the operand is an instruction that became dead as we nulled out the 560 // operand, and if it is 'trivially' dead, delete it in a future loop 561 // iteration. 562 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) 563 if (isInstructionTriviallyDead(OpI, TLI)) 564 DeadInsts.push_back(OpI); 565 } 566 if (MSSAU) 567 MSSAU->removeMemoryAccess(I); 568 569 I->eraseFromParent(); 570 } 571 } 572 573 bool llvm::replaceDbgUsesWithUndef(Instruction *I) { 574 SmallVector<DbgVariableIntrinsic *, 1> DbgUsers; 575 findDbgUsers(DbgUsers, I); 576 for (auto *DII : DbgUsers) { 577 Value *Undef = UndefValue::get(I->getType()); 578 DII->replaceVariableLocationOp(I, Undef); 579 } 580 return !DbgUsers.empty(); 581 } 582 583 /// areAllUsesEqual - Check whether the uses of a value are all the same. 584 /// This is similar to Instruction::hasOneUse() except this will also return 585 /// true when there are no uses or multiple uses that all refer to the same 586 /// value. 587 static bool areAllUsesEqual(Instruction *I) { 588 Value::user_iterator UI = I->user_begin(); 589 Value::user_iterator UE = I->user_end(); 590 if (UI == UE) 591 return true; 592 593 User *TheUse = *UI; 594 for (++UI; UI != UE; ++UI) { 595 if (*UI != TheUse) 596 return false; 597 } 598 return true; 599 } 600 601 /// RecursivelyDeleteDeadPHINode - If the specified value is an effectively 602 /// dead PHI node, due to being a def-use chain of single-use nodes that 603 /// either forms a cycle or is terminated by a trivially dead instruction, 604 /// delete it. If that makes any of its operands trivially dead, delete them 605 /// too, recursively. Return true if a change was made. 606 bool llvm::RecursivelyDeleteDeadPHINode(PHINode *PN, 607 const TargetLibraryInfo *TLI, 608 llvm::MemorySSAUpdater *MSSAU) { 609 SmallPtrSet<Instruction*, 4> Visited; 610 for (Instruction *I = PN; areAllUsesEqual(I) && !I->mayHaveSideEffects(); 611 I = cast<Instruction>(*I->user_begin())) { 612 if (I->use_empty()) 613 return RecursivelyDeleteTriviallyDeadInstructions(I, TLI, MSSAU); 614 615 // If we find an instruction more than once, we're on a cycle that 616 // won't prove fruitful. 617 if (!Visited.insert(I).second) { 618 // Break the cycle and delete the instruction and its operands. 619 I->replaceAllUsesWith(UndefValue::get(I->getType())); 620 (void)RecursivelyDeleteTriviallyDeadInstructions(I, TLI, MSSAU); 621 return true; 622 } 623 } 624 return false; 625 } 626 627 static bool 628 simplifyAndDCEInstruction(Instruction *I, 629 SmallSetVector<Instruction *, 16> &WorkList, 630 const DataLayout &DL, 631 const TargetLibraryInfo *TLI) { 632 if (isInstructionTriviallyDead(I, TLI)) { 633 salvageDebugInfo(*I); 634 635 // Null out all of the instruction's operands to see if any operand becomes 636 // dead as we go. 637 for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) { 638 Value *OpV = I->getOperand(i); 639 I->setOperand(i, nullptr); 640 641 if (!OpV->use_empty() || I == OpV) 642 continue; 643 644 // If the operand is an instruction that became dead as we nulled out the 645 // operand, and if it is 'trivially' dead, delete it in a future loop 646 // iteration. 647 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) 648 if (isInstructionTriviallyDead(OpI, TLI)) 649 WorkList.insert(OpI); 650 } 651 652 I->eraseFromParent(); 653 654 return true; 655 } 656 657 if (Value *SimpleV = SimplifyInstruction(I, DL)) { 658 // Add the users to the worklist. CAREFUL: an instruction can use itself, 659 // in the case of a phi node. 660 for (User *U : I->users()) { 661 if (U != I) { 662 WorkList.insert(cast<Instruction>(U)); 663 } 664 } 665 666 // Replace the instruction with its simplified value. 667 bool Changed = false; 668 if (!I->use_empty()) { 669 I->replaceAllUsesWith(SimpleV); 670 Changed = true; 671 } 672 if (isInstructionTriviallyDead(I, TLI)) { 673 I->eraseFromParent(); 674 Changed = true; 675 } 676 return Changed; 677 } 678 return false; 679 } 680 681 /// SimplifyInstructionsInBlock - Scan the specified basic block and try to 682 /// simplify any instructions in it and recursively delete dead instructions. 683 /// 684 /// This returns true if it changed the code, note that it can delete 685 /// instructions in other blocks as well in this block. 686 bool llvm::SimplifyInstructionsInBlock(BasicBlock *BB, 687 const TargetLibraryInfo *TLI) { 688 bool MadeChange = false; 689 const DataLayout &DL = BB->getModule()->getDataLayout(); 690 691 #ifndef NDEBUG 692 // In debug builds, ensure that the terminator of the block is never replaced 693 // or deleted by these simplifications. The idea of simplification is that it 694 // cannot introduce new instructions, and there is no way to replace the 695 // terminator of a block without introducing a new instruction. 696 AssertingVH<Instruction> TerminatorVH(&BB->back()); 697 #endif 698 699 SmallSetVector<Instruction *, 16> WorkList; 700 // Iterate over the original function, only adding insts to the worklist 701 // if they actually need to be revisited. This avoids having to pre-init 702 // the worklist with the entire function's worth of instructions. 703 for (BasicBlock::iterator BI = BB->begin(), E = std::prev(BB->end()); 704 BI != E;) { 705 assert(!BI->isTerminator()); 706 Instruction *I = &*BI; 707 ++BI; 708 709 // We're visiting this instruction now, so make sure it's not in the 710 // worklist from an earlier visit. 711 if (!WorkList.count(I)) 712 MadeChange |= simplifyAndDCEInstruction(I, WorkList, DL, TLI); 713 } 714 715 while (!WorkList.empty()) { 716 Instruction *I = WorkList.pop_back_val(); 717 MadeChange |= simplifyAndDCEInstruction(I, WorkList, DL, TLI); 718 } 719 return MadeChange; 720 } 721 722 //===----------------------------------------------------------------------===// 723 // Control Flow Graph Restructuring. 724 // 725 726 void llvm::MergeBasicBlockIntoOnlyPred(BasicBlock *DestBB, 727 DomTreeUpdater *DTU) { 728 729 // If BB has single-entry PHI nodes, fold them. 730 while (PHINode *PN = dyn_cast<PHINode>(DestBB->begin())) { 731 Value *NewVal = PN->getIncomingValue(0); 732 // Replace self referencing PHI with undef, it must be dead. 733 if (NewVal == PN) NewVal = UndefValue::get(PN->getType()); 734 PN->replaceAllUsesWith(NewVal); 735 PN->eraseFromParent(); 736 } 737 738 BasicBlock *PredBB = DestBB->getSinglePredecessor(); 739 assert(PredBB && "Block doesn't have a single predecessor!"); 740 741 bool ReplaceEntryBB = PredBB->isEntryBlock(); 742 743 // DTU updates: Collect all the edges that enter 744 // PredBB. These dominator edges will be redirected to DestBB. 745 SmallVector<DominatorTree::UpdateType, 32> Updates; 746 747 if (DTU) { 748 SmallPtrSet<BasicBlock *, 2> PredsOfPredBB(pred_begin(PredBB), 749 pred_end(PredBB)); 750 Updates.reserve(Updates.size() + 2 * PredsOfPredBB.size() + 1); 751 for (BasicBlock *PredOfPredBB : PredsOfPredBB) 752 // This predecessor of PredBB may already have DestBB as a successor. 753 if (PredOfPredBB != PredBB) 754 Updates.push_back({DominatorTree::Insert, PredOfPredBB, DestBB}); 755 for (BasicBlock *PredOfPredBB : PredsOfPredBB) 756 Updates.push_back({DominatorTree::Delete, PredOfPredBB, PredBB}); 757 Updates.push_back({DominatorTree::Delete, PredBB, DestBB}); 758 } 759 760 // Zap anything that took the address of DestBB. Not doing this will give the 761 // address an invalid value. 762 if (DestBB->hasAddressTaken()) { 763 BlockAddress *BA = BlockAddress::get(DestBB); 764 Constant *Replacement = 765 ConstantInt::get(Type::getInt32Ty(BA->getContext()), 1); 766 BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement, 767 BA->getType())); 768 BA->destroyConstant(); 769 } 770 771 // Anything that branched to PredBB now branches to DestBB. 772 PredBB->replaceAllUsesWith(DestBB); 773 774 // Splice all the instructions from PredBB to DestBB. 775 PredBB->getTerminator()->eraseFromParent(); 776 DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList()); 777 new UnreachableInst(PredBB->getContext(), PredBB); 778 779 // If the PredBB is the entry block of the function, move DestBB up to 780 // become the entry block after we erase PredBB. 781 if (ReplaceEntryBB) 782 DestBB->moveAfter(PredBB); 783 784 if (DTU) { 785 assert(PredBB->getInstList().size() == 1 && 786 isa<UnreachableInst>(PredBB->getTerminator()) && 787 "The successor list of PredBB isn't empty before " 788 "applying corresponding DTU updates."); 789 DTU->applyUpdatesPermissive(Updates); 790 DTU->deleteBB(PredBB); 791 // Recalculation of DomTree is needed when updating a forward DomTree and 792 // the Entry BB is replaced. 793 if (ReplaceEntryBB && DTU->hasDomTree()) { 794 // The entry block was removed and there is no external interface for 795 // the dominator tree to be notified of this change. In this corner-case 796 // we recalculate the entire tree. 797 DTU->recalculate(*(DestBB->getParent())); 798 } 799 } 800 801 else { 802 PredBB->eraseFromParent(); // Nuke BB if DTU is nullptr. 803 } 804 } 805 806 /// Return true if we can choose one of these values to use in place of the 807 /// other. Note that we will always choose the non-undef value to keep. 808 static bool CanMergeValues(Value *First, Value *Second) { 809 return First == Second || isa<UndefValue>(First) || isa<UndefValue>(Second); 810 } 811 812 /// Return true if we can fold BB, an almost-empty BB ending in an unconditional 813 /// branch to Succ, into Succ. 814 /// 815 /// Assumption: Succ is the single successor for BB. 816 static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) { 817 assert(*succ_begin(BB) == Succ && "Succ is not successor of BB!"); 818 819 LLVM_DEBUG(dbgs() << "Looking to fold " << BB->getName() << " into " 820 << Succ->getName() << "\n"); 821 // Shortcut, if there is only a single predecessor it must be BB and merging 822 // is always safe 823 if (Succ->getSinglePredecessor()) return true; 824 825 // Make a list of the predecessors of BB 826 SmallPtrSet<BasicBlock*, 16> BBPreds(pred_begin(BB), pred_end(BB)); 827 828 // Look at all the phi nodes in Succ, to see if they present a conflict when 829 // merging these blocks 830 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) { 831 PHINode *PN = cast<PHINode>(I); 832 833 // If the incoming value from BB is again a PHINode in 834 // BB which has the same incoming value for *PI as PN does, we can 835 // merge the phi nodes and then the blocks can still be merged 836 PHINode *BBPN = dyn_cast<PHINode>(PN->getIncomingValueForBlock(BB)); 837 if (BBPN && BBPN->getParent() == BB) { 838 for (unsigned PI = 0, PE = PN->getNumIncomingValues(); PI != PE; ++PI) { 839 BasicBlock *IBB = PN->getIncomingBlock(PI); 840 if (BBPreds.count(IBB) && 841 !CanMergeValues(BBPN->getIncomingValueForBlock(IBB), 842 PN->getIncomingValue(PI))) { 843 LLVM_DEBUG(dbgs() 844 << "Can't fold, phi node " << PN->getName() << " in " 845 << Succ->getName() << " is conflicting with " 846 << BBPN->getName() << " with regard to common predecessor " 847 << IBB->getName() << "\n"); 848 return false; 849 } 850 } 851 } else { 852 Value* Val = PN->getIncomingValueForBlock(BB); 853 for (unsigned PI = 0, PE = PN->getNumIncomingValues(); PI != PE; ++PI) { 854 // See if the incoming value for the common predecessor is equal to the 855 // one for BB, in which case this phi node will not prevent the merging 856 // of the block. 857 BasicBlock *IBB = PN->getIncomingBlock(PI); 858 if (BBPreds.count(IBB) && 859 !CanMergeValues(Val, PN->getIncomingValue(PI))) { 860 LLVM_DEBUG(dbgs() << "Can't fold, phi node " << PN->getName() 861 << " in " << Succ->getName() 862 << " is conflicting with regard to common " 863 << "predecessor " << IBB->getName() << "\n"); 864 return false; 865 } 866 } 867 } 868 } 869 870 return true; 871 } 872 873 using PredBlockVector = SmallVector<BasicBlock *, 16>; 874 using IncomingValueMap = DenseMap<BasicBlock *, Value *>; 875 876 /// Determines the value to use as the phi node input for a block. 877 /// 878 /// Select between \p OldVal any value that we know flows from \p BB 879 /// to a particular phi on the basis of which one (if either) is not 880 /// undef. Update IncomingValues based on the selected value. 881 /// 882 /// \param OldVal The value we are considering selecting. 883 /// \param BB The block that the value flows in from. 884 /// \param IncomingValues A map from block-to-value for other phi inputs 885 /// that we have examined. 886 /// 887 /// \returns the selected value. 888 static Value *selectIncomingValueForBlock(Value *OldVal, BasicBlock *BB, 889 IncomingValueMap &IncomingValues) { 890 if (!isa<UndefValue>(OldVal)) { 891 assert((!IncomingValues.count(BB) || 892 IncomingValues.find(BB)->second == OldVal) && 893 "Expected OldVal to match incoming value from BB!"); 894 895 IncomingValues.insert(std::make_pair(BB, OldVal)); 896 return OldVal; 897 } 898 899 IncomingValueMap::const_iterator It = IncomingValues.find(BB); 900 if (It != IncomingValues.end()) return It->second; 901 902 return OldVal; 903 } 904 905 /// Create a map from block to value for the operands of a 906 /// given phi. 907 /// 908 /// Create a map from block to value for each non-undef value flowing 909 /// into \p PN. 910 /// 911 /// \param PN The phi we are collecting the map for. 912 /// \param IncomingValues [out] The map from block to value for this phi. 913 static void gatherIncomingValuesToPhi(PHINode *PN, 914 IncomingValueMap &IncomingValues) { 915 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { 916 BasicBlock *BB = PN->getIncomingBlock(i); 917 Value *V = PN->getIncomingValue(i); 918 919 if (!isa<UndefValue>(V)) 920 IncomingValues.insert(std::make_pair(BB, V)); 921 } 922 } 923 924 /// Replace the incoming undef values to a phi with the values 925 /// from a block-to-value map. 926 /// 927 /// \param PN The phi we are replacing the undefs in. 928 /// \param IncomingValues A map from block to value. 929 static void replaceUndefValuesInPhi(PHINode *PN, 930 const IncomingValueMap &IncomingValues) { 931 SmallVector<unsigned> TrueUndefOps; 932 for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) { 933 Value *V = PN->getIncomingValue(i); 934 935 if (!isa<UndefValue>(V)) continue; 936 937 BasicBlock *BB = PN->getIncomingBlock(i); 938 IncomingValueMap::const_iterator It = IncomingValues.find(BB); 939 940 // Keep track of undef/poison incoming values. Those must match, so we fix 941 // them up below if needed. 942 // Note: this is conservatively correct, but we could try harder and group 943 // the undef values per incoming basic block. 944 if (It == IncomingValues.end()) { 945 TrueUndefOps.push_back(i); 946 continue; 947 } 948 949 // There is a defined value for this incoming block, so map this undef 950 // incoming value to the defined value. 951 PN->setIncomingValue(i, It->second); 952 } 953 954 // If there are both undef and poison values incoming, then convert those 955 // values to undef. It is invalid to have different values for the same 956 // incoming block. 957 unsigned PoisonCount = count_if(TrueUndefOps, [&](unsigned i) { 958 return isa<PoisonValue>(PN->getIncomingValue(i)); 959 }); 960 if (PoisonCount != 0 && PoisonCount != TrueUndefOps.size()) { 961 for (unsigned i : TrueUndefOps) 962 PN->setIncomingValue(i, UndefValue::get(PN->getType())); 963 } 964 } 965 966 /// Replace a value flowing from a block to a phi with 967 /// potentially multiple instances of that value flowing from the 968 /// block's predecessors to the phi. 969 /// 970 /// \param BB The block with the value flowing into the phi. 971 /// \param BBPreds The predecessors of BB. 972 /// \param PN The phi that we are updating. 973 static void redirectValuesFromPredecessorsToPhi(BasicBlock *BB, 974 const PredBlockVector &BBPreds, 975 PHINode *PN) { 976 Value *OldVal = PN->removeIncomingValue(BB, false); 977 assert(OldVal && "No entry in PHI for Pred BB!"); 978 979 IncomingValueMap IncomingValues; 980 981 // We are merging two blocks - BB, and the block containing PN - and 982 // as a result we need to redirect edges from the predecessors of BB 983 // to go to the block containing PN, and update PN 984 // accordingly. Since we allow merging blocks in the case where the 985 // predecessor and successor blocks both share some predecessors, 986 // and where some of those common predecessors might have undef 987 // values flowing into PN, we want to rewrite those values to be 988 // consistent with the non-undef values. 989 990 gatherIncomingValuesToPhi(PN, IncomingValues); 991 992 // If this incoming value is one of the PHI nodes in BB, the new entries 993 // in the PHI node are the entries from the old PHI. 994 if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) { 995 PHINode *OldValPN = cast<PHINode>(OldVal); 996 for (unsigned i = 0, e = OldValPN->getNumIncomingValues(); i != e; ++i) { 997 // Note that, since we are merging phi nodes and BB and Succ might 998 // have common predecessors, we could end up with a phi node with 999 // identical incoming branches. This will be cleaned up later (and 1000 // will trigger asserts if we try to clean it up now, without also 1001 // simplifying the corresponding conditional branch). 1002 BasicBlock *PredBB = OldValPN->getIncomingBlock(i); 1003 Value *PredVal = OldValPN->getIncomingValue(i); 1004 Value *Selected = selectIncomingValueForBlock(PredVal, PredBB, 1005 IncomingValues); 1006 1007 // And add a new incoming value for this predecessor for the 1008 // newly retargeted branch. 1009 PN->addIncoming(Selected, PredBB); 1010 } 1011 } else { 1012 for (unsigned i = 0, e = BBPreds.size(); i != e; ++i) { 1013 // Update existing incoming values in PN for this 1014 // predecessor of BB. 1015 BasicBlock *PredBB = BBPreds[i]; 1016 Value *Selected = selectIncomingValueForBlock(OldVal, PredBB, 1017 IncomingValues); 1018 1019 // And add a new incoming value for this predecessor for the 1020 // newly retargeted branch. 1021 PN->addIncoming(Selected, PredBB); 1022 } 1023 } 1024 1025 replaceUndefValuesInPhi(PN, IncomingValues); 1026 } 1027 1028 bool llvm::TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB, 1029 DomTreeUpdater *DTU) { 1030 assert(BB != &BB->getParent()->getEntryBlock() && 1031 "TryToSimplifyUncondBranchFromEmptyBlock called on entry block!"); 1032 1033 // We can't eliminate infinite loops. 1034 BasicBlock *Succ = cast<BranchInst>(BB->getTerminator())->getSuccessor(0); 1035 if (BB == Succ) return false; 1036 1037 // Check to see if merging these blocks would cause conflicts for any of the 1038 // phi nodes in BB or Succ. If not, we can safely merge. 1039 if (!CanPropagatePredecessorsForPHIs(BB, Succ)) return false; 1040 1041 // Check for cases where Succ has multiple predecessors and a PHI node in BB 1042 // has uses which will not disappear when the PHI nodes are merged. It is 1043 // possible to handle such cases, but difficult: it requires checking whether 1044 // BB dominates Succ, which is non-trivial to calculate in the case where 1045 // Succ has multiple predecessors. Also, it requires checking whether 1046 // constructing the necessary self-referential PHI node doesn't introduce any 1047 // conflicts; this isn't too difficult, but the previous code for doing this 1048 // was incorrect. 1049 // 1050 // Note that if this check finds a live use, BB dominates Succ, so BB is 1051 // something like a loop pre-header (or rarely, a part of an irreducible CFG); 1052 // folding the branch isn't profitable in that case anyway. 1053 if (!Succ->getSinglePredecessor()) { 1054 BasicBlock::iterator BBI = BB->begin(); 1055 while (isa<PHINode>(*BBI)) { 1056 for (Use &U : BBI->uses()) { 1057 if (PHINode* PN = dyn_cast<PHINode>(U.getUser())) { 1058 if (PN->getIncomingBlock(U) != BB) 1059 return false; 1060 } else { 1061 return false; 1062 } 1063 } 1064 ++BBI; 1065 } 1066 } 1067 1068 // We cannot fold the block if it's a branch to an already present callbr 1069 // successor because that creates duplicate successors. 1070 for (BasicBlock *PredBB : predecessors(BB)) { 1071 if (auto *CBI = dyn_cast<CallBrInst>(PredBB->getTerminator())) { 1072 if (Succ == CBI->getDefaultDest()) 1073 return false; 1074 for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i) 1075 if (Succ == CBI->getIndirectDest(i)) 1076 return false; 1077 } 1078 } 1079 1080 LLVM_DEBUG(dbgs() << "Killing Trivial BB: \n" << *BB); 1081 1082 SmallVector<DominatorTree::UpdateType, 32> Updates; 1083 if (DTU) { 1084 // All predecessors of BB will be moved to Succ. 1085 SmallPtrSet<BasicBlock *, 8> PredsOfBB(pred_begin(BB), pred_end(BB)); 1086 SmallPtrSet<BasicBlock *, 8> PredsOfSucc(pred_begin(Succ), pred_end(Succ)); 1087 Updates.reserve(Updates.size() + 2 * PredsOfBB.size() + 1); 1088 for (auto *PredOfBB : PredsOfBB) 1089 // This predecessor of BB may already have Succ as a successor. 1090 if (!PredsOfSucc.contains(PredOfBB)) 1091 Updates.push_back({DominatorTree::Insert, PredOfBB, Succ}); 1092 for (auto *PredOfBB : PredsOfBB) 1093 Updates.push_back({DominatorTree::Delete, PredOfBB, BB}); 1094 Updates.push_back({DominatorTree::Delete, BB, Succ}); 1095 } 1096 1097 if (isa<PHINode>(Succ->begin())) { 1098 // If there is more than one pred of succ, and there are PHI nodes in 1099 // the successor, then we need to add incoming edges for the PHI nodes 1100 // 1101 const PredBlockVector BBPreds(pred_begin(BB), pred_end(BB)); 1102 1103 // Loop over all of the PHI nodes in the successor of BB. 1104 for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) { 1105 PHINode *PN = cast<PHINode>(I); 1106 1107 redirectValuesFromPredecessorsToPhi(BB, BBPreds, PN); 1108 } 1109 } 1110 1111 if (Succ->getSinglePredecessor()) { 1112 // BB is the only predecessor of Succ, so Succ will end up with exactly 1113 // the same predecessors BB had. 1114 1115 // Copy over any phi, debug or lifetime instruction. 1116 BB->getTerminator()->eraseFromParent(); 1117 Succ->getInstList().splice(Succ->getFirstNonPHI()->getIterator(), 1118 BB->getInstList()); 1119 } else { 1120 while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) { 1121 // We explicitly check for such uses in CanPropagatePredecessorsForPHIs. 1122 assert(PN->use_empty() && "There shouldn't be any uses here!"); 1123 PN->eraseFromParent(); 1124 } 1125 } 1126 1127 // If the unconditional branch we replaced contains llvm.loop metadata, we 1128 // add the metadata to the branch instructions in the predecessors. 1129 unsigned LoopMDKind = BB->getContext().getMDKindID("llvm.loop"); 1130 Instruction *TI = BB->getTerminator(); 1131 if (TI) 1132 if (MDNode *LoopMD = TI->getMetadata(LoopMDKind)) 1133 for (BasicBlock *Pred : predecessors(BB)) 1134 Pred->getTerminator()->setMetadata(LoopMDKind, LoopMD); 1135 1136 // For AutoFDO, since BB is going to be removed, we won't be able to sample 1137 // it. To avoid assigning a zero weight for BB, move all its pseudo probes 1138 // into Succ and mark them dangling. This should allow the counts inference a 1139 // chance to get a more reasonable weight for BB. 1140 moveAndDanglePseudoProbes(BB, &*Succ->getFirstInsertionPt()); 1141 1142 // Everything that jumped to BB now goes to Succ. 1143 BB->replaceAllUsesWith(Succ); 1144 if (!Succ->hasName()) Succ->takeName(BB); 1145 1146 // Clear the successor list of BB to match updates applying to DTU later. 1147 if (BB->getTerminator()) 1148 BB->getInstList().pop_back(); 1149 new UnreachableInst(BB->getContext(), BB); 1150 assert(succ_empty(BB) && "The successor list of BB isn't empty before " 1151 "applying corresponding DTU updates."); 1152 1153 if (DTU) 1154 DTU->applyUpdates(Updates); 1155 1156 DeleteDeadBlock(BB, DTU); 1157 1158 return true; 1159 } 1160 1161 static bool EliminateDuplicatePHINodesNaiveImpl(BasicBlock *BB) { 1162 // This implementation doesn't currently consider undef operands 1163 // specially. Theoretically, two phis which are identical except for 1164 // one having an undef where the other doesn't could be collapsed. 1165 1166 bool Changed = false; 1167 1168 // Examine each PHI. 1169 // Note that increment of I must *NOT* be in the iteration_expression, since 1170 // we don't want to immediately advance when we restart from the beginning. 1171 for (auto I = BB->begin(); PHINode *PN = dyn_cast<PHINode>(I);) { 1172 ++I; 1173 // Is there an identical PHI node in this basic block? 1174 // Note that we only look in the upper square's triangle, 1175 // we already checked that the lower triangle PHI's aren't identical. 1176 for (auto J = I; PHINode *DuplicatePN = dyn_cast<PHINode>(J); ++J) { 1177 if (!DuplicatePN->isIdenticalToWhenDefined(PN)) 1178 continue; 1179 // A duplicate. Replace this PHI with the base PHI. 1180 ++NumPHICSEs; 1181 DuplicatePN->replaceAllUsesWith(PN); 1182 DuplicatePN->eraseFromParent(); 1183 Changed = true; 1184 1185 // The RAUW can change PHIs that we already visited. 1186 I = BB->begin(); 1187 break; // Start over from the beginning. 1188 } 1189 } 1190 return Changed; 1191 } 1192 1193 static bool EliminateDuplicatePHINodesSetBasedImpl(BasicBlock *BB) { 1194 // This implementation doesn't currently consider undef operands 1195 // specially. Theoretically, two phis which are identical except for 1196 // one having an undef where the other doesn't could be collapsed. 1197 1198 struct PHIDenseMapInfo { 1199 static PHINode *getEmptyKey() { 1200 return DenseMapInfo<PHINode *>::getEmptyKey(); 1201 } 1202 1203 static PHINode *getTombstoneKey() { 1204 return DenseMapInfo<PHINode *>::getTombstoneKey(); 1205 } 1206 1207 static bool isSentinel(PHINode *PN) { 1208 return PN == getEmptyKey() || PN == getTombstoneKey(); 1209 } 1210 1211 // WARNING: this logic must be kept in sync with 1212 // Instruction::isIdenticalToWhenDefined()! 1213 static unsigned getHashValueImpl(PHINode *PN) { 1214 // Compute a hash value on the operands. Instcombine will likely have 1215 // sorted them, which helps expose duplicates, but we have to check all 1216 // the operands to be safe in case instcombine hasn't run. 1217 return static_cast<unsigned>(hash_combine( 1218 hash_combine_range(PN->value_op_begin(), PN->value_op_end()), 1219 hash_combine_range(PN->block_begin(), PN->block_end()))); 1220 } 1221 1222 static unsigned getHashValue(PHINode *PN) { 1223 #ifndef NDEBUG 1224 // If -phicse-debug-hash was specified, return a constant -- this 1225 // will force all hashing to collide, so we'll exhaustively search 1226 // the table for a match, and the assertion in isEqual will fire if 1227 // there's a bug causing equal keys to hash differently. 1228 if (PHICSEDebugHash) 1229 return 0; 1230 #endif 1231 return getHashValueImpl(PN); 1232 } 1233 1234 static bool isEqualImpl(PHINode *LHS, PHINode *RHS) { 1235 if (isSentinel(LHS) || isSentinel(RHS)) 1236 return LHS == RHS; 1237 return LHS->isIdenticalTo(RHS); 1238 } 1239 1240 static bool isEqual(PHINode *LHS, PHINode *RHS) { 1241 // These comparisons are nontrivial, so assert that equality implies 1242 // hash equality (DenseMap demands this as an invariant). 1243 bool Result = isEqualImpl(LHS, RHS); 1244 assert(!Result || (isSentinel(LHS) && LHS == RHS) || 1245 getHashValueImpl(LHS) == getHashValueImpl(RHS)); 1246 return Result; 1247 } 1248 }; 1249 1250 // Set of unique PHINodes. 1251 DenseSet<PHINode *, PHIDenseMapInfo> PHISet; 1252 PHISet.reserve(4 * PHICSENumPHISmallSize); 1253 1254 // Examine each PHI. 1255 bool Changed = false; 1256 for (auto I = BB->begin(); PHINode *PN = dyn_cast<PHINode>(I++);) { 1257 auto Inserted = PHISet.insert(PN); 1258 if (!Inserted.second) { 1259 // A duplicate. Replace this PHI with its duplicate. 1260 ++NumPHICSEs; 1261 PN->replaceAllUsesWith(*Inserted.first); 1262 PN->eraseFromParent(); 1263 Changed = true; 1264 1265 // The RAUW can change PHIs that we already visited. Start over from the 1266 // beginning. 1267 PHISet.clear(); 1268 I = BB->begin(); 1269 } 1270 } 1271 1272 return Changed; 1273 } 1274 1275 bool llvm::EliminateDuplicatePHINodes(BasicBlock *BB) { 1276 if ( 1277 #ifndef NDEBUG 1278 !PHICSEDebugHash && 1279 #endif 1280 hasNItemsOrLess(BB->phis(), PHICSENumPHISmallSize)) 1281 return EliminateDuplicatePHINodesNaiveImpl(BB); 1282 return EliminateDuplicatePHINodesSetBasedImpl(BB); 1283 } 1284 1285 /// If the specified pointer points to an object that we control, try to modify 1286 /// the object's alignment to PrefAlign. Returns a minimum known alignment of 1287 /// the value after the operation, which may be lower than PrefAlign. 1288 /// 1289 /// Increating value alignment isn't often possible though. If alignment is 1290 /// important, a more reliable approach is to simply align all global variables 1291 /// and allocation instructions to their preferred alignment from the beginning. 1292 static Align tryEnforceAlignment(Value *V, Align PrefAlign, 1293 const DataLayout &DL) { 1294 V = V->stripPointerCasts(); 1295 1296 if (AllocaInst *AI = dyn_cast<AllocaInst>(V)) { 1297 // TODO: Ideally, this function would not be called if PrefAlign is smaller 1298 // than the current alignment, as the known bits calculation should have 1299 // already taken it into account. However, this is not always the case, 1300 // as computeKnownBits() has a depth limit, while stripPointerCasts() 1301 // doesn't. 1302 Align CurrentAlign = AI->getAlign(); 1303 if (PrefAlign <= CurrentAlign) 1304 return CurrentAlign; 1305 1306 // If the preferred alignment is greater than the natural stack alignment 1307 // then don't round up. This avoids dynamic stack realignment. 1308 if (DL.exceedsNaturalStackAlignment(PrefAlign)) 1309 return CurrentAlign; 1310 AI->setAlignment(PrefAlign); 1311 return PrefAlign; 1312 } 1313 1314 if (auto *GO = dyn_cast<GlobalObject>(V)) { 1315 // TODO: as above, this shouldn't be necessary. 1316 Align CurrentAlign = GO->getPointerAlignment(DL); 1317 if (PrefAlign <= CurrentAlign) 1318 return CurrentAlign; 1319 1320 // If there is a large requested alignment and we can, bump up the alignment 1321 // of the global. If the memory we set aside for the global may not be the 1322 // memory used by the final program then it is impossible for us to reliably 1323 // enforce the preferred alignment. 1324 if (!GO->canIncreaseAlignment()) 1325 return CurrentAlign; 1326 1327 GO->setAlignment(PrefAlign); 1328 return PrefAlign; 1329 } 1330 1331 return Align(1); 1332 } 1333 1334 Align llvm::getOrEnforceKnownAlignment(Value *V, MaybeAlign PrefAlign, 1335 const DataLayout &DL, 1336 const Instruction *CxtI, 1337 AssumptionCache *AC, 1338 const DominatorTree *DT) { 1339 assert(V->getType()->isPointerTy() && 1340 "getOrEnforceKnownAlignment expects a pointer!"); 1341 1342 KnownBits Known = computeKnownBits(V, DL, 0, AC, CxtI, DT); 1343 unsigned TrailZ = Known.countMinTrailingZeros(); 1344 1345 // Avoid trouble with ridiculously large TrailZ values, such as 1346 // those computed from a null pointer. 1347 // LLVM doesn't support alignments larger than (1 << MaxAlignmentExponent). 1348 TrailZ = std::min(TrailZ, +Value::MaxAlignmentExponent); 1349 1350 Align Alignment = Align(1ull << std::min(Known.getBitWidth() - 1, TrailZ)); 1351 1352 if (PrefAlign && *PrefAlign > Alignment) 1353 Alignment = std::max(Alignment, tryEnforceAlignment(V, *PrefAlign, DL)); 1354 1355 // We don't need to make any adjustment. 1356 return Alignment; 1357 } 1358 1359 ///===---------------------------------------------------------------------===// 1360 /// Dbg Intrinsic utilities 1361 /// 1362 1363 /// See if there is a dbg.value intrinsic for DIVar for the PHI node. 1364 static bool PhiHasDebugValue(DILocalVariable *DIVar, 1365 DIExpression *DIExpr, 1366 PHINode *APN) { 1367 // Since we can't guarantee that the original dbg.declare instrinsic 1368 // is removed by LowerDbgDeclare(), we need to make sure that we are 1369 // not inserting the same dbg.value intrinsic over and over. 1370 SmallVector<DbgValueInst *, 1> DbgValues; 1371 findDbgValues(DbgValues, APN); 1372 for (auto *DVI : DbgValues) { 1373 assert(is_contained(DVI->getValues(), APN)); 1374 if ((DVI->getVariable() == DIVar) && (DVI->getExpression() == DIExpr)) 1375 return true; 1376 } 1377 return false; 1378 } 1379 1380 /// Check if the alloc size of \p ValTy is large enough to cover the variable 1381 /// (or fragment of the variable) described by \p DII. 1382 /// 1383 /// This is primarily intended as a helper for the different 1384 /// ConvertDebugDeclareToDebugValue functions. The dbg.declare/dbg.addr that is 1385 /// converted describes an alloca'd variable, so we need to use the 1386 /// alloc size of the value when doing the comparison. E.g. an i1 value will be 1387 /// identified as covering an n-bit fragment, if the store size of i1 is at 1388 /// least n bits. 1389 static bool valueCoversEntireFragment(Type *ValTy, DbgVariableIntrinsic *DII) { 1390 const DataLayout &DL = DII->getModule()->getDataLayout(); 1391 TypeSize ValueSize = DL.getTypeAllocSizeInBits(ValTy); 1392 if (Optional<uint64_t> FragmentSize = DII->getFragmentSizeInBits()) { 1393 assert(!ValueSize.isScalable() && 1394 "Fragments don't work on scalable types."); 1395 return ValueSize.getFixedSize() >= *FragmentSize; 1396 } 1397 // We can't always calculate the size of the DI variable (e.g. if it is a 1398 // VLA). Try to use the size of the alloca that the dbg intrinsic describes 1399 // intead. 1400 if (DII->isAddressOfVariable()) { 1401 // DII should have exactly 1 location when it is an address. 1402 assert(DII->getNumVariableLocationOps() == 1 && 1403 "address of variable must have exactly 1 location operand."); 1404 if (auto *AI = 1405 dyn_cast_or_null<AllocaInst>(DII->getVariableLocationOp(0))) { 1406 if (Optional<TypeSize> FragmentSize = AI->getAllocationSizeInBits(DL)) { 1407 assert(ValueSize.isScalable() == FragmentSize->isScalable() && 1408 "Both sizes should agree on the scalable flag."); 1409 return TypeSize::isKnownGE(ValueSize, *FragmentSize); 1410 } 1411 } 1412 } 1413 // Could not determine size of variable. Conservatively return false. 1414 return false; 1415 } 1416 1417 /// Produce a DebugLoc to use for each dbg.declare/inst pair that are promoted 1418 /// to a dbg.value. Because no machine insts can come from debug intrinsics, 1419 /// only the scope and inlinedAt is significant. Zero line numbers are used in 1420 /// case this DebugLoc leaks into any adjacent instructions. 1421 static DebugLoc getDebugValueLoc(DbgVariableIntrinsic *DII, Instruction *Src) { 1422 // Original dbg.declare must have a location. 1423 const DebugLoc &DeclareLoc = DII->getDebugLoc(); 1424 MDNode *Scope = DeclareLoc.getScope(); 1425 DILocation *InlinedAt = DeclareLoc.getInlinedAt(); 1426 // Produce an unknown location with the correct scope / inlinedAt fields. 1427 return DILocation::get(DII->getContext(), 0, 0, Scope, InlinedAt); 1428 } 1429 1430 /// Inserts a llvm.dbg.value intrinsic before a store to an alloca'd value 1431 /// that has an associated llvm.dbg.declare or llvm.dbg.addr intrinsic. 1432 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII, 1433 StoreInst *SI, DIBuilder &Builder) { 1434 assert(DII->isAddressOfVariable()); 1435 auto *DIVar = DII->getVariable(); 1436 assert(DIVar && "Missing variable"); 1437 auto *DIExpr = DII->getExpression(); 1438 Value *DV = SI->getValueOperand(); 1439 1440 DebugLoc NewLoc = getDebugValueLoc(DII, SI); 1441 1442 if (!valueCoversEntireFragment(DV->getType(), DII)) { 1443 // FIXME: If storing to a part of the variable described by the dbg.declare, 1444 // then we want to insert a dbg.value for the corresponding fragment. 1445 LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: " 1446 << *DII << '\n'); 1447 // For now, when there is a store to parts of the variable (but we do not 1448 // know which part) we insert an dbg.value instrinsic to indicate that we 1449 // know nothing about the variable's content. 1450 DV = UndefValue::get(DV->getType()); 1451 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); 1452 return; 1453 } 1454 1455 Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI); 1456 } 1457 1458 /// Inserts a llvm.dbg.value intrinsic before a load of an alloca'd value 1459 /// that has an associated llvm.dbg.declare or llvm.dbg.addr intrinsic. 1460 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII, 1461 LoadInst *LI, DIBuilder &Builder) { 1462 auto *DIVar = DII->getVariable(); 1463 auto *DIExpr = DII->getExpression(); 1464 assert(DIVar && "Missing variable"); 1465 1466 if (!valueCoversEntireFragment(LI->getType(), DII)) { 1467 // FIXME: If only referring to a part of the variable described by the 1468 // dbg.declare, then we want to insert a dbg.value for the corresponding 1469 // fragment. 1470 LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: " 1471 << *DII << '\n'); 1472 return; 1473 } 1474 1475 DebugLoc NewLoc = getDebugValueLoc(DII, nullptr); 1476 1477 // We are now tracking the loaded value instead of the address. In the 1478 // future if multi-location support is added to the IR, it might be 1479 // preferable to keep tracking both the loaded value and the original 1480 // address in case the alloca can not be elided. 1481 Instruction *DbgValue = Builder.insertDbgValueIntrinsic( 1482 LI, DIVar, DIExpr, NewLoc, (Instruction *)nullptr); 1483 DbgValue->insertAfter(LI); 1484 } 1485 1486 /// Inserts a llvm.dbg.value intrinsic after a phi that has an associated 1487 /// llvm.dbg.declare or llvm.dbg.addr intrinsic. 1488 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII, 1489 PHINode *APN, DIBuilder &Builder) { 1490 auto *DIVar = DII->getVariable(); 1491 auto *DIExpr = DII->getExpression(); 1492 assert(DIVar && "Missing variable"); 1493 1494 if (PhiHasDebugValue(DIVar, DIExpr, APN)) 1495 return; 1496 1497 if (!valueCoversEntireFragment(APN->getType(), DII)) { 1498 // FIXME: If only referring to a part of the variable described by the 1499 // dbg.declare, then we want to insert a dbg.value for the corresponding 1500 // fragment. 1501 LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: " 1502 << *DII << '\n'); 1503 return; 1504 } 1505 1506 BasicBlock *BB = APN->getParent(); 1507 auto InsertionPt = BB->getFirstInsertionPt(); 1508 1509 DebugLoc NewLoc = getDebugValueLoc(DII, nullptr); 1510 1511 // The block may be a catchswitch block, which does not have a valid 1512 // insertion point. 1513 // FIXME: Insert dbg.value markers in the successors when appropriate. 1514 if (InsertionPt != BB->end()) 1515 Builder.insertDbgValueIntrinsic(APN, DIVar, DIExpr, NewLoc, &*InsertionPt); 1516 } 1517 1518 /// Determine whether this alloca is either a VLA or an array. 1519 static bool isArray(AllocaInst *AI) { 1520 return AI->isArrayAllocation() || 1521 (AI->getAllocatedType() && AI->getAllocatedType()->isArrayTy()); 1522 } 1523 1524 /// Determine whether this alloca is a structure. 1525 static bool isStructure(AllocaInst *AI) { 1526 return AI->getAllocatedType() && AI->getAllocatedType()->isStructTy(); 1527 } 1528 1529 /// LowerDbgDeclare - Lowers llvm.dbg.declare intrinsics into appropriate set 1530 /// of llvm.dbg.value intrinsics. 1531 bool llvm::LowerDbgDeclare(Function &F) { 1532 bool Changed = false; 1533 DIBuilder DIB(*F.getParent(), /*AllowUnresolved*/ false); 1534 SmallVector<DbgDeclareInst *, 4> Dbgs; 1535 for (auto &FI : F) 1536 for (Instruction &BI : FI) 1537 if (auto DDI = dyn_cast<DbgDeclareInst>(&BI)) 1538 Dbgs.push_back(DDI); 1539 1540 if (Dbgs.empty()) 1541 return Changed; 1542 1543 for (auto &I : Dbgs) { 1544 DbgDeclareInst *DDI = I; 1545 AllocaInst *AI = dyn_cast_or_null<AllocaInst>(DDI->getAddress()); 1546 // If this is an alloca for a scalar variable, insert a dbg.value 1547 // at each load and store to the alloca and erase the dbg.declare. 1548 // The dbg.values allow tracking a variable even if it is not 1549 // stored on the stack, while the dbg.declare can only describe 1550 // the stack slot (and at a lexical-scope granularity). Later 1551 // passes will attempt to elide the stack slot. 1552 if (!AI || isArray(AI) || isStructure(AI)) 1553 continue; 1554 1555 // A volatile load/store means that the alloca can't be elided anyway. 1556 if (llvm::any_of(AI->users(), [](User *U) -> bool { 1557 if (LoadInst *LI = dyn_cast<LoadInst>(U)) 1558 return LI->isVolatile(); 1559 if (StoreInst *SI = dyn_cast<StoreInst>(U)) 1560 return SI->isVolatile(); 1561 return false; 1562 })) 1563 continue; 1564 1565 SmallVector<const Value *, 8> WorkList; 1566 WorkList.push_back(AI); 1567 while (!WorkList.empty()) { 1568 const Value *V = WorkList.pop_back_val(); 1569 for (auto &AIUse : V->uses()) { 1570 User *U = AIUse.getUser(); 1571 if (StoreInst *SI = dyn_cast<StoreInst>(U)) { 1572 if (AIUse.getOperandNo() == 1) 1573 ConvertDebugDeclareToDebugValue(DDI, SI, DIB); 1574 } else if (LoadInst *LI = dyn_cast<LoadInst>(U)) { 1575 ConvertDebugDeclareToDebugValue(DDI, LI, DIB); 1576 } else if (CallInst *CI = dyn_cast<CallInst>(U)) { 1577 // This is a call by-value or some other instruction that takes a 1578 // pointer to the variable. Insert a *value* intrinsic that describes 1579 // the variable by dereferencing the alloca. 1580 if (!CI->isLifetimeStartOrEnd()) { 1581 DebugLoc NewLoc = getDebugValueLoc(DDI, nullptr); 1582 auto *DerefExpr = 1583 DIExpression::append(DDI->getExpression(), dwarf::DW_OP_deref); 1584 DIB.insertDbgValueIntrinsic(AI, DDI->getVariable(), DerefExpr, 1585 NewLoc, CI); 1586 } 1587 } else if (BitCastInst *BI = dyn_cast<BitCastInst>(U)) { 1588 if (BI->getType()->isPointerTy()) 1589 WorkList.push_back(BI); 1590 } 1591 } 1592 } 1593 DDI->eraseFromParent(); 1594 Changed = true; 1595 } 1596 1597 if (Changed) 1598 for (BasicBlock &BB : F) 1599 RemoveRedundantDbgInstrs(&BB); 1600 1601 return Changed; 1602 } 1603 1604 /// Propagate dbg.value intrinsics through the newly inserted PHIs. 1605 void llvm::insertDebugValuesForPHIs(BasicBlock *BB, 1606 SmallVectorImpl<PHINode *> &InsertedPHIs) { 1607 assert(BB && "No BasicBlock to clone dbg.value(s) from."); 1608 if (InsertedPHIs.size() == 0) 1609 return; 1610 1611 // Map existing PHI nodes to their dbg.values. 1612 ValueToValueMapTy DbgValueMap; 1613 for (auto &I : *BB) { 1614 if (auto DbgII = dyn_cast<DbgVariableIntrinsic>(&I)) { 1615 for (Value *V : DbgII->location_ops()) 1616 if (auto *Loc = dyn_cast_or_null<PHINode>(V)) 1617 DbgValueMap.insert({Loc, DbgII}); 1618 } 1619 } 1620 if (DbgValueMap.size() == 0) 1621 return; 1622 1623 // Map a pair of the destination BB and old dbg.value to the new dbg.value, 1624 // so that if a dbg.value is being rewritten to use more than one of the 1625 // inserted PHIs in the same destination BB, we can update the same dbg.value 1626 // with all the new PHIs instead of creating one copy for each. 1627 MapVector<std::pair<BasicBlock *, DbgVariableIntrinsic *>, 1628 DbgVariableIntrinsic *> 1629 NewDbgValueMap; 1630 // Then iterate through the new PHIs and look to see if they use one of the 1631 // previously mapped PHIs. If so, create a new dbg.value intrinsic that will 1632 // propagate the info through the new PHI. If we use more than one new PHI in 1633 // a single destination BB with the same old dbg.value, merge the updates so 1634 // that we get a single new dbg.value with all the new PHIs. 1635 for (auto PHI : InsertedPHIs) { 1636 BasicBlock *Parent = PHI->getParent(); 1637 // Avoid inserting an intrinsic into an EH block. 1638 if (Parent->getFirstNonPHI()->isEHPad()) 1639 continue; 1640 for (auto VI : PHI->operand_values()) { 1641 auto V = DbgValueMap.find(VI); 1642 if (V != DbgValueMap.end()) { 1643 auto *DbgII = cast<DbgVariableIntrinsic>(V->second); 1644 auto NewDI = NewDbgValueMap.find({Parent, DbgII}); 1645 if (NewDI == NewDbgValueMap.end()) { 1646 auto *NewDbgII = cast<DbgVariableIntrinsic>(DbgII->clone()); 1647 NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first; 1648 } 1649 DbgVariableIntrinsic *NewDbgII = NewDI->second; 1650 // If PHI contains VI as an operand more than once, we may 1651 // replaced it in NewDbgII; confirm that it is present. 1652 if (is_contained(NewDbgII->location_ops(), VI)) 1653 NewDbgII->replaceVariableLocationOp(VI, PHI); 1654 } 1655 } 1656 } 1657 // Insert thew new dbg.values into their destination blocks. 1658 for (auto DI : NewDbgValueMap) { 1659 BasicBlock *Parent = DI.first.first; 1660 auto *NewDbgII = DI.second; 1661 auto InsertionPt = Parent->getFirstInsertionPt(); 1662 assert(InsertionPt != Parent->end() && "Ill-formed basic block"); 1663 NewDbgII->insertBefore(&*InsertionPt); 1664 } 1665 } 1666 1667 bool llvm::replaceDbgDeclare(Value *Address, Value *NewAddress, 1668 DIBuilder &Builder, uint8_t DIExprFlags, 1669 int Offset) { 1670 auto DbgAddrs = FindDbgAddrUses(Address); 1671 for (DbgVariableIntrinsic *DII : DbgAddrs) { 1672 const DebugLoc &Loc = DII->getDebugLoc(); 1673 auto *DIVar = DII->getVariable(); 1674 auto *DIExpr = DII->getExpression(); 1675 assert(DIVar && "Missing variable"); 1676 DIExpr = DIExpression::prepend(DIExpr, DIExprFlags, Offset); 1677 // Insert llvm.dbg.declare immediately before DII, and remove old 1678 // llvm.dbg.declare. 1679 Builder.insertDeclare(NewAddress, DIVar, DIExpr, Loc, DII); 1680 DII->eraseFromParent(); 1681 } 1682 return !DbgAddrs.empty(); 1683 } 1684 1685 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress, 1686 DIBuilder &Builder, int Offset) { 1687 const DebugLoc &Loc = DVI->getDebugLoc(); 1688 auto *DIVar = DVI->getVariable(); 1689 auto *DIExpr = DVI->getExpression(); 1690 assert(DIVar && "Missing variable"); 1691 1692 // This is an alloca-based llvm.dbg.value. The first thing it should do with 1693 // the alloca pointer is dereference it. Otherwise we don't know how to handle 1694 // it and give up. 1695 if (!DIExpr || DIExpr->getNumElements() < 1 || 1696 DIExpr->getElement(0) != dwarf::DW_OP_deref) 1697 return; 1698 1699 // Insert the offset before the first deref. 1700 // We could just change the offset argument of dbg.value, but it's unsigned... 1701 if (Offset) 1702 DIExpr = DIExpression::prepend(DIExpr, 0, Offset); 1703 1704 Builder.insertDbgValueIntrinsic(NewAddress, DIVar, DIExpr, Loc, DVI); 1705 DVI->eraseFromParent(); 1706 } 1707 1708 void llvm::replaceDbgValueForAlloca(AllocaInst *AI, Value *NewAllocaAddress, 1709 DIBuilder &Builder, int Offset) { 1710 if (auto *L = LocalAsMetadata::getIfExists(AI)) 1711 if (auto *MDV = MetadataAsValue::getIfExists(AI->getContext(), L)) 1712 for (Use &U : llvm::make_early_inc_range(MDV->uses())) 1713 if (auto *DVI = dyn_cast<DbgValueInst>(U.getUser())) 1714 replaceOneDbgValueForAlloca(DVI, NewAllocaAddress, Builder, Offset); 1715 } 1716 1717 /// Where possible to salvage debug information for \p I do so 1718 /// and return True. If not possible mark undef and return False. 1719 void llvm::salvageDebugInfo(Instruction &I) { 1720 SmallVector<DbgVariableIntrinsic *, 1> DbgUsers; 1721 findDbgUsers(DbgUsers, &I); 1722 salvageDebugInfoForDbgValues(I, DbgUsers); 1723 } 1724 1725 void llvm::salvageDebugInfoForDbgValues( 1726 Instruction &I, ArrayRef<DbgVariableIntrinsic *> DbgUsers) { 1727 // This is an arbitrary chosen limit on the maximum number of values we can 1728 // salvage up to in a DIArgList, used for performance reasons. 1729 const unsigned MaxDebugArgs = 16; 1730 bool Salvaged = false; 1731 1732 for (auto *DII : DbgUsers) { 1733 // Do not add DW_OP_stack_value for DbgDeclare and DbgAddr, because they 1734 // are implicitly pointing out the value as a DWARF memory location 1735 // description. 1736 bool StackValue = isa<DbgValueInst>(DII); 1737 auto DIILocation = DII->location_ops(); 1738 assert( 1739 is_contained(DIILocation, &I) && 1740 "DbgVariableIntrinsic must use salvaged instruction as its location"); 1741 unsigned LocNo = std::distance(DIILocation.begin(), find(DIILocation, &I)); 1742 SmallVector<Value *, 4> AdditionalValues; 1743 DIExpression *SalvagedExpr = salvageDebugInfoImpl( 1744 I, DII->getExpression(), StackValue, LocNo, AdditionalValues); 1745 1746 // salvageDebugInfoImpl should fail on examining the first element of 1747 // DbgUsers, or none of them. 1748 if (!SalvagedExpr) 1749 break; 1750 1751 DII->replaceVariableLocationOp(&I, I.getOperand(0)); 1752 if (AdditionalValues.empty()) { 1753 DII->setExpression(SalvagedExpr); 1754 } else if (isa<DbgValueInst>(DII) && 1755 DII->getNumVariableLocationOps() + AdditionalValues.size() <= 1756 MaxDebugArgs) { 1757 DII->addVariableLocationOps(AdditionalValues, SalvagedExpr); 1758 } else { 1759 // Do not salvage using DIArgList for dbg.addr/dbg.declare, as it is 1760 // currently only valid for stack value expressions. 1761 // Also do not salvage if the resulting DIArgList would contain an 1762 // unreasonably large number of values. 1763 Value *Undef = UndefValue::get(I.getOperand(0)->getType()); 1764 DII->replaceVariableLocationOp(I.getOperand(0), Undef); 1765 } 1766 LLVM_DEBUG(dbgs() << "SALVAGE: " << *DII << '\n'); 1767 Salvaged = true; 1768 } 1769 1770 if (Salvaged) 1771 return; 1772 1773 for (auto *DII : DbgUsers) { 1774 Value *Undef = UndefValue::get(I.getType()); 1775 DII->replaceVariableLocationOp(&I, Undef); 1776 } 1777 } 1778 1779 bool getSalvageOpsForGEP(GetElementPtrInst *GEP, const DataLayout &DL, 1780 uint64_t CurrentLocOps, 1781 SmallVectorImpl<uint64_t> &Opcodes, 1782 SmallVectorImpl<Value *> &AdditionalValues) { 1783 unsigned BitWidth = DL.getIndexSizeInBits(GEP->getPointerAddressSpace()); 1784 // Rewrite a GEP into a DIExpression. 1785 SmallDenseMap<Value *, APInt, 8> VariableOffsets; 1786 APInt ConstantOffset(BitWidth, 0); 1787 if (!GEP->collectOffset(DL, BitWidth, VariableOffsets, ConstantOffset)) 1788 return false; 1789 if (!VariableOffsets.empty() && !CurrentLocOps) { 1790 Opcodes.insert(Opcodes.begin(), {dwarf::DW_OP_LLVM_arg, 0}); 1791 CurrentLocOps = 1; 1792 } 1793 for (auto Offset : VariableOffsets) { 1794 AdditionalValues.push_back(Offset.first); 1795 assert(Offset.second.isStrictlyPositive() && 1796 "Expected strictly positive multiplier for offset."); 1797 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu, 1798 Offset.second.getZExtValue(), dwarf::DW_OP_mul, 1799 dwarf::DW_OP_plus}); 1800 } 1801 DIExpression::appendOffset(Opcodes, ConstantOffset.getSExtValue()); 1802 return true; 1803 } 1804 1805 uint64_t getDwarfOpForBinOp(Instruction::BinaryOps Opcode) { 1806 switch (Opcode) { 1807 case Instruction::Add: 1808 return dwarf::DW_OP_plus; 1809 case Instruction::Sub: 1810 return dwarf::DW_OP_minus; 1811 case Instruction::Mul: 1812 return dwarf::DW_OP_mul; 1813 case Instruction::SDiv: 1814 return dwarf::DW_OP_div; 1815 case Instruction::SRem: 1816 return dwarf::DW_OP_mod; 1817 case Instruction::Or: 1818 return dwarf::DW_OP_or; 1819 case Instruction::And: 1820 return dwarf::DW_OP_and; 1821 case Instruction::Xor: 1822 return dwarf::DW_OP_xor; 1823 case Instruction::Shl: 1824 return dwarf::DW_OP_shl; 1825 case Instruction::LShr: 1826 return dwarf::DW_OP_shr; 1827 case Instruction::AShr: 1828 return dwarf::DW_OP_shra; 1829 default: 1830 // TODO: Salvage from each kind of binop we know about. 1831 return 0; 1832 } 1833 } 1834 1835 bool getSalvageOpsForBinOp(BinaryOperator *BI, uint64_t CurrentLocOps, 1836 SmallVectorImpl<uint64_t> &Opcodes, 1837 SmallVectorImpl<Value *> &AdditionalValues) { 1838 // Handle binary operations with constant integer operands as a special case. 1839 auto *ConstInt = dyn_cast<ConstantInt>(BI->getOperand(1)); 1840 // Values wider than 64 bits cannot be represented within a DIExpression. 1841 if (ConstInt && ConstInt->getBitWidth() > 64) 1842 return false; 1843 1844 Instruction::BinaryOps BinOpcode = BI->getOpcode(); 1845 // Push any Constant Int operand onto the expression stack. 1846 if (ConstInt) { 1847 uint64_t Val = ConstInt->getSExtValue(); 1848 // Add or Sub Instructions with a constant operand can potentially be 1849 // simplified. 1850 if (BinOpcode == Instruction::Add || BinOpcode == Instruction::Sub) { 1851 uint64_t Offset = BinOpcode == Instruction::Add ? Val : -int64_t(Val); 1852 DIExpression::appendOffset(Opcodes, Offset); 1853 return true; 1854 } 1855 Opcodes.append({dwarf::DW_OP_constu, Val}); 1856 } else { 1857 if (!CurrentLocOps) { 1858 Opcodes.append({dwarf::DW_OP_LLVM_arg, 0}); 1859 CurrentLocOps = 1; 1860 } 1861 Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps}); 1862 AdditionalValues.push_back(BI->getOperand(1)); 1863 } 1864 1865 // Add salvaged binary operator to expression stack, if it has a valid 1866 // representation in a DIExpression. 1867 uint64_t DwarfBinOp = getDwarfOpForBinOp(BinOpcode); 1868 if (!DwarfBinOp) 1869 return false; 1870 Opcodes.push_back(DwarfBinOp); 1871 1872 return true; 1873 } 1874 1875 DIExpression * 1876 llvm::salvageDebugInfoImpl(Instruction &I, DIExpression *SrcDIExpr, 1877 bool WithStackValue, unsigned LocNo, 1878 SmallVectorImpl<Value *> &AdditionalValues) { 1879 uint64_t CurrentLocOps = SrcDIExpr->getNumLocationOperands(); 1880 auto &M = *I.getModule(); 1881 auto &DL = M.getDataLayout(); 1882 1883 // Apply a vector of opcodes to the source DIExpression. 1884 auto doSalvage = [&](SmallVectorImpl<uint64_t> &Ops) -> DIExpression * { 1885 DIExpression *DIExpr = SrcDIExpr; 1886 if (!Ops.empty()) { 1887 DIExpr = DIExpression::appendOpsToArg(DIExpr, Ops, LocNo, WithStackValue); 1888 } 1889 return DIExpr; 1890 }; 1891 1892 // initializer-list helper for applying operators to the source DIExpression. 1893 auto applyOps = [&](ArrayRef<uint64_t> Opcodes) { 1894 SmallVector<uint64_t, 8> Ops(Opcodes.begin(), Opcodes.end()); 1895 return doSalvage(Ops); 1896 }; 1897 1898 if (auto *CI = dyn_cast<CastInst>(&I)) { 1899 // No-op casts are irrelevant for debug info. 1900 if (CI->isNoopCast(DL)) 1901 return SrcDIExpr; 1902 1903 Type *Type = CI->getType(); 1904 // Casts other than Trunc, SExt, or ZExt to scalar types cannot be salvaged. 1905 if (Type->isVectorTy() || 1906 !(isa<TruncInst>(&I) || isa<SExtInst>(&I) || isa<ZExtInst>(&I))) 1907 return nullptr; 1908 1909 Value *FromValue = CI->getOperand(0); 1910 unsigned FromTypeBitSize = FromValue->getType()->getScalarSizeInBits(); 1911 unsigned ToTypeBitSize = Type->getScalarSizeInBits(); 1912 1913 return applyOps(DIExpression::getExtOps(FromTypeBitSize, ToTypeBitSize, 1914 isa<SExtInst>(&I))); 1915 } 1916 1917 SmallVector<uint64_t, 8> Ops; 1918 if (auto *GEP = dyn_cast<GetElementPtrInst>(&I)) { 1919 if (getSalvageOpsForGEP(GEP, DL, CurrentLocOps, Ops, AdditionalValues)) 1920 return doSalvage(Ops); 1921 } else if (auto *BI = dyn_cast<BinaryOperator>(&I)) { 1922 if (getSalvageOpsForBinOp(BI, CurrentLocOps, Ops, AdditionalValues)) 1923 return doSalvage(Ops); 1924 } 1925 // *Not* to do: we should not attempt to salvage load instructions, 1926 // because the validity and lifetime of a dbg.value containing 1927 // DW_OP_deref becomes difficult to analyze. See PR40628 for examples. 1928 return nullptr; 1929 } 1930 1931 /// A replacement for a dbg.value expression. 1932 using DbgValReplacement = Optional<DIExpression *>; 1933 1934 /// Point debug users of \p From to \p To using exprs given by \p RewriteExpr, 1935 /// possibly moving/undefing users to prevent use-before-def. Returns true if 1936 /// changes are made. 1937 static bool rewriteDebugUsers( 1938 Instruction &From, Value &To, Instruction &DomPoint, DominatorTree &DT, 1939 function_ref<DbgValReplacement(DbgVariableIntrinsic &DII)> RewriteExpr) { 1940 // Find debug users of From. 1941 SmallVector<DbgVariableIntrinsic *, 1> Users; 1942 findDbgUsers(Users, &From); 1943 if (Users.empty()) 1944 return false; 1945 1946 // Prevent use-before-def of To. 1947 bool Changed = false; 1948 SmallPtrSet<DbgVariableIntrinsic *, 1> UndefOrSalvage; 1949 if (isa<Instruction>(&To)) { 1950 bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint; 1951 1952 for (auto *DII : Users) { 1953 // It's common to see a debug user between From and DomPoint. Move it 1954 // after DomPoint to preserve the variable update without any reordering. 1955 if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) { 1956 LLVM_DEBUG(dbgs() << "MOVE: " << *DII << '\n'); 1957 DII->moveAfter(&DomPoint); 1958 Changed = true; 1959 1960 // Users which otherwise aren't dominated by the replacement value must 1961 // be salvaged or deleted. 1962 } else if (!DT.dominates(&DomPoint, DII)) { 1963 UndefOrSalvage.insert(DII); 1964 } 1965 } 1966 } 1967 1968 // Update debug users without use-before-def risk. 1969 for (auto *DII : Users) { 1970 if (UndefOrSalvage.count(DII)) 1971 continue; 1972 1973 DbgValReplacement DVR = RewriteExpr(*DII); 1974 if (!DVR) 1975 continue; 1976 1977 DII->replaceVariableLocationOp(&From, &To); 1978 DII->setExpression(*DVR); 1979 LLVM_DEBUG(dbgs() << "REWRITE: " << *DII << '\n'); 1980 Changed = true; 1981 } 1982 1983 if (!UndefOrSalvage.empty()) { 1984 // Try to salvage the remaining debug users. 1985 salvageDebugInfo(From); 1986 Changed = true; 1987 } 1988 1989 return Changed; 1990 } 1991 1992 /// Check if a bitcast between a value of type \p FromTy to type \p ToTy would 1993 /// losslessly preserve the bits and semantics of the value. This predicate is 1994 /// symmetric, i.e swapping \p FromTy and \p ToTy should give the same result. 1995 /// 1996 /// Note that Type::canLosslesslyBitCastTo is not suitable here because it 1997 /// allows semantically unequivalent bitcasts, such as <2 x i64> -> <4 x i32>, 1998 /// and also does not allow lossless pointer <-> integer conversions. 1999 static bool isBitCastSemanticsPreserving(const DataLayout &DL, Type *FromTy, 2000 Type *ToTy) { 2001 // Trivially compatible types. 2002 if (FromTy == ToTy) 2003 return true; 2004 2005 // Handle compatible pointer <-> integer conversions. 2006 if (FromTy->isIntOrPtrTy() && ToTy->isIntOrPtrTy()) { 2007 bool SameSize = DL.getTypeSizeInBits(FromTy) == DL.getTypeSizeInBits(ToTy); 2008 bool LosslessConversion = !DL.isNonIntegralPointerType(FromTy) && 2009 !DL.isNonIntegralPointerType(ToTy); 2010 return SameSize && LosslessConversion; 2011 } 2012 2013 // TODO: This is not exhaustive. 2014 return false; 2015 } 2016 2017 bool llvm::replaceAllDbgUsesWith(Instruction &From, Value &To, 2018 Instruction &DomPoint, DominatorTree &DT) { 2019 // Exit early if From has no debug users. 2020 if (!From.isUsedByMetadata()) 2021 return false; 2022 2023 assert(&From != &To && "Can't replace something with itself"); 2024 2025 Type *FromTy = From.getType(); 2026 Type *ToTy = To.getType(); 2027 2028 auto Identity = [&](DbgVariableIntrinsic &DII) -> DbgValReplacement { 2029 return DII.getExpression(); 2030 }; 2031 2032 // Handle no-op conversions. 2033 Module &M = *From.getModule(); 2034 const DataLayout &DL = M.getDataLayout(); 2035 if (isBitCastSemanticsPreserving(DL, FromTy, ToTy)) 2036 return rewriteDebugUsers(From, To, DomPoint, DT, Identity); 2037 2038 // Handle integer-to-integer widening and narrowing. 2039 // FIXME: Use DW_OP_convert when it's available everywhere. 2040 if (FromTy->isIntegerTy() && ToTy->isIntegerTy()) { 2041 uint64_t FromBits = FromTy->getPrimitiveSizeInBits(); 2042 uint64_t ToBits = ToTy->getPrimitiveSizeInBits(); 2043 assert(FromBits != ToBits && "Unexpected no-op conversion"); 2044 2045 // When the width of the result grows, assume that a debugger will only 2046 // access the low `FromBits` bits when inspecting the source variable. 2047 if (FromBits < ToBits) 2048 return rewriteDebugUsers(From, To, DomPoint, DT, Identity); 2049 2050 // The width of the result has shrunk. Use sign/zero extension to describe 2051 // the source variable's high bits. 2052 auto SignOrZeroExt = [&](DbgVariableIntrinsic &DII) -> DbgValReplacement { 2053 DILocalVariable *Var = DII.getVariable(); 2054 2055 // Without knowing signedness, sign/zero extension isn't possible. 2056 auto Signedness = Var->getSignedness(); 2057 if (!Signedness) 2058 return None; 2059 2060 bool Signed = *Signedness == DIBasicType::Signedness::Signed; 2061 return DIExpression::appendExt(DII.getExpression(), ToBits, FromBits, 2062 Signed); 2063 }; 2064 return rewriteDebugUsers(From, To, DomPoint, DT, SignOrZeroExt); 2065 } 2066 2067 // TODO: Floating-point conversions, vectors. 2068 return false; 2069 } 2070 2071 std::pair<unsigned, unsigned> 2072 llvm::removeAllNonTerminatorAndEHPadInstructions(BasicBlock *BB) { 2073 unsigned NumDeadInst = 0; 2074 unsigned NumDeadDbgInst = 0; 2075 // Delete the instructions backwards, as it has a reduced likelihood of 2076 // having to update as many def-use and use-def chains. 2077 Instruction *EndInst = BB->getTerminator(); // Last not to be deleted. 2078 while (EndInst != &BB->front()) { 2079 // Delete the next to last instruction. 2080 Instruction *Inst = &*--EndInst->getIterator(); 2081 if (!Inst->use_empty() && !Inst->getType()->isTokenTy()) 2082 Inst->replaceAllUsesWith(UndefValue::get(Inst->getType())); 2083 if (Inst->isEHPad() || Inst->getType()->isTokenTy()) { 2084 EndInst = Inst; 2085 continue; 2086 } 2087 if (isa<DbgInfoIntrinsic>(Inst)) 2088 ++NumDeadDbgInst; 2089 else 2090 ++NumDeadInst; 2091 Inst->eraseFromParent(); 2092 } 2093 return {NumDeadInst, NumDeadDbgInst}; 2094 } 2095 2096 unsigned llvm::changeToUnreachable(Instruction *I, bool UseLLVMTrap, 2097 bool PreserveLCSSA, DomTreeUpdater *DTU, 2098 MemorySSAUpdater *MSSAU) { 2099 BasicBlock *BB = I->getParent(); 2100 2101 if (MSSAU) 2102 MSSAU->changeToUnreachable(I); 2103 2104 SmallSet<BasicBlock *, 8> UniqueSuccessors; 2105 2106 // Loop over all of the successors, removing BB's entry from any PHI 2107 // nodes. 2108 for (BasicBlock *Successor : successors(BB)) { 2109 Successor->removePredecessor(BB, PreserveLCSSA); 2110 if (DTU) 2111 UniqueSuccessors.insert(Successor); 2112 } 2113 // Insert a call to llvm.trap right before this. This turns the undefined 2114 // behavior into a hard fail instead of falling through into random code. 2115 if (UseLLVMTrap) { 2116 Function *TrapFn = 2117 Intrinsic::getDeclaration(BB->getParent()->getParent(), Intrinsic::trap); 2118 CallInst *CallTrap = CallInst::Create(TrapFn, "", I); 2119 CallTrap->setDebugLoc(I->getDebugLoc()); 2120 } 2121 auto *UI = new UnreachableInst(I->getContext(), I); 2122 UI->setDebugLoc(I->getDebugLoc()); 2123 2124 // All instructions after this are dead. 2125 unsigned NumInstrsRemoved = 0; 2126 BasicBlock::iterator BBI = I->getIterator(), BBE = BB->end(); 2127 while (BBI != BBE) { 2128 if (!BBI->use_empty()) 2129 BBI->replaceAllUsesWith(UndefValue::get(BBI->getType())); 2130 BB->getInstList().erase(BBI++); 2131 ++NumInstrsRemoved; 2132 } 2133 if (DTU) { 2134 SmallVector<DominatorTree::UpdateType, 8> Updates; 2135 Updates.reserve(UniqueSuccessors.size()); 2136 for (BasicBlock *UniqueSuccessor : UniqueSuccessors) 2137 Updates.push_back({DominatorTree::Delete, BB, UniqueSuccessor}); 2138 DTU->applyUpdates(Updates); 2139 } 2140 return NumInstrsRemoved; 2141 } 2142 2143 CallInst *llvm::createCallMatchingInvoke(InvokeInst *II) { 2144 SmallVector<Value *, 8> Args(II->args()); 2145 SmallVector<OperandBundleDef, 1> OpBundles; 2146 II->getOperandBundlesAsDefs(OpBundles); 2147 CallInst *NewCall = CallInst::Create(II->getFunctionType(), 2148 II->getCalledOperand(), Args, OpBundles); 2149 NewCall->setCallingConv(II->getCallingConv()); 2150 NewCall->setAttributes(II->getAttributes()); 2151 NewCall->setDebugLoc(II->getDebugLoc()); 2152 NewCall->copyMetadata(*II); 2153 2154 // If the invoke had profile metadata, try converting them for CallInst. 2155 uint64_t TotalWeight; 2156 if (NewCall->extractProfTotalWeight(TotalWeight)) { 2157 // Set the total weight if it fits into i32, otherwise reset. 2158 MDBuilder MDB(NewCall->getContext()); 2159 auto NewWeights = uint32_t(TotalWeight) != TotalWeight 2160 ? nullptr 2161 : MDB.createBranchWeights({uint32_t(TotalWeight)}); 2162 NewCall->setMetadata(LLVMContext::MD_prof, NewWeights); 2163 } 2164 2165 return NewCall; 2166 } 2167 2168 /// changeToCall - Convert the specified invoke into a normal call. 2169 void llvm::changeToCall(InvokeInst *II, DomTreeUpdater *DTU) { 2170 CallInst *NewCall = createCallMatchingInvoke(II); 2171 NewCall->takeName(II); 2172 NewCall->insertBefore(II); 2173 II->replaceAllUsesWith(NewCall); 2174 2175 // Follow the call by a branch to the normal destination. 2176 BasicBlock *NormalDestBB = II->getNormalDest(); 2177 BranchInst::Create(NormalDestBB, II); 2178 2179 // Update PHI nodes in the unwind destination 2180 BasicBlock *BB = II->getParent(); 2181 BasicBlock *UnwindDestBB = II->getUnwindDest(); 2182 UnwindDestBB->removePredecessor(BB); 2183 II->eraseFromParent(); 2184 if (DTU) 2185 DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDestBB}}); 2186 } 2187 2188 BasicBlock *llvm::changeToInvokeAndSplitBasicBlock(CallInst *CI, 2189 BasicBlock *UnwindEdge, 2190 DomTreeUpdater *DTU) { 2191 BasicBlock *BB = CI->getParent(); 2192 2193 // Convert this function call into an invoke instruction. First, split the 2194 // basic block. 2195 BasicBlock *Split = SplitBlock(BB, CI, DTU, /*LI=*/nullptr, /*MSSAU*/ nullptr, 2196 CI->getName() + ".noexc"); 2197 2198 // Delete the unconditional branch inserted by SplitBlock 2199 BB->getInstList().pop_back(); 2200 2201 // Create the new invoke instruction. 2202 SmallVector<Value *, 8> InvokeArgs(CI->args()); 2203 SmallVector<OperandBundleDef, 1> OpBundles; 2204 2205 CI->getOperandBundlesAsDefs(OpBundles); 2206 2207 // Note: we're round tripping operand bundles through memory here, and that 2208 // can potentially be avoided with a cleverer API design that we do not have 2209 // as of this time. 2210 2211 InvokeInst *II = 2212 InvokeInst::Create(CI->getFunctionType(), CI->getCalledOperand(), Split, 2213 UnwindEdge, InvokeArgs, OpBundles, CI->getName(), BB); 2214 II->setDebugLoc(CI->getDebugLoc()); 2215 II->setCallingConv(CI->getCallingConv()); 2216 II->setAttributes(CI->getAttributes()); 2217 2218 if (DTU) 2219 DTU->applyUpdates({{DominatorTree::Insert, BB, UnwindEdge}}); 2220 2221 // Make sure that anything using the call now uses the invoke! This also 2222 // updates the CallGraph if present, because it uses a WeakTrackingVH. 2223 CI->replaceAllUsesWith(II); 2224 2225 // Delete the original call 2226 Split->getInstList().pop_front(); 2227 return Split; 2228 } 2229 2230 static bool markAliveBlocks(Function &F, 2231 SmallPtrSetImpl<BasicBlock *> &Reachable, 2232 DomTreeUpdater *DTU = nullptr) { 2233 SmallVector<BasicBlock*, 128> Worklist; 2234 BasicBlock *BB = &F.front(); 2235 Worklist.push_back(BB); 2236 Reachable.insert(BB); 2237 bool Changed = false; 2238 do { 2239 BB = Worklist.pop_back_val(); 2240 2241 // Do a quick scan of the basic block, turning any obviously unreachable 2242 // instructions into LLVM unreachable insts. The instruction combining pass 2243 // canonicalizes unreachable insts into stores to null or undef. 2244 for (Instruction &I : *BB) { 2245 if (auto *CI = dyn_cast<CallInst>(&I)) { 2246 Value *Callee = CI->getCalledOperand(); 2247 // Handle intrinsic calls. 2248 if (Function *F = dyn_cast<Function>(Callee)) { 2249 auto IntrinsicID = F->getIntrinsicID(); 2250 // Assumptions that are known to be false are equivalent to 2251 // unreachable. Also, if the condition is undefined, then we make the 2252 // choice most beneficial to the optimizer, and choose that to also be 2253 // unreachable. 2254 if (IntrinsicID == Intrinsic::assume) { 2255 if (match(CI->getArgOperand(0), m_CombineOr(m_Zero(), m_Undef()))) { 2256 // Don't insert a call to llvm.trap right before the unreachable. 2257 changeToUnreachable(CI, false, false, DTU); 2258 Changed = true; 2259 break; 2260 } 2261 } else if (IntrinsicID == Intrinsic::experimental_guard) { 2262 // A call to the guard intrinsic bails out of the current 2263 // compilation unit if the predicate passed to it is false. If the 2264 // predicate is a constant false, then we know the guard will bail 2265 // out of the current compile unconditionally, so all code following 2266 // it is dead. 2267 // 2268 // Note: unlike in llvm.assume, it is not "obviously profitable" for 2269 // guards to treat `undef` as `false` since a guard on `undef` can 2270 // still be useful for widening. 2271 if (match(CI->getArgOperand(0), m_Zero())) 2272 if (!isa<UnreachableInst>(CI->getNextNode())) { 2273 changeToUnreachable(CI->getNextNode(), /*UseLLVMTrap=*/false, 2274 false, DTU); 2275 Changed = true; 2276 break; 2277 } 2278 } 2279 } else if ((isa<ConstantPointerNull>(Callee) && 2280 !NullPointerIsDefined(CI->getFunction())) || 2281 isa<UndefValue>(Callee)) { 2282 changeToUnreachable(CI, /*UseLLVMTrap=*/false, false, DTU); 2283 Changed = true; 2284 break; 2285 } 2286 if (CI->doesNotReturn() && !CI->isMustTailCall()) { 2287 // If we found a call to a no-return function, insert an unreachable 2288 // instruction after it. Make sure there isn't *already* one there 2289 // though. 2290 if (!isa<UnreachableInst>(CI->getNextNode())) { 2291 // Don't insert a call to llvm.trap right before the unreachable. 2292 changeToUnreachable(CI->getNextNode(), false, false, DTU); 2293 Changed = true; 2294 } 2295 break; 2296 } 2297 } else if (auto *SI = dyn_cast<StoreInst>(&I)) { 2298 // Store to undef and store to null are undefined and used to signal 2299 // that they should be changed to unreachable by passes that can't 2300 // modify the CFG. 2301 2302 // Don't touch volatile stores. 2303 if (SI->isVolatile()) continue; 2304 2305 Value *Ptr = SI->getOperand(1); 2306 2307 if (isa<UndefValue>(Ptr) || 2308 (isa<ConstantPointerNull>(Ptr) && 2309 !NullPointerIsDefined(SI->getFunction(), 2310 SI->getPointerAddressSpace()))) { 2311 changeToUnreachable(SI, true, false, DTU); 2312 Changed = true; 2313 break; 2314 } 2315 } 2316 } 2317 2318 Instruction *Terminator = BB->getTerminator(); 2319 if (auto *II = dyn_cast<InvokeInst>(Terminator)) { 2320 // Turn invokes that call 'nounwind' functions into ordinary calls. 2321 Value *Callee = II->getCalledOperand(); 2322 if ((isa<ConstantPointerNull>(Callee) && 2323 !NullPointerIsDefined(BB->getParent())) || 2324 isa<UndefValue>(Callee)) { 2325 changeToUnreachable(II, true, false, DTU); 2326 Changed = true; 2327 } else if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(&F)) { 2328 if (II->use_empty() && II->onlyReadsMemory()) { 2329 // jump to the normal destination branch. 2330 BasicBlock *NormalDestBB = II->getNormalDest(); 2331 BasicBlock *UnwindDestBB = II->getUnwindDest(); 2332 BranchInst::Create(NormalDestBB, II); 2333 UnwindDestBB->removePredecessor(II->getParent()); 2334 II->eraseFromParent(); 2335 if (DTU) 2336 DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDestBB}}); 2337 } else 2338 changeToCall(II, DTU); 2339 Changed = true; 2340 } 2341 } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Terminator)) { 2342 // Remove catchpads which cannot be reached. 2343 struct CatchPadDenseMapInfo { 2344 static CatchPadInst *getEmptyKey() { 2345 return DenseMapInfo<CatchPadInst *>::getEmptyKey(); 2346 } 2347 2348 static CatchPadInst *getTombstoneKey() { 2349 return DenseMapInfo<CatchPadInst *>::getTombstoneKey(); 2350 } 2351 2352 static unsigned getHashValue(CatchPadInst *CatchPad) { 2353 return static_cast<unsigned>(hash_combine_range( 2354 CatchPad->value_op_begin(), CatchPad->value_op_end())); 2355 } 2356 2357 static bool isEqual(CatchPadInst *LHS, CatchPadInst *RHS) { 2358 if (LHS == getEmptyKey() || LHS == getTombstoneKey() || 2359 RHS == getEmptyKey() || RHS == getTombstoneKey()) 2360 return LHS == RHS; 2361 return LHS->isIdenticalTo(RHS); 2362 } 2363 }; 2364 2365 SmallDenseMap<BasicBlock *, int, 8> NumPerSuccessorCases; 2366 // Set of unique CatchPads. 2367 SmallDenseMap<CatchPadInst *, detail::DenseSetEmpty, 4, 2368 CatchPadDenseMapInfo, detail::DenseSetPair<CatchPadInst *>> 2369 HandlerSet; 2370 detail::DenseSetEmpty Empty; 2371 for (CatchSwitchInst::handler_iterator I = CatchSwitch->handler_begin(), 2372 E = CatchSwitch->handler_end(); 2373 I != E; ++I) { 2374 BasicBlock *HandlerBB = *I; 2375 if (DTU) 2376 ++NumPerSuccessorCases[HandlerBB]; 2377 auto *CatchPad = cast<CatchPadInst>(HandlerBB->getFirstNonPHI()); 2378 if (!HandlerSet.insert({CatchPad, Empty}).second) { 2379 if (DTU) 2380 --NumPerSuccessorCases[HandlerBB]; 2381 CatchSwitch->removeHandler(I); 2382 --I; 2383 --E; 2384 Changed = true; 2385 } 2386 } 2387 if (DTU) { 2388 std::vector<DominatorTree::UpdateType> Updates; 2389 for (const std::pair<BasicBlock *, int> &I : NumPerSuccessorCases) 2390 if (I.second == 0) 2391 Updates.push_back({DominatorTree::Delete, BB, I.first}); 2392 DTU->applyUpdates(Updates); 2393 } 2394 } 2395 2396 Changed |= ConstantFoldTerminator(BB, true, nullptr, DTU); 2397 for (BasicBlock *Successor : successors(BB)) 2398 if (Reachable.insert(Successor).second) 2399 Worklist.push_back(Successor); 2400 } while (!Worklist.empty()); 2401 return Changed; 2402 } 2403 2404 void llvm::removeUnwindEdge(BasicBlock *BB, DomTreeUpdater *DTU) { 2405 Instruction *TI = BB->getTerminator(); 2406 2407 if (auto *II = dyn_cast<InvokeInst>(TI)) { 2408 changeToCall(II, DTU); 2409 return; 2410 } 2411 2412 Instruction *NewTI; 2413 BasicBlock *UnwindDest; 2414 2415 if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) { 2416 NewTI = CleanupReturnInst::Create(CRI->getCleanupPad(), nullptr, CRI); 2417 UnwindDest = CRI->getUnwindDest(); 2418 } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(TI)) { 2419 auto *NewCatchSwitch = CatchSwitchInst::Create( 2420 CatchSwitch->getParentPad(), nullptr, CatchSwitch->getNumHandlers(), 2421 CatchSwitch->getName(), CatchSwitch); 2422 for (BasicBlock *PadBB : CatchSwitch->handlers()) 2423 NewCatchSwitch->addHandler(PadBB); 2424 2425 NewTI = NewCatchSwitch; 2426 UnwindDest = CatchSwitch->getUnwindDest(); 2427 } else { 2428 llvm_unreachable("Could not find unwind successor"); 2429 } 2430 2431 NewTI->takeName(TI); 2432 NewTI->setDebugLoc(TI->getDebugLoc()); 2433 UnwindDest->removePredecessor(BB); 2434 TI->replaceAllUsesWith(NewTI); 2435 TI->eraseFromParent(); 2436 if (DTU) 2437 DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDest}}); 2438 } 2439 2440 /// removeUnreachableBlocks - Remove blocks that are not reachable, even 2441 /// if they are in a dead cycle. Return true if a change was made, false 2442 /// otherwise. 2443 bool llvm::removeUnreachableBlocks(Function &F, DomTreeUpdater *DTU, 2444 MemorySSAUpdater *MSSAU) { 2445 SmallPtrSet<BasicBlock *, 16> Reachable; 2446 bool Changed = markAliveBlocks(F, Reachable, DTU); 2447 2448 // If there are unreachable blocks in the CFG... 2449 if (Reachable.size() == F.size()) 2450 return Changed; 2451 2452 assert(Reachable.size() < F.size()); 2453 2454 // Are there any blocks left to actually delete? 2455 SmallSetVector<BasicBlock *, 8> BlocksToRemove; 2456 for (BasicBlock &BB : F) { 2457 // Skip reachable basic blocks 2458 if (Reachable.count(&BB)) 2459 continue; 2460 // Skip already-deleted blocks 2461 if (DTU && DTU->isBBPendingDeletion(&BB)) 2462 continue; 2463 BlocksToRemove.insert(&BB); 2464 } 2465 2466 if (BlocksToRemove.empty()) 2467 return Changed; 2468 2469 Changed = true; 2470 NumRemoved += BlocksToRemove.size(); 2471 2472 if (MSSAU) 2473 MSSAU->removeBlocks(BlocksToRemove); 2474 2475 DeleteDeadBlocks(BlocksToRemove.takeVector(), DTU); 2476 2477 return Changed; 2478 } 2479 2480 void llvm::combineMetadata(Instruction *K, const Instruction *J, 2481 ArrayRef<unsigned> KnownIDs, bool DoesKMove) { 2482 SmallVector<std::pair<unsigned, MDNode *>, 4> Metadata; 2483 K->dropUnknownNonDebugMetadata(KnownIDs); 2484 K->getAllMetadataOtherThanDebugLoc(Metadata); 2485 for (const auto &MD : Metadata) { 2486 unsigned Kind = MD.first; 2487 MDNode *JMD = J->getMetadata(Kind); 2488 MDNode *KMD = MD.second; 2489 2490 switch (Kind) { 2491 default: 2492 K->setMetadata(Kind, nullptr); // Remove unknown metadata 2493 break; 2494 case LLVMContext::MD_dbg: 2495 llvm_unreachable("getAllMetadataOtherThanDebugLoc returned a MD_dbg"); 2496 case LLVMContext::MD_tbaa: 2497 K->setMetadata(Kind, MDNode::getMostGenericTBAA(JMD, KMD)); 2498 break; 2499 case LLVMContext::MD_alias_scope: 2500 K->setMetadata(Kind, MDNode::getMostGenericAliasScope(JMD, KMD)); 2501 break; 2502 case LLVMContext::MD_noalias: 2503 case LLVMContext::MD_mem_parallel_loop_access: 2504 K->setMetadata(Kind, MDNode::intersect(JMD, KMD)); 2505 break; 2506 case LLVMContext::MD_access_group: 2507 K->setMetadata(LLVMContext::MD_access_group, 2508 intersectAccessGroups(K, J)); 2509 break; 2510 case LLVMContext::MD_range: 2511 2512 // If K does move, use most generic range. Otherwise keep the range of 2513 // K. 2514 if (DoesKMove) 2515 // FIXME: If K does move, we should drop the range info and nonnull. 2516 // Currently this function is used with DoesKMove in passes 2517 // doing hoisting/sinking and the current behavior of using the 2518 // most generic range is correct in those cases. 2519 K->setMetadata(Kind, MDNode::getMostGenericRange(JMD, KMD)); 2520 break; 2521 case LLVMContext::MD_fpmath: 2522 K->setMetadata(Kind, MDNode::getMostGenericFPMath(JMD, KMD)); 2523 break; 2524 case LLVMContext::MD_invariant_load: 2525 // Only set the !invariant.load if it is present in both instructions. 2526 K->setMetadata(Kind, JMD); 2527 break; 2528 case LLVMContext::MD_nonnull: 2529 // If K does move, keep nonull if it is present in both instructions. 2530 if (DoesKMove) 2531 K->setMetadata(Kind, JMD); 2532 break; 2533 case LLVMContext::MD_invariant_group: 2534 // Preserve !invariant.group in K. 2535 break; 2536 case LLVMContext::MD_align: 2537 K->setMetadata(Kind, 2538 MDNode::getMostGenericAlignmentOrDereferenceable(JMD, KMD)); 2539 break; 2540 case LLVMContext::MD_dereferenceable: 2541 case LLVMContext::MD_dereferenceable_or_null: 2542 K->setMetadata(Kind, 2543 MDNode::getMostGenericAlignmentOrDereferenceable(JMD, KMD)); 2544 break; 2545 case LLVMContext::MD_preserve_access_index: 2546 // Preserve !preserve.access.index in K. 2547 break; 2548 } 2549 } 2550 // Set !invariant.group from J if J has it. If both instructions have it 2551 // then we will just pick it from J - even when they are different. 2552 // Also make sure that K is load or store - f.e. combining bitcast with load 2553 // could produce bitcast with invariant.group metadata, which is invalid. 2554 // FIXME: we should try to preserve both invariant.group md if they are 2555 // different, but right now instruction can only have one invariant.group. 2556 if (auto *JMD = J->getMetadata(LLVMContext::MD_invariant_group)) 2557 if (isa<LoadInst>(K) || isa<StoreInst>(K)) 2558 K->setMetadata(LLVMContext::MD_invariant_group, JMD); 2559 } 2560 2561 void llvm::combineMetadataForCSE(Instruction *K, const Instruction *J, 2562 bool KDominatesJ) { 2563 unsigned KnownIDs[] = { 2564 LLVMContext::MD_tbaa, LLVMContext::MD_alias_scope, 2565 LLVMContext::MD_noalias, LLVMContext::MD_range, 2566 LLVMContext::MD_invariant_load, LLVMContext::MD_nonnull, 2567 LLVMContext::MD_invariant_group, LLVMContext::MD_align, 2568 LLVMContext::MD_dereferenceable, 2569 LLVMContext::MD_dereferenceable_or_null, 2570 LLVMContext::MD_access_group, LLVMContext::MD_preserve_access_index}; 2571 combineMetadata(K, J, KnownIDs, KDominatesJ); 2572 } 2573 2574 void llvm::copyMetadataForLoad(LoadInst &Dest, const LoadInst &Source) { 2575 SmallVector<std::pair<unsigned, MDNode *>, 8> MD; 2576 Source.getAllMetadata(MD); 2577 MDBuilder MDB(Dest.getContext()); 2578 Type *NewType = Dest.getType(); 2579 const DataLayout &DL = Source.getModule()->getDataLayout(); 2580 for (const auto &MDPair : MD) { 2581 unsigned ID = MDPair.first; 2582 MDNode *N = MDPair.second; 2583 // Note, essentially every kind of metadata should be preserved here! This 2584 // routine is supposed to clone a load instruction changing *only its type*. 2585 // The only metadata it makes sense to drop is metadata which is invalidated 2586 // when the pointer type changes. This should essentially never be the case 2587 // in LLVM, but we explicitly switch over only known metadata to be 2588 // conservatively correct. If you are adding metadata to LLVM which pertains 2589 // to loads, you almost certainly want to add it here. 2590 switch (ID) { 2591 case LLVMContext::MD_dbg: 2592 case LLVMContext::MD_tbaa: 2593 case LLVMContext::MD_prof: 2594 case LLVMContext::MD_fpmath: 2595 case LLVMContext::MD_tbaa_struct: 2596 case LLVMContext::MD_invariant_load: 2597 case LLVMContext::MD_alias_scope: 2598 case LLVMContext::MD_noalias: 2599 case LLVMContext::MD_nontemporal: 2600 case LLVMContext::MD_mem_parallel_loop_access: 2601 case LLVMContext::MD_access_group: 2602 // All of these directly apply. 2603 Dest.setMetadata(ID, N); 2604 break; 2605 2606 case LLVMContext::MD_nonnull: 2607 copyNonnullMetadata(Source, N, Dest); 2608 break; 2609 2610 case LLVMContext::MD_align: 2611 case LLVMContext::MD_dereferenceable: 2612 case LLVMContext::MD_dereferenceable_or_null: 2613 // These only directly apply if the new type is also a pointer. 2614 if (NewType->isPointerTy()) 2615 Dest.setMetadata(ID, N); 2616 break; 2617 2618 case LLVMContext::MD_range: 2619 copyRangeMetadata(DL, Source, N, Dest); 2620 break; 2621 } 2622 } 2623 } 2624 2625 void llvm::patchReplacementInstruction(Instruction *I, Value *Repl) { 2626 auto *ReplInst = dyn_cast<Instruction>(Repl); 2627 if (!ReplInst) 2628 return; 2629 2630 // Patch the replacement so that it is not more restrictive than the value 2631 // being replaced. 2632 // Note that if 'I' is a load being replaced by some operation, 2633 // for example, by an arithmetic operation, then andIRFlags() 2634 // would just erase all math flags from the original arithmetic 2635 // operation, which is clearly not wanted and not needed. 2636 if (!isa<LoadInst>(I)) 2637 ReplInst->andIRFlags(I); 2638 2639 // FIXME: If both the original and replacement value are part of the 2640 // same control-flow region (meaning that the execution of one 2641 // guarantees the execution of the other), then we can combine the 2642 // noalias scopes here and do better than the general conservative 2643 // answer used in combineMetadata(). 2644 2645 // In general, GVN unifies expressions over different control-flow 2646 // regions, and so we need a conservative combination of the noalias 2647 // scopes. 2648 static const unsigned KnownIDs[] = { 2649 LLVMContext::MD_tbaa, LLVMContext::MD_alias_scope, 2650 LLVMContext::MD_noalias, LLVMContext::MD_range, 2651 LLVMContext::MD_fpmath, LLVMContext::MD_invariant_load, 2652 LLVMContext::MD_invariant_group, LLVMContext::MD_nonnull, 2653 LLVMContext::MD_access_group, LLVMContext::MD_preserve_access_index}; 2654 combineMetadata(ReplInst, I, KnownIDs, false); 2655 } 2656 2657 template <typename RootType, typename DominatesFn> 2658 static unsigned replaceDominatedUsesWith(Value *From, Value *To, 2659 const RootType &Root, 2660 const DominatesFn &Dominates) { 2661 assert(From->getType() == To->getType()); 2662 2663 unsigned Count = 0; 2664 for (Value::use_iterator UI = From->use_begin(), UE = From->use_end(); 2665 UI != UE;) { 2666 Use &U = *UI++; 2667 if (!Dominates(Root, U)) 2668 continue; 2669 U.set(To); 2670 LLVM_DEBUG(dbgs() << "Replace dominated use of '" << From->getName() 2671 << "' as " << *To << " in " << *U << "\n"); 2672 ++Count; 2673 } 2674 return Count; 2675 } 2676 2677 unsigned llvm::replaceNonLocalUsesWith(Instruction *From, Value *To) { 2678 assert(From->getType() == To->getType()); 2679 auto *BB = From->getParent(); 2680 unsigned Count = 0; 2681 2682 for (Value::use_iterator UI = From->use_begin(), UE = From->use_end(); 2683 UI != UE;) { 2684 Use &U = *UI++; 2685 auto *I = cast<Instruction>(U.getUser()); 2686 if (I->getParent() == BB) 2687 continue; 2688 U.set(To); 2689 ++Count; 2690 } 2691 return Count; 2692 } 2693 2694 unsigned llvm::replaceDominatedUsesWith(Value *From, Value *To, 2695 DominatorTree &DT, 2696 const BasicBlockEdge &Root) { 2697 auto Dominates = [&DT](const BasicBlockEdge &Root, const Use &U) { 2698 return DT.dominates(Root, U); 2699 }; 2700 return ::replaceDominatedUsesWith(From, To, Root, Dominates); 2701 } 2702 2703 unsigned llvm::replaceDominatedUsesWith(Value *From, Value *To, 2704 DominatorTree &DT, 2705 const BasicBlock *BB) { 2706 auto Dominates = [&DT](const BasicBlock *BB, const Use &U) { 2707 return DT.dominates(BB, U); 2708 }; 2709 return ::replaceDominatedUsesWith(From, To, BB, Dominates); 2710 } 2711 2712 bool llvm::callsGCLeafFunction(const CallBase *Call, 2713 const TargetLibraryInfo &TLI) { 2714 // Check if the function is specifically marked as a gc leaf function. 2715 if (Call->hasFnAttr("gc-leaf-function")) 2716 return true; 2717 if (const Function *F = Call->getCalledFunction()) { 2718 if (F->hasFnAttribute("gc-leaf-function")) 2719 return true; 2720 2721 if (auto IID = F->getIntrinsicID()) { 2722 // Most LLVM intrinsics do not take safepoints. 2723 return IID != Intrinsic::experimental_gc_statepoint && 2724 IID != Intrinsic::experimental_deoptimize && 2725 IID != Intrinsic::memcpy_element_unordered_atomic && 2726 IID != Intrinsic::memmove_element_unordered_atomic; 2727 } 2728 } 2729 2730 // Lib calls can be materialized by some passes, and won't be 2731 // marked as 'gc-leaf-function.' All available Libcalls are 2732 // GC-leaf. 2733 LibFunc LF; 2734 if (TLI.getLibFunc(*Call, LF)) { 2735 return TLI.has(LF); 2736 } 2737 2738 return false; 2739 } 2740 2741 void llvm::copyNonnullMetadata(const LoadInst &OldLI, MDNode *N, 2742 LoadInst &NewLI) { 2743 auto *NewTy = NewLI.getType(); 2744 2745 // This only directly applies if the new type is also a pointer. 2746 if (NewTy->isPointerTy()) { 2747 NewLI.setMetadata(LLVMContext::MD_nonnull, N); 2748 return; 2749 } 2750 2751 // The only other translation we can do is to integral loads with !range 2752 // metadata. 2753 if (!NewTy->isIntegerTy()) 2754 return; 2755 2756 MDBuilder MDB(NewLI.getContext()); 2757 const Value *Ptr = OldLI.getPointerOperand(); 2758 auto *ITy = cast<IntegerType>(NewTy); 2759 auto *NullInt = ConstantExpr::getPtrToInt( 2760 ConstantPointerNull::get(cast<PointerType>(Ptr->getType())), ITy); 2761 auto *NonNullInt = ConstantExpr::getAdd(NullInt, ConstantInt::get(ITy, 1)); 2762 NewLI.setMetadata(LLVMContext::MD_range, 2763 MDB.createRange(NonNullInt, NullInt)); 2764 } 2765 2766 void llvm::copyRangeMetadata(const DataLayout &DL, const LoadInst &OldLI, 2767 MDNode *N, LoadInst &NewLI) { 2768 auto *NewTy = NewLI.getType(); 2769 2770 // Give up unless it is converted to a pointer where there is a single very 2771 // valuable mapping we can do reliably. 2772 // FIXME: It would be nice to propagate this in more ways, but the type 2773 // conversions make it hard. 2774 if (!NewTy->isPointerTy()) 2775 return; 2776 2777 unsigned BitWidth = DL.getPointerTypeSizeInBits(NewTy); 2778 if (!getConstantRangeFromMetadata(*N).contains(APInt(BitWidth, 0))) { 2779 MDNode *NN = MDNode::get(OldLI.getContext(), None); 2780 NewLI.setMetadata(LLVMContext::MD_nonnull, NN); 2781 } 2782 } 2783 2784 void llvm::dropDebugUsers(Instruction &I) { 2785 SmallVector<DbgVariableIntrinsic *, 1> DbgUsers; 2786 findDbgUsers(DbgUsers, &I); 2787 for (auto *DII : DbgUsers) 2788 DII->eraseFromParent(); 2789 } 2790 2791 void llvm::hoistAllInstructionsInto(BasicBlock *DomBlock, Instruction *InsertPt, 2792 BasicBlock *BB) { 2793 // Since we are moving the instructions out of its basic block, we do not 2794 // retain their original debug locations (DILocations) and debug intrinsic 2795 // instructions. 2796 // 2797 // Doing so would degrade the debugging experience and adversely affect the 2798 // accuracy of profiling information. 2799 // 2800 // Currently, when hoisting the instructions, we take the following actions: 2801 // - Remove their debug intrinsic instructions. 2802 // - Set their debug locations to the values from the insertion point. 2803 // 2804 // As per PR39141 (comment #8), the more fundamental reason why the dbg.values 2805 // need to be deleted, is because there will not be any instructions with a 2806 // DILocation in either branch left after performing the transformation. We 2807 // can only insert a dbg.value after the two branches are joined again. 2808 // 2809 // See PR38762, PR39243 for more details. 2810 // 2811 // TODO: Extend llvm.dbg.value to take more than one SSA Value (PR39141) to 2812 // encode predicated DIExpressions that yield different results on different 2813 // code paths. 2814 2815 // A hoisted conditional probe should be treated as dangling so that it will 2816 // not be over-counted when the samples collected on the non-conditional path 2817 // are counted towards the conditional path. We leave it for the counts 2818 // inference algorithm to figure out a proper count for a danglng probe. 2819 moveAndDanglePseudoProbes(BB, InsertPt); 2820 2821 for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;) { 2822 Instruction *I = &*II; 2823 I->dropUnknownNonDebugMetadata(); 2824 if (I->isUsedByMetadata()) 2825 dropDebugUsers(*I); 2826 if (isa<DbgInfoIntrinsic>(I)) { 2827 // Remove DbgInfo Intrinsics. 2828 II = I->eraseFromParent(); 2829 continue; 2830 } 2831 I->setDebugLoc(InsertPt->getDebugLoc()); 2832 ++II; 2833 } 2834 DomBlock->getInstList().splice(InsertPt->getIterator(), BB->getInstList(), 2835 BB->begin(), 2836 BB->getTerminator()->getIterator()); 2837 } 2838 2839 namespace { 2840 2841 /// A potential constituent of a bitreverse or bswap expression. See 2842 /// collectBitParts for a fuller explanation. 2843 struct BitPart { 2844 BitPart(Value *P, unsigned BW) : Provider(P) { 2845 Provenance.resize(BW); 2846 } 2847 2848 /// The Value that this is a bitreverse/bswap of. 2849 Value *Provider; 2850 2851 /// The "provenance" of each bit. Provenance[A] = B means that bit A 2852 /// in Provider becomes bit B in the result of this expression. 2853 SmallVector<int8_t, 32> Provenance; // int8_t means max size is i128. 2854 2855 enum { Unset = -1 }; 2856 }; 2857 2858 } // end anonymous namespace 2859 2860 /// Analyze the specified subexpression and see if it is capable of providing 2861 /// pieces of a bswap or bitreverse. The subexpression provides a potential 2862 /// piece of a bswap or bitreverse if it can be proved that each non-zero bit in 2863 /// the output of the expression came from a corresponding bit in some other 2864 /// value. This function is recursive, and the end result is a mapping of 2865 /// bitnumber to bitnumber. It is the caller's responsibility to validate that 2866 /// the bitnumber to bitnumber mapping is correct for a bswap or bitreverse. 2867 /// 2868 /// For example, if the current subexpression if "(shl i32 %X, 24)" then we know 2869 /// that the expression deposits the low byte of %X into the high byte of the 2870 /// result and that all other bits are zero. This expression is accepted and a 2871 /// BitPart is returned with Provider set to %X and Provenance[24-31] set to 2872 /// [0-7]. 2873 /// 2874 /// For vector types, all analysis is performed at the per-element level. No 2875 /// cross-element analysis is supported (shuffle/insertion/reduction), and all 2876 /// constant masks must be splatted across all elements. 2877 /// 2878 /// To avoid revisiting values, the BitPart results are memoized into the 2879 /// provided map. To avoid unnecessary copying of BitParts, BitParts are 2880 /// constructed in-place in the \c BPS map. Because of this \c BPS needs to 2881 /// store BitParts objects, not pointers. As we need the concept of a nullptr 2882 /// BitParts (Value has been analyzed and the analysis failed), we an Optional 2883 /// type instead to provide the same functionality. 2884 /// 2885 /// Because we pass around references into \c BPS, we must use a container that 2886 /// does not invalidate internal references (std::map instead of DenseMap). 2887 static const Optional<BitPart> & 2888 collectBitParts(Value *V, bool MatchBSwaps, bool MatchBitReversals, 2889 std::map<Value *, Optional<BitPart>> &BPS, int Depth, 2890 bool &FoundRoot) { 2891 auto I = BPS.find(V); 2892 if (I != BPS.end()) 2893 return I->second; 2894 2895 auto &Result = BPS[V] = None; 2896 auto BitWidth = V->getType()->getScalarSizeInBits(); 2897 2898 // Can't do integer/elements > 128 bits. 2899 if (BitWidth > 128) 2900 return Result; 2901 2902 // Prevent stack overflow by limiting the recursion depth 2903 if (Depth == BitPartRecursionMaxDepth) { 2904 LLVM_DEBUG(dbgs() << "collectBitParts max recursion depth reached.\n"); 2905 return Result; 2906 } 2907 2908 if (auto *I = dyn_cast<Instruction>(V)) { 2909 Value *X, *Y; 2910 const APInt *C; 2911 2912 // If this is an or instruction, it may be an inner node of the bswap. 2913 if (match(V, m_Or(m_Value(X), m_Value(Y)))) { 2914 // Check we have both sources and they are from the same provider. 2915 const auto &A = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 2916 Depth + 1, FoundRoot); 2917 if (!A || !A->Provider) 2918 return Result; 2919 2920 const auto &B = collectBitParts(Y, MatchBSwaps, MatchBitReversals, BPS, 2921 Depth + 1, FoundRoot); 2922 if (!B || A->Provider != B->Provider) 2923 return Result; 2924 2925 // Try and merge the two together. 2926 Result = BitPart(A->Provider, BitWidth); 2927 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) { 2928 if (A->Provenance[BitIdx] != BitPart::Unset && 2929 B->Provenance[BitIdx] != BitPart::Unset && 2930 A->Provenance[BitIdx] != B->Provenance[BitIdx]) 2931 return Result = None; 2932 2933 if (A->Provenance[BitIdx] == BitPart::Unset) 2934 Result->Provenance[BitIdx] = B->Provenance[BitIdx]; 2935 else 2936 Result->Provenance[BitIdx] = A->Provenance[BitIdx]; 2937 } 2938 2939 return Result; 2940 } 2941 2942 // If this is a logical shift by a constant, recurse then shift the result. 2943 if (match(V, m_LogicalShift(m_Value(X), m_APInt(C)))) { 2944 const APInt &BitShift = *C; 2945 2946 // Ensure the shift amount is defined. 2947 if (BitShift.uge(BitWidth)) 2948 return Result; 2949 2950 // For bswap-only, limit shift amounts to whole bytes, for an early exit. 2951 if (!MatchBitReversals && (BitShift.getZExtValue() % 8) != 0) 2952 return Result; 2953 2954 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 2955 Depth + 1, FoundRoot); 2956 if (!Res) 2957 return Result; 2958 Result = Res; 2959 2960 // Perform the "shift" on BitProvenance. 2961 auto &P = Result->Provenance; 2962 if (I->getOpcode() == Instruction::Shl) { 2963 P.erase(std::prev(P.end(), BitShift.getZExtValue()), P.end()); 2964 P.insert(P.begin(), BitShift.getZExtValue(), BitPart::Unset); 2965 } else { 2966 P.erase(P.begin(), std::next(P.begin(), BitShift.getZExtValue())); 2967 P.insert(P.end(), BitShift.getZExtValue(), BitPart::Unset); 2968 } 2969 2970 return Result; 2971 } 2972 2973 // If this is a logical 'and' with a mask that clears bits, recurse then 2974 // unset the appropriate bits. 2975 if (match(V, m_And(m_Value(X), m_APInt(C)))) { 2976 const APInt &AndMask = *C; 2977 2978 // Check that the mask allows a multiple of 8 bits for a bswap, for an 2979 // early exit. 2980 unsigned NumMaskedBits = AndMask.countPopulation(); 2981 if (!MatchBitReversals && (NumMaskedBits % 8) != 0) 2982 return Result; 2983 2984 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 2985 Depth + 1, FoundRoot); 2986 if (!Res) 2987 return Result; 2988 Result = Res; 2989 2990 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) 2991 // If the AndMask is zero for this bit, clear the bit. 2992 if (AndMask[BitIdx] == 0) 2993 Result->Provenance[BitIdx] = BitPart::Unset; 2994 return Result; 2995 } 2996 2997 // If this is a zext instruction zero extend the result. 2998 if (match(V, m_ZExt(m_Value(X)))) { 2999 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 3000 Depth + 1, FoundRoot); 3001 if (!Res) 3002 return Result; 3003 3004 Result = BitPart(Res->Provider, BitWidth); 3005 auto NarrowBitWidth = X->getType()->getScalarSizeInBits(); 3006 for (unsigned BitIdx = 0; BitIdx < NarrowBitWidth; ++BitIdx) 3007 Result->Provenance[BitIdx] = Res->Provenance[BitIdx]; 3008 for (unsigned BitIdx = NarrowBitWidth; BitIdx < BitWidth; ++BitIdx) 3009 Result->Provenance[BitIdx] = BitPart::Unset; 3010 return Result; 3011 } 3012 3013 // If this is a truncate instruction, extract the lower bits. 3014 if (match(V, m_Trunc(m_Value(X)))) { 3015 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 3016 Depth + 1, FoundRoot); 3017 if (!Res) 3018 return Result; 3019 3020 Result = BitPart(Res->Provider, BitWidth); 3021 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) 3022 Result->Provenance[BitIdx] = Res->Provenance[BitIdx]; 3023 return Result; 3024 } 3025 3026 // BITREVERSE - most likely due to us previous matching a partial 3027 // bitreverse. 3028 if (match(V, m_BitReverse(m_Value(X)))) { 3029 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 3030 Depth + 1, FoundRoot); 3031 if (!Res) 3032 return Result; 3033 3034 Result = BitPart(Res->Provider, BitWidth); 3035 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) 3036 Result->Provenance[(BitWidth - 1) - BitIdx] = Res->Provenance[BitIdx]; 3037 return Result; 3038 } 3039 3040 // BSWAP - most likely due to us previous matching a partial bswap. 3041 if (match(V, m_BSwap(m_Value(X)))) { 3042 const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 3043 Depth + 1, FoundRoot); 3044 if (!Res) 3045 return Result; 3046 3047 unsigned ByteWidth = BitWidth / 8; 3048 Result = BitPart(Res->Provider, BitWidth); 3049 for (unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) { 3050 unsigned ByteBitOfs = ByteIdx * 8; 3051 for (unsigned BitIdx = 0; BitIdx < 8; ++BitIdx) 3052 Result->Provenance[(BitWidth - 8 - ByteBitOfs) + BitIdx] = 3053 Res->Provenance[ByteBitOfs + BitIdx]; 3054 } 3055 return Result; 3056 } 3057 3058 // Funnel 'double' shifts take 3 operands, 2 inputs and the shift 3059 // amount (modulo). 3060 // fshl(X,Y,Z): (X << (Z % BW)) | (Y >> (BW - (Z % BW))) 3061 // fshr(X,Y,Z): (X << (BW - (Z % BW))) | (Y >> (Z % BW)) 3062 if (match(V, m_FShl(m_Value(X), m_Value(Y), m_APInt(C))) || 3063 match(V, m_FShr(m_Value(X), m_Value(Y), m_APInt(C)))) { 3064 // We can treat fshr as a fshl by flipping the modulo amount. 3065 unsigned ModAmt = C->urem(BitWidth); 3066 if (cast<IntrinsicInst>(I)->getIntrinsicID() == Intrinsic::fshr) 3067 ModAmt = BitWidth - ModAmt; 3068 3069 // For bswap-only, limit shift amounts to whole bytes, for an early exit. 3070 if (!MatchBitReversals && (ModAmt % 8) != 0) 3071 return Result; 3072 3073 // Check we have both sources and they are from the same provider. 3074 const auto &LHS = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS, 3075 Depth + 1, FoundRoot); 3076 if (!LHS || !LHS->Provider) 3077 return Result; 3078 3079 const auto &RHS = collectBitParts(Y, MatchBSwaps, MatchBitReversals, BPS, 3080 Depth + 1, FoundRoot); 3081 if (!RHS || LHS->Provider != RHS->Provider) 3082 return Result; 3083 3084 unsigned StartBitRHS = BitWidth - ModAmt; 3085 Result = BitPart(LHS->Provider, BitWidth); 3086 for (unsigned BitIdx = 0; BitIdx < StartBitRHS; ++BitIdx) 3087 Result->Provenance[BitIdx + ModAmt] = LHS->Provenance[BitIdx]; 3088 for (unsigned BitIdx = 0; BitIdx < ModAmt; ++BitIdx) 3089 Result->Provenance[BitIdx] = RHS->Provenance[BitIdx + StartBitRHS]; 3090 return Result; 3091 } 3092 } 3093 3094 // If we've already found a root input value then we're never going to merge 3095 // these back together. 3096 if (FoundRoot) 3097 return Result; 3098 3099 // Okay, we got to something that isn't a shift, 'or', 'and', etc. This must 3100 // be the root input value to the bswap/bitreverse. 3101 FoundRoot = true; 3102 Result = BitPart(V, BitWidth); 3103 for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) 3104 Result->Provenance[BitIdx] = BitIdx; 3105 return Result; 3106 } 3107 3108 static bool bitTransformIsCorrectForBSwap(unsigned From, unsigned To, 3109 unsigned BitWidth) { 3110 if (From % 8 != To % 8) 3111 return false; 3112 // Convert from bit indices to byte indices and check for a byte reversal. 3113 From >>= 3; 3114 To >>= 3; 3115 BitWidth >>= 3; 3116 return From == BitWidth - To - 1; 3117 } 3118 3119 static bool bitTransformIsCorrectForBitReverse(unsigned From, unsigned To, 3120 unsigned BitWidth) { 3121 return From == BitWidth - To - 1; 3122 } 3123 3124 bool llvm::recognizeBSwapOrBitReverseIdiom( 3125 Instruction *I, bool MatchBSwaps, bool MatchBitReversals, 3126 SmallVectorImpl<Instruction *> &InsertedInsts) { 3127 if (!match(I, m_Or(m_Value(), m_Value())) && 3128 !match(I, m_FShl(m_Value(), m_Value(), m_Value())) && 3129 !match(I, m_FShr(m_Value(), m_Value(), m_Value()))) 3130 return false; 3131 if (!MatchBSwaps && !MatchBitReversals) 3132 return false; 3133 Type *ITy = I->getType(); 3134 if (!ITy->isIntOrIntVectorTy() || ITy->getScalarSizeInBits() > 128) 3135 return false; // Can't do integer/elements > 128 bits. 3136 3137 Type *DemandedTy = ITy; 3138 if (I->hasOneUse()) 3139 if (auto *Trunc = dyn_cast<TruncInst>(I->user_back())) 3140 DemandedTy = Trunc->getType(); 3141 3142 // Try to find all the pieces corresponding to the bswap. 3143 bool FoundRoot = false; 3144 std::map<Value *, Optional<BitPart>> BPS; 3145 const auto &Res = 3146 collectBitParts(I, MatchBSwaps, MatchBitReversals, BPS, 0, FoundRoot); 3147 if (!Res) 3148 return false; 3149 ArrayRef<int8_t> BitProvenance = Res->Provenance; 3150 assert(all_of(BitProvenance, 3151 [](int8_t I) { return I == BitPart::Unset || 0 <= I; }) && 3152 "Illegal bit provenance index"); 3153 3154 // If the upper bits are zero, then attempt to perform as a truncated op. 3155 if (BitProvenance.back() == BitPart::Unset) { 3156 while (!BitProvenance.empty() && BitProvenance.back() == BitPart::Unset) 3157 BitProvenance = BitProvenance.drop_back(); 3158 if (BitProvenance.empty()) 3159 return false; // TODO - handle null value? 3160 DemandedTy = Type::getIntNTy(I->getContext(), BitProvenance.size()); 3161 if (auto *IVecTy = dyn_cast<VectorType>(ITy)) 3162 DemandedTy = VectorType::get(DemandedTy, IVecTy); 3163 } 3164 3165 // Check BitProvenance hasn't found a source larger than the result type. 3166 unsigned DemandedBW = DemandedTy->getScalarSizeInBits(); 3167 if (DemandedBW > ITy->getScalarSizeInBits()) 3168 return false; 3169 3170 // Now, is the bit permutation correct for a bswap or a bitreverse? We can 3171 // only byteswap values with an even number of bytes. 3172 APInt DemandedMask = APInt::getAllOnesValue(DemandedBW); 3173 bool OKForBSwap = MatchBSwaps && (DemandedBW % 16) == 0; 3174 bool OKForBitReverse = MatchBitReversals; 3175 for (unsigned BitIdx = 0; 3176 (BitIdx < DemandedBW) && (OKForBSwap || OKForBitReverse); ++BitIdx) { 3177 if (BitProvenance[BitIdx] == BitPart::Unset) { 3178 DemandedMask.clearBit(BitIdx); 3179 continue; 3180 } 3181 OKForBSwap &= bitTransformIsCorrectForBSwap(BitProvenance[BitIdx], BitIdx, 3182 DemandedBW); 3183 OKForBitReverse &= bitTransformIsCorrectForBitReverse(BitProvenance[BitIdx], 3184 BitIdx, DemandedBW); 3185 } 3186 3187 Intrinsic::ID Intrin; 3188 if (OKForBSwap) 3189 Intrin = Intrinsic::bswap; 3190 else if (OKForBitReverse) 3191 Intrin = Intrinsic::bitreverse; 3192 else 3193 return false; 3194 3195 Function *F = Intrinsic::getDeclaration(I->getModule(), Intrin, DemandedTy); 3196 Value *Provider = Res->Provider; 3197 3198 // We may need to truncate the provider. 3199 if (DemandedTy != Provider->getType()) { 3200 auto *Trunc = 3201 CastInst::CreateIntegerCast(Provider, DemandedTy, false, "trunc", I); 3202 InsertedInsts.push_back(Trunc); 3203 Provider = Trunc; 3204 } 3205 3206 Instruction *Result = CallInst::Create(F, Provider, "rev", I); 3207 InsertedInsts.push_back(Result); 3208 3209 if (!DemandedMask.isAllOnesValue()) { 3210 auto *Mask = ConstantInt::get(DemandedTy, DemandedMask); 3211 Result = BinaryOperator::Create(Instruction::And, Result, Mask, "mask", I); 3212 InsertedInsts.push_back(Result); 3213 } 3214 3215 // We may need to zeroextend back to the result type. 3216 if (ITy != Result->getType()) { 3217 auto *ExtInst = CastInst::CreateIntegerCast(Result, ITy, false, "zext", I); 3218 InsertedInsts.push_back(ExtInst); 3219 } 3220 3221 return true; 3222 } 3223 3224 // CodeGen has special handling for some string functions that may replace 3225 // them with target-specific intrinsics. Since that'd skip our interceptors 3226 // in ASan/MSan/TSan/DFSan, and thus make us miss some memory accesses, 3227 // we mark affected calls as NoBuiltin, which will disable optimization 3228 // in CodeGen. 3229 void llvm::maybeMarkSanitizerLibraryCallNoBuiltin( 3230 CallInst *CI, const TargetLibraryInfo *TLI) { 3231 Function *F = CI->getCalledFunction(); 3232 LibFunc Func; 3233 if (F && !F->hasLocalLinkage() && F->hasName() && 3234 TLI->getLibFunc(F->getName(), Func) && TLI->hasOptimizedCodeGen(Func) && 3235 !F->doesNotAccessMemory()) 3236 CI->addAttribute(AttributeList::FunctionIndex, Attribute::NoBuiltin); 3237 } 3238 3239 bool llvm::canReplaceOperandWithVariable(const Instruction *I, unsigned OpIdx) { 3240 // We can't have a PHI with a metadata type. 3241 if (I->getOperand(OpIdx)->getType()->isMetadataTy()) 3242 return false; 3243 3244 // Early exit. 3245 if (!isa<Constant>(I->getOperand(OpIdx))) 3246 return true; 3247 3248 switch (I->getOpcode()) { 3249 default: 3250 return true; 3251 case Instruction::Call: 3252 case Instruction::Invoke: { 3253 const auto &CB = cast<CallBase>(*I); 3254 3255 // Can't handle inline asm. Skip it. 3256 if (CB.isInlineAsm()) 3257 return false; 3258 3259 // Constant bundle operands may need to retain their constant-ness for 3260 // correctness. 3261 if (CB.isBundleOperand(OpIdx)) 3262 return false; 3263 3264 if (OpIdx < CB.getNumArgOperands()) { 3265 // Some variadic intrinsics require constants in the variadic arguments, 3266 // which currently aren't markable as immarg. 3267 if (isa<IntrinsicInst>(CB) && 3268 OpIdx >= CB.getFunctionType()->getNumParams()) { 3269 // This is known to be OK for stackmap. 3270 return CB.getIntrinsicID() == Intrinsic::experimental_stackmap; 3271 } 3272 3273 // gcroot is a special case, since it requires a constant argument which 3274 // isn't also required to be a simple ConstantInt. 3275 if (CB.getIntrinsicID() == Intrinsic::gcroot) 3276 return false; 3277 3278 // Some intrinsic operands are required to be immediates. 3279 return !CB.paramHasAttr(OpIdx, Attribute::ImmArg); 3280 } 3281 3282 // It is never allowed to replace the call argument to an intrinsic, but it 3283 // may be possible for a call. 3284 return !isa<IntrinsicInst>(CB); 3285 } 3286 case Instruction::ShuffleVector: 3287 // Shufflevector masks are constant. 3288 return OpIdx != 2; 3289 case Instruction::Switch: 3290 case Instruction::ExtractValue: 3291 // All operands apart from the first are constant. 3292 return OpIdx == 0; 3293 case Instruction::InsertValue: 3294 // All operands apart from the first and the second are constant. 3295 return OpIdx < 2; 3296 case Instruction::Alloca: 3297 // Static allocas (constant size in the entry block) are handled by 3298 // prologue/epilogue insertion so they're free anyway. We definitely don't 3299 // want to make them non-constant. 3300 return !cast<AllocaInst>(I)->isStaticAlloca(); 3301 case Instruction::GetElementPtr: 3302 if (OpIdx == 0) 3303 return true; 3304 gep_type_iterator It = gep_type_begin(I); 3305 for (auto E = std::next(It, OpIdx); It != E; ++It) 3306 if (It.isStruct()) 3307 return false; 3308 return true; 3309 } 3310 } 3311 3312 Value *llvm::invertCondition(Value *Condition) { 3313 // First: Check if it's a constant 3314 if (Constant *C = dyn_cast<Constant>(Condition)) 3315 return ConstantExpr::getNot(C); 3316 3317 // Second: If the condition is already inverted, return the original value 3318 Value *NotCondition; 3319 if (match(Condition, m_Not(m_Value(NotCondition)))) 3320 return NotCondition; 3321 3322 BasicBlock *Parent = nullptr; 3323 Instruction *Inst = dyn_cast<Instruction>(Condition); 3324 if (Inst) 3325 Parent = Inst->getParent(); 3326 else if (Argument *Arg = dyn_cast<Argument>(Condition)) 3327 Parent = &Arg->getParent()->getEntryBlock(); 3328 assert(Parent && "Unsupported condition to invert"); 3329 3330 // Third: Check all the users for an invert 3331 for (User *U : Condition->users()) 3332 if (Instruction *I = dyn_cast<Instruction>(U)) 3333 if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition)))) 3334 return I; 3335 3336 // Last option: Create a new instruction 3337 auto *Inverted = 3338 BinaryOperator::CreateNot(Condition, Condition->getName() + ".inv"); 3339 if (Inst && !isa<PHINode>(Inst)) 3340 Inverted->insertAfter(Inst); 3341 else 3342 Inverted->insertBefore(&*Parent->getFirstInsertionPt()); 3343 return Inverted; 3344 } 3345 3346 bool llvm::inferAttributesFromOthers(Function &F) { 3347 // Note: We explicitly check for attributes rather than using cover functions 3348 // because some of the cover functions include the logic being implemented. 3349 3350 bool Changed = false; 3351 // readnone + not convergent implies nosync 3352 if (!F.hasFnAttribute(Attribute::NoSync) && 3353 F.doesNotAccessMemory() && !F.isConvergent()) { 3354 F.setNoSync(); 3355 Changed = true; 3356 } 3357 3358 // readonly implies nofree 3359 if (!F.hasFnAttribute(Attribute::NoFree) && F.onlyReadsMemory()) { 3360 F.setDoesNotFreeMemory(); 3361 Changed = true; 3362 } 3363 3364 // willreturn implies mustprogress 3365 if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) { 3366 F.setMustProgress(); 3367 Changed = true; 3368 } 3369 3370 // TODO: There are a bunch of cases of restrictive memory effects we 3371 // can infer by inspecting arguments of argmemonly-ish functions. 3372 3373 return Changed; 3374 } 3375