124#define DEBUG_TYPE "wholeprogramdevirt"
126STATISTIC(NumDevirtTargets,
"Number of whole program devirtualization targets");
127STATISTIC(NumSingleImpl,
"Number of single implementation devirtualizations");
129STATISTIC(NumUniformRetVal,
"Number of uniform return value optimizations");
130STATISTIC(NumUniqueRetVal,
"Number of unique return value optimizations");
132 "Number of 1 bit virtual constant propagations");
133STATISTIC(NumVirtConstProp,
"Number of virtual constant propagations");
135 "Controls how many calls should be devirtualized.");
140 "wholeprogramdevirt-summary-action",
141 cl::desc(
"What to do with the summary when running this pass"),
144 "Import typeid resolutions from summary and globals"),
146 "Export typeid resolutions to summary and globals")),
150 "wholeprogramdevirt-read-summary",
152 "Read summary from given bitcode or YAML file before running pass"),
156 "wholeprogramdevirt-write-summary",
157 cl::desc(
"Write summary to given bitcode or YAML file after running pass. "
158 "Output file format is deduced from extension: *.bc means writing "
159 "bitcode, otherwise YAML"),
165 "devirtualize-speculatively",
166 cl::desc(
"Enable speculative devirtualization optimization"),
172 cl::desc(
"Maximum number of call targets per "
173 "call site to enable branch funnels"));
177 cl::desc(
"Print index-based devirtualization messages"));
185 cl::desc(
"Enable whole program visibility"));
190 "disable-whole-program-visibility",
cl::Hidden,
191 cl::desc(
"Disable whole program visibility (overrides enabling options)"));
196 cl::desc(
"Prevent function(s) from being devirtualized"),
221 "wholeprogramdevirt-keep-unreachable-function",
222 cl::desc(
"Regard unreachable functions as possible devirtualize targets."),
233 cl::desc(
"Type of checking for incorrect devirtualizations"),
237 "Fallback to indirect when incorrect")));
241 std::vector<GlobPattern> Patterns;
242 template <
class T>
void init(
const T &StringList) {
243 for (
const auto &S : StringList)
245 Patterns.push_back(std::move(*Pat));
247 bool match(StringRef S) {
248 for (
const GlobPattern &
P : Patterns)
261 bool IsAfter, uint64_t
Size) {
263 uint64_t MinByte = 0;
266 MinByte = std::max(MinByte,
Target.minAfterBytes());
268 MinByte = std::max(MinByte,
Target.minBeforeBytes());
291 std::vector<ArrayRef<uint8_t>> Used;
294 :
Target.TM->Bits->Before.BytesUsed;
295 uint64_t
Offset = IsAfter ? MinByte -
Target.minAfterBytes()
296 : MinByte -
Target.minBeforeBytes();
306 for (
unsigned I = 0;; ++
I) {
308 for (
auto &&
B : Used)
311 if (BitsUsed != 0xff)
317 for (
unsigned I = 0;; ++
I) {
318 for (
auto &&
B : Used) {
320 while ((
I + Byte) <
B.size() && Byte < (
Size / 8)) {
336 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
338 OffsetByte = -(AllocBefore / 8 + 1);
340 OffsetByte = -((AllocBefore + 7) / 8 + (
BitWidth + 7) / 8);
341 OffsetBit = AllocBefore % 8;
345 Target.setBeforeBit(AllocBefore);
353 unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit) {
355 OffsetByte = AllocAfter / 8;
357 OffsetByte = (AllocAfter + 7) / 8;
358 OffsetBit = AllocAfter % 8;
362 Target.setAfterBit(AllocAfter);
391 const VTableSlot &RHS) {
392 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
403 return LHS.TypeID == RHS.TypeID && LHS.ByteOffset == RHS.ByteOffset;
427 if (!Summary->isLive())
430 if (!FS->fflags().MustBeUnreachable)
445struct VirtualCallSite {
452 unsigned *NumUnsafeUses =
nullptr;
455 emitRemark(
const StringRef OptName,
const StringRef TargetName,
456 function_ref<OptimizationRemarkEmitter &(
Function &)> OREGetter) {
462 OREGetter(*F).emit(OptimizationRemark(
DEBUG_TYPE, OptName, DLoc,
Block)
463 <<
NV(
"Optimization", OptName)
464 <<
": devirtualized a call to "
465 <<
NV(
"FunctionName", TargetName));
468 void replaceAndErase(
469 const StringRef OptName,
const StringRef TargetName,
bool RemarksEnabled,
470 function_ref<OptimizationRemarkEmitter &(
Function &)> OREGetter,
477 II->getUnwindDest()->removePredecessor(
II->getParent());
494 std::vector<VirtualCallSite> CallSites;
503 bool AllCallSitesDevirted =
true;
512 std::vector<FunctionSummary *> SummaryTypeCheckedLoadUsers;
516 std::vector<FunctionSummary *> SummaryTypeTestAssumeUsers;
518 bool isExported()
const {
519 return !SummaryTypeCheckedLoadUsers.empty() ||
520 !SummaryTypeTestAssumeUsers.empty();
523 void addSummaryTypeCheckedLoadUser(FunctionSummary *FS) {
524 SummaryTypeCheckedLoadUsers.push_back(FS);
525 AllCallSitesDevirted =
false;
528 void addSummaryTypeTestAssumeUser(FunctionSummary *FS) {
529 SummaryTypeTestAssumeUsers.push_back(FS);
530 AllCallSitesDevirted =
false;
533 void markDevirt() { AllCallSitesDevirted =
true; }
537struct VTableSlotInfo {
544 std::map<std::vector<uint64_t>,
CallSiteInfo> ConstCSInfo;
546 void addCallSite(
Value *VTable, CallBase &CB,
unsigned *NumUnsafeUses);
552CallSiteInfo &VTableSlotInfo::findCallSiteInfo(CallBase &CB) {
553 std::vector<uint64_t>
Args;
555 if (!CBType || CBType->getBitWidth() > 64 || CB.
arg_empty())
559 if (!CI || CI->getBitWidth() > 64)
561 Args.push_back(CI->getZExtValue());
563 return ConstCSInfo[
Args];
566void VTableSlotInfo::addCallSite(
Value *VTable, CallBase &CB,
567 unsigned *NumUnsafeUses) {
568 auto &CSI = findCallSiteInfo(CB);
569 CSI.AllCallSitesDevirted =
false;
570 CSI.CallSites.push_back({
VTable, CB, NumUnsafeUses});
578 ModuleSummaryIndex *
const ExportSummary;
579 const ModuleSummaryIndex *
const ImportSummary;
581 IntegerType *
const Int8Ty;
583 IntegerType *
const Int32Ty;
584 IntegerType *
const Int64Ty;
591 const bool RemarksEnabled;
592 std::function<OptimizationRemarkEmitter &(
Function &)> OREGetter;
593 MapVector<VTableSlot, VTableSlotInfo> CallSlots;
598 SmallPtrSet<CallBase *, 8> OptimizedCalls;
612 std::map<CallInst *, unsigned> NumUnsafeUsesForTypeTest;
613 PatternList FunctionsToSkip;
615 const bool DevirtSpeculatively;
617 ModuleSummaryIndex *ExportSummary,
618 const ModuleSummaryIndex *ImportSummary,
619 bool DevirtSpeculatively)
622 ExportSummary(ExportSummary), ImportSummary(ImportSummary),
629 RemarksEnabled(areRemarksEnabled()),
630 OREGetter([&](
Function &
F) -> OptimizationRemarkEmitter & {
633 DevirtSpeculatively(DevirtSpeculatively) {
634 assert(!(ExportSummary && ImportSummary));
638 bool areRemarksEnabled();
641 scanTypeTestUsers(
Function *TypeTestFunc,
642 DenseMap<
Metadata *, std::set<TypeMemberInfo>> &TypeIdMap);
643 void scanTypeCheckedLoadUsers(
Function *TypeCheckedLoadFunc);
645 void buildTypeIdentifierMap(
646 std::vector<VTableBits> &Bits,
647 DenseMap<
Metadata *, std::set<TypeMemberInfo>> &TypeIdMap);
650 tryFindVirtualCallTargets(std::vector<VirtualCallTarget> &TargetsForSlot,
651 const std::set<TypeMemberInfo> &TypeMemberInfos,
653 ModuleSummaryIndex *ExportSummary);
655 void applySingleImplDevirt(VTableSlotInfo &SlotInfo, Constant *TheFn,
657 bool trySingleImplDevirt(ModuleSummaryIndex *ExportSummary,
659 VTableSlotInfo &SlotInfo,
660 WholeProgramDevirtResolution *Res);
662 void applyICallBranchFunnel(VTableSlotInfo &SlotInfo,
Function &JT,
665 VTableSlotInfo &SlotInfo,
666 WholeProgramDevirtResolution *Res, VTableSlot Slot);
668 bool tryEvaluateFunctionsWithArgs(
670 ArrayRef<uint64_t> Args);
672 void applyUniformRetValOpt(
CallSiteInfo &CSInfo, StringRef FnName,
676 WholeProgramDevirtResolution::ByArg *Res);
680 std::string getGlobalName(VTableSlot Slot, ArrayRef<uint64_t> Args,
683 bool shouldExportConstantsAsAbsoluteSymbols();
688 void exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
690 void exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args, StringRef Name,
691 uint32_t Const, uint32_t &Storage);
695 Constant *importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
697 Constant *importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
698 StringRef Name, IntegerType *IntTy,
701 Constant *getMemberAddr(
const TypeMemberInfo *M);
703 void applyUniqueRetValOpt(
CallSiteInfo &CSInfo, StringRef FnName,
bool IsOne,
704 Constant *UniqueMemberAddr);
705 bool tryUniqueRetValOpt(
unsigned BitWidth,
708 WholeProgramDevirtResolution::ByArg *Res,
709 VTableSlot Slot, ArrayRef<uint64_t> Args);
711 void applyVirtualConstProp(
CallSiteInfo &CSInfo, StringRef FnName,
712 Constant *Byte, Constant *Bit);
714 VTableSlotInfo &SlotInfo,
715 WholeProgramDevirtResolution *Res, VTableSlot Slot);
717 void rebuildGlobal(VTableBits &
B);
720 void importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo);
724 void removeRedundantTypeTests();
731 static ValueInfo lookUpFunctionValueInfo(
Function *TheFn,
732 ModuleSummaryIndex *ExportSummary);
743 ModuleSummaryIndex *ExportSummary);
748 bool DevirtSpeculatively);
752 ModuleSummaryIndex &ExportSummary;
755 std::set<GlobalValue::GUID> &ExportedGUIDs;
759 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap;
764 DenseSet<StringRef> *ExternallyVisibleSymbolNamesPtr;
766 MapVector<VTableSlotSummary, VTableSlotInfo> CallSlots;
768 PatternList FunctionsToSkip;
771 ModuleSummaryIndex &ExportSummary,
772 std::set<GlobalValue::GUID> &ExportedGUIDs,
773 std::map<ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap,
774 DenseSet<StringRef> *ExternallyVisibleSymbolNamesPtr)
775 : ExportSummary(ExportSummary), ExportedGUIDs(ExportedGUIDs),
776 LocalWPDTargetsMap(LocalWPDTargetsMap),
777 ExternallyVisibleSymbolNamesPtr(ExternallyVisibleSymbolNamesPtr) {
781 bool tryFindVirtualCallTargets(std::vector<ValueInfo> &TargetsForSlot,
786 VTableSlotSummary &SlotSummary,
787 VTableSlotInfo &SlotInfo,
788 WholeProgramDevirtResolution *Res,
789 std::set<ValueInfo> &DevirtTargets);
803 std::optional<ModuleSummaryIndex> Index;
807 "ExportSummary is expected to be empty in non-LTO mode");
810 ExportSummary = Index.has_value() ? &Index.value() :
nullptr;
831 if (
TypeID.ends_with(
".virtual"))
837 if (!
TypeID.consume_front(
"_ZTS"))
845 std::string TypeInfo = (
"_ZTI" +
TypeID).str();
846 return IsVisibleToRegularObj(TypeInfo);
855 for (
auto *
Type : Types)
858 IsVisibleToRegularObj);
867 Module &M,
bool WholeProgramVisibilityEnabledInLTO,
869 bool ValidateAllVtablesHaveTypeInfos,
887 !(ValidateAllVtablesHaveTypeInfos &&
894 bool WholeProgramVisibilityEnabledInLTO) {
898 if (!PublicTypeTestFunc)
906 TypeTestFunc, {CI->getArgOperand(0), CI->getArgOperand(1)}, {},
"",
908 CI->replaceAllUsesWith(NewCI);
909 CI->eraseFromParent();
917 CI->replaceAllUsesWith(True);
918 CI->eraseFromParent();
929 for (
const auto &TypeID : Index.typeIdCompatibleVtableMap()) {
932 VisibleToRegularObjSymbols.
insert(
P.VTableVI.getGUID());
945 for (
auto &
P : Index) {
948 if (DynamicExportSymbols.
count(
P.first))
954 if (VisibleToRegularObjSymbols.
count(
P.first))
956 for (
auto &S :
P.second.getSummaryList()) {
968 std::map<
ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap,
970 DevirtIndex(Summary, ExportedGUIDs, LocalWPDTargetsMap,
971 ExternallyVisibleSymbolNamesPtr)
978 std::map<
ValueInfo, std::vector<VTableSlotSummary>> &LocalWPDTargetsMap,
980 for (
auto &
T : LocalWPDTargetsMap) {
983 assert(VI.getSummaryList().size() == 1 &&
984 "Devirt of local target has more than one copy");
985 auto &S = VI.getSummaryList()[0];
986 if (!IsExported(S->modulePath(), VI))
990 for (
auto &SlotSummary :
T.second) {
991 auto *TIdSum = Summary.getTypeIdSummary(SlotSummary.TypeID);
993 auto WPDRes = TIdSum->WPDRes.find(SlotSummary.ByteOffset);
994 assert(WPDRes != TIdSum->WPDRes.end());
995 if (ExternallyVisibleSymbolNamesPtr)
996 ExternallyVisibleSymbolNamesPtr->
insert(WPDRes->second.SingleImplName);
998 WPDRes->second.SingleImplName,
999 Summary.getModuleHash(S->modulePath()));
1009 const auto &ModPaths = Summary->modulePaths();
1014 "combined summary should contain Regular LTO module");
1019 bool DevirtSpeculatively) {
1020 std::unique_ptr<ModuleSummaryIndex>
Summary =
1021 std::make_unique<ModuleSummaryIndex>(
false);
1026 ExitOnError ExitOnErr(
"-wholeprogramdevirt-read-summary: " +
ClReadSummary +
1028 auto ReadSummaryFile =
1030 if (Expected<std::unique_ptr<ModuleSummaryIndex>> SummaryOrErr =
1032 Summary = std::move(*SummaryOrErr);
1037 yaml::Input
In(ReadSummaryFile->getBuffer());
1044 DevirtModule(M,
MAM,
1049 DevirtSpeculatively)
1053 ExitOnError ExitOnErr(
1063 yaml::Output Out(OS);
1071void DevirtModule::buildTypeIdentifierMap(
1072 std::vector<VTableBits> &Bits,
1073 DenseMap<
Metadata *, std::set<TypeMemberInfo>> &TypeIdMap) {
1074 DenseMap<GlobalVariable *, VTableBits *> GVToBits;
1075 Bits.reserve(
M.global_size());
1077 for (GlobalVariable &GV :
M.globals()) {
1085 Bits.emplace_back();
1086 Bits.back().GV = &GV;
1087 Bits.back().ObjectSize =
1089 BitsPtr = &
Bits.back();
1092 for (MDNode *
Type : Types) {
1105bool DevirtModule::tryFindVirtualCallTargets(
1106 std::vector<VirtualCallTarget> &TargetsForSlot,
1107 const std::set<TypeMemberInfo> &TypeMemberInfos,
uint64_t ByteOffset,
1108 ModuleSummaryIndex *ExportSummary) {
1110 if (!TM.Bits->GV->isConstant())
1115 if (!DevirtSpeculatively && TM.Bits->GV->getVCallVisibility() ==
1127 if (FunctionsToSkip.match(Fn->
getName()))
1132 if (Fn->
getName() ==
"__cxa_pure_virtual")
1151 if (!GA->isInterposable() && !GA->getAliaseeObject()->isInterposable())
1153 TargetsForSlot.push_back({GV, &TM});
1157 return !TargetsForSlot.empty();
1160bool DevirtIndex::tryFindVirtualCallTargets(
1161 std::vector<ValueInfo> &TargetsForSlot,
1163 for (
const TypeIdOffsetVtableInfo &
P : TIdInfo) {
1174 if (
P.VTableVI.hasLocal() &&
P.VTableVI.getSummaryList().size() > 1)
1176 const GlobalVarSummary *
VS =
nullptr;
1177 for (
const auto &S :
P.VTableVI.getSummaryList()) {
1179 if (!CurVS->vTableFuncs().empty() ||
1202 for (
auto VTP :
VS->vTableFuncs()) {
1203 if (VTP.VTableOffset !=
P.AddressPointOffset + ByteOffset)
1209 TargetsForSlot.push_back(VTP.FuncVI);
1214 return !TargetsForSlot.empty();
1217void DevirtModule::applySingleImplDevirt(VTableSlotInfo &SlotInfo,
1218 Constant *TheFn,
bool &IsExported) {
1224 for (
auto &&VCallSite : CSInfo.CallSites) {
1225 if (!OptimizedCalls.
insert(&VCallSite.CB).second)
1233 VCallSite.emitRemark(
"single-impl",
1236 auto &CB = VCallSite.CB;
1249 MDBuilder(
M.getContext()).createUnlikelyBranchWeights());
1250 Builder.SetInsertPoint(ThenTerm);
1253 auto *CallTrap = Builder.CreateCall(TrapFn);
1262 MDNode *Weights = MDBuilder(
M.getContext()).createLikelyBranchWeights();
1271 NewInst.
setMetadata(LLVMContext::MD_prof,
nullptr);
1272 NewInst.
setMetadata(LLVMContext::MD_callees,
nullptr);
1294 CallsWithPtrAuthBundleRemoved.
push_back(&CB);
1299 if (VCallSite.NumUnsafeUses)
1300 --*VCallSite.NumUnsafeUses;
1302 if (CSInfo.isExported())
1304 CSInfo.markDevirt();
1306 Apply(SlotInfo.CSInfo);
1307 for (
auto &
P : SlotInfo.ConstCSInfo)
1313 if (Callee.getSummaryList().empty())
1320 bool IsExported =
false;
1321 auto &S = Callee.getSummaryList()[0];
1323 auto AddCalls = [&](CallSiteInfo &CSInfo) {
1324 for (
auto *FS : CSInfo.SummaryTypeCheckedLoadUsers) {
1325 FS->addCall({Callee, CI});
1326 IsExported |= S->modulePath() != FS->modulePath();
1328 for (
auto *FS : CSInfo.SummaryTypeTestAssumeUsers) {
1329 FS->addCall({Callee, CI});
1330 IsExported |= S->modulePath() != FS->modulePath();
1333 AddCalls(SlotInfo.CSInfo);
1334 for (
auto &
P : SlotInfo.ConstCSInfo)
1339bool DevirtModule::trySingleImplDevirt(
1340 ModuleSummaryIndex *ExportSummary,
1342 WholeProgramDevirtResolution *Res) {
1345 auto *TheFn = TargetsForSlot[0].Fn;
1346 for (
auto &&Target : TargetsForSlot)
1352 TargetsForSlot[0].WasDevirt =
true;
1354 bool IsExported =
false;
1355 applySingleImplDevirt(SlotInfo, TheFn, IsExported);
1362 if (TheFn->hasLocalLinkage()) {
1363 std::string NewName = (TheFn->
getName() +
".llvm.merged").str();
1368 if (Comdat *
C = TheFn->getComdat()) {
1369 if (
C->getName() == TheFn->
getName()) {
1370 Comdat *NewC =
M.getOrInsertComdat(NewName);
1372 for (GlobalObject &GO :
M.global_objects())
1373 if (GO.getComdat() ==
C)
1382 if (ValueInfo TheFnVI = ExportSummary->
getValueInfo(TheFn->getGUID()))
1394 VTableSlotSummary &SlotSummary,
1395 VTableSlotInfo &SlotInfo,
1396 WholeProgramDevirtResolution *Res,
1397 std::set<ValueInfo> &DevirtTargets) {
1400 auto TheFn = TargetsForSlot[0];
1401 for (
auto &&Target : TargetsForSlot)
1402 if (TheFn != Target)
1406 auto Size = TheFn.getSummaryList().size();
1412 if (FunctionsToSkip.match(TheFn.name()))
1417 if (TheFn.hasLocal() &&
Size > 1)
1422 DevirtTargets.insert(TheFn);
1424 auto &S = TheFn.getSummaryList()[0];
1425 bool IsExported =
addCalls(SlotInfo, TheFn);
1427 ExportedGUIDs.insert(TheFn.getGUID());
1437 if (ExternallyVisibleSymbolNamesPtr)
1438 ExternallyVisibleSymbolNamesPtr->insert(TheFn.name());
1440 TheFn.name(), ExportSummary.
getModuleHash(S->modulePath()));
1442 LocalWPDTargetsMap[TheFn].push_back(SlotSummary);
1456void DevirtModule::tryICallBranchFunnel(
1458 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
1459 Triple
T(
M.getTargetTriple());
1466 bool HasNonDevirt = !SlotInfo.CSInfo.AllCallSitesDevirted;
1468 for (
auto &
P : SlotInfo.ConstCSInfo)
1469 if (!
P.second.AllCallSitesDevirted) {
1470 HasNonDevirt =
true;
1488 for (
auto &
T : TargetsForSlot) {
1489 if (
T.TM->Bits->GV->hasAvailableExternallyLinkage())
1498 M.getDataLayout().getProgramAddressSpace(),
1499 getGlobalName(Slot, {},
"branch_funnel"), &
M);
1503 M.getDataLayout().getProgramAddressSpace(),
1504 "branch_funnel", &M);
1508 std::vector<Value *> JTArgs;
1510 for (
auto &
T : TargetsForSlot) {
1511 JTArgs.push_back(getMemberAddr(
T.TM));
1512 JTArgs.push_back(
T.Fn);
1517 &M, llvm::Intrinsic::icall_branch_funnel, {});
1523 bool IsExported =
false;
1524 applyICallBranchFunnel(SlotInfo, *JT, IsExported);
1534void DevirtModule::applyICallBranchFunnel(VTableSlotInfo &SlotInfo,
1536 DenseMap<Function *, double> FunctionEntryCounts;
1538 if (CSInfo.isExported())
1540 if (CSInfo.AllCallSitesDevirted)
1543 std::map<CallBase *, CallBase *> CallBases;
1544 for (
auto &&VCallSite : CSInfo.CallSites) {
1545 CallBase &CB = VCallSite.CB;
1547 if (CallBases.find(&CB) != CallBases.end()) {
1564 VCallSite.emitRemark(
"branch-funnel", JT.
getName(), OREGetter);
1568 std::vector<Type *> NewArgs;
1569 NewArgs.push_back(Int8PtrTy);
1571 FunctionType *NewFT =
1575 std::vector<Value *>
Args;
1576 Args.push_back(VCallSite.VTable);
1579 CallBase *NewCS =
nullptr;
1585 auto EC = BFI.getBlockFreq(&
F.getEntryBlock());
1586 auto CC =
F.getEntryCount();
1587 double CallCount = 0.0;
1588 if (
EC.getFrequency() != 0 && CC && *CC != 0) {
1590 static_cast<double>(
1591 BFI.getBlockFreq(CB.
getParent()).getFrequency()) /
1593 CallCount = CallFreq * *CC;
1595 FunctionEntryCounts[&JT] += CallCount;
1598 NewCS = IRB.CreateCall(NewFT, &JT, Args);
1606 std::vector<AttributeSet> NewArgAttrs;
1609 M.getContext(), Attribute::Nest)}));
1610 for (
unsigned I = 0;
I + 2 <
Attrs.getNumAttrSets(); ++
I)
1611 NewArgAttrs.push_back(
Attrs.getParamAttrs(
I));
1613 AttributeList::get(
M.getContext(),
Attrs.getFnAttrs(),
1614 Attrs.getRetAttrs(), NewArgAttrs));
1616 CallBases[&CB] = NewCS;
1619 if (VCallSite.NumUnsafeUses)
1620 --*VCallSite.NumUnsafeUses;
1627 for (
auto &[Old, New] : CallBases) {
1628 Old->replaceAllUsesWith(New);
1629 Old->eraseFromParent();
1632 Apply(SlotInfo.CSInfo);
1633 for (
auto &
P : SlotInfo.ConstCSInfo)
1635 for (
auto &[
F,
C] : FunctionEntryCounts) {
1637 "Unexpected entry count for funnel that was freshly synthesized");
1638 F->setEntryCount(
static_cast<uint64_t>(std::round(
C)));
1642bool DevirtModule::tryEvaluateFunctionsWithArgs(
1644 ArrayRef<uint64_t> Args) {
1658 Evaluator Eval(
M.getDataLayout(),
nullptr);
1662 for (
unsigned I = 0;
I !=
Args.size(); ++
I) {
1667 EvalArgs.
push_back(ConstantInt::get(ArgTy, Args[
I]));
1671 if (!Eval.EvaluateFunction(Fn, RetVal, EvalArgs) ||
1679void DevirtModule::applyUniformRetValOpt(
CallSiteInfo &CSInfo, StringRef FnName,
1681 for (
auto Call : CSInfo.CallSites) {
1685 Call.replaceAndErase(
1686 "uniform-ret-val", FnName, RemarksEnabled, OREGetter,
1689 CSInfo.markDevirt();
1692bool DevirtModule::tryUniformRetValOpt(
1694 WholeProgramDevirtResolution::ByArg *Res) {
1697 uint64_t TheRetVal = TargetsForSlot[0].RetVal;
1699 if (
Target.RetVal != TheRetVal)
1702 if (CSInfo.isExported()) {
1704 Res->
Info = TheRetVal;
1707 applyUniformRetValOpt(CSInfo, TargetsForSlot[0].Fn->
getName(), TheRetVal);
1709 for (
auto &&Target : TargetsForSlot)
1714std::string DevirtModule::getGlobalName(VTableSlot Slot,
1715 ArrayRef<uint64_t> Args,
1717 std::string FullName =
"__typeid_";
1718 raw_string_ostream OS(FullName);
1719 OS << cast<MDString>(
Slot.TypeID)->getString() <<
'_' <<
Slot.ByteOffset;
1726bool DevirtModule::shouldExportConstantsAsAbsoluteSymbols() {
1727 Triple
T(
M.getTargetTriple());
1731void DevirtModule::exportGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
1732 StringRef Name, Constant *
C) {
1734 getGlobalName(Slot, Args, Name),
C, &M);
1738void DevirtModule::exportConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1739 StringRef Name, uint32_t Const,
1740 uint32_t &Storage) {
1741 if (shouldExportConstantsAsAbsoluteSymbols()) {
1751Constant *DevirtModule::importGlobal(VTableSlot Slot, ArrayRef<uint64_t> Args,
1753 GlobalVariable *GV =
1754 M.getOrInsertGlobal(getGlobalName(Slot, Args, Name), Int8Arr0Ty);
1759Constant *DevirtModule::importConstant(VTableSlot Slot, ArrayRef<uint64_t> Args,
1760 StringRef Name, IntegerType *IntTy,
1762 if (!shouldExportConstantsAsAbsoluteSymbols())
1763 return ConstantInt::get(IntTy, Storage);
1765 Constant *
C = importGlobal(Slot, Args, Name);
1771 if (GV->
hasMetadata(LLVMContext::MD_absolute_symbol))
1781 if (AbsWidth ==
IntPtrTy->getBitWidth()) {
1785 SetAbsRange(0, 1ull << AbsWidth);
1790void DevirtModule::applyUniqueRetValOpt(
CallSiteInfo &CSInfo, StringRef FnName,
1792 Constant *UniqueMemberAddr) {
1793 for (
auto &&
Call : CSInfo.CallSites) {
1799 B.CreateBitCast(UniqueMemberAddr,
Call.VTable->
getType()));
1802 Call.replaceAndErase(
"unique-ret-val", FnName, RemarksEnabled, OREGetter,
1805 CSInfo.markDevirt();
1810 ConstantInt::get(Int64Ty,
M->Offset));
1813bool DevirtModule::tryUniqueRetValOpt(
1815 CallSiteInfo &CSInfo, WholeProgramDevirtResolution::ByArg *Res,
1816 VTableSlot Slot, ArrayRef<uint64_t> Args) {
1818 auto tryUniqueRetValOptFor = [&](
bool IsOne) {
1821 if (
Target.RetVal == (IsOne ? 1 : 0)) {
1824 UniqueMember =
Target.TM;
1832 Constant *UniqueMemberAddr = getMemberAddr(UniqueMember);
1833 if (CSInfo.isExported()) {
1837 exportGlobal(Slot, Args,
"unique_member", UniqueMemberAddr);
1841 applyUniqueRetValOpt(CSInfo, TargetsForSlot[0].Fn->
getName(), IsOne,
1846 for (
auto &&Target : TargetsForSlot)
1853 if (tryUniqueRetValOptFor(
true))
1855 if (tryUniqueRetValOptFor(
false))
1861void DevirtModule::applyVirtualConstProp(
CallSiteInfo &CSInfo, StringRef FnName,
1862 Constant *Byte, Constant *Bit) {
1863 for (
auto Call : CSInfo.CallSites) {
1868 Value *Addr =
B.CreatePtrAdd(
Call.VTable, Byte);
1869 if (RetType->getBitWidth() == 1) {
1871 Value *BitsAndBit =
B.CreateAnd(Bits, Bit);
1872 auto IsBitSet =
B.CreateICmpNE(BitsAndBit, ConstantInt::get(Int8Ty, 0));
1873 NumVirtConstProp1Bit++;
1874 Call.replaceAndErase(
"virtual-const-prop-1-bit", FnName, RemarksEnabled,
1875 OREGetter, IsBitSet);
1877 Value *Val =
B.CreateLoad(RetType, Addr);
1879 Call.replaceAndErase(
"virtual-const-prop", FnName, RemarksEnabled,
1883 CSInfo.markDevirt();
1886bool DevirtModule::tryVirtualConstProp(
1888 WholeProgramDevirtResolution *Res, VTableSlot Slot) {
1899 unsigned BitWidth = RetType->getBitWidth();
1911 Align TypeAlignment =
M.getDataLayout().getABIIntegerTypeAlignment(
BitWidth);
1944 GlobalVariable *GV =
Target.TM->Bits->GV;
1945 Align TableAlignment =
M.getDataLayout().getValueOrABITypeAlignment(
1947 if (TypeAlignment > TableAlignment)
1951 for (
auto &&CSByConstantArg : SlotInfo.ConstCSInfo) {
1952 if (!tryEvaluateFunctionsWithArgs(TargetsForSlot, CSByConstantArg.first))
1955 WholeProgramDevirtResolution::ByArg *ResByArg =
nullptr;
1957 ResByArg = &Res->
ResByArg[CSByConstantArg.first];
1959 if (tryUniformRetValOpt(TargetsForSlot, CSByConstantArg.second, ResByArg))
1962 if (tryUniqueRetValOpt(
BitWidth, TargetsForSlot, CSByConstantArg.second,
1963 ResByArg, Slot, CSByConstantArg.first))
1978 uint64_t TotalPaddingBefore = 0, TotalPaddingAfter = 0;
1979 for (
auto &&Target : TargetsForSlot) {
1980 TotalPaddingBefore += std::max<int64_t>(
1981 (AllocBefore + 7) / 8 -
Target.allocatedBeforeBytes() - 1, 0);
1982 TotalPaddingAfter += std::max<int64_t>(
1983 (AllocAfter + 7) / 8 -
Target.allocatedAfterBytes() - 1, 0);
1988 if (std::min(TotalPaddingBefore, TotalPaddingAfter) > 128)
1995 if (TotalPaddingBefore <= TotalPaddingAfter)
2011 for (
auto &&Target : TargetsForSlot)
2015 if (CSByConstantArg.second.isExported()) {
2017 ResByArg->
Byte = OffsetByte;
2018 exportConstant(Slot, CSByConstantArg.first,
"bit", 1ULL << OffsetBit,
2024 Constant *BitConst = ConstantInt::get(Int8Ty, 1ULL << OffsetBit);
2025 applyVirtualConstProp(CSByConstantArg.second,
2026 TargetsForSlot[0].Fn->getName(), ByteConst, BitConst);
2032 if (
B.Before.Bytes.empty() &&
B.After.Bytes.empty())
2037 Align Alignment =
M.getDataLayout().getValueOrABITypeAlignment(
2038 B.GV->getAlign(),
B.GV->getValueType());
2039 B.Before.Bytes.resize(
alignTo(
B.Before.Bytes.size(), Alignment));
2042 for (
size_t I = 0,
Size =
B.Before.Bytes.size();
I !=
Size / 2; ++
I)
2049 B.GV->getInitializer(),
2052 new GlobalVariable(M, NewInit->getType(),
B.GV->isConstant(),
2054 NewGV->setSection(
B.GV->getSection());
2055 NewGV->setComdat(
B.GV->getComdat());
2056 NewGV->setAlignment(
B.GV->getAlign());
2060 NewGV->copyMetadata(
B.GV,
B.Before.Bytes.size());
2065 B.GV->getInitializer()->getType(), 0,
B.GV->getLinkage(),
"",
2067 NewInit->getType(), NewGV,
2069 ConstantInt::get(Int32Ty, 1)}),
2071 Alias->setVisibility(
B.GV->getVisibility());
2072 Alias->takeName(
B.GV);
2074 B.GV->replaceAllUsesWith(Alias);
2075 B.GV->eraseFromParent();
2078bool DevirtModule::areRemarksEnabled() {
2079 const auto &FL =
M.getFunctionList();
2084 return DI.isEnabled();
2089void DevirtModule::scanTypeTestUsers(
2091 DenseMap<
Metadata *, std::set<TypeMemberInfo>> &TypeIdMap) {
2105 auto &DT =
FAM.
getResult<DominatorTreeAnalysis>(*CI->getFunction());
2111 if (!Assumes.
empty()) {
2112 Value *Ptr = CI->getArgOperand(0)->stripPointerCasts();
2113 for (DevirtCallSite
Call : DevirtCalls)
2114 CallSlots[{TypeId,
Call.Offset}].addCallSite(Ptr,
Call.CB,
nullptr);
2117 auto RemoveTypeTestAssumes = [&]() {
2119 for (
auto *Assume : Assumes)
2120 Assume->eraseFromParent();
2123 if (CI->use_empty())
2124 CI->eraseFromParent();
2139 if (!TypeIdMap.count(TypeId))
2140 RemoveTypeTestAssumes();
2152 const TypeIdSummary *TidSummary =
2155 RemoveTypeTestAssumes();
2164void DevirtModule::scanTypeCheckedLoadUsers(
Function *TypeCheckedLoadFunc) {
2173 Value *Ptr = CI->getArgOperand(0);
2175 Value *TypeIdValue = CI->getArgOperand(2);
2181 bool HasNonCallUses =
false;
2182 auto &DT =
FAM.
getResult<DominatorTreeAnalysis>(*CI->getFunction());
2184 HasNonCallUses, CI, DT);
2193 (LoadedPtrs.
size() == 1 && !HasNonCallUses) ? LoadedPtrs[0] : CI);
2195 Value *LoadedValue =
nullptr;
2197 Intrinsic::type_checked_load_relative) {
2199 &M, Intrinsic::load_relative, {Int32Ty});
2200 LoadedValue = LoadB.CreateCall(LoadRelFunc, {Ptr,
Offset});
2203 LoadedValue = LoadB.CreateLoad(Int8PtrTy,
GEP);
2206 for (Instruction *LoadedPtr : LoadedPtrs) {
2207 LoadedPtr->replaceAllUsesWith(LoadedValue);
2208 LoadedPtr->eraseFromParent();
2212 IRBuilder<> CallB((Preds.
size() == 1 && !HasNonCallUses) ? Preds[0] : CI);
2213 CallInst *TypeTestCall = CallB.CreateCall(TypeTestFunc, {Ptr, TypeIdValue});
2215 for (Instruction *Pred : Preds) {
2216 Pred->replaceAllUsesWith(TypeTestCall);
2217 Pred->eraseFromParent();
2224 if (!CI->use_empty()) {
2227 Pair =
B.CreateInsertValue(Pair, LoadedValue, {0});
2228 Pair =
B.CreateInsertValue(Pair, TypeTestCall, {1});
2233 auto &NumUnsafeUses = NumUnsafeUsesForTypeTest[TypeTestCall];
2234 NumUnsafeUses = DevirtCalls.
size();
2241 for (DevirtCallSite
Call : DevirtCalls) {
2242 CallSlots[{TypeId,
Call.Offset}].addCallSite(Ptr,
Call.CB,
2246 CI->eraseFromParent();
2250void DevirtModule::importResolution(VTableSlot Slot, VTableSlotInfo &SlotInfo) {
2254 const TypeIdSummary *TidSummary =
2258 auto ResI = TidSummary->
WPDRes.find(
Slot.ByteOffset);
2259 if (ResI == TidSummary->
WPDRes.end())
2261 const WholeProgramDevirtResolution &Res = ResI->second;
2267 Value *SingleImplVal =
2272 if (!
A->isInterposable() && !
A->getAliaseeObject()->isInterposable())
2273 SingleImplVal =
A->getAliaseeObject();
2277 bool IsExported =
false;
2278 applySingleImplDevirt(SlotInfo, SingleImpl, IsExported);
2282 for (
auto &CSByConstantArg : SlotInfo.ConstCSInfo) {
2283 auto I = Res.
ResByArg.find(CSByConstantArg.first);
2286 auto &ResByArg =
I->second;
2293 applyUniformRetValOpt(CSByConstantArg.second,
"", ResByArg.
Info);
2297 importGlobal(Slot, CSByConstantArg.first,
"unique_member");
2298 applyUniqueRetValOpt(CSByConstantArg.second,
"", ResByArg.
Info,
2304 Constant *
Bit = importConstant(Slot, CSByConstantArg.first,
"bit", Int8Ty,
2306 applyVirtualConstProp(CSByConstantArg.second,
"", Byte, Bit);
2318 M.getOrInsertFunction(getGlobalName(Slot, {},
"branch_funnel"),
2321 bool IsExported =
false;
2322 applyICallBranchFunnel(SlotInfo, *JT, IsExported);
2327void DevirtModule::removeRedundantTypeTests() {
2329 for (
auto &&U : NumUnsafeUsesForTypeTest) {
2330 if (
U.second == 0) {
2331 U.first->replaceAllUsesWith(True);
2332 U.first->eraseFromParent();
2338DevirtModule::lookUpFunctionValueInfo(
Function *TheFn,
2339 ModuleSummaryIndex *ExportSummary) {
2340 assert((ExportSummary !=
nullptr) &&
2341 "Caller guarantees ExportSummary is not nullptr");
2343 const auto TheFnGUID = TheFn->
getGUID();
2344 const auto TheFnGUIDWithExportedName =
2347 ValueInfo TheFnVI = ExportSummary->
getValueInfo(TheFnGUID);
2356 if ((!TheFnVI) && (TheFnGUID != TheFnGUIDWithExportedName)) {
2357 TheFnVI = ExportSummary->
getValueInfo(TheFnGUIDWithExportedName);
2362bool DevirtModule::mustBeUnreachableFunction(
2363 Function *
const F, ModuleSummaryIndex *ExportSummary) {
2367 if (!
F->isDeclaration()) {
2373 return ExportSummary &&
2375 DevirtModule::lookUpFunctionValueInfo(
F, ExportSummary));
2378bool DevirtModule::run() {
2387 Function *PublicTypeTestFunc =
nullptr;
2390 if (DevirtSpeculatively)
2391 PublicTypeTestFunc =
2398 &M, Intrinsic::type_checked_load_relative);
2405 if (!ExportSummary &&
2406 (((!PublicTypeTestFunc || PublicTypeTestFunc->
use_empty()) &&
2407 (!TypeTestFunc || TypeTestFunc->
use_empty())) ||
2408 !AssumeFunc || AssumeFunc->
use_empty()) &&
2409 (!TypeCheckedLoadFunc || TypeCheckedLoadFunc->
use_empty()) &&
2410 (!TypeCheckedLoadRelativeFunc ||
2411 TypeCheckedLoadRelativeFunc->
use_empty()))
2415 std::vector<VTableBits>
Bits;
2416 DenseMap<Metadata *, std::set<TypeMemberInfo>> TypeIdMap;
2417 buildTypeIdentifierMap(Bits, TypeIdMap);
2419 if (PublicTypeTestFunc && AssumeFunc)
2420 scanTypeTestUsers(PublicTypeTestFunc, TypeIdMap);
2422 if (TypeTestFunc && AssumeFunc)
2423 scanTypeTestUsers(TypeTestFunc, TypeIdMap);
2425 if (TypeCheckedLoadFunc)
2426 scanTypeCheckedLoadUsers(TypeCheckedLoadFunc);
2428 if (TypeCheckedLoadRelativeFunc)
2429 scanTypeCheckedLoadUsers(TypeCheckedLoadRelativeFunc);
2431 if (ImportSummary) {
2432 for (
auto &S : CallSlots)
2433 importResolution(S.first, S.second);
2435 removeRedundantTypeTests();
2440 for (GlobalVariable &GV :
M.globals())
2448 if (TypeIdMap.
empty())
2452 if (ExportSummary) {
2453 DenseMap<GlobalValue::GUID, TinyPtrVector<Metadata *>> MetadataByGUID;
2454 for (
auto &
P : TypeIdMap) {
2457 TypeId->getString())]
2461 for (
auto &
P : *ExportSummary) {
2462 for (
auto &S :
P.second.getSummaryList()) {
2467 for (FunctionSummary::VFuncId VF :
FS->type_test_assume_vcalls()) {
2468 for (
Metadata *MD : MetadataByGUID[VF.GUID]) {
2469 CallSlots[{MD, VF.Offset}].CSInfo.addSummaryTypeTestAssumeUser(FS);
2472 for (FunctionSummary::VFuncId VF :
FS->type_checked_load_vcalls()) {
2473 for (
Metadata *MD : MetadataByGUID[VF.GUID]) {
2474 CallSlots[{MD, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
2477 for (
const FunctionSummary::ConstVCall &VC :
2478 FS->type_test_assume_const_vcalls()) {
2479 for (
Metadata *MD : MetadataByGUID[
VC.VFunc.GUID]) {
2480 CallSlots[{MD,
VC.VFunc.Offset}]
2481 .ConstCSInfo[
VC.Args]
2482 .addSummaryTypeTestAssumeUser(FS);
2485 for (
const FunctionSummary::ConstVCall &VC :
2486 FS->type_checked_load_const_vcalls()) {
2487 for (
Metadata *MD : MetadataByGUID[
VC.VFunc.GUID]) {
2488 CallSlots[{MD,
VC.VFunc.Offset}]
2489 .ConstCSInfo[
VC.Args]
2490 .addSummaryTypeCheckedLoadUser(FS);
2498 bool DidVirtualConstProp =
false;
2499 std::map<std::string, GlobalValue *> DevirtTargets;
2500 for (
auto &S : CallSlots) {
2504 std::vector<VirtualCallTarget> TargetsForSlot;
2505 WholeProgramDevirtResolution *Res =
nullptr;
2506 const std::set<TypeMemberInfo> &TypeMemberInfos = TypeIdMap[S.first.TypeID];
2508 TypeMemberInfos.size())
2515 Res = &ExportSummary
2516 ->getOrInsertTypeIdSummary(
2518 .WPDRes[S.first.ByteOffset];
2519 if (tryFindVirtualCallTargets(TargetsForSlot, TypeMemberInfos,
2520 S.first.ByteOffset, ExportSummary)) {
2521 bool SingleImplDevirt =
2522 trySingleImplDevirt(ExportSummary, TargetsForSlot, S.second, Res);
2526 if (!SingleImplDevirt && !DevirtSpeculatively) {
2527 DidVirtualConstProp |=
2528 tryVirtualConstProp(TargetsForSlot, S.second, Res, S.first);
2530 tryICallBranchFunnel(TargetsForSlot, S.second, Res, S.first);
2535 for (
const auto &
T : TargetsForSlot)
2537 DevirtTargets[std::string(
T.Fn->getName())] =
T.Fn;
2547 auto AddTypeTestsForTypeCheckedLoads = [&](
CallSiteInfo &CSI) {
2548 if (!CSI.AllCallSitesDevirted)
2549 for (
auto *FS : CSI.SummaryTypeCheckedLoadUsers)
2550 FS->addTypeTest(GUID);
2552 AddTypeTestsForTypeCheckedLoads(S.second.CSInfo);
2553 for (
auto &CCS : S.second.ConstCSInfo)
2554 AddTypeTestsForTypeCheckedLoads(CCS.second);
2558 if (RemarksEnabled) {
2560 for (
const auto &DT : DevirtTargets) {
2561 GlobalValue *GV = DT.second;
2570 using namespace ore;
2571 OREGetter(*F).emit(OptimizationRemark(
DEBUG_TYPE,
"Devirtualized",
F)
2572 <<
"devirtualized " <<
NV(
"FunctionName", DT.first));
2576 NumDevirtTargets += DevirtTargets.size();
2578 removeRedundantTypeTests();
2582 if (DidVirtualConstProp)
2589 for (GlobalVariable &GV :
M.globals())
2592 for (
auto *CI : CallsWithPtrAuthBundleRemoved)
2593 CI->eraseFromParent();
2598void DevirtIndex::run() {
2599 if (ExportSummary.typeIdCompatibleVtableMap().empty())
2604 assert(!ExportSummary.withInternalizeAndPromote() &&
2605 "Expect index-based WPD to run before internalization and promotion");
2607 DenseMap<GlobalValue::GUID, std::vector<StringRef>> NameByGUID;
2608 for (
const auto &
P : ExportSummary.typeIdCompatibleVtableMap()) {
2617 ExportSummary.getOrInsertTypeIdSummary(
P.first);
2621 for (
auto &
P : ExportSummary) {
2622 for (
auto &S :
P.second.getSummaryList()) {
2627 for (FunctionSummary::VFuncId VF :
FS->type_test_assume_vcalls()) {
2628 for (StringRef Name : NameByGUID[VF.GUID]) {
2629 CallSlots[{
Name, VF.Offset}].CSInfo.addSummaryTypeTestAssumeUser(FS);
2632 for (FunctionSummary::VFuncId VF :
FS->type_checked_load_vcalls()) {
2633 for (StringRef Name : NameByGUID[VF.GUID]) {
2634 CallSlots[{
Name, VF.Offset}].CSInfo.addSummaryTypeCheckedLoadUser(FS);
2637 for (
const FunctionSummary::ConstVCall &VC :
2638 FS->type_test_assume_const_vcalls()) {
2639 for (StringRef Name : NameByGUID[
VC.VFunc.GUID]) {
2640 CallSlots[{
Name,
VC.VFunc.Offset}]
2641 .ConstCSInfo[
VC.Args]
2642 .addSummaryTypeTestAssumeUser(FS);
2645 for (
const FunctionSummary::ConstVCall &VC :
2646 FS->type_checked_load_const_vcalls()) {
2647 for (StringRef Name : NameByGUID[
VC.VFunc.GUID]) {
2648 CallSlots[{
Name,
VC.VFunc.Offset}]
2649 .ConstCSInfo[
VC.Args]
2650 .addSummaryTypeCheckedLoadUser(FS);
2656 std::set<ValueInfo> DevirtTargets;
2658 for (
auto &S : CallSlots) {
2662 std::vector<ValueInfo> TargetsForSlot;
2663 auto TidSummary = ExportSummary.getTypeIdCompatibleVtableSummary(S.first.TypeID);
2667 WholeProgramDevirtResolution *Res =
2668 &ExportSummary.getTypeIdSummary(S.first.TypeID)
2669 ->WPDRes[S.first.ByteOffset];
2670 if (tryFindVirtualCallTargets(TargetsForSlot, *TidSummary,
2671 S.first.ByteOffset)) {
2673 if (!trySingleImplDevirt(TargetsForSlot, S.first, S.second, Res,
2682 for (
const auto &DT : DevirtTargets)
2683 errs() <<
"Devirtualized call to " << DT <<
"\n";
2685 NumDevirtTargets += DevirtTargets.size();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
This is the interface for LLVM's primary stateless and local alias analysis.
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< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static std::optional< bool > isBigEndian(const SmallDenseMap< int64_t, int64_t, 8 > &MemOffset2Idx, int64_t LowestIdx)
Given a map from byte offsets in memory to indices in a load/store, determine if that map corresponds...
#define clEnumValN(ENUMVAL, FLAGNAME, DESC)
This file contains the declarations for the subclasses of Constant, which represent the different fla...
This file provides an implementation of debug counters.
#define DEBUG_COUNTER(VARNAME, COUNTERNAME, DESC)
This file defines DenseMapInfo traits for DenseMap.
This file defines the DenseMap class.
This file defines the DenseSet and SmallDenseSet classes.
Provides passes for computing function attributes based on interprocedural analyses.
static void emitRemark(const Function &F, OptimizationRemarkEmitter &ORE, bool Skip)
Module.h This file contains the declarations for the Module class.
This header defines various interfaces for pass management in LLVM.
static cl::opt< PassSummaryAction > ClSummaryAction("lowertypetests-summary-action", cl::desc("What to do with the summary when running this pass"), cl::values(clEnumValN(PassSummaryAction::None, "none", "Do nothing"), clEnumValN(PassSummaryAction::Import, "import", "Import typeid resolutions from summary and globals"), clEnumValN(PassSummaryAction::Export, "export", "Export typeid resolutions to summary and globals")), cl::Hidden)
Machine Check Debug Module
This file implements a map that provides insertion order iteration.
static bool mustBeUnreachableFunction(const Function &F)
This is the interface to build a ModuleSummaryIndex for a module.
uint64_t IntrinsicInst * II
FunctionAnalysisManager FAM
ModuleAnalysisManager MAM
This file contains the declarations for profiling metadata utility functions.
const SmallVectorImpl< MachineOperand > & Cond
Func getContext().diagnose(DiagnosticInfoUnsupported(Func
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)
WPDCheckMode
Mechanism to add runtime checking of devirtualization decisions, optionally trapping or falling back ...
static bool typeIDVisibleToRegularObj(StringRef TypeID, function_ref< bool(StringRef)> IsVisibleToRegularObj)
static Error checkCombinedSummaryForTesting(ModuleSummaryIndex *Summary)
static bool addCalls(VTableSlotInfo &SlotInfo, const ValueInfo &Callee)
static cl::opt< WPDCheckMode > DevirtCheckMode("wholeprogramdevirt-check", cl::Hidden, cl::desc("Type of checking for incorrect devirtualizations"), cl::values(clEnumValN(WPDCheckMode::None, "none", "No checking"), clEnumValN(WPDCheckMode::Trap, "trap", "Trap when incorrect"), clEnumValN(WPDCheckMode::Fallback, "fallback", "Fallback to indirect when incorrect")))
static cl::opt< bool > WholeProgramDevirtKeepUnreachableFunction("wholeprogramdevirt-keep-unreachable-function", cl::desc("Regard unreachable functions as possible devirtualize targets."), cl::Hidden, cl::init(true))
With Clang, a pure virtual class's deleting destructor is emitted as a llvm.trap intrinsic followed b...
static bool skipUpdateDueToValidation(GlobalVariable &GV, function_ref< bool(StringRef)> IsVisibleToRegularObj)
PassT::Result & getResult(IRUnitT &IR, ExtraArgTs... ExtraArgs)
Get the result of an analysis pass for a given IR unit.
Represent a constant reference to an array (0 or more elements consecutively in memory),...
size_t size() const
Get the array size.
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
static LLVM_ABI AttributeSet get(LLVMContext &C, const AttrBuilder &B)
LLVM_ABI StringRef getValueAsString() const
Return the attribute's value as a string.
bool isValid() const
Return true if the attribute is any kind of attribute.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
void setCallingConv(CallingConv::ID CC)
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
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.
void setCalledOperand(Value *V)
static LLVM_ABI CallBase * removeOperandBundle(CallBase *CB, uint32_t ID, InsertPosition InsertPt=nullptr)
Create a clone of CB with operand bundle ID removed.
AttributeList getAttributes() const
Return the attributes for this call.
LLVM_ABI Function * getCaller()
Helper to get the caller (the parent function).
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr="", InsertPosition InsertBefore=nullptr)
void setSelectionKind(SelectionKind Val)
static Constant * get(LLVMContext &Context, ArrayRef< ElementTy > Elts)
get() constructor - Return a constant with array type with an element count and element type matching...
static LLVM_ABI Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static Constant * getInBoundsGetElementPtr(Type *Ty, Constant *C, ArrayRef< Constant * > IdxList)
Create an "inbounds" getelementptr.
static Constant * getPtrAdd(Constant *Ptr, Constant *Offset, GEPNoWrapFlags NW=GEPNoWrapFlags::none(), std::optional< ConstantRange > InRange=std::nullopt, Type *OnlyIfReduced=nullptr)
Create a getelementptr i8, ptr, offset constant expression.
static LLVM_ABI Constant * getPtrToInt(Constant *C, Type *Ty, bool OnlyIfReduced=false)
static LLVM_ABI ConstantInt * getTrue(LLVMContext &Context)
static ConstantInt * getSigned(IntegerType *Ty, int64_t V, bool ImplicitTrunc=false)
Return a ConstantInt with the specified value for the specified type.
static Constant * getAnon(ArrayRef< Constant * > V, bool Packed=false)
Return an anonymous struct that has the specified elements.
const Constant * stripPointerCasts() const
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
static bool shouldExecute(CounterInfo &Counter)
Implements a dense probed hash-table based set.
Subclass of Error for the sole purpose of identifying the success path in the type system.
Lightweight error class with error context and mandatory checking.
Tagged union holding either a T or a Error.
Type * getParamType(unsigned i) const
Parameter type accessors.
ArrayRef< Type * > params() const
Type * getReturnType() const
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
FunctionType * getFunctionType() const
Returns the FunctionType for me.
const BasicBlock & front() const
Attribute getFnAttribute(Attribute::AttrKind Kind) const
Return the attribute for the given attribute kind.
Intrinsic::ID getIntrinsicID() const LLVM_READONLY
getIntrinsicID - This method returns the ID number of the specified function, or Intrinsic::not_intri...
std::optional< uint64_t > getEntryCount() const
Get the entry count for this function.
void addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind)
adds the attribute to the list of attributes for the given arg.
Type * getReturnType() const
Returns the type of the ret val.
unsigned getInstructionCount() const
Returns the number of non-debug IR instructions in this function.
static LLVM_ABI Expected< GlobPattern > create(StringRef Pat, std::optional< size_t > MaxSubPatterns={}, bool SlashAgnostic=false)
static LLVM_ABI GlobalAlias * create(Type *Ty, unsigned AddressSpace, LinkageTypes Linkage, const Twine &Name, Constant *Aliasee, Module *Parent)
If a parent module is specified, the alias is automatically inserted into the end of the specified mo...
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set a particular kind of metadata attachment.
bool hasMetadata() const
Return true if this GlobalObject has any metadata attached to it.
LLVM_ABI VCallVisibility getVCallVisibility() const
LLVM_ABI bool eraseMetadata(unsigned KindID)
Erase all metadata attachments with the given kind.
@ VCallVisibilityLinkageUnit
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this GlobalObject.
LLVM_ABI void setVCallVisibilityMetadata(VCallVisibility Visibility)
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
static bool isLocalLinkage(LinkageTypes Linkage)
LLVM_ABI bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
static bool isAvailableExternallyLinkage(LinkageTypes Linkage)
LLVM_ABI const GlobalObject * getAliaseeObject() const
LLVM_ABI GUID getGUID() const
Return a 64-bit global unique ID for this value.
@ HiddenVisibility
The GV is hidden.
void setVisibility(VisibilityTypes V)
@ PrivateLinkage
Like Internal, but omit from symbol table.
@ InternalLinkage
Rename collisions when linking (static functions).
@ ExternalLinkage
Externally visible function.
Type * getValueType() const
LLVM_ABI bool isInterposable(bool CheckNoIPA=true) const
Return true if this global's definition can be substituted with an arbitrary definition at link time ...
const Constant * getInitializer() const
getInitializer - Return the initializer for this global variable.
MaybeAlign getAlign() const
Returns the alignment of the given variable.
const DebugLoc & getDebugLoc() const
Return the debug location for this node as a DebugLoc.
LLVM_ABI InstListType::iterator eraseFromParent()
This method unlinks 'this' from the containing basic block and deletes it.
LLVM_ABI void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
unsigned getBitWidth() const
Get the number of bits in this IntegerType.
uint64_t getBitMask() const
Return a bitmask with ones set for all of the bits that can be set by an unsigned version of this typ...
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFile(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, bool IsVolatile=false, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, returning a new MemoryBuffer if successful,...
bool doesNotAccessMemory() const
Whether this function accesses no memory.
Class to hold module path string table and global value map, and encapsulate methods for operating on...
const TypeIdSummary * getTypeIdSummary(StringRef TypeId) const
This returns either a pointer to the type id summary (if present in the summary map) or null (if not ...
ValueInfo getValueInfo(const GlobalValueSummaryMapTy::value_type &R) const
Return a ValueInfo for the index value_type (convenient when iterating index).
const ModuleHash & getModuleHash(const StringRef ModPath) const
Get the module SHA1 hash recorded for the given module path.
static constexpr const char * getRegularLTOModuleName()
bool partiallySplitLTOUnits() const
static std::string getGlobalNameForLocal(StringRef Name, ModuleHash ModHash)
Convenience method for creating a promoted global name for the given value name of a local,...
A Module instance is used to store all the information related to an LLVM module.
Represent a mutable reference to an array (0 or more elements consecutively in memory),...
static LLVM_ABI PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
A set of analyses that are preserved following a run of a transformation pass.
static PreservedAnalyses none()
Convenience factory function for the empty preserved set.
static PreservedAnalyses all()
Construct a special preserved set that preserves all passes.
Analysis providing profile information.
static ReturnInst * Create(LLVMContext &C, Value *retVal=nullptr, InsertPosition InsertBefore=nullptr)
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Represent a constant reference to a string, i.e.
bool contains(StringRef Other) const
Return true if the given string is a substring of *this, and false otherwise.
Target - Wrapper for Target specific information.
The TimeTraceScope is a helper class to call the begin and end functions of the time trace profiler.
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
bool isVoidTy() const
Return true if this is 'void'.
static UncondBrInst * Create(BasicBlock *Target, InsertPosition InsertBefore=nullptr)
A Use represents the edge between a Value definition and its users.
Type * getType() const
All values are typed, get the type of this value.
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
LLVM_ABI void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
LLVM_ABI const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
LLVM_ABI bool eraseMetadata(unsigned KindID)
Erase all metadata attachments with the given kind.
iterator_range< use_iterator > uses()
LLVM_ABI StringRef getName() const
Return a constant reference to the value's name.
std::pair< iterator, bool > insert(const ValueT &V)
size_type count(const_arg_type_t< ValueT > V) const
Return 1 if the specified key is in the set, 0 otherwise.
An efficient, type-erasing, non-owning reference to a callable.
const ParentTy * getParent() const
self_iterator getIterator()
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
@ BasicBlock
Various leaf nodes.
LLVM_ABI Function * getDeclarationIfExists(const Module *M, ID id)
Look up the Function declaration of the intrinsic id in the Module M and return it if it exists.
LLVM_ABI Function * getOrInsertDeclaration(Module *M, ID id, ArrayRef< Type * > OverloadTys={})
Look up the Function declaration of the intrinsic id in the Module M.
bool match(Val *V, const Pattern &P)
ValuesClass values(OptsTy... Options)
Helper to build a ValuesClass by forwarding a variable number of arguments as an initializer list to ...
initializer< Ty > init(const Ty &Val)
DXILDebugInfoMap run(Module &M)
DiagnosticInfoOptimizationBase::Argument NV
friend class Instruction
Iterator for Instructions in a `BasicBlock.
@ OF_TextWithCRLF
The file should be opened in text mode and use a carriage linefeed '\r '.
LLVM_ABI uint64_t findLowestOffset(ArrayRef< VirtualCallTarget > Targets, bool IsAfter, uint64_t Size)
LLVM_ABI void setAfterReturnValues(MutableArrayRef< VirtualCallTarget > Targets, uint64_t AllocAfter, unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit)
LLVM_ABI void setBeforeReturnValues(MutableArrayRef< VirtualCallTarget > Targets, uint64_t AllocBefore, unsigned BitWidth, int64_t &OffsetByte, uint64_t &OffsetBit)
This is an optimization pass for GlobalISel generic memory operations.
auto drop_begin(T &&RangeOrContainer, size_t N=1)
Return a range covering RangeOrContainer with the first N elements excluded.
LLVM_ABI cl::opt< bool > ProfcheckDisableMetadataFixes
LLVM_ABI void runWholeProgramDevirtOnIndex(ModuleSummaryIndex &Summary, std::set< GlobalValue::GUID > &ExportedGUIDs, std::map< ValueInfo, std::vector< VTableSlotSummary > > &LocalWPDTargetsMap, DenseSet< StringRef > *ExternallyVisibleSymbolNamesPtr=nullptr)
Perform index-based whole program devirtualization on the Summary index.
LLVM_ABI MemoryEffects computeFunctionBodyMemoryAccess(Function &F, AAResults &AAR)
Returns the memory access properties of this copy of the function.
static cl::opt< bool > DisableWholeProgramVisibility("disable-whole-program-visibility", cl::Hidden, cl::desc("Disable whole program visibility (overrides enabling options)"))
Provide a way to force disable whole program for debugging or workarounds, when enabled via the linke...
static cl::opt< bool > WholeProgramVisibility("whole-program-visibility", cl::Hidden, cl::desc("Enable whole program visibility"))
Provide a way to force enable whole program visibility in tests.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
static cl::opt< unsigned > ClThreshold("wholeprogramdevirt-branch-funnel-threshold", cl::Hidden, cl::init(10), cl::desc("Maximum number of call targets per " "call site to enable branch funnels"))
@ Export
Export information to summary.
@ Import
Import information from summary.
static cl::opt< std::string > ClReadSummary("wholeprogramdevirt-read-summary", cl::desc("Read summary from given bitcode or YAML file before running pass"), cl::Hidden)
void append_range(Container &C, Range &&R)
Wrapper function to append range R to container C.
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...
InnerAnalysisManagerProxy< FunctionAnalysisManager, Module > FunctionAnalysisManagerModuleProxy
Provide the FunctionAnalysisManager to Module proxy.
LLVM_ABI ModuleSummaryIndex buildModuleSummaryIndex(const Module &M, std::function< BlockFrequencyInfo *(const Function &F)> GetBFICallback, ProfileSummaryInfo *PSI, std::function< const StackSafetyInfo *(const Function &F)> GetSSICallback=[](const Function &F) -> const StackSafetyInfo *{ return nullptr;})
Direct function to compute a ModuleSummaryIndex from a given module.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Value
LLVM_ABI bool hasWholeProgramVisibility(bool WholeProgramVisibilityEnabledInLTO)
int countr_zero(T Val)
Count number of 0's from the least significant bit to the most stopping at the first 1.
LLVM_ABI void writeIndexToFile(const ModuleSummaryIndex &Index, raw_ostream &Out, const ModuleToSummariesForIndexTy *ModuleToSummariesForIndex=nullptr, const GVSummaryPtrSet *DecSummaries=nullptr)
Write the specified module summary index to the given raw output stream, where it will be written in ...
LLVM_ABI Expected< std::unique_ptr< ModuleSummaryIndex > > getModuleSummaryIndex(MemoryBufferRef Buffer)
Parse the specified bitcode buffer, returning the module summary index.
LLVM_ABI void updateIndexWPDForExports(ModuleSummaryIndex &Summary, function_ref< bool(StringRef, ValueInfo)> isExported, std::map< ValueInfo, std::vector< VTableSlotSummary > > &LocalWPDTargetsMap, DenseSet< StringRef > *ExternallyVisibleSymbolNamesPtr=nullptr)
Call after cross-module importing to update the recorded single impl devirt target names for any loca...
static cl::opt< std::string > ClWriteSummary("wholeprogramdevirt-write-summary", cl::desc("Write summary to given bitcode or YAML file after running pass. " "Output file format is deduced from extension: *.bc means writing " "bitcode, otherwise YAML"), cl::Hidden)
LLVM_ABI void updatePublicTypeTestCalls(Module &M, bool WholeProgramVisibilityEnabledInLTO)
LLVM_ABI void getVisibleToRegularObjVtableGUIDs(ModuleSummaryIndex &Index, DenseSet< GlobalValue::GUID > &VisibleToRegularObjSymbols, function_ref< bool(StringRef)> IsVisibleToRegularObj)
Based on typeID string, get all associated vtable GUIDS that are visible to regular objects.
decltype(auto) get(const PointerIntPair< PointerTy, IntBits, IntType, PtrTraits, Info > &Pair)
constexpr uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
LLVM_ABI void findDevirtualizableCallsForTypeCheckedLoad(SmallVectorImpl< DevirtCallSite > &DevirtCalls, SmallVectorImpl< Instruction * > &LoadedPtrs, SmallVectorImpl< Instruction * > &Preds, bool &HasNonCallUses, const CallInst *CI, DominatorTree &DT)
Given a call to the intrinsic @llvm.type.checked.load, find all devirtualizable call sites based on t...
LLVM_ABI CallBase & versionCallSite(CallBase &CB, Value *Callee, MDNode *BranchWeights)
Predicate and clone the given call site.
LLVM_ABI bool AreStatisticsEnabled()
Check if statistics are enabled.
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 void setExplicitlyUnknownFunctionEntryCount(Function &F, StringRef PassName)
Analogous to setExplicitlyUnknownBranchWeights, but for functions and their entry counts.
MutableArrayRef(T &OneElt) -> MutableArrayRef< T >
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
IRBuilder(LLVMContext &, FolderTy, InserterTy, MDNode *, ArrayRef< OperandBundleDef >) -> IRBuilder< FolderTy, InserterTy >
static cl::list< std::string > SkipFunctionNames("wholeprogramdevirt-skip", cl::desc("Prevent function(s) from being devirtualized"), cl::Hidden, cl::CommaSeparated)
Provide way to prevent certain function from being devirtualized.
static cl::opt< PassSummaryAction > ClSummaryAction("wholeprogramdevirt-summary-action", cl::desc("What to do with the summary when running this pass"), cl::values(clEnumValN(PassSummaryAction::None, "none", "Do nothing"), clEnumValN(PassSummaryAction::Import, "import", "Import typeid resolutions from summary and globals"), clEnumValN(PassSummaryAction::Export, "export", "Export typeid resolutions to summary and globals")), cl::Hidden)
Expected< T > errorOrToExpected(ErrorOr< T > &&EO)
Convert an ErrorOr<T> to an Expected<T>.
ArrayRef(const T &OneElt) -> ArrayRef< T >
constexpr unsigned BitWidth
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
static cl::opt< bool > ClDevirtualizeSpeculatively("devirtualize-speculatively", cl::desc("Enable speculative devirtualization optimization"), cl::init(false))
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
LLVM_ABI Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...
std::vector< TypeIdOffsetVtableInfo > TypeIdCompatibleVtableInfo
List of vtable definitions decorated by a particular type identifier, and their corresponding offsets...
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
static cl::opt< bool > PrintSummaryDevirt("wholeprogramdevirt-print-index-based", cl::Hidden, cl::desc("Print index-based devirtualization messages"))
void consumeError(Error Err)
Consume a Error without doing anything.
LLVM_ABI void findDevirtualizableCallsForTypeTest(SmallVectorImpl< DevirtCallSite > &DevirtCalls, SmallVectorImpl< CallInst * > &Assumes, const CallInst *CI, DominatorTree &DT)
Given a call to the intrinsic @llvm.type.test, find all devirtualizable call sites based on the call ...
LLVM_ABI void updateVCallVisibilityInModule(Module &M, bool WholeProgramVisibilityEnabledInLTO, const DenseSet< GlobalValue::GUID > &DynamicExportSymbols, bool ValidateAllVtablesHaveTypeInfos, function_ref< bool(StringRef)> IsVisibleToRegularObj)
If whole program visibility asserted, then upgrade all public vcall visibility metadata on vtable def...
AnalysisManager< Module > ModuleAnalysisManager
Convenience typedef for the Module analysis manager.
LLVM_ABI std::pair< Function *, Constant * > getFunctionAtVTableOffset(GlobalVariable *GV, uint64_t Offset, Module &M)
Given a vtable and a specified offset, returns the function and the trivial pointer at the specified ...
LLVM_ABI void updateVCallVisibilityInIndex(ModuleSummaryIndex &Index, bool WholeProgramVisibilityEnabledInLTO, const DenseSet< GlobalValue::GUID > &DynamicExportSymbols, const DenseSet< GlobalValue::GUID > &VisibleToRegularObjSymbols)
If whole program visibility asserted, then upgrade all public vcall visibility metadata on vtable def...
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
constexpr uint64_t value() const
This is a hole in the type system and should not be abused.
Class to accumulate and hold information about a callee.
static unsigned getHashValue(const VTableSlotSummary &I)
static bool isEqual(const VTableSlotSummary &LHS, const VTableSlotSummary &RHS)
static bool isEqual(const VTableSlot &LHS, const VTableSlot &RHS)
static unsigned getHashValue(const VTableSlot &I)
An information struct used to provide DenseMap with the various necessary components for a given valu...
The following data structures summarize type metadata information.
std::map< uint64_t, WholeProgramDevirtResolution > WPDRes
Mapping from byte offset to whole-program devirt resolution for that (typeid, byte offset) pair.
@ Unsat
Unsatisfiable type (i.e. no global has this type metadata)
enum llvm::TypeTestResolution::Kind TheKind
Struct that holds a reference to a particular GUID in a global value summary.
ArrayRef< std::unique_ptr< GlobalValueSummary > > getSummaryList() const
const ModuleSummaryIndex * ImportSummary
ModuleSummaryIndex * ExportSummary
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &)
@ UniformRetVal
Uniform return value optimization.
@ VirtualConstProp
Virtual constant propagation.
@ UniqueRetVal
Unique return value optimization.
uint64_t Info
Additional information for the resolution:
enum llvm::WholeProgramDevirtResolution::ByArg::Kind TheKind
enum llvm::WholeProgramDevirtResolution::Kind TheKind
std::map< std::vector< uint64_t >, ByArg > ResByArg
Resolutions for calls with all constant integer arguments (excluding the first argument,...
std::string SingleImplName
@ SingleImpl
Single implementation devirtualization.
@ BranchFunnel
When retpoline mitigation is enabled, use a branch funnel that is defined in the merged module.
LLVM_ABI VirtualCallTarget(GlobalValue *Fn, const TypeMemberInfo *TM)
const TypeMemberInfo * TM