58#include "llvm/IR/IntrinsicsWebAssembly.h"
91#define DEBUG_TYPE "local"
93STATISTIC(NumRemoved,
"Number of unreachable basic blocks removed");
94STATISTIC(NumPHICSEs,
"Number of PHI's that got CSE'd");
98#ifdef EXPENSIVE_CHECKS
104 cl::desc(
"Perform extra assertion checking to verify that PHINodes's hash "
105 "function is well-behaved w.r.t. its isEqual predicate"));
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."));
114 "max-phi-entries-increase-after-removing-empty-block",
cl::init(1000),
116 cl::desc(
"Stop removing an empty block if removing it will introduce more "
117 "than this number of phi entries in its successor"));
145 if (Dest2 == Dest1) {
151 assert(BI->getParent() &&
"Terminator not inserted in block!");
158 NewBI->
copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg,
159 LLVMContext::MD_annotation});
162 BI->eraseFromParent();
163 if (DeleteDeadConditions)
182 NewBI->
copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg,
183 LLVMContext::MD_annotation});
185 BI->eraseFromParent();
202 if (
SI->defaultDestUnreachable() &&
SI->getNumCases() > 0)
203 TheOnlyDest =
SI->case_begin()->getCaseSuccessor();
208 for (
auto It =
SI->case_begin(), End =
SI->case_end(); It != End;) {
210 if (It->getCaseValue() == CI) {
211 TheOnlyDest = It->getCaseSuccessor();
217 if (It->getCaseSuccessor() == DefaultDest) {
219 unsigned NCases =
SI->getNumCases();
222 if (NCases > 1 && MD) {
228 unsigned Idx = It->getCaseIndex();
231 if (Weights[0] >
UINT64_MAX - Weights[Idx + 1])
234 Weights[0] += Weights[Idx + 1];
243 It =
SI->removeCase(It);
244 End =
SI->case_end();
250 It =
SI->case_begin();
260 if (It->getCaseSuccessor() != TheOnlyDest)
261 TheOnlyDest =
nullptr;
267 if (CI && !TheOnlyDest) {
270 TheOnlyDest =
SI->getDefaultDest();
277 Builder.CreateBr(TheOnlyDest);
285 if (DTU && Succ != TheOnlyDest)
286 RemovedSuccessors.
insert(Succ);
288 if (Succ == SuccToKeep) {
289 SuccToKeep =
nullptr;
291 Succ->removePredecessor(BB);
297 SI->eraseFromParent();
298 if (DeleteDeadConditions)
301 std::vector<DominatorTree::UpdateType> Updates;
302 Updates.reserve(RemovedSuccessors.
size());
303 for (
auto *RemovedSuccessor : RemovedSuccessors)
310 if (
SI->getNumCases() == 1) {
313 auto FirstCase = *
SI->case_begin();
314 Value *
Cond = Builder.CreateICmpEQ(
SI->getCondition(),
315 FirstCase.getCaseValue(),
"cond");
319 Cond, FirstCase.getCaseSuccessor(),
SI->getDefaultDest());
331 MDNode *MakeImplicitMD =
SI->getMetadata(LLVMContext::MD_make_implicit);
333 NewBr->
setMetadata(LLVMContext::MD_make_implicit, MakeImplicitMD);
336 SI->eraseFromParent();
346 BasicBlock *TheOnlyDest = BA->getBasicBlock();
350 Builder.CreateBr(TheOnlyDest);
353 for (
unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
355 if (DTU && DestBB != TheOnlyDest)
356 RemovedSuccessors.
insert(DestBB);
357 if (IBI->getDestination(i) == SuccToKeep) {
358 SuccToKeep =
nullptr;
364 IBI->eraseFromParent();
365 if (DeleteDeadConditions)
372 BA->destroyConstant();
383 std::vector<DominatorTree::UpdateType> Updates;
384 Updates.reserve(RemovedSuccessors.
size());
385 for (
auto *RemovedSuccessor : RemovedSuccessors)
415 if (
II->getIntrinsicID() == Intrinsic::stacksave ||
416 II->getIntrinsicID() == Intrinsic::launder_invariant_group ||
417 II->isLifetimeStartOrEnd())
424 if (
I->isTerminator())
442 if (!
I->willReturn()) {
447 switch (
II->getIntrinsicID()) {
448 case Intrinsic::experimental_guard: {
457 case Intrinsic::wasm_trunc_signed:
458 case Intrinsic::wasm_trunc_unsigned:
459 case Intrinsic::ptrauth_auth:
460 case Intrinsic::ptrauth_resign:
461 case Intrinsic::ptrauth_resign_load_relative:
468 if (!
I->mayHaveSideEffects())
475 if (
II->getIntrinsicID() == Intrinsic::stacksave ||
476 II->getIntrinsicID() == Intrinsic::launder_invariant_group)
481 if (
II->getIntrinsicID() == Intrinsic::allow_runtime_check ||
482 II->getIntrinsicID() == Intrinsic::allow_ubsan_check)
485 if (
II->isLifetimeStartOrEnd()) {
486 auto *Arg =
II->getArgOperand(0);
493 return isa<LifetimeIntrinsic>(Use.getUser());
498 if (
II->getIntrinsicID() == Intrinsic::assume &&
501 return !
Cond->isZero();
507 std::optional<fp::ExceptionBehavior> ExBehavior =
508 FPI->getExceptionBehavior();
524 LI->getPointerOperand()->stripPointerCasts()))
525 if (!LI->isVolatile() && GV->isConstant())
537 std::function<
void(
Value *)> AboutToDeleteCallback) {
545 AboutToDeleteCallback);
553 std::function<
void(
Value *)> AboutToDeleteCallback) {
554 unsigned S = 0, E = DeadInsts.
size(), Alive = 0;
555 for (; S != E; ++S) {
558 DeadInsts[S] =
nullptr;
565 AboutToDeleteCallback);
572 std::function<
void(
Value *)> AboutToDeleteCallback) {
574 while (!DeadInsts.
empty()) {
580 "Live instruction found in dead worklist!");
581 assert(
I->use_empty() &&
"Instructions with uses are not dead.");
586 if (AboutToDeleteCallback)
587 AboutToDeleteCallback(
I);
591 for (
Use &OpU :
I->operands()) {
592 Value *OpV = OpU.get();
608 I->eraseFromParent();
615 for (
auto *DVR : DPUsers)
616 DVR->setKillLocation();
617 return !DPUsers.
empty();
631 for (++UI; UI != UE; ++UI) {
656 if (!Visited.
insert(
I).second) {
664 if (KnownNonDeadPHIs && KnownNonDeadPHIs->
contains(CurPN))
670 if (KnownNonDeadPHIs)
671 for (
PHINode *VisitedPN : VisitedPHIs)
672 KnownNonDeadPHIs->
insert(VisitedPN);
687 for (
unsigned i = 0, e =
I->getNumOperands(); i != e; ++i) {
688 Value *OpV =
I->getOperand(i);
689 I->setOperand(i,
nullptr);
702 I->eraseFromParent();
710 for (
User *U :
I->users()) {
718 if (!
I->use_empty()) {
719 I->replaceAllUsesWith(SimpleV);
723 I->eraseFromParent();
738 bool MadeChange =
false;
755 assert(!BI->isTerminator());
765 while (!WorkList.
empty()) {
781 Value *NewVal = PN->getIncomingValue(0);
784 PN->replaceAllUsesWith(NewVal);
785 PN->eraseFromParent();
789 assert(PredBB &&
"Block doesn't have a single predecessor!");
803 if (PredOfPredBB != PredBB)
804 if (SeenPreds.
insert(PredOfPredBB).second)
808 if (SeenPreds.
insert(PredOfPredBB).second)
840 "The successor list of PredBB isn't empty before "
841 "applying corresponding DTU updates.");
893 if (BBPreds.
count(IBB) &&
897 <<
"Can't fold, phi node " << PN->
getName() <<
" in "
898 << Succ->
getName() <<
" is conflicting with "
899 << BBPN->
getName() <<
" with regard to common predecessor "
911 if (BBPreds.
count(IBB) &&
915 <<
" is conflicting with regard to common "
916 <<
"predecessor " << IBB->
getName() <<
"\n");
946 (!(It->second) || It->second == OldVal)) &&
947 "Expected OldVal to match incoming value from BB!");
953 if (It != IncomingValues.
end() && It->second)
973 IncomingValues[Pred] =
nullptr;
981 auto It = IncomingValues.
find(BB);
982 if (It != IncomingValues.
end())
1002 if (It == IncomingValues.
end())
1022 unsigned PoisonCount =
count_if(TrueUndefOps, [&](
unsigned i) {
1025 if (PoisonCount != 0 && PoisonCount != TrueUndefOps.
size()) {
1026 for (
unsigned i : TrueUndefOps)
1040 if (BB->
phis().empty() || Succ->
phis().empty())
1055 if (BBPreds.
count(SuccPred)) {
1058 CommonPred = SuccPred;
1074 unsigned NumChangedPhi = 0;
1075 for (
auto &Phi : Succ->
phis()) {
1079 if (IncomingPhi->getParent() == BB)
1088 return (NumPreds - 1) * NumChangedPhi >
1105 assert(OldVal &&
"No entry in PHI for Pred BB!");
1133 if (PredBB == CommonPred)
1151 if (PredBB == CommonPred)
1171 "TryToSimplifyUncondBranchFromEmptyBlock called on entry block!");
1188 BB, Succ, BBPreds, CommonPred);
1213 if (PN->getIncomingBlock(U) != BB)
1223 if (BBPhisMergeable && CommonPred)
1225 <<
" and " << Succ->
getName() <<
" : "
1226 << CommonPred->
getName() <<
"\n");
1294 if (TI->hasNonDebugLocLoopMetadata())
1296 if (
Instruction *PredTI = Pred->getTerminatorOrNull())
1297 if (PredTI->hasNonDebugLocLoopMetadata())
1302 else if (BBPhisMergeable)
1318 if (SeenPreds.
insert(PredOfBB).second)
1327 if (SeenPreds.
insert(PredOfBB).second && PredOfBB != CommonPred)
1356 assert(PN->use_empty() &&
"There shouldn't be any uses here!");
1357 PN->eraseFromParent();
1365 if (TI->hasNonDebugLocLoopMetadata()) {
1366 MDNode *LoopMD = TI->getMetadata(LLVMContext::MD_loop);
1368 Pred->getTerminator()->setMetadata(LLVMContext::MD_loop, LoopMD);
1384 "applying corresponding DTU updates.");
1385 }
else if (BBPhisMergeable) {
1389 return UseInst->getParent() != CommonPred &&
1390 BBPreds.
contains(UseInst->getParent());
1422 if (
ToRemove.contains(DuplicatePN))
1447 struct PHIDenseMapInfo {
1454 return static_cast<unsigned>(
1459 static unsigned getHashValue(
PHINode *PN) {
1472 return LHS->isIdenticalTo(
RHS);
1493 auto Inserted = PHISet.
insert(PN);
1494 if (!Inserted.second) {
1497 PN->replaceAllUsesWith(*Inserted.first);
1526 PN->eraseFromParent();
1532 V = V->stripPointerCasts();
1540 Align CurrentAlign = AI->getAlign();
1541 if (PrefAlign <= CurrentAlign)
1542 return CurrentAlign;
1547 if (StackAlign && PrefAlign > *StackAlign)
1548 return CurrentAlign;
1549 AI->setAlignment(PrefAlign);
1555 Align CurrentAlign = GV->getPointerAlignment(
DL);
1556 if (PrefAlign <= CurrentAlign)
1557 return CurrentAlign;
1563 if (!GV->canIncreaseAlignment())
1564 return CurrentAlign;
1566 if (GV->isThreadLocal()) {
1567 unsigned MaxTLSAlign = GV->getParent()->getMaxTLSAlignment() / CHAR_BIT;
1568 if (MaxTLSAlign && PrefAlign >
Align(MaxTLSAlign))
1569 PrefAlign =
Align(MaxTLSAlign);
1572 GV->setAlignment(PrefAlign);
1584 assert(V->getType()->isPointerTy() &&
1585 "getOrEnforceKnownAlignment expects a pointer!");
1588 unsigned TrailZ =
Known.countMinTrailingZeros();
1595 Align Alignment =
Align(1ull << std::min(
Known.getBitWidth() - 1, TrailZ));
1597 if (PrefAlign && *PrefAlign > Alignment)
1619 if ((DVR->getVariable() == DIVar) && (DVR->getExpression() == DIExpr))
1635 TypeSize ValueSize =
DL.getTypeAllocSizeInBits(ValTy);
1636 if (std::optional<uint64_t> FragmentSize =
1646 "address of variable must have exactly 1 location operand.");
1649 if (std::optional<TypeSize> FragmentSize = AI->getAllocationSizeInBits(
DL)) {
1666 Instr->getParent()->insertDbgRecordBefore(DVRec, Instr);
1679 assert(DIVar &&
"Missing variable");
1681 Value *DV =
SI->getValueOperand();
1698 DIExpr->isDeref() || (!DIExpr->startsWithDeref() &&
1708 LLVM_DEBUG(
dbgs() <<
"Failed to convert dbg.declare to dbg.value: " << *DVR
1718 SI->getParent()->insertDbgRecordBefore(NewDVR,
SI->getIterator());
1724 assert(DIVar &&
"Missing variable");
1727 Value *DV =
SI->getValueOperand();
1739 assert(DIVar &&
"Missing variable");
1745 LLVM_DEBUG(
dbgs() <<
"Failed to convert dbg.declare to DbgVariableRecord: "
1761 LI->
getParent()->insertDbgRecordAfter(DV, LI);
1774 switch (DTy->getTag()) {
1775 case dwarf::DW_TAG_pointer_type:
1776 case dwarf::DW_TAG_reference_type:
1777 case dwarf::DW_TAG_rvalue_reference_type:
1778 case dwarf::DW_TAG_ptr_to_member_type:
1779 case dwarf::DW_TAG_LLVM_ptrauth_type:
1781 case dwarf::DW_TAG_typedef:
1782 case dwarf::DW_TAG_const_type:
1783 case dwarf::DW_TAG_volatile_type:
1784 case dwarf::DW_TAG_restrict_type:
1785 case dwarf::DW_TAG_atomic_type:
1786 case dwarf::DW_TAG_immutable_type:
1787 Ty = DTy->getBaseType();
1801 assert(DIVar &&
"Missing variable");
1810 LLVM_DEBUG(
dbgs() <<
"Failed to convert dbg.declare to DbgVariableRecord: "
1823 if (InsertionPt != BB->
end()) {
1836 for (
auto &FI :
F) {
1867 if (LoadInst *LI = dyn_cast<LoadInst>(U))
1868 return LI->isVolatile();
1869 if (StoreInst *SI = dyn_cast<StoreInst>(U))
1870 return SI->isVolatile();
1877 while (!WorkList.
empty()) {
1879 for (
const auto &AIUse : V->uses()) {
1880 User *U = AIUse.getUser();
1882 if (AIUse.getOperandNo() == 1)
1890 if (!CI->isLifetimeStartOrEnd()) {
1899 if (BI->getType()->isPointerTy())
1904 DDI->eraseFromParent();
1920 assert(BB &&
"No BasicBlock to clone DbgVariableRecord(s) from.");
1921 if (InsertedPHIs.
size() == 0)
1926 for (
auto &
I : *BB) {
1928 for (
Value *V : DVR.location_ops())
1933 if (DbgValueMap.
size() == 0)
1948 for (
auto PHI : InsertedPHIs) {
1953 for (
auto VI :
PHI->operand_values()) {
1954 auto V = DbgValueMap.
find(VI);
1955 if (V != DbgValueMap.
end()) {
1957 auto NewDI = NewDbgValueMap.
find({Parent, DbgII});
1958 if (NewDI == NewDbgValueMap.
end()) {
1960 NewDI = NewDbgValueMap.
insert({{Parent, DbgII}, NewDbgII}).first;
1971 for (
auto DI : NewDbgValueMap) {
1975 assert(InsertionPt != Parent->
end() &&
"Ill-formed basic block");
1987 assert(DII->getVariable() &&
"Missing variable");
1988 auto *DIExpr = DII->getExpression();
1990 DII->setExpression(DIExpr);
1991 DII->replaceVariableLocationOp(
Address, NewAddress);
1996 return !DVRDeclares.
empty();
2004 assert(DIVar &&
"Missing variable");
2029 DVR->getExpression(), NewAllocaAddress, DVR,
2045 assert(!Assign->getAddressExpression()->getFragmentInfo().has_value() &&
2046 "address-expression shouldn't have fragment info");
2060 Assign->getAddressExpression(),
Ops, 0,
false);
2062 "address-expression shouldn't have fragment info");
2067 if (AdditionalValues.
empty()) {
2068 Assign->setAddress(NewV);
2069 Assign->setAddressExpression(SalvagedExpr);
2071 Assign->setKillAddress();
2080 const unsigned MaxDebugArgs = 16;
2081 const unsigned MaxExpressionSize = 128;
2082 bool Salvaged =
false;
2084 for (
auto *DVR : DPUsers) {
2087 if (DVR->isDbgAssign()) {
2088 if (DVR->getAddress() == &
I) {
2092 if (DVR->getValue() != &
I)
2101 auto DVRLocation = DVR->location_ops();
2104 "DbgVariableIntrinsic must use salvaged instruction as its location");
2110 Value *Op0 =
nullptr;
2112 auto LocItr =
find(DVRLocation, &
I);
2113 while (SalvagedExpr && LocItr != DVRLocation.end()) {
2115 unsigned LocNo = std::distance(DVRLocation.begin(), LocItr);
2122 LocItr = std::find(++LocItr, DVRLocation.end(), &
I);
2130 DVR->replaceVariableLocationOp(&
I, Op0);
2131 bool IsValidSalvageExpr =
2133 if (AdditionalValues.
empty() && IsValidSalvageExpr) {
2134 DVR->setExpression(SalvagedExpr);
2136 IsValidSalvageExpr &&
2137 DVR->getNumVariableLocationOps() + AdditionalValues.
size() <=
2139 DVR->addVariableLocationOps(AdditionalValues, SalvagedExpr);
2145 DVR->setKillLocation();
2154 for (
auto *DVR : DPUsers)
2155 DVR->setKillLocation();
2162 unsigned BitWidth =
DL.getIndexSizeInBits(
GEP->getPointerAddressSpace());
2166 if (!
GEP->collectOffset(
DL,
BitWidth, VariableOffsets, ConstantOffset))
2168 if (!VariableOffsets.
empty() && !CurrentLocOps) {
2169 Opcodes.
insert(Opcodes.
begin(), {dwarf::DW_OP_LLVM_arg, 0});
2172 for (
const auto &
Offset : VariableOffsets) {
2175 "Expected strictly positive multiplier for offset.");
2177 Offset.second.getZExtValue(), dwarf::DW_OP_mul,
2178 dwarf::DW_OP_plus});
2181 return GEP->getOperand(0);
2186 case Instruction::Add:
2187 return dwarf::DW_OP_plus;
2188 case Instruction::Sub:
2189 return dwarf::DW_OP_minus;
2190 case Instruction::Mul:
2191 return dwarf::DW_OP_mul;
2192 case Instruction::SDiv:
2193 return dwarf::DW_OP_div;
2194 case Instruction::SRem:
2195 return dwarf::DW_OP_mod;
2196 case Instruction::Or:
2197 return dwarf::DW_OP_or;
2198 case Instruction::And:
2199 return dwarf::DW_OP_and;
2200 case Instruction::Xor:
2201 return dwarf::DW_OP_xor;
2202 case Instruction::Shl:
2203 return dwarf::DW_OP_shl;
2204 case Instruction::LShr:
2205 return dwarf::DW_OP_shr;
2206 case Instruction::AShr:
2207 return dwarf::DW_OP_shra;
2218 if (!CurrentLocOps) {
2223 AdditionalValues.
push_back(
I->getOperand(1));
2232 if (ConstInt && ConstInt->getBitWidth() > 64)
2238 uint64_t Val = ConstInt->getSExtValue();
2241 if (BinOpcode == Instruction::Add || BinOpcode == Instruction::Sub) {
2242 uint64_t Offset = BinOpcode == Instruction::Add ? Val : -int64_t(Val);
2246 Opcodes.
append({dwarf::DW_OP_constu, Val});
2265 return dwarf::DW_OP_eq;
2267 return dwarf::DW_OP_ne;
2270 return dwarf::DW_OP_gt;
2273 return dwarf::DW_OP_ge;
2276 return dwarf::DW_OP_lt;
2279 return dwarf::DW_OP_le;
2291 if (ConstInt && ConstInt->getBitWidth() > 64)
2299 uint64_t Val = ConstInt->getSExtValue();
2317 auto &M = *
I.getModule();
2318 auto &
DL = M.getDataLayout();
2321 Value *FromValue = CI->getOperand(0);
2323 if (CI->isNoopCast(
DL)) {
2337 if (FromType->isPointerTy())
2338 FromType =
DL.getIntPtrType(FromType);
2340 unsigned FromTypeBitSize = FromType->getScalarSizeInBits();
2345 Ops.append(ExtOps.begin(), ExtOps.end());
2374 if (DPUsers.
empty())
2382 bool DomPointAfterFrom = From.
getNextNode() == &DomPoint;
2385 for (
auto *DVR : DPUsers) {
2391 if (DomPointAfterFrom && NextNonDebug == &DomPoint) {
2394 DomPoint.
getParent()->insertDbgRecordAfter(DVR, &DomPoint);
2399 }
else if (!DT.
dominates(&DomPoint, MarkedInstr)) {
2400 UndefOrSalvageDVR.
insert(DVR);
2406 for (
auto *DVR : DPUsers) {
2407 if (UndefOrSalvageDVR.
count(DVR))
2420 if (!UndefOrSalvageDVR.
empty()) {
2444 bool SameSize =
DL.getTypeSizeInBits(FromTy) ==
DL.getTypeSizeInBits(ToTy);
2445 bool LosslessConversion = !
DL.isNonIntegralPointerType(FromTy) &&
2446 !
DL.isNonIntegralPointerType(ToTy);
2447 return SameSize && LosslessConversion;
2460 assert(&From != &To &&
"Can't replace something with itself");
2466 return DVR.getExpression();
2480 assert(FromBits != ToBits &&
"Unexpected no-op conversion");
2484 if (FromBits < ToBits)
2495 return std::nullopt;
2512 I->dropDbgRecords();
2513 for (
Use &U :
I->operands()) {
2526 unsigned NumDeadInst = 0;
2533 while (EndInst != &BB->
front()) {
2566 Successor->removePredecessor(BB, PreserveLCSSA);
2571 UI->setDebugLoc(
I->getDebugLoc());
2574 unsigned NumInstrsRemoved = 0;
2576 while (BBI != BBE) {
2577 if (!BBI->use_empty())
2579 BBI++->eraseFromParent();
2585 for (
BasicBlock *UniqueSuccessor : UniqueSuccessors)
2590 return NumInstrsRemoved;
2596 II->getOperandBundlesAsDefs(OpBundles);
2598 II->getCalledOperand(), Args, OpBundles);
2609 auto NewWeights =
uint32_t(TotalWeight) != TotalWeight
2612 NewCall->
setMetadata(LLVMContext::MD_prof, NewWeights);
2623 II->replaceAllUsesWith(NewCall);
2631 BI->setDebugLoc(
II->getDebugLoc());
2637 II->eraseFromParent();
2668 UnwindEdge, InvokeArgs, OpBundles, CI->
getName(), BB);
2672 II->setMetadata(LLVMContext::MD_prof, CI->
getMetadata(LLVMContext::MD_prof));
2682 Split->front().eraseFromParent();
2701 if (FoldInstsToUnreachable) {
2704 Value *Callee = CI->getCalledOperand();
2707 auto IntrinsicID =
F->getIntrinsicID();
2712 if (IntrinsicID == Intrinsic::assume) {
2713 if (
match(CI->getArgOperand(0),
2721 }
else if (IntrinsicID == Intrinsic::experimental_guard) {
2741 ->getAddressSpace())) ||
2747 if (CI->doesNotReturn() && !CI->isMustTailCall()) {
2764 if (
SI->isVolatile())
2767 Value *Ptr =
SI->getOperand(1);
2772 SI->getPointerAddressSpace()))) {
2783 Value *Callee =
II->getCalledOperand();
2790 if (
II->doesNotReturn() &&
2801 Ctx, OrigNormalDest->
getName() +
".unreachable",
2802 II->getFunction(), OrigNormalDest);
2803 Reachable.resize(
II->getFunction()->getMaxBlockNumber());
2806 II->setNormalDest(UnreachableNormalDest);
2814 if (
II->use_empty() && !
II->mayHaveSideEffects()) {
2820 II->eraseFromParent();
2830 struct CatchPadDenseMapInfo {
2837 return LHS->isIdenticalTo(
RHS);
2844 CatchPadDenseMapInfo,
2849 E = CatchSwitch->handler_end();
2853 ++NumPerSuccessorCases[HandlerBB];
2855 if (!HandlerSet.insert({CatchPad, Empty}).second) {
2857 --NumPerSuccessorCases[HandlerBB];
2858 CatchSwitch->removeHandler(
I);
2865 std::vector<DominatorTree::UpdateType> Updates;
2866 for (
const std::pair<BasicBlock *, int> &
I : NumPerSuccessorCases)
2876 if (!Reachable[
Successor->getNumber()]) {
2878 Reachable[
Successor->getNumber()] =
true;
2881 }
while (!Worklist.
empty());
2896 UnwindDest = CRI->getUnwindDest();
2899 CatchSwitch->getParentPad(),
nullptr, CatchSwitch->getNumHandlers(),
2900 CatchSwitch->getName(), CatchSwitch->getIterator());
2901 for (
BasicBlock *PadBB : CatchSwitch->handlers())
2902 NewCatchSwitch->addHandler(PadBB);
2904 NewTI = NewCatchSwitch;
2905 UnwindDest = CatchSwitch->getUnwindDest();
2925 bool FoldInstsToUnreachable) {
2933 if (Reachable[BB.getNumber()])
2938 BlocksToRemove.
insert(&BB);
2941 if (BlocksToRemove.
empty())
2945 NumRemoved += BlocksToRemove.
size();
2958 bool DoesKMove,
bool AAOnly =
false) {
2960 K->getAllMetadataOtherThanDebugLoc(
Metadata);
2962 unsigned Kind = MD.first;
2969 K->setMetadata(Kind,
nullptr);
2971 case LLVMContext::MD_dbg:
2973 case LLVMContext::MD_DIAssignID:
2975 K->mergeDIAssignID(J);
2977 case LLVMContext::MD_tbaa:
2981 case LLVMContext::MD_alias_scope:
2985 case LLVMContext::MD_noalias:
2986 case LLVMContext::MD_mem_parallel_loop_access:
2990 case LLVMContext::MD_access_group:
2992 K->setMetadata(LLVMContext::MD_access_group,
2995 case LLVMContext::MD_range:
2996 if (!AAOnly && (DoesKMove || !K->hasMetadata(LLVMContext::MD_noundef)))
2999 case LLVMContext::MD_nofpclass:
3000 if (!AAOnly && (DoesKMove || !K->hasMetadata(LLVMContext::MD_noundef)))
3003 case LLVMContext::MD_fpmath:
3007 case LLVMContext::MD_invariant_load:
3008 case LLVMContext::MD_invariant_group:
3014 K->setMetadata(Kind, JMD);
3016 case LLVMContext::MD_nonnull:
3017 if (!AAOnly && (DoesKMove || !K->hasMetadata(LLVMContext::MD_noundef)))
3018 K->setMetadata(Kind, JMD);
3023 case LLVMContext::MD_prof:
3024 case LLVMContext::MD_mmra:
3025 case LLVMContext::MD_memprof:
3026 case LLVMContext::MD_callsite:
3028 case LLVMContext::MD_callee_type:
3030 K->setMetadata(LLVMContext::MD_callee_type,
3034 case LLVMContext::MD_align:
3035 if (!AAOnly && (DoesKMove || !K->hasMetadata(LLVMContext::MD_noundef)))
3039 case LLVMContext::MD_dereferenceable:
3040 case LLVMContext::MD_dereferenceable_or_null:
3041 if (!AAOnly && DoesKMove)
3042 K->setMetadata(Kind,
3045 case LLVMContext::MD_preserve_access_index:
3048 case LLVMContext::MD_noundef:
3050 if (!AAOnly && DoesKMove)
3051 K->setMetadata(Kind, JMD);
3053 case LLVMContext::MD_nontemporal:
3056 K->setMetadata(Kind, JMD);
3058 case LLVMContext::MD_mem_cache_hint:
3061 if (!AAOnly && KMD != JMD)
3062 K->setMetadata(Kind,
nullptr);
3064 case LLVMContext::MD_noalias_addrspace:
3066 K->setMetadata(Kind,
3069 case LLVMContext::MD_nosanitize:
3071 K->setMetadata(Kind, JMD);
3073 case LLVMContext::MD_captures:
3079 case LLVMContext::MD_alloc_token:
3080 if (!AAOnly && KMD != JMD)
3089 auto JMMRA = J->
getMetadata(LLVMContext::MD_mmra);
3090 auto KMMRA = K->getMetadata(LLVMContext::MD_mmra);
3091 if (JMMRA || KMMRA) {
3092 K->setMetadata(LLVMContext::MD_mmra,
3099 auto *JMemProf = J->
getMetadata(LLVMContext::MD_memprof);
3100 auto *KMemProf = K->getMetadata(LLVMContext::MD_memprof);
3101 if (!AAOnly && (JMemProf || KMemProf)) {
3102 K->setMetadata(LLVMContext::MD_memprof,
3109 auto *JCallSite = J->
getMetadata(LLVMContext::MD_callsite);
3110 auto *KCallSite = K->getMetadata(LLVMContext::MD_callsite);
3111 if (!AAOnly && (JCallSite || KCallSite)) {
3112 K->setMetadata(LLVMContext::MD_callsite,
3119 auto *JProf = J->
getMetadata(LLVMContext::MD_prof);
3120 auto *KProf = K->getMetadata(LLVMContext::MD_prof);
3121 if (!AAOnly && (JProf || KProf)) {
3122 K->setMetadata(LLVMContext::MD_prof,
3138 Source.getAllMetadata(MD);
3142 for (
const auto &MDPair : MD) {
3143 unsigned ID = MDPair.first;
3153 case LLVMContext::MD_dbg:
3154 case LLVMContext::MD_tbaa:
3155 case LLVMContext::MD_prof:
3156 case LLVMContext::MD_fpmath:
3157 case LLVMContext::MD_tbaa_struct:
3158 case LLVMContext::MD_invariant_load:
3159 case LLVMContext::MD_alias_scope:
3160 case LLVMContext::MD_noalias:
3161 case LLVMContext::MD_nontemporal:
3162 case LLVMContext::MD_mem_cache_hint:
3163 case LLVMContext::MD_mem_parallel_loop_access:
3164 case LLVMContext::MD_access_group:
3165 case LLVMContext::MD_noundef:
3166 case LLVMContext::MD_noalias_addrspace:
3167 case LLVMContext::MD_invariant_group:
3172 case LLVMContext::MD_nonnull:
3176 case LLVMContext::MD_align:
3177 case LLVMContext::MD_dereferenceable:
3178 case LLVMContext::MD_dereferenceable_or_null:
3184 case LLVMContext::MD_range:
3188 case LLVMContext::MD_nofpclass:
3192 if (NewType->
getScalarType() == Source.getType()->getScalarType())
3217 ReplInst->andIRFlags(
I);
3222 bool Success = CB1->tryIntersectAttributes(CB2);
3223 assert(
Success &&
"We should not be trying to sink callbases "
3224 "with non-intersectable attributes");
3242template <
typename ShouldReplaceFn>
3244 const ShouldReplaceFn &ShouldReplace) {
3250 if (
II &&
II->getIntrinsicID() == Intrinsic::fake_use)
3252 if (!ShouldReplace(U))
3256 dbgs() <<
"' with " << *To <<
" in " << *U.getUser() <<
"\n");
3270 if (
I->getParent() == BB)
3281 auto Dominates = [&](
const Use &U) {
return DT.
dominates(Root, U); };
3282 return ::replaceDominatedUsesWith(From, To, Dominates);
3288 auto Dominates = [&](
const Use &U) {
return DT.
dominates(BB, U); };
3289 return ::replaceDominatedUsesWith(From, To, Dominates);
3295 auto Dominates = [&](
const Use &U) {
return DT.
dominates(
I, U); };
3296 return ::replaceDominatedUsesWith(From, To, Dominates);
3302 auto DominatesAndShouldReplace = [&](
const Use &U) {
3303 return DT.
dominates(Root, U) && ShouldReplace(U, To);
3305 return ::replaceDominatedUsesWith(From, To, DominatesAndShouldReplace);
3311 auto DominatesAndShouldReplace = [&](
const Use &U) {
3312 return DT.
dominates(BB, U) && ShouldReplace(U, To);
3314 return ::replaceDominatedUsesWith(From, To, DominatesAndShouldReplace);
3320 auto DominatesAndShouldReplace = [&](
const Use &U) {
3321 return DT.
dominates(
I, U) && ShouldReplace(U, To);
3323 return ::replaceDominatedUsesWith(From, To, DominatesAndShouldReplace);
3329 if (
Call->hasFnAttr(
"gc-leaf-function"))
3332 if (
F->hasFnAttribute(
"gc-leaf-function"))
3335 if (
auto IID =
F->getIntrinsicID()) {
3337 return IID != Intrinsic::experimental_gc_statepoint &&
3338 IID != Intrinsic::experimental_deoptimize &&
3339 IID != Intrinsic::memcpy_element_unordered_atomic &&
3340 IID != Intrinsic::memmove_element_unordered_atomic;
3357 auto *NewTy = NewLI.
getType();
3360 if (NewTy->isPointerTy()) {
3367 if (!NewTy->isIntegerTy())
3382 auto *NewTy = NewLI.
getType();
3384 if (NewTy == OldLI.
getType()) {
3393 if (!NewTy->isPointerTy())
3396 unsigned BitWidth =
DL.getPointerTypeSizeInBits(NewTy);
3407 for (
auto *DVR : DPUsers)
3408 DVR->eraseFromParent();
3440 I->dropUBImplyingAttrsAndMetadata();
3441 if (
I->isUsedByMetadata())
3444 I->dropDbgRecords();
3445 if (
I->isDebugOrPseudoInst()) {
3447 II =
I->eraseFromParent();
3462 std::optional<int64_t> InitIntOpt;
3468 static_cast<uint64_t>(*InitIntOpt))
3473 return createIntegerExpression(
C);
3476 if (
FP && Ty.isFloatingPointTy() && Ty.getScalarSizeInBits() <= 64) {
3484 if (!Ty.isPointerTy())
3491 if (CE->getOpcode() == Instruction::IntToPtr) {
3492 const Value *V = CE->getOperand(0);
3494 return createIntegerExpression(*CI);
3500 auto RemapDebugOperands = [&Mapping](
auto *DV,
auto Set) {
3501 for (
auto *
Op : Set) {
3503 if (
I != Mapping.
end())
3504 DV->replaceVariableLocationOp(
Op,
I->second,
true);
3507 auto RemapAssignAddress = [&Mapping](
auto *DA) {
3508 auto I = Mapping.
find(DA->getAddress());
3509 if (
I != Mapping.
end())
3510 DA->setAddress(
I->second);
3513 RemapDebugOperands(&DVR, DVR.location_ops());
3514 if (DVR.isDbgAssign())
3515 RemapAssignAddress(&DVR);
3524 BitPart(
Value *
P,
unsigned BW) : Provider(
P) {
3535 enum { Unset = -1 };
3567static const std::optional<BitPart> &
3569 std::map<
Value *, std::optional<BitPart>> &BPS,
int Depth,
3571 auto [
I, Inserted] = BPS.try_emplace(V);
3575 auto &Result =
I->second;
3576 auto BitWidth = V->getType()->getScalarSizeInBits();
3584 LLVM_DEBUG(
dbgs() <<
"collectBitParts max recursion depth reached.\n");
3596 Depth + 1, FoundRoot);
3597 if (!
A || !
A->Provider)
3601 Depth + 1, FoundRoot);
3602 if (!
B ||
A->Provider !=
B->Provider)
3606 Result = BitPart(
A->Provider,
BitWidth);
3607 for (
unsigned BitIdx = 0; BitIdx <
BitWidth; ++BitIdx) {
3608 if (
A->Provenance[BitIdx] != BitPart::Unset &&
3609 B->Provenance[BitIdx] != BitPart::Unset &&
3610 A->Provenance[BitIdx] !=
B->Provenance[BitIdx])
3611 return Result = std::nullopt;
3613 if (
A->Provenance[BitIdx] == BitPart::Unset)
3614 Result->Provenance[BitIdx] =
B->Provenance[BitIdx];
3616 Result->Provenance[BitIdx] =
A->Provenance[BitIdx];
3624 const APInt &BitShift = *
C;
3631 if (!MatchBitReversals && (BitShift.
getZExtValue() % 8) != 0)
3635 Depth + 1, FoundRoot);
3641 auto &
P = Result->Provenance;
3642 if (
I->getOpcode() == Instruction::Shl) {
3656 const APInt &AndMask = *
C;
3660 unsigned NumMaskedBits = AndMask.
popcount();
3661 if (!MatchBitReversals && (NumMaskedBits % 8) != 0)
3665 Depth + 1, FoundRoot);
3670 for (
unsigned BitIdx = 0; BitIdx <
BitWidth; ++BitIdx)
3672 if (AndMask[BitIdx] == 0)
3673 Result->Provenance[BitIdx] = BitPart::Unset;
3680 Depth + 1, FoundRoot);
3684 Result = BitPart(Res->Provider,
BitWidth);
3685 auto NarrowBitWidth =
X->getType()->getScalarSizeInBits();
3686 for (
unsigned BitIdx = 0; BitIdx < NarrowBitWidth; ++BitIdx)
3687 Result->Provenance[BitIdx] = Res->Provenance[BitIdx];
3688 for (
unsigned BitIdx = NarrowBitWidth; BitIdx <
BitWidth; ++BitIdx)
3689 Result->Provenance[BitIdx] = BitPart::Unset;
3696 Depth + 1, FoundRoot);
3700 Result = BitPart(Res->Provider,
BitWidth);
3701 for (
unsigned BitIdx = 0; BitIdx <
BitWidth; ++BitIdx)
3702 Result->Provenance[BitIdx] = Res->Provenance[BitIdx];
3710 Depth + 1, FoundRoot);
3714 Result = BitPart(Res->Provider,
BitWidth);
3715 for (
unsigned BitIdx = 0; BitIdx <
BitWidth; ++BitIdx)
3716 Result->Provenance[(
BitWidth - 1) - BitIdx] = Res->Provenance[BitIdx];
3723 Depth + 1, FoundRoot);
3728 Result = BitPart(Res->Provider,
BitWidth);
3729 for (
unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) {
3730 unsigned ByteBitOfs = ByteIdx * 8;
3731 for (
unsigned BitIdx = 0; BitIdx < 8; ++BitIdx)
3732 Result->Provenance[(
BitWidth - 8 - ByteBitOfs) + BitIdx] =
3733 Res->Provenance[ByteBitOfs + BitIdx];
3750 if (!MatchBitReversals && (ModAmt % 8) != 0)
3755 Depth + 1, FoundRoot);
3756 if (!
LHS || !
LHS->Provider)
3760 Depth + 1, FoundRoot);
3761 if (!
RHS ||
LHS->Provider !=
RHS->Provider)
3764 unsigned StartBitRHS =
BitWidth - ModAmt;
3766 for (
unsigned BitIdx = 0; BitIdx < StartBitRHS; ++BitIdx)
3767 Result->Provenance[BitIdx + ModAmt] =
LHS->Provenance[BitIdx];
3768 for (
unsigned BitIdx = 0; BitIdx < ModAmt; ++BitIdx)
3769 Result->Provenance[BitIdx] =
RHS->Provenance[BitIdx + StartBitRHS];
3783 for (
unsigned BitIdx = 0; BitIdx <
BitWidth; ++BitIdx)
3784 Result->Provenance[BitIdx] = BitIdx;
3790 if (From % 8 != To % 8)
3805 Instruction *
I,
bool MatchBSwaps,
bool MatchBitReversals,
3812 if (!MatchBSwaps && !MatchBitReversals)
3814 Type *ITy =
I->getType();
3820 bool FoundRoot =
false;
3821 std::map<Value *, std::optional<BitPart>> BPS;
3828 [](int8_t
I) {
return I == BitPart::Unset || 0 <=
I; }) &&
3829 "Illegal bit provenance index");
3832 Type *DemandedTy = ITy;
3833 if (BitProvenance.
back() == BitPart::Unset) {
3834 while (!BitProvenance.
empty() && BitProvenance.
back() == BitPart::Unset)
3835 BitProvenance = BitProvenance.
drop_back();
3836 if (BitProvenance.
empty())
3851 bool OKForBSwap = MatchBSwaps && (DemandedBW % 16) == 0;
3852 bool OKForBitReverse = MatchBitReversals;
3853 for (
unsigned BitIdx = 0;
3854 (BitIdx < DemandedBW) && (OKForBSwap || OKForBitReverse); ++BitIdx) {
3855 if (BitProvenance[BitIdx] == BitPart::Unset) {
3862 BitIdx, DemandedBW);
3867 Intrin = Intrinsic::bswap;
3868 else if (OKForBitReverse)
3869 Intrin = Intrinsic::bitreverse;
3875 Value *Provider = Res->Provider;
3878 if (DemandedTy != Provider->
getType()) {
3889 auto *Mask = ConstantInt::get(DemandedTy, DemandedMask);
3895 if (ITy != Result->getType()) {
3912 if (
F && !
F->hasLocalLinkage() &&
F->hasName() &&
3914 !
F->doesNotAccessMemory())
3919 const auto *
Op =
I->getOperand(OpIdx);
3921 if (
Op->getType()->isMetadataTy() ||
Op->getType()->isTokenLikeTy())
3927 if (
Op->isSwiftError())
3931 if (
I->isLifetimeStartOrEnd())
3938 switch (
I->getOpcode()) {
3941 case Instruction::Call:
3942 case Instruction::Invoke: {
3946 if (CB.isInlineAsm())
3951 if (CB.isBundleOperand(OpIdx))
3954 if (OpIdx < CB.arg_size()) {
3958 OpIdx >= CB.getFunctionType()->getNumParams()) {
3960 return CB.getIntrinsicID() == Intrinsic::experimental_stackmap;
3965 if (CB.getIntrinsicID() == Intrinsic::gcroot)
3970 if (CB.getIntrinsicID() == Intrinsic::threadlocal_address)
3974 return !CB.paramHasAttr(OpIdx, Attribute::ImmArg);
3981 case Instruction::ShuffleVector:
3984 case Instruction::Switch:
3985 case Instruction::ExtractValue:
3988 case Instruction::InsertValue:
3991 case Instruction::Alloca:
3996 case Instruction::GetElementPtr:
4000 for (
auto E = std::next(It, OpIdx); It != E; ++It)
4013 Value *NotCondition;
4015 return NotCondition;
4023 assert(Parent &&
"Unsupported condition to invert");
4047 if (!
F.hasFnAttribute(Attribute::NoSync) &&
4048 F.doesNotAccessMemory() && !
F.isConvergent()) {
4054 if (!
F.hasFnAttribute(Attribute::NoFree) &&
F.onlyReadsMemory()) {
4055 F.setDoesNotFreeMemory();
4060 if (!
F.hasFnAttribute(Attribute::MustProgress) &&
F.willReturn()) {
4061 F.setMustProgress();
4075 "can only use mergeFlags on instructions with matching opcodes");
4080 HasNUW &=
I.hasNoUnsignedWrap();
4081 HasNSW &=
I.hasNoSignedWrap();
4088 I.dropPoisonGeneratingFlags();
4089 if (
I.getOpcode() == Instruction::Add ||
4092 I.setHasNoUnsignedWrap();
4094 I.setHasNoSignedWrap();
static unsigned getIntrinsicID(const SDNode *N)
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This file implements a class to represent arbitrary precision integral constant values and operations...
ReachingDefInfo InstSet & ToRemove
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
static bool isEqual(const Function &Caller, const Function &Callee)
This file contains the simple types necessary to represent the attributes associated with functions a...
static const Function * getParent(const Value *V)
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines DenseMapInfo traits for DenseMap.
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
This file contains constants used for implementing Dwarf debug support.
static unsigned getHashValueImpl(SimpleValue Val)
static bool isEqualImpl(SimpleValue LHS, SimpleValue RHS)
This file provides various utilities for inspecting and working with the control flow graph in LLVM I...
Module.h This file contains the declarations for the Module class.
This defines the Use class.
const AbstractManglingParser< Derived, Alloc >::OperatorInfo AbstractManglingParser< Derived, Alloc >::Ops[]
This file provides utility for Memory Model Relaxation Annotations (MMRAs).
uint64_t IntrinsicInst * II
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
Remove Loads Into Fake Uses
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
static TableGen::Emitter::Opt Y("gen-skeleton-entry", EmitSkeleton, "Generate example skeleton entry")
LocallyHashedType DenseMapInfo< LocallyHashedType >::Empty
APInt bitcastToAPInt() const
Class for arbitrary precision integers.
std::optional< uint64_t > tryZExtValue() const
Get zero extended value if possible.
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
void clearBit(unsigned BitPosition)
Set a given bit to 0.
uint64_t getZExtValue() const
Get zero extended value.
unsigned popcount() const
Count the number of bits set.
bool isAllOnes() const
Determine if all bits are set. This is true for zero-width values.
unsigned getBitWidth() const
Return the number of bits in the APInt.
const uint64_t * getRawData() const
This function returns a pointer to the internal storage of the APInt.
std::optional< int64_t > trySExtValue() const
Get sign extended value if possible.
int64_t getSExtValue() const
Get sign extended value.
bool uge(const APInt &RHS) const
Unsigned greater or equal comparison.
an instruction to allocate memory on the stack
const Value * getArraySize() const
Get the number of elements allocated.
This class represents an incoming formal argument to a Function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
const T & back() const
Get the last element.
ArrayRef< T > drop_front(size_t N=1) const
Drop the first N elements of the array.
size_t size() const
Get the array size.
ArrayRef< T > drop_back(size_t N=1) const
Drop the last N elements of the array.
bool empty() const
Check if the array is empty.
Value handle that asserts if the Value is deleted.
A cache of @llvm.assume calls within a function.
LLVM Basic Block Representation.
unsigned getNumber() const
iterator begin()
Instruction iterator methods.
iterator_range< const_phi_iterator > phis() const
Returns a range that iterates over the phis in the basic block.
LLVM_ABI const_iterator getFirstInsertionPt() const
Returns an iterator to the first instruction in this block that is suitable for inserting a non-PHI i...
const Function * getParent() const
Return the enclosing method, or null if none.
bool hasTerminator() const LLVM_READONLY
Returns whether the block has a terminator.
const Instruction & back() const
bool hasAddressTaken() const
Returns true if there are any uses of this basic block other than direct branches,...
LLVM_ABI InstListType::const_iterator getFirstNonPHIIt() const
Returns an iterator to the first instruction in this block that is not a PHINode instruction.
LLVM_ABI void insertDbgRecordBefore(DbgRecord *DR, InstListType::iterator Here)
Insert a DbgRecord into a block at the position given by Here.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI bool isEntryBlock() const
Return true if this is the entry block of the containing function.
LLVM_ABI void moveAfter(BasicBlock *MovePos)
Unlink this basic block from its current function and insert it right after MovePos in the function M...
LLVM_ABI bool hasNPredecessors(unsigned N) const
Return true if this block has exactly N predecessors.
LLVM_ABI const BasicBlock * getSinglePredecessor() const
Return the predecessor of this block if it has a single predecessor block.
const Instruction & front() const
const Instruction * getTerminatorOrNull() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
LLVM_ABI void flushTerminatorDbgRecords()
Eject any debug-info trailing at the end of a block.
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
LLVM_ABI SymbolTableList< BasicBlock >::iterator eraseFromParent()
Unlink 'this' from the containing function and delete it.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
LLVM_ABI bool hasNPredecessorsOrMore(unsigned N) const
Return true if this block has N predecessors or more.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
void splice(BasicBlock::iterator ToIt, BasicBlock *FromBB)
Transfer all instructions from FromBB to this basic block at ToIt.
LLVM_ABI void removePredecessor(BasicBlock *Pred, bool KeepOneInputPHIs=false)
Update PHI nodes in this BasicBlock before removal of predecessor Pred.
BinaryOps getOpcode() const
static LLVM_ABI BinaryOperator * CreateNot(Value *Op, const Twine &Name="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name=Twine(), InsertPosition InsertBefore=nullptr)
Construct a binary instruction, given the opcode and the two operands.
This class represents a no-op cast from one type to another.
The address of a basic block.
static LLVM_ABI BlockAddress * get(Function *F, BasicBlock *BB)
Return a BlockAddress for the specified function and basic block.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
void setCallingConv(CallingConv::ID CC)
void addFnAttr(Attribute::AttrKind Kind)
Adds the attribute to the function.
LLVM_ABI void getOperandBundlesAsDefs(SmallVectorImpl< OperandBundleDef > &Defs) const
Return the list of operand bundles attached to this instruction as a vector of OperandBundleDefs.
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
CallingConv::ID getCallingConv() const
Value * getCalledOperand() const
void setAttributes(AttributeList A)
Set the attributes for this call.
FunctionType * getFunctionType() const
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
AttributeList getAttributes() const
Return the attributes for this call.
This class represents a function call, abstracting a target machine's calling convention.
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static LLVM_ABI CastInst * CreateIntegerCast(Value *S, Type *Ty, bool isSigned, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a ZExt, BitCast, or Trunc for int -> int casts.
mapped_iterator< op_iterator, DerefFnTy > handler_iterator
static CatchSwitchInst * Create(Value *ParentPad, BasicBlock *UnwindDest, unsigned NumHandlers, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
static CleanupReturnInst * Create(Value *CleanupPad, BasicBlock *UnwindBB=nullptr, InsertPosition InsertBefore=nullptr)
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
@ ICMP_SLT
signed less than
@ ICMP_SLE
signed less or equal
@ ICMP_UGE
unsigned greater or equal
@ ICMP_UGT
unsigned greater than
@ ICMP_SGT
signed greater than
@ ICMP_ULT
unsigned less than
@ ICMP_SGE
signed greater or equal
@ ICMP_ULE
unsigned less or equal
Predicate getPredicate() const
Return the predicate for this instruction.
Conditional Branch instruction.
A constant value that is initialized with an expression using other constant values.
static LLVM_ABI Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static LLVM_ABI Constant * getNot(Constant *C)
static LLVM_ABI Constant * getPtrToInt(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static LLVM_ABI Constant * getAdd(Constant *C1, Constant *C2, bool HasNUW=false, bool HasNSW=false)
This is the shared class of boolean and integer constants.
static LLVM_ABI ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
This is an important base class in LLVM.
LLVM_ABI void destroyConstant()
Called if some element of this constant is no longer valid.
DIExpression * createConstantValueExpression(uint64_t Val)
Create an expression for a variable that does not have an address, but does have a constant value.
static LLVM_ABI DIExpression * append(const DIExpression *Expr, ArrayRef< uint64_t > Ops)
Append the opcodes Ops to DIExpr.
unsigned getNumElements() const
static LLVM_ABI ExtOps getExtOps(unsigned FromSize, unsigned ToSize, bool Signed)
Returns the ops for a zero- or sign-extension in a DIExpression.
static LLVM_ABI void appendOffset(SmallVectorImpl< uint64_t > &Ops, int64_t Offset)
Append Ops with operations to apply the Offset.
static LLVM_ABI DIExpression * appendOpsToArg(const DIExpression *Expr, ArrayRef< uint64_t > Ops, unsigned ArgNo, bool StackValue=false)
Create a copy of Expr by appending the given list of Ops to each instance of the operand DW_OP_LLVM_a...
static LLVM_ABI std::optional< FragmentInfo > getFragmentInfo(expr_op_iterator Start, expr_op_iterator End)
Retrieve the details of this fragment expression.
LLVM_ABI DIExpression * foldConstantMath()
Try to shorten an expression with constant math operations that can be evaluated at compile time.
LLVM_ABI uint64_t getNumLocationOperands() const
Return the number of unique location operands referred to (via DW_OP_LLVM_arg) in this expression; th...
ArrayRef< uint64_t > getElements() const
LLVM_ABI std::optional< uint64_t > getActiveBits(DIVariable *Var)
Return the number of bits that have an active value, i.e.
uint64_t getElement(unsigned I) const
static LLVM_ABI DIExpression * prepend(const DIExpression *Expr, uint8_t Flags, int64_t Offset=0)
Prepend DIExpr with a deref and offset operation and optionally turn it into a stack value or/and an ...
static LLVM_ABI DIExpression * appendExt(const DIExpression *Expr, unsigned FromSize, unsigned ToSize, bool Signed)
Append a zero- or sign-extension to Expr.
std::optional< DIBasicType::Signedness > getSignedness() const
Return the signedness of this variable's type, or std::nullopt if this type is neither signed nor uns...
A parsed version of the target data layout string in and methods for querying it.
This represents the llvm.dbg.label instruction.
Instruction * MarkedInstr
Link back to the Instruction that owns this marker.
LLVM_ABI void removeFromParent()
LLVM_ABI Module * getModule()
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LLVM_ABI void replaceVariableLocationOp(Value *OldValue, Value *NewValue, bool AllowEmpty=false)
LLVM_ABI Value * getVariableLocationOp(unsigned OpIdx) const
LLVM_ABI unsigned getNumVariableLocationOps() const
bool isAddressOfVariable() const
Does this describe the address of a local variable.
LLVM_ABI DbgVariableRecord * clone() const
void setExpression(DIExpression *NewExpr)
DIExpression * getExpression() const
DILocalVariable * getVariable() const
LLVM_ABI iterator_range< location_op_iterator > location_ops() const
Get the locations corresponding to the variable referenced by the debug info intrinsic.
DILocation * get() const
Get the underlying DILocation.
static DebugLoc getTemporary()
iterator find(const_arg_type_t< KeyT > Val)
DenseMapIterator< KeyT, ValueT, KeyInfoT, BucketT, true > const_iterator
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
std::pair< iterator, bool > insert_or_assign(const KeyT &Key, V &&Val)
Implements a dense probed hash-table based set.
LLVM_ABI void deleteBB(BasicBlock *DelBB)
Delete DelBB.
static constexpr UpdateKind Delete
static constexpr UpdateKind Insert
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool dominates(const BasicBlock *BB, const Use &U) const
Return true if the (end of the) basic block BB dominates the use U.
const BasicBlock & getEntryBlock() const
void applyUpdatesPermissive(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
void applyUpdates(ArrayRef< UpdateT > Updates)
Submit updates to all available trees.
bool hasDomTree() const
Returns true if it holds a DomTreeT.
void recalculate(FuncT &F)
Notify DTU that the entry block was replaced.
bool isBBPendingDeletion(BasicBlockT *DelBB) const
Returns true if DelBB is awaiting deletion.
an instruction for type-safe pointer arithmetic to access elements of arrays and structs
This instruction compares its operands according to the predicate given to the constructor.
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
iterator_range< simple_ilist< DbgRecord >::iterator > getDbgRecordRange() const
Return a range over the DbgRecords attached to this instruction.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
LLVM_ABI bool extractProfTotalWeight(uint64_t &TotalVal) const
Retrieve total raw weight values of a branch.
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
bool isEHPad() const
Return true if the instruction is a variety of EH-block.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI bool isIdenticalToWhenDefined(const Instruction *I, bool IntersectAttrs=false) const LLVM_READONLY
This is like isIdenticalTo, except that it ignores the SubclassOptionalData flags,...
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
LLVM_ABI void dropPoisonGeneratingFlags()
Drops flags that may cause this instruction to evaluate to poison despite having non-poison inputs.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
LLVM_ABI void copyMetadata(const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >())
Copy metadata from SrcInst to this instruction.
LLVM_ABI void dropDbgRecords()
Erase any DbgRecords attached to this instruction.
A wrapper class for inspecting calls to intrinsic functions.
static InvokeInst * Create(FunctionType *Ty, Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef< Value * > Args, const Twine &NameStr, InsertPosition InsertBefore=nullptr)
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Value * getPointerOperand()
LLVM_ABI MDNode * createBranchWeights(uint32_t TrueWeight, uint32_t FalseWeight, bool IsExpected=false)
Return metadata containing two branch weights.
LLVM_ABI MDNode * createRange(const APInt &Lo, const APInt &Hi)
Return metadata describing the range [Lo, Hi).
static LLVM_ABI MDNode * getMostGenericAliasScope(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * getMergedCallsiteMetadata(MDNode *A, MDNode *B)
static LLVM_ABI CaptureComponents toCaptureComponents(const MDNode *MD)
Convert !captures metadata to CaptureComponents. MD may be nullptr.
static LLVM_ABI MDNode * getMergedCalleeTypeMetadata(const MDNode *A, const MDNode *B)
static LLVM_ABI MDNode * getMostGenericTBAA(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * getMostGenericNoaliasAddrspace(MDNode *A, MDNode *B)
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
static LLVM_ABI MDNode * getMergedProfMetadata(MDNode *A, MDNode *B, const Instruction *AInstr, const Instruction *BInstr)
Merge !prof metadata from two instructions.
static LLVM_ABI MDNode * getMergedAllocTokenMetadata(const MDNode *A, const MDNode *B)
static LLVM_ABI MDNode * getMostGenericFPMath(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * getMostGenericRange(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * getMergedMemProfMetadata(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * intersect(MDNode *A, MDNode *B)
static LLVM_ABI MDNode * getMostGenericNoFPClass(MDNode *A, MDNode *B)
LLVMContext & getContext() const
static LLVM_ABI MDNode * fromCaptureComponents(LLVMContext &Ctx, CaptureComponents CC)
Convert CaptureComponents to !captures metadata.
static LLVM_ABI MDNode * getMostGenericAlignmentOrDereferenceable(MDNode *A, MDNode *B)
This class implements a map that also provides access to all stored values in a deterministic order.
iterator find(const KeyT &Key)
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
LLVM_ABI void changeToUnreachable(const Instruction *I)
Instruction I will be changed to an unreachable.
LLVM_ABI void removeBlocks(const SmallSetVector< BasicBlock *, 8 > &DeadBlocks)
Remove all MemoryAcceses in a set of BasicBlocks about to be deleted.
LLVM_ABI void removeMemoryAccess(MemoryAccess *, bool OptimizePhis=false)
Remove a MemoryAccess from MemorySSA, including updating all definitions and uses.
A Module instance is used to store all the information related to an LLVM module.
const DataLayout & getDataLayout() const
Get the data layout for the module's target platform.
void addIncoming(Value *V, BasicBlock *BB)
Add an incoming value to the end of the PHI list.
iterator_range< const_block_iterator > blocks() const
LLVM_ABI Value * removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty=true)
Remove an incoming value.
void setIncomingValue(unsigned i, Value *V)
Value * getIncomingValueForBlock(const BasicBlock *BB) const
BasicBlock * getIncomingBlock(unsigned i) const
Return incoming basic block number i.
Value * getIncomingValue(unsigned i) const
Return incoming value number x.
unsigned getNumIncomingValues() const
Return the number of incoming edges.
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
size_type size() const
Determine the number of elements in the SetVector.
size_type count(const_arg_type key) const
Count the number of elements of a given key in the SetVector.
Vector takeVector()
Clear the SetVector and return the underlying vector.
bool empty() const
Determine if the SetVector is empty or not.
bool insert(const value_type &X)
Insert a new element into the SetVector.
value_type pop_back_val()
A templated base class for SmallPtrSet which provides the typesafe interface that is common across al...
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
bool contains(ConstPtrType Ptr) const
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
A SetVector that performs no allocations if smaller than a certain size.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
void reserve(size_type N)
void append(ItTy in_start, ItTy in_end)
Add the specified range to the end of the SmallVector.
iterator insert(iterator I, T &&Elt)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Provides information about what library functions are available for the current target.
bool hasOptimizedCodeGen(LibFunc F) const
Tests if the function is both available and a candidate for optimized code generation.
bool has(LibFunc F) const
Tests whether a library function is available.
bool getLibFunc(StringRef funcName, LibFunc &F) const
Searches for a particular function name.
TinyPtrVector - This class is specialized for cases where there are normally 0 or 1 element in a vect...
static constexpr TypeSize getFixed(ScalarTy ExactSize)
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM_ABI unsigned getIntegerBitWidth() const
bool isVectorTy() const
True if this is an instance of VectorType.
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
bool isPointerTy() const
True if this is an instance of PointerType.
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
LLVM_ABI unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isIntOrPtrTy() const
Return true if this is an integer type or a pointer type.
bool isIntegerTy() const
True if this is an instance of IntegerType.
bool isTokenTy() const
Return true if this is 'token'.
static LLVM_ABI IntegerType * getIntNTy(LLVMContext &C, unsigned N)
Unconditional Branch instruction.
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
static LLVM_ABI UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
This function has undefined behavior.
A Use represents the edge between a Value definition and its users.
value_op_iterator value_op_end()
Value * getOperand(unsigned i) const
value_op_iterator value_op_begin()
iterator_range< value_op_iterator > operand_values()
iterator find(const KeyT &Val)
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
LLVMContext & getContext() const
All values hold a context through their type.
iterator_range< user_iterator > users()
LLVM_ABI void printAsOperand(raw_ostream &O, bool PrintType=true, const Module *M=nullptr) const
Print the name of this Value out to the specified raw_ostream.
bool isUsedByMetadata() const
Return true if there is metadata referencing this value.
static constexpr unsigned MaxAlignmentExponent
The maximum alignment for instructions.
LLVM_ABI bool replaceUsesWithIf(Value *New, llvm::function_ref< bool(Use &U)> ShouldReplace)
Go through the uses list for this definition and make each use point to "V" if the callback ShouldRep...
iterator_range< use_iterator > uses()
user_iterator_impl< User > user_iterator
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
static LLVM_ABI VectorType * get(Type *ElementType, ElementCount EC)
This static method is the primary way to construct an VectorType.
Represents an op.with.overflow intrinsic.
std::pair< iterator, bool > insert(const ValueT &V)
void reserve(size_t Size)
Grow the DenseSet so that it can contain at least NumEntries items before resizing again.
static constexpr bool isKnownGE(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
self_iterator getIterator()
NodeTy * getNextNode()
Get the next node, or nullptr for the list tail.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
BinaryOp_match< SrcTy, SpecificConstantMatch, TargetOpcode::G_XOR, true > m_Not(const SrcTy &&Src)
Matches a register not-ed by a G_XOR.
match_combine_or< Ty... > m_CombineOr(const Ty &...Ps)
Combine pattern matchers matching any of Ps patterns.
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
auto m_BSwap(const Opnd0 &Op0)
auto m_BitReverse(const Opnd0 &Op0)
ap_match< APInt > m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
CastInst_match< OpTy, TruncInst > m_Trunc(const OpTy &Op)
Matches Trunc.
bool match(Val *V, const Pattern &P)
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
ExtractValue_match< Ind, Val_t > m_ExtractValue(const Val_t &V)
Match a single index ExtractValue instruction.
BinOpPred_match< LHS, RHS, is_logical_shift_op > m_LogicalShift(const LHS &L, const RHS &R)
Matches logical shift operations.
auto m_Value()
Match an arbitrary value and ignore it.
match_bind< WithOverflowInst > m_WithOverflowInst(WithOverflowInst *&I)
Match a with overflow intrinsic, capturing it if we match.
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
auto m_FShl(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
auto m_Undef()
Match an arbitrary undef constant.
BinaryOp_match< LHS, RHS, Instruction::Or > m_Or(const LHS &L, const RHS &R)
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
auto m_FShr(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
initializer< Ty > init(const Ty &Val)
@ DW_OP_LLVM_arg
Only used in LLVM metadata.
@ ebStrict
This corresponds to "fpexcept.strict".
This is an optimization pass for GlobalISel generic memory operations.
auto find(R &&Range, const T &Val)
Provide wrappers to std::find which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool RemoveRedundantDbgInstrs(BasicBlock *BB)
Try to remove redundant dbg.value instructions from given basic block.
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI unsigned removeAllNonTerminatorAndEHPadInstructions(BasicBlock *BB)
Remove all instructions from a basic block other than its terminator and any present EH pad instructi...
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool RecursivelyDeleteTriviallyDeadInstructions(Value *V, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
If the specified value is a trivially dead instruction, delete it.
bool succ_empty(const Instruction *I)
LLVM_ABI BasicBlock * changeToInvokeAndSplitBasicBlock(CallInst *CI, BasicBlock *UnwindEdge, DomTreeUpdater *DTU=nullptr)
Convert the CallInst to InvokeInst with the specified unwind edge basic block.
LLVM_ABI bool ConstantFoldTerminator(BasicBlock *BB, bool DeleteDeadConditions=false, const TargetLibraryInfo *TLI=nullptr, DomTreeUpdater *DTU=nullptr)
If a terminator instruction is predicated on a constant value, convert it into an unconditional branc...
LLVM_ABI unsigned replaceDominatedUsesWithIf(Value *From, Value *To, DominatorTree &DT, const BasicBlockEdge &Edge, function_ref< bool(const Use &U, const Value *To)> ShouldReplace)
Replace each use of 'From' with 'To' if that use is dominated by the given edge and the callback Shou...
LLVM_ABI void findDbgValues(Value *V, SmallVectorImpl< DbgVariableRecord * > &DbgVariableRecords)
Finds the dbg.values describing a value.
@ Known
Known to have no common set bits.
LLVM_ABI unsigned replaceNonLocalUsesWith(Instruction *From, Value *To)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI void salvageDebugInfo(const MachineRegisterInfo &MRI, MachineInstr &MI)
Assuming the instruction MI is going to be deleted, attempt to salvage debug users of MI by writing t...
auto successors(const MachineBasicBlock *BB)
LLVM_ABI bool isRemovableAlloc(const CallBase *V, const TargetLibraryInfo *TLI)
Return true if this is a call to an allocation function that does not have side effects that we are r...
LLVM_ABI CallInst * changeToCall(InvokeInst *II, DomTreeUpdater *DTU=nullptr)
This function converts the specified invoke into a normal call.
LLVM_ABI bool isMathLibCallNoop(const CallBase *Call, const TargetLibraryInfo *TLI)
Check whether the given call has no side-effects.
LLVM_ABI void copyMetadataForLoad(LoadInst &Dest, const LoadInst &Source)
Copy the metadata from the source instruction to the destination (the replacement for the source inst...
LLVM_ABI void InsertDebugValueAtStoreLoc(DbgVariableRecord *DVR, StoreInst *SI, DIBuilder &Builder)
===------------------------------------------------------------------—===// Dbg Intrinsic utilities
constexpr from_range_t from_range
bool hasNItemsOrLess(IterTy &&Begin, IterTy &&End, unsigned N, Pred &&ShouldBeCounted=[](const decltype(*std::declval< IterTy >()) &) { return true;})
Returns true if the sequence [Begin, End) has N or less items.
LLVM_ABI void remapDebugVariable(ValueToValueMapTy &Mapping, Instruction *Inst)
Remap the operands of the debug records attached to Inst, and the operands of Inst itself if it's a d...
iterator_range< early_inc_iterator_impl< detail::IterOfRange< RangeT > > > make_early_inc_range(RangeT &&Range)
Make a range that does early increment to allow mutation of the underlying range without disrupting i...
auto cast_or_null(const Y &Val)
auto pred_size(const MachineBasicBlock *BB)
LLVM_ABI bool SimplifyInstructionsInBlock(BasicBlock *BB, const TargetLibraryInfo *TLI=nullptr)
Scan the specified basic block and try to simplify any instructions in it and recursively delete dead...
LLVM_ABI bool isAssumeWithEmptyBundle(const AssumeInst &Assume)
Return true iff the operand bundles of the provided llvm.assume doesn't contain any valuable informat...
LLVM_ABI void DeleteDeadBlock(BasicBlock *BB, DomTreeUpdater *DTU=nullptr, bool KeepOneInputPHIs=false)
Delete the specified block, which must have no predecessors.
LLVM_ABI bool hasBranchWeightOrigin(const Instruction &I)
Check if Branch Weight Metadata has an "expected" field from an llvm.expect* intrinsic.
LLVM_ABI void insertDebugValuesForPHIs(BasicBlock *BB, SmallVectorImpl< PHINode * > &InsertedPHIs)
Propagate dbg.value intrinsics through the newly inserted PHIs.
LLVM_ABI ConstantRange getConstantRangeFromMetadata(const MDNode &RangeMD)
Parse out a conservative ConstantRange from !range metadata.
LLVM_ABI MDNode * intersectAccessGroups(const Instruction *Inst1, const Instruction *Inst2)
Compute the access-group list of access groups that Inst1 and Inst2 are both in.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI bool handleUnreachableTerminator(Instruction *I, SmallVectorImpl< Value * > &PoisonedValues)
If a terminator in an unreachable basic block has an operand of type Instruction, transform it into p...
LLVM_ABI bool canSimplifyInvokeNoUnwind(const Function *F)
LLVM_ABI Value * simplifyInstruction(Instruction *I, const SimplifyQuery &Q)
See if we can compute a simplified version of this instruction.
LLVM_ABI bool removeUnreachableBlocks(Function &F, DomTreeUpdater *DTU=nullptr, MemorySSAUpdater *MSSAU=nullptr, bool FoldInstsToUnreachable=true)
Remove all blocks that can not be reached from the function's entry.
auto dyn_cast_or_null(const Y &Val)
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI bool isInstructionTriviallyDead(Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction is not used, and the instruction will return.
LLVM_ABI bool TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB, DomTreeUpdater *DTU=nullptr)
BB is known to contain an unconditional branch, and contains no instructions other than PHI nodes,...
LLVM_ABI SmallVector< uint32_t > fitWeights(ArrayRef< uint64_t > Weights)
Push the weights right to fit in uint32_t.
LLVM_ABI bool recognizeBSwapOrBitReverseIdiom(Instruction *I, bool MatchBSwaps, bool MatchBitReversals, SmallVectorImpl< Instruction * > &InsertedInsts)
Try to match a bswap or bitreverse idiom.
LLVM_ABI MDNode * getValidBranchWeightMDNode(const Instruction &I)
Get the valid branch weights metadata node.
LLVM_ABI Align getOrEnforceKnownAlignment(Value *V, MaybeAlign PrefAlign, const DataLayout &DL, const Instruction *CxtI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr)
Try to ensure that the alignment of V is at least PrefAlign bytes.
LLVM_ABI bool wouldInstructionBeTriviallyDeadOnUnusedPaths(Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction has no side effects on any paths other than whe...
LLVM_ABI void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true, unsigned Depth=0)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
LLVM_ABI bool LowerDbgDeclare(Function &F)
Lowers dbg.declare records into appropriate set of dbg.value records.
LLVM_ABI bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
LLVM_ABI DIExpression * getExpressionForConstant(DIBuilder &DIB, const Constant &C, Type &Ty)
Given a constant, create a debug information expression.
LLVM_ABI CallInst * createCallMatchingInvoke(InvokeInst *II)
Create a call that matches the invoke II in terms of arguments, attributes, debug information,...
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
generic_gep_type_iterator<> gep_type_iterator
LLVM_ABI void ConvertDebugDeclareToDebugValue(DbgVariableRecord *DVR, StoreInst *SI, DIBuilder &Builder)
Inserts a dbg.value record before a store to an alloca'd value that has an associated dbg....
LLVM_ABI Instruction * removeUnwindEdge(BasicBlock *BB, DomTreeUpdater *DTU=nullptr)
Replace 'BB's terminator with one that does not have an unwind successor block.
LLVM_ABI bool wouldInstructionBeTriviallyDead(const Instruction *I, const TargetLibraryInfo *TLI=nullptr)
Return true if the result produced by the instruction would have no side effects if it was not used.
LLVM_ABI void patchReplacementInstruction(Instruction *I, Value *Repl)
Patch the replacement so that it is not more restrictive than the value being replaced.
LLVM_ABI bool RecursivelyDeleteDeadPHINode(PHINode *PN, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, SmallPtrSetImpl< PHINode * > *KnownNonDeadPHIs=nullptr)
If the specified value is an effectively dead PHI node, due to being a def-use chain of single-use no...
LLVM_ABI void salvageDebugInfoForDbgValues(Instruction &I, ArrayRef< DbgVariableRecord * > DPInsns)
Salvage only the records in DPInsns instead of finding every debug user of I.
LLVM_ABI unsigned replaceDominatedUsesWith(Value *From, Value *To, DominatorTree &DT, const BasicBlockEdge &Edge)
Replace each use of 'From' with 'To' if that use is dominated by the given edge.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
bool isa(const From &Val)
isa<X> - Return true if the parameter to the template is an instance of one of the template type argu...
@ Success
The lock was released successfully.
LLVM_ABI unsigned changeToUnreachable(Instruction *I, bool PreserveLCSSA=false, DomTreeUpdater *DTU=nullptr, MemorySSAUpdater *MSSAU=nullptr)
Insert an unreachable instruction before the specified instruction, making it and the rest of the cod...
LLVM_ABI bool replaceAllDbgUsesWith(Instruction &From, Value &To, Instruction &DomPoint, DominatorTree &DT)
Point debug users of From to To or salvage them.
LLVM_ABI Value * salvageDebugInfoImpl(Instruction &I, uint64_t CurrentLocOps, SmallVectorImpl< uint64_t > &Ops, SmallVectorImpl< Value * > &AdditionalValues)
RNSuccIterator< NodeRef, BlockT, RegionT > succ_begin(NodeRef Node)
LLVM_ABI void combineMetadataForCSE(Instruction *K, const Instruction *J, bool DoesKMove)
Combine the metadata of two instructions so that K can replace J.
LLVM_ABI void dropDebugUsers(Instruction &I)
Remove the debug intrinsic instructions for the given instruction.
@ First
Helpers to iterate all locations in the MemoryEffectsBase class.
LLVM_ABI void MergeBasicBlockIntoOnlyPred(BasicBlock *BB, DomTreeUpdater *DTU=nullptr)
BB is a block with one predecessor and its predecessor is known to have one successor (BB!...
LLVM_ABI bool replaceDbgUsesWithUndef(Instruction *I)
Replace all the uses of an SSA value in @llvm.dbg intrinsics with undef.
LLVM_ABI void hoistAllInstructionsInto(BasicBlock *DomBlock, Instruction *InsertPt, BasicBlock *BB)
Hoist all of the instructions in the IfBlock to the dominant block DomBlock, by moving its instructio...
LLVM_ABI void copyRangeMetadata(const DataLayout &DL, const LoadInst &OldLI, MDNode *N, LoadInst &NewLI)
Copy a range metadata node to a new load instruction.
LLVM_ABI BasicBlock * SplitBlock(BasicBlock *Old, BasicBlock::iterator SplitPt, DominatorTree *DT, LoopInfo *LI=nullptr, MemorySSAUpdater *MSSAU=nullptr, const Twine &BBName="")
Split the specified block at the specified instruction.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI DebugLoc getDebugValueLoc(DbgVariableRecord *DVR)
Produce a DebugLoc to use for each dbg.declare that is promoted to a dbg.value.
LLVM_ABI void copyNonnullMetadata(const LoadInst &OldLI, MDNode *N, LoadInst &NewLI)
Copy a nonnull metadata node to a new load instruction.
LLVM_ABI bool canReplaceOperandWithVariable(const Instruction *I, unsigned OpIdx)
Given an instruction, is it legal to set operand OpIdx to a non-constant value?
DWARFExpression::Operation Op
LLVM_ABI void replaceDbgValueForAlloca(AllocaInst *AI, Value *NewAllocaAddress, DIBuilder &Builder, int Offset=0)
Replaces multiple dbg.value records when the alloca it describes is replaced with a new value.
LLVM_ABI Align tryEnforceAlignment(Value *V, Align PrefAlign, const DataLayout &DL)
If the specified pointer points to an object that we control, try to modify the object's alignment to...
LLVM_ABI Value * getFreedOperand(const CallBase *CB, const TargetLibraryInfo *TLI)
If this if a call to a free function, return the freed operand.
LLVM_ABI bool RecursivelyDeleteTriviallyDeadInstructionsPermissive(SmallVectorImpl< WeakTrackingVH > &DeadInsts, const TargetLibraryInfo *TLI=nullptr, MemorySSAUpdater *MSSAU=nullptr, std::function< void(Value *)> AboutToDeleteCallback=std::function< void(Value *)>())
Same functionality as RecursivelyDeleteTriviallyDeadInstructions, but allow instructions that are not...
constexpr unsigned BitWidth
ValueMap< const Value *, WeakTrackingVH > ValueToValueMapTy
LLVM_ABI bool extractBranchWeights(const MDNode *ProfileData, SmallVectorImpl< uint32_t > &Weights)
Extract branch weights from MD_prof metadata.
auto count_if(R &&Range, UnaryPredicate P)
Wrapper function around std::count_if to count the number of times an element satisfying a given pred...
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
gep_type_iterator gep_type_begin(const User *GEP)
LLVM_ABI TinyPtrVector< DbgVariableRecord * > findDVRDeclares(Value *V)
Finds dbg.declare records declaring local variables as living in the memory that 'V' points to.
auto predecessors(const MachineBasicBlock *BB)
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
LLVM_ABI void combineAAMetadata(Instruction *K, const Instruction *J)
Combine metadata of two instructions, where instruction J is a memory access that has been merged int...
LLVM_ABI bool inferAttributesFromOthers(Function &F)
If we can infer one attribute from another on the declaration of a function, explicitly materialize t...
LLVM_ABI Value * invertCondition(Value *Condition)
Invert the given true/false value, possibly reusing an existing copy.
hash_code hash_combine(const Ts &...args)
Combine values into a single hash_code.
LLVM_ABI void DeleteDeadBlocks(ArrayRef< BasicBlock * > BBs, DomTreeUpdater *DTU=nullptr, bool KeepOneInputPHIs=false)
Delete the specified blocks from BB.
LLVM_ABI void setFittedBranchWeights(Instruction &I, ArrayRef< uint64_t > Weights, bool IsExpected, bool ElideAllZero=false)
Variant of setBranchWeights where the Weights will be fit first to uint32_t by shifting right.
LLVM_ABI void maybeMarkSanitizerLibraryCallNoBuiltin(CallInst *CI, const TargetLibraryInfo *TLI)
Given a CallInst, check if it calls a string function known to CodeGen, and mark it with NoBuiltin if...
static auto filterDbgVars(iterator_range< simple_ilist< DbgRecord >::iterator > R)
Filter the DbgRecord range to DbgVariableRecord types only and downcast.
LLVM_ABI bool EliminateDuplicatePHINodes(BasicBlock *BB)
Check for and eliminate duplicate PHI nodes in this block.
LLVM_ABI void findDbgUsers(Value *V, SmallVectorImpl< DbgVariableRecord * > &DbgVariableRecords)
Finds the debug info records describing a value.
LLVM_ABI bool callsGCLeafFunction(const CallBase *Call, const TargetLibraryInfo &TLI)
Return true if this call calls a gc leaf function.
hash_code hash_combine_range(InputIteratorT first, InputIteratorT last)
Compute a hash_code for a sequence of values.
LLVM_ABI bool replaceDbgDeclare(Value *Address, Value *NewAddress, DIBuilder &Builder, uint8_t DIExprFlags, int Offset)
Replaces dbg.declare record when the address it describes is replaced with a new value.
LLVM_ABI void extractFromBranchWeightMD64(const MDNode *ProfileData, SmallVectorImpl< uint64_t > &Weights)
Faster version of extractBranchWeights() that skips checks and must only be called with "branch_weigh...
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
This struct is a compact representation of a valid (non-zero power of two) alignment.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
std::optional< unsigned > Opcode
Opcode of merged instructions.
LLVM_ABI void mergeFlags(Instruction &I)
Merge in the no-wrap flags from I.
LLVM_ABI void applyFlags(Instruction &I)
Apply the no-wrap flags to I if applicable.
A MapVector that performs no allocations if smaller than a certain size.