70#define DEBUG_TYPE "code-extractor"
78 cl::desc(
"Aggregate arguments to code-extracted functions"));
83 bool AllowVarArgs,
bool AllowAlloca) {
93 while (!ToVisit.
empty()) {
95 if (!Visited.
insert(Curr).second)
103 for (
auto const &U : Curr->
operands()) {
121 if (
auto *UBB =
II->getUnwindDest())
122 if (!Result.count(UBB))
130 if (
auto *UBB = CSI->getUnwindDest())
131 if (!Result.count(UBB))
133 for (
const auto *HBB : CSI->handlers())
134 if (!Result.count(
const_cast<BasicBlock*
>(HBB)))
142 for (
const auto *U : CPI->users())
144 if (!Result.count(
const_cast<BasicBlock*
>(CRI->getParent())))
153 for (
const auto *U : CPI->users())
155 if (!Result.count(
const_cast<BasicBlock*
>(CRI->getParent())))
160 if (
auto *UBB = CRI->getUnwindDest())
161 if (!Result.count(UBB))
178 if (CI->isMustTailCall())
181 if (
const Function *
F = CI->getCalledFunction()) {
182 auto IID =
F->getIntrinsicID();
183 if (IID == Intrinsic::vastart) {
192 if (IID == Intrinsic::eh_typeid_for)
204 bool AllowVarArgs,
bool AllowAlloca) {
205 assert(!BBs.
empty() &&
"The set of blocks to extract must be non-empty");
215 if (!Result.insert(BB))
219 LLVM_DEBUG(
dbgs() <<
"Region front block: " << Result.front()->getName()
222 for (
auto *BB : Result) {
227 if (BB == Result.front()) {
229 LLVM_DEBUG(
dbgs() <<
"The first block cannot be an unwind block\n");
238 if (!Result.count(PBB)) {
239 LLVM_DEBUG(
dbgs() <<
"No blocks in this region may have entries from "
240 "outside the region except for the first block!\n"
241 <<
"Problematic source BB: " << BB->getName() <<
"\n"
242 <<
"Problematic destination BB: " << PBB->getName()
254 switch (TargetTriple.
getArch()) {
269 bool AllowVarArgs,
bool AllowAlloca,
272 std::string Suffix,
bool ArgsInZeroAddressSpace,
273 bool VoidReturnWithSingleOutput)
275 BPI(BPI), AC(AC), AllocationBlock(AllocationBlock),
276 DeallocationBlocks(DeallocationBlocks), AllowVarArgs(AllowVarArgs),
278 Suffix(Suffix), ArgsInZeroAddressSpace(ArgsInZeroAddressSpace),
279 VoidReturnWithSingleOutput(VoidReturnWithSingleOutput) {}
285 if (Blocks.
count(
I->getParent()))
296 if (!Blocks.
count(
I->getParent()))
306 if (Blocks.
count(Succ))
308 if (!CommonExitBlock) {
309 CommonExitBlock = Succ;
312 if (CommonExitBlock != Succ)
318 if (
any_of(Blocks, hasNonCommonExitSucc))
321 return CommonExitBlock;
328 Allocas.push_back(AI);
330 findSideEffectInfoForBlock(BB);
334void CodeExtractorAnalysisCache::findSideEffectInfoForBlock(
BasicBlock &BB) {
336 unsigned Opcode =
II.getOpcode();
337 Value *MemAddr =
nullptr;
339 case Instruction::Store:
340 case Instruction::Load: {
341 if (Opcode == Instruction::Store) {
343 MemAddr =
SI->getPointerOperand();
353 SideEffectingBlocks.insert(&BB);
356 BaseMemAddrs[&BB].insert(
Base);
364 SideEffectingBlocks.insert(&BB);
368 if (
II.mayHaveSideEffects()) {
369 SideEffectingBlocks.insert(&BB);
379 if (SideEffectingBlocks.count(&BB))
381 auto It = BaseMemAddrs.find(&BB);
382 if (It != BaseMemAddrs.end())
383 return It->second.count(Addr);
390 Function *Func = (*Blocks.begin())->getParent();
392 if (Blocks.count(&BB))
402 BasicBlock *SinglePredFromOutlineRegion =
nullptr;
403 assert(!Blocks.count(CommonExitBlock) &&
404 "Expect a block outside the region!");
406 if (!Blocks.count(Pred))
408 if (!SinglePredFromOutlineRegion) {
409 SinglePredFromOutlineRegion = Pred;
410 }
else if (SinglePredFromOutlineRegion != Pred) {
411 SinglePredFromOutlineRegion =
nullptr;
416 if (SinglePredFromOutlineRegion)
417 return SinglePredFromOutlineRegion;
423 while (
I != BB->end()) {
436 assert(!getFirstPHI(CommonExitBlock) &&
"Phi not expected");
444 if (Blocks.count(Pred))
446 Pred->getTerminator()->replaceUsesOfWith(CommonExitBlock, NewExitBlock);
449 Blocks.insert(CommonExitBlock);
450 return CommonExitBlock;
458 nullptr, Name, AllocaIP.
getPoint());
460 if (CastedAlloc && ArgsInZeroAddressSpace &&
DL.getAllocaAddrSpace() != 0) {
464 (*CastedAlloc)->insertAfter(Alloca->
getIterator());
479CodeExtractor::LifetimeMarkerInfo
483 LifetimeMarkerInfo Info;
493 Info.LifeStart = IntrInst;
499 Info.LifeEnd = IntrInst;
508 if (!
Info.LifeStart || !
Info.LifeEnd)
514 if ((
Info.SinkLifeStart ||
Info.HoistLifeEnd) &&
519 if (
Info.HoistLifeEnd && !ExitBlock)
526 ValueSet &SinkCands, ValueSet &HoistCands,
528 Function *Func = (*Blocks.begin())->getParent();
531 auto moveOrIgnoreLifetimeMarkers =
532 [&](
const LifetimeMarkerInfo &LMI) ->
bool {
535 if (LMI.SinkLifeStart) {
538 SinkCands.
insert(LMI.LifeStart);
540 if (LMI.HoistLifeEnd) {
541 LLVM_DEBUG(
dbgs() <<
"Hoisting lifetime.end: " << *LMI.LifeEnd <<
"\n");
542 HoistCands.
insert(LMI.LifeEnd);
551 if (Blocks.count(BB))
560 LifetimeMarkerInfo MarkerInfo = getLifetimeMarkers(CEAC, AI, ExitBlock);
561 bool Moved = moveOrIgnoreLifetimeMarkers(MarkerInfo);
577 if (U->stripInBoundsConstantOffsets() != AI)
581 for (
User *BU : Bitcast->users()) {
590 << *Bitcast <<
" in out-of-region lifetime marker "
591 << *IntrInst <<
"\n");
592 LifetimeBitcastUsers.
push_back(IntrInst);
602 I->replaceUsesOfWith(
I->getOperand(1), CastI);
609 if (U->stripInBoundsConstantOffsets() == AI) {
611 LifetimeMarkerInfo LMI = getLifetimeMarkers(CEAC, Bitcast, ExitBlock);
627 if (Bitcasts.
empty())
630 LLVM_DEBUG(
dbgs() <<
"Sinking alloca (via bitcast): " << *AI <<
"\n");
632 for (
unsigned I = 0, E = Bitcasts.
size();
I != E; ++
I) {
634 const LifetimeMarkerInfo &LMI = BitcastLifetimeInfo[
I];
636 "Unsafe to sink bitcast without lifetime markers");
637 moveOrIgnoreLifetimeMarkers(LMI);
639 LLVM_DEBUG(
dbgs() <<
"Sinking bitcast-of-alloca: " << *BitcastAddr
641 SinkCands.
insert(BitcastAddr);
655 if (AllowVarArgs &&
F->getFunctionType()->isVarArg()) {
656 auto containsVarArgIntrinsic = [](
const Instruction &
I) {
658 if (
const Function *Callee = CI->getCalledFunction())
659 return Callee->getIntrinsicID() == Intrinsic::vastart ||
660 Callee->getIntrinsicID() == Intrinsic::vaend;
664 for (
auto &BB : *
F) {
665 if (Blocks.count(&BB))
679 bool IsSave =
II->getIntrinsicID() == Intrinsic::stacksave;
680 bool IsRestore =
II->getIntrinsicID() == Intrinsic::stackrestore;
681 if (IsSave &&
any_of(
II->users(), [&Blks = this->Blocks](
User *U) {
682 return !definedInRegion(Blks, U);
693 const ValueSet &SinkCands,
694 bool CollectGlobalInputs) {
699 for (
auto &OI :
II.operands()) {
701 if (!SinkCands.
count(V) &&
707 for (
User *U :
II.users())
717 FuncRetVal =
nullptr;
718 if (!VoidReturnWithSingleOutput && !AggregateArgs && Outputs.
size() == 1 &&
720 FuncRetVal = Outputs[0];
728void CodeExtractor::severSplitPHINodesOfEntry(
BasicBlock *&Header) {
729 unsigned NumPredsFromRegion = 0;
730 unsigned NumPredsOutsideRegion = 0;
732 if (Header != &Header->getParent()->getEntryBlock()) {
741 ++NumPredsFromRegion;
743 ++NumPredsOutsideRegion;
747 if (NumPredsOutsideRegion <= 1)
return;
759 Blocks.remove(OldPred);
760 Blocks.insert(NewBB);
765 if (NumPredsFromRegion) {
805void CodeExtractor::severSplitPHINodesOfExits() {
806 for (BasicBlock *ExitBB : ExtractedFuncRetVals) {
809 for (PHINode &PN : ExitBB->phis()) {
811 SmallVector<unsigned, 2> IncomingVals;
819 if (IncomingVals.
size() <= 1)
826 ExitBB->getName() +
".split",
827 ExitBB->getParent(), ExitBB);
829 for (BasicBlock *PredBB : Preds)
830 if (Blocks.count(PredBB))
831 PredBB->getTerminator()->replaceUsesOfWith(ExitBB, NewBB);
833 Blocks.insert(NewBB);
840 for (
unsigned i : IncomingVals)
842 for (
unsigned i :
reverse(IncomingVals))
849void CodeExtractor::splitReturnBlocks() {
850 for (BasicBlock *
Block : Blocks)
853 Block->splitBasicBlock(RI->getIterator(),
Block->getName() +
".ret");
864 DT->changeImmediateDominator(
I, NewNode);
869Function *CodeExtractor::constructFunctionDeclaration(
870 const ValueSet &inputs,
const ValueSet &outputs,
BlockFrequency EntryFreq,
875 Function *oldFunction = Blocks.front()->getParent();
876 Module *
M = Blocks.front()->getModule();
879 std::vector<Type *> ParamTy;
880 std::vector<Type *> AggParamTy;
881 const DataLayout &
DL =
M->getDataLayout();
884 for (
Value *value : inputs) {
886 if (AggregateArgs && !ExcludeArgsFromAggregate.contains(value)) {
887 AggParamTy.push_back(value->getType());
888 StructValues.insert(value);
890 ParamTy.push_back(value->getType());
894 for (
Value *output : outputs) {
896 if (AggregateArgs && !ExcludeArgsFromAggregate.contains(output)) {
897 AggParamTy.push_back(output->getType());
898 StructValues.insert(output);
905 (ParamTy.size() + AggParamTy.size()) ==
906 (inputs.size() + outputs.size()) &&
907 "Number of scalar and aggregate params does not match inputs, outputs");
908 assert((StructValues.empty() || AggregateArgs) &&
909 "Expeced StructValues only with AggregateArgs set");
912 if (!AggParamTy.empty()) {
915 M->getContext(), ArgsInZeroAddressSpace ? 0 :
DL.getAllocaAddrSpace()));
918 Type *RetTy = FuncRetVal ? FuncRetVal->getType() : getSwitchType();
920 dbgs() <<
"Function type: " << *RetTy <<
" f(";
921 for (
Type *i : ParamTy)
922 dbgs() << *i <<
", ";
927 RetTy, ParamTy, AllowVarArgs && oldFunction->
isVarArg());
945 for (
const auto &Attr : oldFunction->
getAttributes().getFnAttrs()) {
946 if (Attr.isStringAttribute()) {
947 if (Attr.getKindAsString() ==
"thunk")
950 switch (Attr.getKindAsEnum()) {
953 case Attribute::AllocSize:
954 case Attribute::Builtin:
955 case Attribute::Convergent:
956 case Attribute::JumpTable:
957 case Attribute::Naked:
958 case Attribute::NoBuiltin:
959 case Attribute::NoMerge:
960 case Attribute::NoReturn:
961 case Attribute::NoSync:
962 case Attribute::ReturnsTwice:
963 case Attribute::Speculatable:
964 case Attribute::StackAlignment:
965 case Attribute::WillReturn:
966 case Attribute::AllocKind:
967 case Attribute::PresplitCoroutine:
968 case Attribute::Memory:
969 case Attribute::NoFPClass:
970 case Attribute::CoroDestroyOnlyWhenComplete:
971 case Attribute::CoroElideSafe:
972 case Attribute::NoDivergenceSource:
973 case Attribute::NoCreateUndefOrPoison:
976 case Attribute::AlwaysInline:
977 case Attribute::Cold:
978 case Attribute::DisableSanitizerInstrumentation:
979 case Attribute::Flatten:
980 case Attribute::FnRetThunkExtern:
982 case Attribute::HybridPatchable:
983 case Attribute::NoRecurse:
984 case Attribute::InlineHint:
985 case Attribute::MinSize:
986 case Attribute::NoCallback:
987 case Attribute::NoDuplicate:
988 case Attribute::NoFree:
989 case Attribute::NoImplicitFloat:
990 case Attribute::NoInline:
991 case Attribute::NoIPA:
992 case Attribute::NoOutline:
993 case Attribute::NonLazyBind:
994 case Attribute::NoRedZone:
995 case Attribute::NoUnwind:
996 case Attribute::NoSanitizeBounds:
997 case Attribute::NoSanitizeCoverage:
998 case Attribute::NullPointerIsValid:
999 case Attribute::OptimizeForDebugging:
1000 case Attribute::OptForFuzzing:
1001 case Attribute::OptimizeNone:
1002 case Attribute::OptimizeForSize:
1003 case Attribute::SafeStack:
1004 case Attribute::ShadowCallStack:
1005 case Attribute::SanitizeAddress:
1006 case Attribute::SanitizeMemory:
1007 case Attribute::SanitizeNumericalStability:
1008 case Attribute::SanitizeThread:
1009 case Attribute::SanitizeType:
1010 case Attribute::SanitizeHWAddress:
1011 case Attribute::SanitizeMemTag:
1012 case Attribute::SanitizeRealtime:
1013 case Attribute::SanitizeRealtimeBlocking:
1014 case Attribute::SanitizeAllocToken:
1015 case Attribute::SpeculativeLoadHardening:
1016 case Attribute::StackProtect:
1017 case Attribute::StackProtectReq:
1018 case Attribute::StackProtectStrong:
1019 case Attribute::StrictFP:
1020 case Attribute::UWTable:
1021 case Attribute::VScaleRange:
1022 case Attribute::NoCfCheck:
1023 case Attribute::MustProgress:
1024 case Attribute::NoProfile:
1025 case Attribute::SkipProfile:
1026 case Attribute::DenormalFPEnv:
1029 case Attribute::Alignment:
1030 case Attribute::AllocatedPointer:
1031 case Attribute::AllocAlign:
1032 case Attribute::ByVal:
1033 case Attribute::Captures:
1034 case Attribute::Dereferenceable:
1035 case Attribute::DereferenceableOrNull:
1036 case Attribute::ElementType:
1037 case Attribute::InAlloca:
1038 case Attribute::InReg:
1039 case Attribute::Nest:
1040 case Attribute::NoAlias:
1041 case Attribute::NoUndef:
1042 case Attribute::NonNull:
1043 case Attribute::Preallocated:
1044 case Attribute::ReadNone:
1045 case Attribute::ReadOnly:
1046 case Attribute::Returned:
1047 case Attribute::SExt:
1048 case Attribute::StructRet:
1049 case Attribute::SwiftError:
1050 case Attribute::SwiftSelf:
1051 case Attribute::SwiftAsync:
1052 case Attribute::ZExt:
1053 case Attribute::ImmArg:
1054 case Attribute::ByRef:
1055 case Attribute::WriteOnly:
1056 case Attribute::Writable:
1057 case Attribute::DeadOnUnwind:
1058 case Attribute::Range:
1059 case Attribute::Initializes:
1060 case Attribute::NoExt:
1061 case Attribute::NoFreeObj:
1067 case Attribute::DeadOnReturn:
1080 for (
Value *input : inputs) {
1081 if (StructValues.contains(input))
1084 ScalarAI->
setName(input->getName());
1085 if (input->isSwiftError())
1087 Attribute::SwiftError);
1090 for (
Value *output : outputs) {
1091 if (StructValues.contains(output))
1094 ScalarAI->
setName(output->getName() +
".out");
1100 auto Count = BFI->getProfileCountFromFreq(EntryFreq);
1101 if (
Count.has_value())
1118 if (!
I.getDebugLoc())
1145 Value *Mem =
II->getOperand(0);
1149 if (
II->getIntrinsicID() == Intrinsic::lifetime_start)
1150 LifetimesStart.
insert(Mem);
1151 II->eraseFromParent();
1166 bool InsertBefore) {
1167 for (
Value *Mem : Objects) {
1170 "Input memory not defined in original function");
1178 Marker->insertBefore(Term->getIterator());
1182 if (!LifetimesStart.
empty()) {
1183 insertMarkers(Intrinsic::lifetime_start, LifetimesStart,
1187 if (!LifetimesEnd.
empty()) {
1188 insertMarkers(Intrinsic::lifetime_end, LifetimesEnd,
1193void CodeExtractor::moveCodeToFunction(
Function *newFunction) {
1194 auto newFuncIt = newFunction->
begin();
1195 for (BasicBlock *
Block : Blocks) {
1197 Block->removeFromParent();
1204 newFuncIt = newFunction->
insert(std::next(newFuncIt),
Block);
1208void CodeExtractor::calculateNewCallTerminatorWeights(
1212 using Distribution = BlockFrequencyInfoImplBase::Distribution;
1213 using BlockNode = BlockFrequencyInfoImplBase::BlockNode;
1220 Distribution BranchDist;
1227 BlockNode ExitNode(i);
1230 BranchDist.addExit(ExitNode, ExitFreq);
1236 if (BranchDist.Total == 0) {
1237 BPI->setEdgeProbability(CodeReplacer, EdgeProbabilities);
1242 BranchDist.normalize();
1245 for (
unsigned I = 0,
E = BranchDist.Weights.size();
I <
E; ++
I) {
1246 const auto &Weight = BranchDist.Weights[
I];
1249 BranchWeights[Weight.TargetNode.Index] = Weight.Amount;
1250 BranchProbability BP(Weight.Amount, BranchDist.Total);
1251 EdgeProbabilities[Weight.TargetNode.Index] = BP;
1253 BPI->setEdgeProbability(CodeReplacer, EdgeProbabilities);
1255 LLVMContext::MD_prof,
1256 MDBuilder(TI->
getContext()).createBranchWeights(BranchWeights));
1266 if (DVR->getFunction() != &
F)
1267 DVR->eraseFromParent();
1298 assert(OldSP->getUnit() &&
"Missing compile unit for subprogram");
1303 DISubprogram::SPFlagOptimized |
1304 DISubprogram::SPFlagLocalToUnit;
1307 0, SPType, 0, DINode::FlagZero, SPFlags);
1310 auto UpdateOrInsertDebugRecord = [&](
auto *DR,
Value *OldLoc,
Value *NewLoc,
1312 if (DR->getParent()->getParent() == &NewFunc) {
1313 DR->replaceVariableLocationOp(OldLoc, NewLoc);
1317 DIB.
insertDeclare(NewLoc, DR->getVariable(), Expr, DR->getDebugLoc(),
1321 DIB.
insertDbgValue(NewLoc, DR->getVariable(), Expr, DR->getDebugLoc(),
1332 for (
auto *DVR : DPUsers)
1333 UpdateOrInsertDebugRecord(DVR,
Input, NewVal, Expr, DVR->isDbgDeclare());
1336 auto IsInvalidLocation = [&NewFunc](
Value *Location) {
1344 return Arg->getParent() != &NewFunc;
1361 DINode *&NewVar = RemappedMetadata[OldVar];
1364 *OldVar->getScope(), *NewSP, Ctx, Cache);
1366 NewScope, OldVar->
getName(), OldVar->getFile(), OldVar->getLine(),
1367 OldVar->getType(),
false, DINode::FlagZero,
1368 OldVar->getAlignInBits());
1373 auto UpdateDbgLabel = [&](
auto *LabelRecord) {
1376 if (LabelRecord->getDebugLoc().getInlinedAt())
1378 DILabel *OldLabel = LabelRecord->getLabel();
1379 DINode *&NewLabel = RemappedMetadata[OldLabel];
1382 *OldLabel->
getScope(), *NewSP, Ctx, Cache);
1391 auto UpdateDbgRecordsOnInst = [&](
Instruction &
I) ->
void {
1392 for (
DbgRecord &DR :
I.getDbgRecordRange()) {
1394 UpdateDbgLabel(DLR);
1420 UpdateDbgRecordsOnInst(
I);
1422 for (
auto *DVR : DVRsToDelete)
1423 DVR->getMarker()->MarkedInstr->dropOneDbgRecord(DVR);
1435 *NewSP, Ctx, Cache));
1438 auto updateLoopInfoLoc = [&Ctx, &Cache, NewSP](
Metadata *MD) ->
Metadata * {
1454 ValueSet Inputs, Outputs;
1460 ValueSet &inputs, ValueSet &outputs) {
1469 normalizeCFGForExtraction(header);
1477 AC->unregisterAssumption(AI);
1478 AI->eraseFromParent();
1483 ValueSet SinkingCands, HoistingCands;
1485 findAllocas(CEAC, SinkingCands, HoistingCands, CommonExit);
1495 ValueSet LifetimesStart;
1498 if (!HoistingCands.
empty()) {
1501 for (
auto *
II : HoistingCands)
1503 computeExtractedFuncRetVals();
1513 assert(BPI &&
"Both BPI and BFI are required to preserve profile info");
1515 if (Blocks.count(Pred))
1518 BFI->getBlockFreq(Pred) * BPI->getEdgeProbability(Pred, header);
1521 for (
BasicBlock *Succ : ExtractedFuncRetVals) {
1523 if (!Blocks.count(
Block))
1528 BF += BFI->getBlockFreq(
Block) * BPI->getEdgeProbability(
Block, Succ);
1536 while (ReplIP && Blocks.count(ReplIP))
1540 std::string SuffixToUse =
1545 ValueSet StructValues;
1547 Function *newFunction = constructFunctionDeclaration(
1548 inputs, outputs, EntryFreq, oldFunction->
getName() +
"." + SuffixToUse,
1549 StructValues, StructTy);
1552 emitFunctionBody(inputs, outputs, StructValues, newFunction, StructTy, header,
1553 SinkingCands, NewValues);
1555 std::vector<Value *> Reloads;
1556 CallInst *TheCall = emitReplacerCall(
1557 inputs, outputs, StructValues, newFunction, StructTy, oldFunction, ReplIP,
1558 EntryFreq, LifetimesStart.
getArrayRef(), Reloads);
1560 insertReplacerCall(oldFunction, header, TheCall, outputs, Reloads,
1575void CodeExtractor::normalizeCFGForExtraction(
BasicBlock *&header) {
1578 splitReturnBlocks();
1581 severSplitPHINodesOfEntry(header);
1587 computeExtractedFuncRetVals();
1588 severSplitPHINodesOfExits();
1591void CodeExtractor::computeExtractedFuncRetVals() {
1592 ExtractedFuncRetVals.clear();
1597 if (Blocks.count(Succ))
1600 bool IsNew = ExitBlocks.
insert(Succ).second;
1602 ExtractedFuncRetVals.push_back(Succ);
1607Type *CodeExtractor::getSwitchType() {
1610 assert(ExtractedFuncRetVals.size() < 0xffff &&
1611 "too many exit blocks for switch");
1612 switch (ExtractedFuncRetVals.size()) {
1624void CodeExtractor::emitFunctionBody(
1625 const ValueSet &inputs,
const ValueSet &outputs,
1626 const ValueSet &StructValues,
Function *newFunction,
1640 for (
auto *
II : SinkingCands) {
1646 for (
auto *
II : SinkingCands) {
1653 Argument *AggArg = StructValues.empty()
1659 for (
unsigned i = 0, e = inputs.size(), aggIdx = 0; i != e; ++i) {
1661 if (StructValues.contains(inputs[i])) {
1666 StructArgTy, AggArg, Idx,
"gep_" + inputs[i]->
getName(), newFuncRoot);
1669 "loadgep_" + inputs[i]->getName(), newFuncRoot);
1682 unsigned AlignmentValue;
1683 const Triple &TargetTriple =
1691 inputs[i]->stripPointerCasts()->getPointerAlignment(
DL).value();
1693 AlignmentValue = inputs[i]->getPointerAlignment(
DL).value();
1696 LLVMContext::MD_align,
1699 MDB.createConstant(ConstantInt::get(
1702 RewriteVal = LoadGEP;
1705 RewriteVal = &*ScalarAI++;
1710 moveCodeToFunction(newFunction);
1712 for (
unsigned i = 0, e = inputs.size(); i != e; ++i) {
1713 Value *RewriteVal = NewValues[i];
1715 std::vector<User *>
Users(inputs[i]->user_begin(), inputs[i]->user_end());
1718 if (Blocks.count(inst->getParent()))
1719 inst->replaceUsesOfWith(inputs[i], RewriteVal);
1727 std::map<BasicBlock *, BasicBlock *> ExitBlockMap;
1731 for (
auto P :
enumerate(ExtractedFuncRetVals)) {
1733 size_t SuccNum =
P.index();
1737 ExitBlockMap[OldTarget] = NewTarget;
1739 Value *brVal =
nullptr;
1740 Type *RetTy = FuncRetVal ? FuncRetVal->getType() : getSwitchType();
1741 assert(ExtractedFuncRetVals.size() < 0xffff &&
1742 "too many exit blocks for switch");
1743 switch (ExtractedFuncRetVals.size()) {
1752 brVal = ConstantInt::get(RetTy, !SuccNum);
1755 brVal = ConstantInt::get(RetTy, SuccNum);
1762 for (BasicBlock *
Block : Blocks) {
1769 BasicBlock *NewTarget = ExitBlockMap[OldTarget];
1770 assert(NewTarget &&
"Unknown target block!");
1794 unsigned AggIdx = 0;
1796 for (
Value *Input : inputs) {
1797 if (StructValues.contains(Input))
1803 for (
Value *Output : outputs) {
1810 InsertPt = InvokeI->getNormalDest()->getFirstInsertionPt();
1812 InsertPt =
Phi->getParent()->getFirstInsertionPt();
1814 InsertPt = std::next(OutI->getIterator());
1817 if (StructValues.contains(Output))
1824 assert((InsertPt->getFunction() == newFunction ||
1825 Blocks.count(InsertPt->getParent())) &&
1826 "InsertPt should be in new function");
1828 if (StructValues.contains(Output)) {
1829 assert(AggArg &&
"Number of aggregate output arguments should match "
1830 "the number of defined values");
1835 StructArgTy, AggArg, Idx,
"gep_" + Output->getName(), InsertPt);
1836 new StoreInst(Output,
GEP, InsertPt);
1840 "Number of scalar output arguments should match "
1841 "the number of defined values");
1842 new StoreInst(Output, &*ScalarAI, InsertPt);
1847 if (ExtractedFuncRetVals.empty()) {
1851 if (
none_of(Blocks, [](
const BasicBlock *BB) {
1859CallInst *CodeExtractor::emitReplacerCall(
1860 const ValueSet &inputs,
const ValueSet &outputs,
1861 const ValueSet &StructValues,
Function *newFunction,
1864 std::vector<Value *> &Reloads) {
1871 if (AllocationBlock)
1872 assert(AllocationBlock->getParent() == oldFunction &&
1873 "AllocationBlock is not in the same function");
1875 AllocationBlock ? AllocationBlock : &oldFunction->
getEntryBlock();
1879 BFI->setBlockFreq(codeReplacer, EntryFreq);
1881 std::vector<Value *> params;
1884 for (
Value *input : inputs) {
1885 if (StructValues.contains(input))
1888 params.push_back(input);
1892 std::vector<Value *> ReloadOutputs;
1893 for (
Value *output : outputs) {
1894 if (StructValues.contains(output))
1900 output->getType(), output->getName() +
".loc");
1901 params.push_back(OutAlloc);
1902 ReloadOutputs.push_back(OutAlloc);
1906 if (!StructValues.empty()) {
1907 AddrSpaceCastInst *StructSpaceCast =
nullptr;
1910 StructArgTy,
"structArg", &StructSpaceCast);
1911 if (StructSpaceCast)
1912 params.push_back(StructSpaceCast);
1914 params.push_back(Struct);
1916 unsigned AggIdx = 0;
1917 for (
Value *input : inputs) {
1918 if (!StructValues.contains(input))
1925 StructArgTy, Struct, Idx,
"gep_" + input->getName());
1926 GEP->insertInto(codeReplacer, codeReplacer->
end());
1927 new StoreInst(input,
GEP, codeReplacer);
1935 newFunction, params, ExtractedFuncRetVals.size() > 1 ?
"targetBlock" :
"",
1939 unsigned ParamIdx = 0;
1940 unsigned AggIdx = 0;
1941 for (
auto input : inputs) {
1942 if (StructValues.contains(input)) {
1945 if (input->isSwiftError())
1962 for (
unsigned i = 0, e = outputs.size(), scalarIdx = 0; i != e; ++i) {
1963 Value *Output =
nullptr;
1964 if (StructValues.contains(outputs[i])) {
1969 StructArgTy, Struct, Idx,
"gep_reload_" + outputs[i]->
getName());
1970 GEP->insertInto(codeReplacer, codeReplacer->
end());
1974 Output = ReloadOutputs[scalarIdx];
1978 new LoadInst(outputs[i]->
getType(), Output,
1979 outputs[i]->
getName() +
".reload", codeReplacer);
1980 Reloads.push_back(
load);
1984 SwitchInst *TheSwitch =
1986 codeReplacer, 0, codeReplacer);
1987 for (
auto P :
enumerate(ExtractedFuncRetVals)) {
1989 size_t SuccNum =
P.index();
1996 Type *OldFnRetTy = TheSwitch->
getParent()->getParent()->getReturnType();
1997 switch (ExtractedFuncRetVals.size()) {
2005 }
else if (OldFnRetTy->
isVoidTy()) {
2058 auto deallocVars = [&](
BasicBlock *DeallocBlock,
2061 for (
Value *Output : outputs) {
2062 if (!StructValues.contains(Output))
2063 deallocateVar(IRBuilder<>::InsertPoint(DeallocBlock, DeallocIP),
2064 ReloadOutputs[Index++], Output->
getType());
2068 deallocateVar(IRBuilder<>::InsertPoint(DeallocBlock, DeallocIP), Struct,
2072 if (DeallocationBlocks.empty()) {
2073 deallocVars(codeReplacer, codeReplacer->
end());
2075 for (BasicBlock *DeallocationBlock : DeallocationBlocks)
2076 deallocVars(DeallocationBlock, DeallocationBlock->getFirstInsertionPt());
2082void CodeExtractor::insertReplacerCall(
2092 for (
auto &U :
Users)
2096 if (
I->isTerminator() &&
I->getFunction() == oldFunction &&
2097 !Blocks.count(
I->getParent()))
2098 I->replaceUsesOfWith(header, codeReplacer);
2104 for (BasicBlock *ExitBB : ExtractedFuncRetVals)
2105 for (PHINode &PN : ExitBB->phis()) {
2106 Value *IncomingCodeReplacerVal =
nullptr;
2113 if (!IncomingCodeReplacerVal) {
2118 "PHI has two incompatbile incoming values from codeRepl");
2122 for (
unsigned i = 0, e = outputs.size(); i != e; ++i) {
2124 std::vector<User *>
Users(outputs[i]->user_begin(), outputs[i]->user_end());
2125 for (User *U :
Users) {
2127 if (inst->
getParent()->getParent() == oldFunction)
2133 FuncRetVal->replaceUsesWithIf(ReplacerCall, [&](Use &U) {
2138 if (BFI && ExtractedFuncRetVals.size() > 1)
2139 calculateNewCallTerminatorWeights(codeReplacer, ExitWeights, BPI);
2145 for (
auto AssumeVH : AC->assumptions()) {
2151 if (
I->getFunction() != &OldFunc)
2157 for (
auto AffectedValVH : AC->assumptionsFor(
I->getOperand(0))) {
2161 if (AffectedCI->getFunction() != &OldFunc)
2164 if (AssumedInst->getFunction() != &OldFunc)
2172 ExcludeArgsFromAggregate.insert(Arg);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
AMDGPU Mark last scratch load
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
Expand Atomic instructions
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< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file defines the DenseMap class.
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.
iv Induction Variable Users
Move duplicate certain instructions close to their use
uint64_t IntrinsicInst * II
static StringRef getName(Value *V)
This file implements a set that has insertion order iteration characteristics.
This file defines the SmallPtrSet class.
This file defines the SmallVector class.
static SymbolRef::Type getType(const Symbol *Sym)
static Function * getFunction(FunctionType *Ty, const Twine &Name, Module *M)
This class represents a conversion between pointers from one address space to another.
an instruction to allocate memory on the stack
This class represents an incoming formal argument to a Function.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
bool empty() const
Check if the array is empty.
A cache of @llvm.assume calls within a function.
@ TombstoneKey
Use as Tombstone key for DenseMap of AttrKind.
@ None
No attributes have been set.
@ EmptyKey
Use as Empty key for DenseMap of AttrKind.
@ EndAttrKinds
Sentinel value useful for loops.
LLVM Basic Block Representation.
iterator begin()
Instruction iterator methods.
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...
LLVM_ABI BasicBlock * splitBasicBlock(iterator I, const Twine &BBName="")
Split the basic block into two basic blocks at the specified instruction.
const Function * getParent() const
Return the enclosing method, or null if none.
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.
InstListType::const_iterator const_iterator
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
LLVM_ABI const CallInst * getTerminatingDeoptimizeCall() const
Returns the call instruction calling @llvm.experimental.deoptimize prior to the terminating return in...
LLVM_ABI const DataLayout & getDataLayout() const
Get the data layout of the module this basic block belongs to.
InstListType::iterator iterator
Instruction iterators...
LLVM_ABI LLVMContext & getContext() const
Get the context in which this basic block lives.
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction; assumes that the block is well-formed.
LLVM_ABI const Module * getModule() const
Return the module owning the function this basic block belongs to, or nullptr if the function does no...
BlockFrequencyInfo pass uses BlockFrequencyInfoImpl implementation to estimate IR basic block frequen...
Analysis providing branch probability information.
static constexpr BranchProbability getUnknown()
static constexpr BranchProbability getZero()
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
Adds the attribute to the indicated argument.
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)
This is the base class for all instructions that perform data casts.
static LLVM_ABI CastInst * CreatePointerCast(Value *S, Type *Ty, const Twine &Name="", InsertPosition InsertBefore=nullptr)
Create a BitCast, AddrSpaceCast or a PtrToInt cast instruction.
static CondBrInst * Create(Value *Cond, BasicBlock *IfTrue, BasicBlock *IfFalse, InsertPosition InsertBefore=nullptr)
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
LLVM_ABI void finalizeSubprogram(DISubprogram *SP)
Finalize a specific subprogram - no new variables may be added to this subprogram afterwards.
LLVM_ABI DISubroutineType * createSubroutineType(DITypeArray ParameterTypes, DINode::DIFlags Flags=DINode::FlagZero, unsigned CC=0)
Create subroutine type.
LLVM_ABI DbgRecord * insertDbgValue(llvm::Value *Val, DILocalVariable *VarInfo, DIExpression *Expr, const DILocation *DL, InsertPosition InsertPt)
Insert a new dbg_value record.
LLVM_ABI DISubprogram * createFunction(DIScope *Scope, StringRef Name, StringRef LinkageName, DIFile *File, unsigned LineNo, DISubroutineType *Ty, unsigned ScopeLine, DINode::DIFlags Flags=DINode::FlagZero, DISubprogram::DISPFlags SPFlags=DISubprogram::SPFlagZero, DITemplateParameterArray TParams=nullptr, DISubprogram *Decl=nullptr, DITypeArray ThrownTypes=nullptr, DINodeArray Annotations=nullptr, StringRef TargetFuncName="", bool UseKeyInstructions=false)
Create a new descriptor for the specified subprogram.
LLVM_ABI DITypeArray getOrCreateTypeArray(ArrayRef< Metadata * > Elements)
Get a DITypeArray, create one if required.
LLVM_ABI DbgRecord * insertDeclare(Value *Storage, DILocalVariable *VarInfo, DIExpression *Expr, const DILocation *DL, BasicBlock *InsertAtEnd)
Insert a new dbg_declare record.
LLVM_ABI DIExpression * createExpression(ArrayRef< uint64_t > Addr={})
Create a new descriptor for the specified variable which has a complex address expression for its add...
LLVM_ABI DILocalVariable * createAutoVariable(DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo, DIType *Ty, bool AlwaysPreserve=false, DINode::DIFlags Flags=DINode::FlagZero, uint32_t AlignInBits=0)
Create a new descriptor for an auto variable.
StringRef getName() const
bool isArtificial() const
unsigned getColumn() const
DILocalScope * getScope() const
Get the local scope for this label.
std::optional< unsigned > getCoroSuspendIdx() const
static LLVM_ABI DILocalScope * cloneScopeForSubprogram(DILocalScope &RootScope, DISubprogram &NewSP, LLVMContext &Ctx, DenseMap< const MDNode *, MDNode * > &Cache)
Traverses the scope chain rooted at RootScope until it hits a Subprogram, recreating the chain with "...
Tagged DWARF-like metadata node.
LLVM_ABI StringRef getName() const
Subprogram description. Uses SubclassData1.
DISPFlags
Debug info subprogram flags.
A parsed version of the target data layout string in and methods for querying it.
Records a position in IR for a source label (DILabel).
Base class for non-instruction debug metadata records that have positions within IR.
DebugLoc getDebugLoc() const
Record of a variable value-assignment, aka a non instruction representation of the dbg....
LLVM_ABI Value * getAddress() const
void setVariable(DILocalVariable *NewVar)
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.
static LLVM_ABI DebugLoc replaceInlinedAtSubprogram(const DebugLoc &DL, DISubprogram &NewSP, LLVMContext &Ctx, DenseMap< const MDNode *, MDNode * > &Cache)
Rebuild the entire inline-at chain by replacing the subprogram at the end of the chain with NewSP.
LLVM_ABI DILocation * getInlinedAt() const
ValueT lookup(const_arg_type_t< KeyT > Val) const
Return the entry for the specified key, or a default constructed value if no such entry exists.
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
LLVM_ABI bool isReachableFromEntry(const Use &U) const
Provide an overload for a Use.
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
void addFnAttr(Attribute::AttrKind Kind)
Add function attributes to this function.
void setSubprogram(DISubprogram *SP)
Set the attached subprogram.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
const BasicBlock & getEntryBlock() const
DISubprogram * getSubprogram() const
Get the attached subprogram.
bool hasPersonalityFn() const
Check whether this function has a personality function.
Constant * getPersonalityFn() const
Get the personality function associated with this function.
void setPersonalityFn(Constant *Fn)
AttributeList getAttributes() const
Return the attribute list for this Function.
const Function & getFunction() const
LLVMContext & getContext() const
getContext - Return a reference to the LLVMContext associated with this function.
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
adds the attribute to the list of attributes for the given arg.
Function::iterator insert(Function::iterator Position, BasicBlock *BB)
Insert BB in the basic block list at Position.
void setEntryCount(uint64_t Count, const DenseSet< GlobalValue::GUID > *Imports=nullptr)
Set the entry count for this function.
bool doesNotReturn() const
Determine if the function cannot return.
Argument * getArg(unsigned i) const
bool isVarArg() const
isVarArg - Return true if this function takes a variable number of arguments.
static GetElementPtrInst * Create(Type *PointeeType, Value *Ptr, ArrayRef< Value * > IdxList, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
unsigned getAddressSpace() const
Module * getParent()
Get the module that this global value is contained inside of...
@ InternalLinkage
Rename collisions when linking (static functions).
InsertPoint - A saved insertion point.
BasicBlock * getBlock() const
BasicBlock::iterator getPoint() const
LLVM_ABI bool isLifetimeStartOrEnd() const LLVM_READONLY
Return true if the instruction is a llvm.lifetime.start or llvm.lifetime.end marker.
LLVM_ABI unsigned getNumSuccessors() const LLVM_READONLY
Return the number of successors that this instruction has.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI void moveBefore(InstListType::iterator InsertPos)
Unlink this instruction from its current basic block and insert it into the basic block that MovePos ...
LLVM_ABI void insertBefore(InstListType::iterator InsertPos)
Insert an unlinked instruction into a basic block immediately before the specified position.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI const Function * getFunction() const
Return the function this instruction belongs to.
LLVM_ABI BasicBlock * getSuccessor(unsigned Idx) const LLVM_READONLY
Return the specified successor. This instruction must be a terminator.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
LLVM_ABI void setSuccessor(unsigned Idx, BasicBlock *BB)
Update the specified successor to point at the provided block.
A wrapper class for inspecting calls to intrinsic functions.
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
This is an important class for using LLVM in a threaded context.
An instruction for reading from memory.
Value * getPointerOperand()
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
A Module instance is used to store all the information related to an LLVM module.
const Triple & getTargetTriple() const
Get the target triple which is a string describing the target host.
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.
LLVM_ABI void removeIncomingValueIf(function_ref< bool(unsigned)> Predicate, bool DeletePHIIfEmpty=true)
Remove all incoming values for which the predicate returns true.
void setIncomingBlock(unsigned i, BasicBlock *BB)
LLVM_ABI Value * removeIncomingValue(unsigned Idx, bool DeletePHIIfEmpty=true)
Remove an incoming value.
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 PHINode * Create(Type *Ty, unsigned NumReservedValues, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
Constructors - NumReservedValues is a hint for the number of incoming edges that this phi node will h...
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
static LLVM_ABI PointerType * get(LLVMContext &C, unsigned AddressSpace)
This constructs an opaque pointer to an object in a numbered address space.
static ReturnInst * Create(LLVMContext &C, Value *retVal=nullptr, InsertPosition InsertBefore=nullptr)
A vector that has set insertion semantics.
ArrayRef< value_type > getArrayRef() const
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.
void clear()
Completely clear the SetVector.
bool empty() const
Determine if the SetVector is empty or not.
bool insert(const value_type &X)
Insert a new element into the SetVector.
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
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.
std::string str() const
Get the contents as an std::string.
Class to represent struct types.
static LLVM_ABI StructType * get(LLVMContext &Context, ArrayRef< Type * > Elements, bool isPacked=false)
This static method is the primary way to create a literal StructType.
Type * getElementType(unsigned N) const
BasicBlock * getSuccessor(unsigned idx) const
static SwitchInst * Create(Value *Value, BasicBlock *Default, unsigned NumCases, InsertPosition InsertBefore=nullptr)
void setCondition(Value *V)
LLVM_ABI void addCase(ConstantInt *OnVal, BasicBlock *Dest)
Add an entry to the switch instruction.
CaseIteratorImpl< CaseHandle > CaseIt
void setDefaultDest(BasicBlock *DefaultCase)
Value * getCondition() const
LLVM_ABI CaseIt removeCase(CaseIt I)
This method removes the specified case and its successor from the switch instruction.
Triple - Helper class for working with autoconf configuration names.
ArchType getArch() const
Get the parsed architecture type of this triple.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
bool isPointerTy() const
True if this is an instance of PointerType.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
static LLVM_ABI IntegerType * getInt16Ty(LLVMContext &C)
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
static LLVM_ABI IntegerType * getInt1Ty(LLVMContext &C)
bool isVoidTy() const
Return true if this is 'void'.
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
LLVM_ABI bool replaceUsesOfWith(Value *From, Value *To)
Replace uses of one Value with another.
LLVM Value Representation.
Type * getType() const
All values are typed, get the type of this value.
user_iterator user_begin()
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
LLVM_ABI const Value * stripInBoundsConstantOffsets() const
Strip off pointer casts and all-constant inbounds GEPs.
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 StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void dump() const
Support for debugging, callable in GDB: V->dump()
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.
@ BasicBlock
Various leaf nodes.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
LLVM_ABI void remapAssignID(DenseMap< DIAssignID *, DIAssignID * > &Map, Instruction &I)
Replace DIAssignID uses and attachments with IDs from Map.
NodeAddr< PhiNode * > Phi
friend class Instruction
Iterator for Instructions in a `BasicBlock.
This is an optimization pass for GlobalISel generic memory operations.
detail::zippy< detail::zip_first, T, U, Args... > zip_equal(T &&t, U &&u, Args &&...args)
zip iterator that assumes that all iteratees have the same length.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
LLVM_ABI bool stripDebugInfo(Function &F)
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
auto successors(const MachineBasicBlock *BB)
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...
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
DomTreeNodeBase< BasicBlock > DomTreeNode
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.
auto reverse(ContainerTy &&C)
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
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...
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
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
auto predecessors(const MachineBasicBlock *BB)
iterator_range< pointer_iterator< WrappedIteratorT > > make_pointer_range(RangeT &&Range)
LLVM_ABI void updateLoopMetadataDebugLocations(Instruction &I, function_ref< Metadata *(Metadata *)> Updater)
Update the debug locations contained within the MD_loop metadata attached to the instruction I,...
LLVM_ABI void findDbgUsers(Value *V, SmallVectorImpl< DbgVariableRecord * > &DbgVariableRecords)
Finds the debug info records describing a value.