50#include <system_error>
56#define DEBUG_TYPE "function-import"
59 "Number of functions thin link decided to import");
61 "Number of hot functions thin link decided to import");
63 "Number of critical functions thin link decided to import");
65 "Number of global variables thin link decided to import");
66STATISTIC(NumImportedFunctions,
"Number of functions imported in backend");
68 "Number of global variables imported in backend");
69STATISTIC(NumImportedModules,
"Number of modules imported from");
70STATISTIC(NumDeadSymbols,
"Number of dead stripped symbols in index");
71STATISTIC(NumLiveSymbols,
"Number of live symbols in index");
76 cl::desc(
"Only import functions with less than N instructions"));
80 cl::desc(
"Only import first N functions if N>=0 (default -1)"));
84 cl::desc(
"Import functions with noinline attribute"));
89 cl::desc(
"As we import functions, multiply the "
90 "`import-instr-limit` threshold by this factor "
91 "before processing newly imported functions"));
96 cl::desc(
"As we import functions called from hot callsite, multiply the "
97 "`import-instr-limit` threshold by this factor "
98 "before processing newly imported functions"));
102 cl::desc(
"Multiply the `import-instr-limit` threshold for hot callsites"));
108 "Multiply the `import-instr-limit` threshold for critical callsites"));
113 cl::desc(
"Multiply the `import-instr-limit` threshold for cold callsites"));
116 cl::desc(
"Print imported functions"));
120 cl::desc(
"Print information for functions rejected for importing"));
127 cl::desc(
"Enable import metadata like 'thinlto_src_module' and "
128 "'thinlto_src_file'"));
134 cl::desc(
"The summary file to use for function importing."));
140 cl::desc(
"Import all external functions in index."));
150 cl::desc(
"If true, import function declaration as fallback if the function "
151 "definition is not imported."));
162 "thinlto-workload-def",
163 cl::desc(
"Pass a workload definition. This is a file containing a JSON "
164 "dictionary. The keys are root functions, the values are lists of "
165 "functions to import in the module defining the root. It is "
166 "assumed -funique-internal-linkage-names was used, to ensure "
167 "local linkage functions have unique names. For example: \n"
169 " \"rootFunction_1\": [\"function_to_import_1\", "
170 "\"function_to_import_2\"], \n"
171 " \"rootFunction_2\": [\"function_to_import_3\", "
172 "\"function_to_import_4\"] \n"
183static std::unique_ptr<Module>
loadFile(
const std::string &FileName,
189 std::unique_ptr<Module> Result =
193 Err.print(
"function-import",
errs());
222 ArrayRef<std::unique_ptr<GlobalValueSummary>> CalleeSummaryList,
226 [&Index, CalleeSummaryList,
227 CallerModulePath](
const std::unique_ptr<GlobalValueSummary> &SummaryPtr)
230 auto *GVSummary = SummaryPtr.get();
231 if (!Index.isGlobalValueLive(GVSummary))
232 return {FunctionImporter::ImportFailureReason::NotLive, GVSummary};
235 return {FunctionImporter::ImportFailureReason::InterposableLinkage,
238 auto *Summary = dyn_cast<FunctionSummary>(GVSummary->getBaseObject());
246 return {FunctionImporter::ImportFailureReason::GlobalVar, GVSummary};
263 FunctionImporter::ImportFailureReason::LocalLinkageNotInModule,
268 if (Summary->notEligibleToImport())
269 return {FunctionImporter::ImportFailureReason::NotEligible,
272 return {FunctionImporter::ImportFailureReason::None, GVSummary};
293 ArrayRef<std::unique_ptr<GlobalValueSummary>> CalleeSummaryList,
294 unsigned Threshold,
StringRef CallerModulePath,
298 TooLargeOrNoInlineSummary =
nullptr;
299 auto QualifiedCandidates =
301 for (
auto QualifiedValue : QualifiedCandidates) {
302 Reason = QualifiedValue.first;
304 if (Reason != FunctionImporter::ImportFailureReason::None)
307 cast<FunctionSummary>(QualifiedValue.second->getBaseObject());
311 if ((Summary->instCount() > Threshold) && !Summary->fflags().AlwaysInline &&
313 TooLargeOrNoInlineSummary = Summary;
314 Reason = FunctionImporter::ImportFailureReason::TooLarge;
320 TooLargeOrNoInlineSummary = Summary;
321 Reason = FunctionImporter::ImportFailureReason::NoInline;
340 if (!Imports.insert(Def).second)
352 auto [Def, Decl] = IDs.createImportIDs(FromModule, GUID);
355 if (!Imports.contains(Def))
356 Imports.insert(Decl);
362 for (
const auto &[SrcMod, GUID, ImportType] : *
this)
369std::optional<GlobalValueSummary::ImportKind>
372 if (
auto IDPair = IDs.getImportIDs(FromModule, GUID)) {
373 auto [Def, Decl] = *IDPair;
374 if (Imports.contains(Def))
376 if (Imports.contains(Decl))
392 bool shouldImportGlobal(
const ValueInfo &VI) {
393 const auto &GVS = DefinedGVSummaries.
find(VI.getGUID());
394 if (GVS == DefinedGVSummaries.
end())
406 if (VI.getSummaryList().size() > 1 &&
408 !IsPrevailing(VI.getGUID(), GVS->second))
417 for (
const auto &VI : Summary.refs()) {
418 if (!shouldImportGlobal(VI)) {
420 dbgs() <<
"Ref ignored! Target already in destination module.\n");
426 for (
const auto &RefSummary : VI.getSummaryList()) {
427 const auto *GVS = dyn_cast<GlobalVarSummary>(RefSummary.get());
433 bool CanImportDecl =
false;
436 Summary.modulePath()) ||
437 !
Index.canImportGlobalVar(GVS,
true,
448 if (ImportList.
addDefinition(RefSummary->modulePath(), VI.getGUID()) !=
449 FunctionImporter::ImportMapTy::AddDefinitionStatus::Inserted)
454 NumImportedGlobalVarsThinLink++;
459 (*ExportLists)[RefSummary->modulePath()].insert(VI);
463 if (!
Index.isWriteOnly(GVS))
477 :
Index(
Index), DefinedGVSummaries(DefinedGVSummaries),
478 IsPrevailing(IsPrevailing), ImportList(ImportList),
479 ExportLists(ExportLists) {}
483 onImportingSummaryImpl(Summary, Worklist);
484 while (!Worklist.
empty())
485 onImportingSummaryImpl(*Worklist.
pop_back_val(), Worklist);
504 : IsPrevailing(IsPrevailing),
Index(
Index), ExportLists(ExportLists) {}
517 static std::unique_ptr<ModuleImportsManager>
538 auto SetIter = Workloads.
find(ModName);
539 if (SetIter == Workloads.
end()) {
541 <<
" does not contain the root of any context.\n");
543 ModName, ImportList);
546 <<
" contains the root(s) of context(s).\n");
550 auto &ValueInfos = SetIter->second;
553 auto It = DefinedGVSummaries.
find(VI.getGUID());
554 if (It != DefinedGVSummaries.
end() &&
555 IsPrevailing(VI.getGUID(), It->second)) {
557 dbgs() <<
"[Workload] " << VI.name()
558 <<
" has the prevailing variant already in the module "
559 << ModName <<
". No need to import\n");
569 [&](
const auto &Candidate) {
571 <<
" from " << Candidate.second->modulePath()
572 <<
" ImportFailureReason: "
574 return Candidate.first ==
575 FunctionImporter::ImportFailureReason::None;
577 [](
const auto &Candidate) {
return Candidate.second; });
578 if (PotentialCandidates.empty()) {
580 <<
" because can't find eligible Callee. Guid is: "
581 << Function::getGUID(VI.name()) <<
"\n");
599 PotentialCandidates, [&](
const auto *Candidate) {
600 return IsPrevailing(VI.getGUID(), Candidate);
602 if (PrevailingCandidates.empty()) {
603 GVS = *PotentialCandidates.begin();
608 <<
"[Workload] Found multiple non-prevailing candidates for "
610 <<
". This is unexpected. Are module paths passed to the "
611 "compiler unique for the modules passed to the linker?");
620 GVS = *PrevailingCandidates.begin();
627 if (ExportingModule == ModName) {
629 <<
" because its defining module is the same as the "
633 LLVM_DEBUG(
dbgs() <<
"[Workload][Including]" << VI.name() <<
" from "
634 << ExportingModule <<
" : "
635 << Function::getGUID(VI.name()) <<
"\n");
639 (*ExportLists)[ExportingModule].insert(VI);
644 void loadFromJson() {
651 if (!NameToValueInfo.
insert(std::make_pair(VI.name(), VI)).second)
656 dbgs() <<
"[Workload] Function name " << Name
657 <<
" present in the workload definition is ambiguous. Consider "
658 "compiling with -funique-internal-linkage-names.";
663 if (std::error_code EC = BufferOrErr.getError()) {
667 auto Buffer = std::move(BufferOrErr.get());
668 std::map<std::string, std::vector<std::string>> WorkloadDefs;
681 for (
const auto &Workload : WorkloadDefs) {
682 const auto &Root = Workload.first;
683 DbgReportIfAmbiguous(Root);
685 const auto &AllCallees = Workload.second;
686 auto RootIt = NameToValueInfo.
find(Root);
687 if (RootIt == NameToValueInfo.
end()) {
689 <<
" not found in this linkage unit.\n");
692 auto RootVI = RootIt->second;
693 if (RootVI.getSummaryList().size() != 1) {
695 <<
" should have exactly one summary, but has "
696 << RootVI.getSummaryList().size() <<
". Skipping.\n");
700 RootVI.getSummaryList().
front()->modulePath();
701 LLVM_DEBUG(
dbgs() <<
"[Workload] Root defining module for " << Root
702 <<
" is : " << RootDefiningModule <<
"\n");
703 auto &Set = Workloads[RootDefiningModule];
704 for (
const auto &Callee : AllCallees) {
706 DbgReportIfAmbiguous(Callee);
707 auto ElemIt = NameToValueInfo.
find(Callee);
708 if (ElemIt == NameToValueInfo.
end()) {
712 Set.insert(ElemIt->second);
717 void loadFromCtxProf() {
720 if (std::error_code EC = BufferOrErr.getError()) {
724 auto Buffer = std::move(BufferOrErr.get());
732 const auto &CtxMap = *Ctx;
734 for (
const auto &[RootGuid, Root] : CtxMap) {
737 ContainedGUIDs.
clear();
739 auto RootVI =
Index.getValueInfo(RootGuid);
742 <<
" not found in this linkage unit.\n");
745 if (RootVI.getSummaryList().size() != 1) {
747 <<
" should have exactly one summary, but has "
748 << RootVI.getSummaryList().size() <<
". Skipping.\n");
752 RootVI.getSummaryList().
front()->modulePath();
753 LLVM_DEBUG(
dbgs() <<
"[Workload] Root defining module for " << RootGuid
754 <<
" is : " << RootDefiningModule <<
"\n");
755 auto &Set = Workloads[RootDefiningModule];
756 Root.getContainedGuids(ContainedGUIDs);
757 for (
auto Guid : ContainedGUIDs)
772 "Pass only one of: -thinlto-pgo-ctx-prof or -thinlto-workload-def");
780 for (
const auto &[Root, Set] : Workloads) {
781 dbgs() <<
"[Workload] Root: " << Root <<
" we have " << Set.size()
782 <<
" distinct callees.\n";
783 for (
const auto &VI : Set) {
784 dbgs() <<
"[Workload] Root: " << Root
785 <<
" Would include: " << VI.getGUID() <<
"\n";
798 LLVM_DEBUG(
dbgs() <<
"[Workload] Using the regular imports manager.\n");
799 return std::unique_ptr<ModuleImportsManager>(
802 LLVM_DEBUG(
dbgs() <<
"[Workload] Using the contextual imports manager.\n");
803 return std::make_unique<WorkloadImportsManager>(IsPrevailing, Index,
819 return "InterposableLinkage";
821 return "LocalLinkageNotInModule";
823 return "NotEligible";
835 const unsigned Threshold,
const GVSummaryMapTy &DefinedGVSummaries,
843 static int ImportCount = 0;
844 for (
const auto &Edge : Summary.calls()) {
846 LLVM_DEBUG(
dbgs() <<
" edge -> " << VI <<
" Threshold:" << Threshold
855 if (DefinedGVSummaries.
count(VI.getGUID())) {
859 LLVM_DEBUG(
dbgs() <<
"ignored! Target already in destination module.\n");
873 const auto NewThreshold =
874 Threshold * GetBonusMultiplier(Edge.second.getHotness());
876 auto IT = ImportThresholds.
insert(std::make_pair(
877 VI.getGUID(), std::make_tuple(NewThreshold,
nullptr,
nullptr)));
878 bool PreviouslyVisited = !
IT.second;
879 auto &ProcessedThreshold = std::get<0>(
IT.first->second);
880 auto &CalleeSummary = std::get<1>(
IT.first->second);
881 auto &FailureInfo = std::get<2>(
IT.first->second);
885 bool IsCriticalCallsite =
890 assert(PreviouslyVisited);
895 if (NewThreshold <= ProcessedThreshold) {
897 dbgs() <<
"ignored! Target was already imported with Threshold "
898 << ProcessedThreshold <<
"\n");
902 ProcessedThreshold = NewThreshold;
903 ResolvedCalleeSummary = cast<FunctionSummary>(CalleeSummary);
907 if (PreviouslyVisited && NewThreshold <= ProcessedThreshold) {
909 dbgs() <<
"ignored! Target was already rejected with Threshold "
910 << ProcessedThreshold <<
"\n");
913 "Expected FailureInfo for previously rejected candidate");
914 FailureInfo->Attempts++;
925 Summary.modulePath(), SummaryForDeclImport, Reason);
926 if (!CalleeSummary) {
939 if (PreviouslyVisited) {
940 ProcessedThreshold = NewThreshold;
943 "Expected FailureInfo for previously rejected candidate");
944 FailureInfo->Reason = Reason;
945 FailureInfo->Attempts++;
946 FailureInfo->MaxHotness =
947 std::max(FailureInfo->MaxHotness, Edge.second.getHotness());
951 "Expected no FailureInfo for newly rejected candidate");
952 FailureInfo = std::make_unique<FunctionImporter::ImportFailureInfo>(
953 VI, Edge.second.getHotness(), Reason, 1);
956 std::string Msg = std::string(
"Failed to import function ") +
957 VI.name().str() +
" due to " +
959 auto Error = make_error<StringError>(
962 "Error importing module: ");
966 <<
"ignored! No qualifying callee with summary found.\n");
972 CalleeSummary = CalleeSummary->getBaseObject();
973 ResolvedCalleeSummary = cast<FunctionSummary>(CalleeSummary);
976 (ResolvedCalleeSummary->
instCount() <= NewThreshold)) &&
977 "selectCallee() didn't honor the threshold");
979 auto ExportModulePath = ResolvedCalleeSummary->
modulePath();
983 if (ImportList.
addDefinition(ExportModulePath, VI.getGUID()) !=
985 NumImportedFunctionsThinLink++;
987 NumImportedHotFunctionsThinLink++;
988 if (IsCriticalCallsite)
989 NumImportedCriticalFunctionsThinLink++;
996 (*ExportLists)[ExportModulePath].insert(VI);
999 auto GetAdjustedThreshold = [](
unsigned Threshold,
bool IsHotCallsite) {
1008 const auto AdjThreshold = GetAdjustedThreshold(Threshold, IsHotCallsite);
1013 Worklist.
emplace_back(ResolvedCalleeSummary, AdjThreshold);
1023 GlobalsImporter GVI(Index, DefinedGVSummaries, IsPrevailing, ImportList,
1029 for (
const auto &GVSummary : DefinedGVSummaries) {
1033 auto VI = Index.getValueInfo(GVSummary.first);
1035 if (!Index.isGlobalValueLive(GVSummary.second)) {
1040 dyn_cast<FunctionSummary>(GVSummary.second->getBaseObject());
1046 DefinedGVSummaries, IsPrevailing, Worklist, GVI,
1047 ImportList, ExportLists, ImportThresholds);
1051 while (!Worklist.
empty()) {
1053 auto *Summary = std::get<0>(GVInfo);
1054 auto Threshold = std::get<1>(GVInfo);
1056 if (
auto *FS = dyn_cast<FunctionSummary>(Summary))
1058 IsPrevailing, Worklist, GVI, ImportList,
1059 ExportLists, ImportThresholds);
1065 dbgs() <<
"Missed imports into module " << ModName <<
"\n";
1066 for (
auto &
I : ImportThresholds) {
1067 auto &ProcessedThreshold = std::get<0>(
I.second);
1068 auto &CalleeSummary = std::get<1>(
I.second);
1069 auto &FailureInfo = std::get<2>(
I.second);
1074 if (!FailureInfo->VI.getSummaryList().empty())
1075 FS = dyn_cast<FunctionSummary>(
1076 FailureInfo->VI.getSummaryList()[0]->getBaseObject());
1077 dbgs() << FailureInfo->VI
1079 <<
", Threshold = " << ProcessedThreshold
1080 <<
", Size = " << (FS ? (int)FS->instCount() : -1)
1082 <<
", Attempts = " << FailureInfo->Attempts <<
"\n";
1089 auto SL = VI.getSummaryList();
1097 if (
const auto &VI = Index.getValueInfo(
G))
1106 unsigned NumGVS = 0;
1107 for (
auto &VI : ExportSet)
1114 unsigned NumGVS = 0;
1115 unsigned DefinedFS = 0;
1125 for (
const auto &[FromModule, GUID,
Type] : ImportList) {
1144 for (
const auto &ImportPerModule : ImportLists)
1145 for (
const auto &[FromModule, GUID, ImportType] : ImportPerModule.second)
1146 FlattenedImports.
insert(GUID);
1154 auto IsReadOrWriteOnlyVarNeedingImporting = [&](
StringRef ModulePath,
1156 auto *GVS = dyn_cast_or_null<GlobalVarSummary>(
1157 Index.findSummaryInModule(VI, ModulePath));
1158 return GVS && (Index.isReadOnly(GVS) || Index.isWriteOnly(GVS)) &&
1164 for (
auto &ExportPerModule : ExportLists)
1165 for (
auto &VI : ExportPerModule.second)
1166 if (!FlattenedImports.
count(VI.getGUID()) &&
1167 IsReadOrWriteOnlyVarNeedingImporting(ExportPerModule.first, VI))
1184 for (
const auto &DefinedGVSummaries : ModuleToDefinedGVSummaries) {
1185 auto &ImportList = ImportLists[DefinedGVSummaries.first];
1187 << DefinedGVSummaries.first <<
"'\n");
1188 MIS->computeImportForModule(DefinedGVSummaries.second,
1189 DefinedGVSummaries.first, ImportList);
1197 for (
auto &ELI : ExportLists) {
1201 const auto &DefinedGVSummaries =
1202 ModuleToDefinedGVSummaries.
lookup(ELI.first);
1203 for (
auto &EI : ELI.second) {
1210 auto DS = DefinedGVSummaries.
find(EI.getGUID());
1214 auto *S = DS->getSecond();
1215 S = S->getBaseObject();
1216 if (
auto *GVS = dyn_cast<GlobalVarSummary>(S)) {
1221 if (!Index.isWriteOnly(GVS))
1222 for (
const auto &VI : GVS->refs())
1225 auto *FS = cast<FunctionSummary>(S);
1226 for (
const auto &Edge : FS->calls())
1227 NewExports.
insert(Edge.first);
1228 for (
const auto &
Ref : FS->refs())
1236 for (
auto EI = NewExports.
begin(); EI != NewExports.
end();) {
1237 if (!DefinedGVSummaries.
count(EI->getGUID()))
1238 NewExports.
erase(EI++);
1242 ELI.second.insert(NewExports.
begin(), NewExports.
end());
1249 for (
const auto &ModuleImports : ImportLists) {
1250 auto ModName = ModuleImports.first;
1251 auto &Exports = ExportLists[ModName];
1256 << Exports.
size() - NumGVS <<
" functions and " << NumGVS
1257 <<
" vars. Imports from " << Histogram.
size()
1259 for (
const auto &[SrcModName,
Stats] : Histogram) {
1261 <<
" function definitions and "
1263 <<
" function declarations imported from " << SrcModName
1266 <<
" global vars imported from " << SrcModName <<
"\n");
1278 LLVM_DEBUG(
dbgs() <<
"* Module " << ModulePath <<
" imports from "
1279 << Histogram.
size() <<
" modules.\n");
1280 for (
const auto &[SrcModName,
Stats] : Histogram) {
1282 <<
" function definitions and "
1284 <<
" function declarations imported from " << SrcModName
1287 << SrcModName <<
"\n");
1309 Index.collectDefinedFunctionsForModule(ModulePath, FunctionSummaryMap);
1312 LLVM_DEBUG(
dbgs() <<
"Computing import for Module '" << ModulePath <<
"'\n");
1314 MIS->computeImportForModule(FunctionSummaryMap, ModulePath, ImportList);
1329 for (
const auto &GlobalList : Index) {
1331 if (GlobalList.second.SummaryList.empty())
1334 auto GUID = GlobalList.first;
1335 assert(GlobalList.second.SummaryList.size() == 1 &&
1336 "Expected individual combined index to have one summary per GUID");
1337 auto &Summary = GlobalList.second.SummaryList[0];
1340 if (Summary->modulePath() == ModulePath)
1343 ImportList.
addGUID(Summary->modulePath(), GUID, Summary->importType());
1356 for (
auto &EI : FS->mutableCalls()) {
1357 if (!EI.first.getSummaryList().empty())
1359 auto GUID = Index.getGUIDFromOriginalID(EI.first.getGUID());
1363 auto VI = Index.getValueInfo(GUID);
1365 VI.getSummaryList(),
1366 [&](
const std::unique_ptr<GlobalValueSummary> &SummaryPtr) {
1376 return SummaryPtr->getSummaryKind() ==
1377 GlobalValueSummary::GlobalVarKind;
1385 for (
const auto &Entry : Index) {
1386 for (
const auto &S : Entry.second.SummaryList) {
1387 if (
auto *FS = dyn_cast<FunctionSummary>(S.get()))
1397 assert(!Index.withGlobalValueDeadStripping());
1400 GUIDPreservedSymbols.
empty()) {
1405 unsigned LiveSymbols = 0;
1407 Worklist.
reserve(GUIDPreservedSymbols.
size() * 2);
1408 for (
auto GUID : GUIDPreservedSymbols) {
1409 ValueInfo VI = Index.getValueInfo(GUID);
1412 for (
const auto &S : VI.getSummaryList())
1417 for (
const auto &Entry : Index) {
1418 auto VI = Index.getValueInfo(Entry);
1419 for (
const auto &S : Entry.second.SummaryList) {
1420 if (
auto *FS = dyn_cast<FunctionSummary>(S.get()))
1443 [](
const std::unique_ptr<llvm::GlobalValueSummary> &S) {
1454 bool KeepAliveLinkage =
false;
1455 bool Interposable =
false;
1456 for (
const auto &S : VI.getSummaryList()) {
1460 KeepAliveLinkage =
true;
1462 Interposable =
true;
1466 if (!KeepAliveLinkage)
1471 "Interposable and available_externally/linkonce_odr/weak_odr "
1476 for (
const auto &S : VI.getSummaryList())
1482 while (!Worklist.
empty()) {
1484 for (
const auto &Summary : VI.getSummaryList()) {
1485 if (
auto *AS = dyn_cast<AliasSummary>(Summary.get())) {
1489 visit(AS->getAliaseeVI(),
true);
1492 for (
auto Ref : Summary->refs())
1494 if (
auto *FS = dyn_cast<FunctionSummary>(Summary.get()))
1495 for (
auto Call : FS->calls())
1496 visit(Call.first,
false);
1499 Index.setWithGlobalValueDeadStripping();
1501 unsigned DeadSymbols = Index.size() - LiveSymbols;
1502 LLVM_DEBUG(
dbgs() << LiveSymbols <<
" symbols Live, and " << DeadSymbols
1503 <<
" symbols Dead \n");
1504 NumDeadSymbols += DeadSymbols;
1505 NumLiveSymbols += LiveSymbols;
1513 bool ImportEnabled) {
1517 Index.propagateAttributes(GUIDPreservedSymbols);
1529 ModuleToSummariesForIndex[std::string(ModulePath)] =
1530 ModuleToDefinedGVSummaries.
lookup(ModulePath);
1539 auto It = Map.find(Key);
1540 if (It == Map.end())
1541 std::tie(It, std::ignore) =
1547 for (
const auto &[FromModule, GUID, ImportType] : ImportList) {
1548 auto &SummariesForIndex =
1549 LookupOrCreate(ModuleToSummariesForIndex, FromModule);
1551 const auto &DefinedGVSummaries = ModuleToDefinedGVSummaries.
at(FromModule);
1552 const auto &DS = DefinedGVSummaries.
find(GUID);
1553 assert(DS != DefinedGVSummaries.
end() &&
1554 "Expected a defined summary for imported global value");
1556 DecSummaries.insert(DS->second);
1558 SummariesForIndex[GUID] = DS->second;
1571 for (
const auto &ILI : ModuleToSummariesForIndex)
1575 if (ILI.first != ModulePath)
1576 ImportsOS << ILI.first <<
"\n";
1583 if (
Function *
F = dyn_cast<Function>(&GV)) {
1586 F->setComdat(
nullptr);
1588 V->setInitializer(
nullptr);
1591 V->setComdat(
nullptr);
1619 auto FinalizeInModule = [&](
GlobalValue &GV,
bool Propagate =
false) {
1621 const auto &GS = DefinedGlobals.
find(GV.
getGUID());
1622 if (GS == DefinedGlobals.
end())
1627 if (
Function *
F = dyn_cast<Function>(&GV)) {
1629 if (FS->fflags().ReadNone && !
F->doesNotAccessMemory())
1630 F->setDoesNotAccessMemory();
1632 if (FS->fflags().ReadOnly && !
F->onlyReadsMemory())
1633 F->setOnlyReadsMemory();
1635 if (FS->fflags().NoRecurse && !
F->doesNotRecurse())
1636 F->setDoesNotRecurse();
1638 if (FS->fflags().NoUnwind && !
F->doesNotThrow())
1639 F->setDoesNotThrow();
1643 auto NewLinkage = GS->second->linkage();
1682 GS->second->canAutoHide()) {
1688 <<
"` from " << GV.
getLinkage() <<
" to " << NewLinkage
1695 auto *GO = dyn_cast_or_null<GlobalObject>(&GV);
1696 if (GO && GO->isDeclarationForLinker() && GO->hasComdat()) {
1697 if (GO->getComdat()->getName() == GO->getName())
1698 NonPrevailingComdats.
insert(GO->getComdat());
1699 GO->setComdat(
nullptr);
1704 for (
auto &GV : TheModule)
1706 for (
auto &GV : TheModule.
globals())
1707 FinalizeInModule(GV);
1708 for (
auto &GV : TheModule.
aliases())
1709 FinalizeInModule(GV);
1714 if (NonPrevailingComdats.
empty())
1717 if (
auto *
C = GO.getComdat();
C && NonPrevailingComdats.
count(
C)) {
1718 GO.setComdat(
nullptr);
1729 for (
auto &GA : TheModule.
aliases()) {
1730 if (GA.hasAvailableExternallyLinkage())
1733 assert(Obj &&
"aliasee without an base object is unimplemented");
1747 auto MustPreserveGV = [&](
const GlobalValue &GV) ->
bool {
1751 if (isa<GlobalIFunc>(&GV) ||
1752 (isa<GlobalAlias>(&GV) &&
1753 isa<GlobalIFunc>(cast<GlobalAlias>(&GV)->getAliaseeObject())))
1757 auto GS = DefinedGlobals.
find(GV.getGUID());
1758 if (GS == DefinedGlobals.
end()) {
1770 if (GS == DefinedGlobals.
end()) {
1807 for (
auto &GV : M.globals())
1810 if (!GV.isDeclaration() && GV.hasAttribute(
"thinlto-internalize")) {
1822 unsigned ImportedCount = 0, ImportedGVCount = 0;
1830 if (!SrcModuleOrErr)
1832 std::unique_ptr<Module> SrcModule = std::move(*SrcModuleOrErr);
1834 "Context mismatch");
1838 if (
Error Err = SrcModule->materializeMetadata())
1839 return std::move(Err);
1846 auto GUID =
F.getGUID();
1847 auto MaybeImportType = ImportList.
getImportType(ModName, GUID);
1851 <<
" importing function"
1852 << (ImportDefinition
1854 : (MaybeImportType ?
" declaration " :
" "))
1855 << GUID <<
" " <<
F.getName() <<
" from "
1856 << SrcModule->getSourceFileName() <<
"\n");
1857 if (ImportDefinition) {
1858 if (
Error Err =
F.materialize())
1859 return std::move(Err);
1866 "thinlto_src_module",
1868 {MDString::get(DestModule.getContext(),
1869 SrcModule->getModuleIdentifier())}));
1873 {MDString::get(DestModule.getContext(),
1874 SrcModule->getSourceFileName())}));
1882 auto GUID = GV.getGUID();
1883 auto MaybeImportType = ImportList.
getImportType(ModName, GUID);
1887 <<
" importing global"
1888 << (ImportDefinition
1890 : (MaybeImportType ?
" declaration " :
" "))
1891 << GUID <<
" " << GV.getName() <<
" from "
1892 << SrcModule->getSourceFileName() <<
"\n");
1893 if (ImportDefinition) {
1894 if (
Error Err = GV.materialize())
1895 return std::move(Err);
1896 ImportedGVCount += GlobalsToImport.
insert(&GV);
1900 if (!GA.hasName() || isa<GlobalIFunc>(GA.getAliaseeObject()))
1902 auto GUID = GA.getGUID();
1903 auto MaybeImportType = ImportList.
getImportType(ModName, GUID);
1907 <<
" importing alias"
1908 << (ImportDefinition
1910 : (MaybeImportType ?
" declaration " :
" "))
1911 << GUID <<
" " << GA.getName() <<
" from "
1912 << SrcModule->getSourceFileName() <<
"\n");
1913 if (ImportDefinition) {
1914 if (
Error Err = GA.materialize())
1915 return std::move(Err);
1919 return std::move(Err);
1923 << SrcModule->getSourceFileName() <<
"\n");
1928 "thinlto_src_module",
1930 {MDString::get(DestModule.getContext(),
1931 SrcModule->getModuleIdentifier())}));
1935 {MDString::get(DestModule.getContext(),
1936 SrcModule->getSourceFileName())}));
1938 GlobalsToImport.
insert(Fn);
1950 SrcModule->setPartialSampleProfileRatio(Index);
1958 for (
const auto *GV : GlobalsToImport)
1960 <<
" from " << SrcModule->getSourceFileName() <<
"\n";
1963 if (
Error Err = Mover.
move(std::move(SrcModule),
1967 Twine(
"Function Import: link error: ") +
1970 ImportedCount += GlobalsToImport.
size();
1971 NumImportedModules++;
1976 NumImportedFunctions += (ImportedCount - ImportedGVCount);
1977 NumImportedGlobalVars += ImportedGVCount;
1980 LLVM_DEBUG(
dbgs() <<
"Imported " << ImportedCount - ImportedGVCount
1981 <<
" functions for Module "
1984 <<
" global variables for Module "
1986 return ImportedCount;
1996 if (!IndexPtrOrErr) {
2001 std::unique_ptr<ModuleSummaryIndex> Index = std::move(*IndexPtrOrErr);
2011 *Index, ImportList);
2014 isPrevailing, *Index, ImportList);
2020 for (
auto &
I : *Index) {
2021 for (
auto &S :
I.second.SummaryList) {
2031 errs() <<
"Error renaming module\n";
2036 auto ModuleLoader = [&M](
StringRef Identifier) {
2037 return loadFile(std::string(Identifier), M.getContext());
2046 "Error importing module: ");
static cl::opt< ITMode > IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), cl::values(clEnumValN(DefaultIT, "arm-default-it", "Generate any type of IT block"), clEnumValN(RestrictedIT, "arm-restrict-it", "Disallow complex IT blocks")))
cl::opt< std::string > UseCtxProfile("use-ctx-profile", cl::init(""), cl::Hidden, cl::desc("Use the specified contextual profile file"))
static auto qualifyCalleeCandidates(const ModuleSummaryIndex &Index, ArrayRef< std::unique_ptr< GlobalValueSummary > > CalleeSummaryList, StringRef CallerModulePath)
Given a list of possible callee implementation for a call site, qualify the legality of importing eac...
static cl::opt< bool > EnableImportMetadata("enable-import-metadata", cl::init(false), cl::Hidden, cl::desc("Enable import metadata like 'thinlto_src_module' and " "'thinlto_src_file'"))
static cl::opt< float > ImportColdMultiplier("import-cold-multiplier", cl::init(0), cl::Hidden, cl::value_desc("N"), cl::desc("Multiply the `import-instr-limit` threshold for cold callsites"))
static DenseMap< StringRef, ImportStatistics > collectImportStatistics(const ModuleSummaryIndex &Index, const FunctionImporter::ImportMapTy &ImportList)
static cl::opt< float > ImportHotMultiplier("import-hot-multiplier", cl::init(10.0), cl::Hidden, cl::value_desc("x"), cl::desc("Multiply the `import-instr-limit` threshold for hot callsites"))
static unsigned numGlobalVarSummaries(const ModuleSummaryIndex &Index, FunctionImporter::ExportSetTy &ExportSet)
static bool checkVariableImport(const ModuleSummaryIndex &Index, FunctionImporter::ImportListsTy &ImportLists, DenseMap< StringRef, FunctionImporter::ExportSetTy > &ExportLists)
static bool doImportingForModuleForTest(Module &M, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing)
static cl::opt< float > ImportHotInstrFactor("import-hot-evolution-factor", cl::init(1.0), cl::Hidden, cl::value_desc("x"), cl::desc("As we import functions called from hot callsite, multiply the " "`import-instr-limit` threshold by this factor " "before processing newly imported functions"))
static void computeImportForFunction(const FunctionSummary &Summary, const ModuleSummaryIndex &Index, const unsigned Threshold, const GVSummaryMapTy &DefinedGVSummaries, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, SmallVectorImpl< EdgeInfo > &Worklist, GlobalsImporter &GVImporter, FunctionImporter::ImportMapTy &ImportList, DenseMap< StringRef, FunctionImporter::ExportSetTy > *ExportLists, FunctionImporter::ImportThresholdsTy &ImportThresholds)
Compute the list of functions to import for a given caller.
static cl::opt< float > ImportCriticalMultiplier("import-critical-multiplier", cl::init(100.0), cl::Hidden, cl::value_desc("x"), cl::desc("Multiply the `import-instr-limit` threshold for critical callsites"))
static cl::opt< int > ImportCutoff("import-cutoff", cl::init(-1), cl::Hidden, cl::value_desc("N"), cl::desc("Only import first N functions if N>=0 (default -1)"))
cl::opt< std::string > UseCtxProfile
static const char * getFailureName(FunctionImporter::ImportFailureReason Reason)
static cl::opt< float > ImportInstrFactor("import-instr-evolution-factor", cl::init(0.7), cl::Hidden, cl::value_desc("x"), cl::desc("As we import functions, multiply the " "`import-instr-limit` threshold by this factor " "before processing newly imported functions"))
static void internalizeGVsAfterImport(Module &M)
static cl::opt< bool > PrintImports("print-imports", cl::init(false), cl::Hidden, cl::desc("Print imported functions"))
void updateValueInfoForIndirectCalls(ModuleSummaryIndex &Index, FunctionSummary *FS)
static std::unique_ptr< Module > loadFile(const std::string &FileName, LLVMContext &Context)
static cl::opt< bool > ForceImportAll("force-import-all", cl::init(false), cl::Hidden, cl::desc("Import functions with noinline attribute"))
static bool shouldSkipLocalInAnotherModule(const GlobalValueSummary *RefSummary, size_t NumDefs, StringRef ImporterModule)
static bool isGlobalVarSummary(const ModuleSummaryIndex &Index, ValueInfo VI)
static cl::opt< bool > ImportDeclaration("import-declaration", cl::init(false), cl::Hidden, cl::desc("If true, import function declaration as fallback if the function " "definition is not imported."))
This is a test-only option.
static cl::opt< unsigned > ImportInstrLimit("import-instr-limit", cl::init(100), cl::Hidden, cl::value_desc("N"), cl::desc("Only import functions with less than N instructions"))
Limit on instruction count of imported functions.
static cl::opt< std::string > WorkloadDefinitions("thinlto-workload-def", cl::desc("Pass a workload definition. This is a file containing a JSON " "dictionary. The keys are root functions, the values are lists of " "functions to import in the module defining the root. It is " "assumed -funique-internal-linkage-names was used, to ensure " "local linkage functions have unique names. For example: \n" "{\n" " \"rootFunction_1\": [\"function_to_import_1\", " "\"function_to_import_2\"], \n" " \"rootFunction_2\": [\"function_to_import_3\", " "\"function_to_import_4\"] \n" "}"), cl::Hidden)
Pass a workload description file - an example of workload would be the functions executed to satisfy ...
static cl::opt< bool > ComputeDead("compute-dead", cl::init(true), cl::Hidden, cl::desc("Compute dead symbols"))
static cl::opt< std::string > SummaryFile("summary-file", cl::desc("The summary file to use for function importing."))
Summary file to use for function importing when using -function-import from the command line.
static cl::opt< bool > ImportAllIndex("import-all-index", cl::desc("Import all external functions in index."))
Used when testing importing from distributed indexes via opt.
static cl::opt< bool > PrintImportFailures("print-import-failures", cl::init(false), cl::Hidden, cl::desc("Print information for functions rejected for importing"))
static Function * replaceAliasWithAliasee(Module *SrcModule, GlobalAlias *GA)
Make alias a clone of its aliasee.
static void dumpImportListForModule(const ModuleSummaryIndex &Index, StringRef ModulePath, FunctionImporter::ImportMapTy &ImportList)
static void ComputeCrossModuleImportForModuleFromIndexForTest(StringRef ModulePath, const ModuleSummaryIndex &Index, FunctionImporter::ImportMapTy &ImportList)
Mark all external summaries in Index for import into the given module.
static const GlobalValueSummary * selectCallee(const ModuleSummaryIndex &Index, ArrayRef< std::unique_ptr< GlobalValueSummary > > CalleeSummaryList, unsigned Threshold, StringRef CallerModulePath, const GlobalValueSummary *&TooLargeOrNoInlineSummary, FunctionImporter::ImportFailureReason &Reason)
Given a list of possible callee implementation for a call site, select one that fits the Threshold fo...
static void ComputeCrossModuleImportForModuleForTest(StringRef ModulePath, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, const ModuleSummaryIndex &Index, FunctionImporter::ImportMapTy &ImportList)
Compute all the imports for the given module using the Index.
Module.h This file contains the declarations for the Module class.
This file supports working with JSON data.
block placement Basic Block Placement Stats
static cl::opt< std::string > OutputFilename("o", cl::desc("Output filename"), cl::value_desc("filename"), cl::init("-"))
static cl::opt< bool > PropagateAttrs("propagate-attrs", cl::init(true), cl::Hidden, cl::desc("Propagate attributes in index"))
ModuleSummaryIndex.h This file contains the declarations the classes that hold the module index and s...
Reader for contextual iFDO profile, which comes in bitstream format.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
void visit(MachineFunction &MF, MachineBasicBlock &Start, std::function< void(MachineBasicBlock *)> op)
This file implements a set that has insertion order iteration characteristics.
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)
Import globals referenced by a function or other globals that are being imported, if importing such g...
void onImportingSummary(const GlobalValueSummary &Summary)
GlobalsImporter(const ModuleSummaryIndex &Index, const GVSummaryMapTy &DefinedGVSummaries, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> IsPrevailing, FunctionImporter::ImportMapTy &ImportList, DenseMap< StringRef, FunctionImporter::ExportSetTy > *ExportLists)
Determine the list of imports and exports for each module.
DenseMap< StringRef, FunctionImporter::ExportSetTy > *const ExportLists
virtual ~ModuleImportsManager()=default
static std::unique_ptr< ModuleImportsManager > create(function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> IsPrevailing, const ModuleSummaryIndex &Index, DenseMap< StringRef, FunctionImporter::ExportSetTy > *ExportLists=nullptr)
function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> IsPrevailing
ModuleImportsManager(function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> IsPrevailing, const ModuleSummaryIndex &Index, DenseMap< StringRef, FunctionImporter::ExportSetTy > *ExportLists=nullptr)
const ModuleSummaryIndex & Index
virtual void computeImportForModule(const GVSummaryMapTy &DefinedGVSummaries, StringRef ModName, FunctionImporter::ImportMapTy &ImportList)
Given the list of globals defined in a module, compute the list of imports as well as the list of "ex...
A ModuleImportsManager that operates based on a workload definition (see -thinlto-workload-def).
WorkloadImportsManager(function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> IsPrevailing, const ModuleSummaryIndex &Index, DenseMap< StringRef, FunctionImporter::ExportSetTy > *ExportLists)
A container for analyses that lazily runs them and caches their results.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
iterator find(const_arg_type_t< KeyT > Val)
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
const ValueT & at(const_arg_type_t< KeyT > Val) const
at - Return the entry for the specified key, or abort if no such entry exists.
std::pair< iterator, bool > insert(const std::pair< KeyT, ValueT > &KV)
Implements a dense probed hash-table based set.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
Error takeError()
Take ownership of the stored error.
PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
std::pair< ImportIDTy, ImportIDTy > createImportIDs(StringRef FromModule, GlobalValue::GUID GUID)
The map maintains the list of imports.
AddDefinitionStatus addDefinition(StringRef FromModule, GlobalValue::GUID GUID)
void addGUID(StringRef FromModule, GlobalValue::GUID GUID, GlobalValueSummary::ImportKind ImportKind)
SmallVector< StringRef, 0 > getSourceModules() const
std::optional< GlobalValueSummary::ImportKind > getImportType(StringRef FromModule, GlobalValue::GUID GUID) const
void maybeAddDeclaration(StringRef FromModule, GlobalValue::GUID GUID)
The function importer is automatically importing function from other modules based on the provided su...
Expected< bool > importFunctions(Module &M, const ImportMapTy &ImportList)
Import functions in Module M based on the supplied import list.
ImportFailureReason
The different reasons selectCallee will chose not to import a candidate.
@ LocalLinkageNotInModule
Function summary information to aid decisions and implementation of importing.
unsigned instCount() const
Get the instruction count recorded for this function.
FFlags fflags() const
Get function summary flags.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
const GlobalObject * getAliaseeObject() const
Function and variable summary information to aid decisions and implementation of importing.
StringRef modulePath() const
Get the path to the module containing this function.
GlobalValue::LinkageTypes linkage() const
Return linkage type recorded for this global value.
VisibilityTypes getVisibility() const
bool isImplicitDSOLocal() const
static bool isLocalLinkage(LinkageTypes Linkage)
bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
LinkageTypes getLinkage() const
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
ThreadLocalMode getThreadLocalMode() const
static bool isAvailableExternallyLinkage(LinkageTypes Linkage)
static GUID getGUID(StringRef GlobalName)
Return a 64-bit global unique ID constructed from global value name (i.e.
void setLinkage(LinkageTypes LT)
unsigned getAddressSpace() const
GUID getGUID() const
Return a 64-bit global unique ID constructed from global value name (i.e.
Module * getParent()
Get the module that this global value is contained inside of...
const GlobalObject * getAliaseeObject() const
void setDSOLocal(bool Local)
PointerType * getType() const
Global values are always pointers.
@ DefaultVisibility
The GV is visible.
@ HiddenVisibility
The GV is hidden.
void setVisibility(VisibilityTypes V)
static bool isInterposableLinkage(LinkageTypes Linkage)
Whether the definition of this global may be replaced by something non-equivalent at link time.
Error materialize()
Make sure this GlobalValue is fully read.
bool canBeOmittedFromSymbolTable() const
True if GV can be left out of the object symbol table.
bool hasAvailableExternallyLinkage() const
std::string getGlobalIdentifier() const
Return the modified name for this global value suitable to be used as the key for a global lookup (e....
@ InternalLinkage
Rename collisions when linking (static functions).
@ WeakODRLinkage
Same, but only replaced by something equivalent.
@ ExternalLinkage
Externally visible function.
@ AvailableExternallyLinkage
Available for inspection, not emission.
@ LinkOnceODRLinkage
Same, but only replaced by something equivalent.
Type * getValueType() const
Error move(std::unique_ptr< Module > Src, ArrayRef< GlobalValue * > ValuesToLink, LazyCallback AddLazyFor, bool IsPerformingImport)
Move in the provide values in ValuesToLink from Src.
This is an important class for using LLVM in a threaded context.
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
static ErrorOr< std::unique_ptr< MemoryBuffer > > getFileOrSTDIN(const Twine &Filename, bool IsText=false, bool RequiresNullTerminator=true, std::optional< Align > Alignment=std::nullopt)
Open the specified file as a MemoryBuffer, or open stdin if the Filename is "-".
Class to hold module path string table and global value map, and encapsulate methods for operating on...
static StringRef getOriginalNameBeforePromote(StringRef Name)
Helper to obtain the unpromoted name for a global value (or the original name if not promoted).
A Module instance is used to store all the information related to an LLVM module.
LLVMContext & getContext() const
Get the global data context.
const std::string & getSourceFileName() const
Get the module's original source file name.
iterator_range< alias_iterator > aliases()
iterator_range< global_iterator > globals()
const std::string & getModuleIdentifier() const
Get the module identifier which is, essentially, the name of the module.
iterator_range< global_object_iterator > global_objects()
Expected< std::map< GlobalValue::GUID, PGOCtxProfContext > > loadContexts()
unsigned getAddressSpace() const
Return the address space of the Pointer 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.
Instances of this class encapsulate one diagnostic report, allowing printing to a raw_ostream as a ca...
A vector that has set insertion semantics.
ArrayRef< value_type > getArrayRef() const
size_type size() const
Determine the number of elements in the SetVector.
Vector takeVector()
Clear the SetVector and return the underlying vector.
void clear()
Completely clear the SetVector.
bool insert(const value_type &X)
Insert a new element into the SetVector.
This class consists of common code factored out of the SmallVector class to reduce code duplication b...
reference emplace_back(ArgTypes &&... Args)
void reserve(size_type N)
void push_back(const T &Elt)
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringMap - This is an unconventional map that is specialized for handling keys that are "strings",...
iterator find(StringRef Key)
size_type count(StringRef Key) const
count - Return 1 if the element is in the map, 0 otherwise.
bool insert(MapEntryTy *KeyValue)
insert - Insert the specified key/value pair into the map.
StringRef - Represent a constant reference to a string, i.e.
constexpr size_t size() const
size - Get the string size.
char front() const
front - Get the first character in the string.
StringSet - A wrapper for StringMap that provides set-like functionality.
std::pair< typename Base::iterator, bool > insert(StringRef key)
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.
bool isFunctionTy() const
True if this is an instance of FunctionType.
void replaceAllUsesWith(Value *V)
Change all uses of this to point to a new Value.
StringRef getName() const
Return a constant reference to the value's name.
void takeName(Value *V)
Transfer the name from V to this value.
std::pair< iterator, bool > insert(const ValueT &V)
bool erase(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.
The root is the trivial Path to the root value.
A raw_ostream that writes to a file descriptor.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
initializer< Ty > init(const Ty &Val)
llvm::Expected< Value > parse(llvm::StringRef JSON)
Parses the provided JSON source, or returns a ParseError.
bool fromJSON(const Value &E, std::string &Out, Path P)
@ OF_Text
The file should be opened in text mode on platforms like z/OS that make this distinction.
This is an optimization pass for GlobalISel generic memory operations.
void logAllUnhandledErrors(Error E, raw_ostream &OS, Twine ErrorBanner={})
Log all errors (if any) in E to OS.
Error createFileError(const Twine &F, Error E)
Concatenate a source file path and/or name with an Error.
bool internalizeModule(Module &TheModule, std::function< bool(const GlobalValue &)> MustPreserveGV)
Helper function to internalize functions and variables in a Module.
std::error_code make_error_code(BitcodeError E)
const char * getHotnessName(CalleeInfo::HotnessType HT)
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...
bool convertToDeclaration(GlobalValue &GV)
Converts value GV to declaration, or replaces with a declaration if it is an alias.
Error createStringError(std::error_code EC, char const *Fmt, const Ts &... Vals)
Create formatted StringError object.
auto map_range(ContainerTy &&C, FuncTy F)
void ComputeCrossModuleImport(const ModuleSummaryIndex &Index, const DenseMap< StringRef, GVSummaryMapTy > &ModuleToDefinedGVSummaries, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, FunctionImporter::ImportListsTy &ImportLists, DenseMap< StringRef, FunctionImporter::ExportSetTy > &ExportLists)
Compute all the imports and exports for every module in the Index.
bool renameModuleForThinLTO(Module &M, const ModuleSummaryIndex &Index, bool ClearDSOLocalOnDeclarations, SetVector< GlobalValue * > *GlobalsToImport=nullptr)
Perform in-place global value handling on the given Module for exported local functions renamed and p...
bool any_of(R &&range, UnaryPredicate P)
Provide wrappers to std::any_of which take ranges instead of having to pass begin/end explicitly.
void sort(IteratorTy Start, IteratorTy End)
void computeDeadSymbolsAndUpdateIndirectCalls(ModuleSummaryIndex &Index, const DenseSet< GlobalValue::GUID > &GUIDPreservedSymbols, function_ref< PrevailingType(GlobalValue::GUID)> isPrevailing)
Compute all the symbols that are "dead": i.e these that can't be reached in the graph from any of the...
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
bool hasSingleElement(ContainerTy &&C)
Returns true if the given container only contains a single element.
iterator_range< filter_iterator< detail::IterOfRange< RangeT >, PredicateT > > make_filter_range(RangeT &&Range, PredicateT Pred)
Convenience function that takes a range of elements and a predicate, and return a new filter_iterator...
void updateIndirectCalls(ModuleSummaryIndex &Index)
Update call edges for indirect calls to local functions added from SamplePGO when needed.
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ Ref
The access may reference the value stored in memory.
cl::opt< bool > EnableMemProfContextDisambiguation
Enable MemProf context disambiguation for thin link.
std::unique_ptr< Module > getLazyIRFileModule(StringRef Filename, SMDiagnostic &Err, LLVMContext &Context, bool ShouldLazyLoadMetadata=false)
If the given file holds a bitcode image, return a Module for it which does lazy deserialization of fu...
void thinLTOInternalizeModule(Module &TheModule, const GVSummaryMapTy &DefinedGlobals)
Internalize TheModule based on the information recorded in the summaries during global summary-based ...
std::unordered_set< GlobalValueSummary * > GVSummaryPtrSet
A set of global value summary pointers.
void gatherImportedSummariesForModule(StringRef ModulePath, const DenseMap< StringRef, GVSummaryMapTy > &ModuleToDefinedGVSummaries, const FunctionImporter::ImportMapTy &ImportList, ModuleToSummariesForIndexTy &ModuleToSummariesForIndex, GVSummaryPtrSet &DecSummaries)
Compute the set of summaries needed for a ThinLTO backend compilation of ModulePath.
std::map< std::string, GVSummaryMapTy, std::less<> > ModuleToSummariesForIndexTy
Map of a module name to the GUIDs and summaries we will import from that module.
PrevailingType
PrevailingType enum used as a return type of callback passed to computeDeadSymbolsAndUpdateIndirectCa...
const char * toString(DWARFSectionKind Kind)
Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
bool UpgradeDebugInfo(Module &M)
Check the debug info version number, if it is out-dated, drop the debug info.
Function * CloneFunction(Function *F, ValueToValueMapTy &VMap, ClonedCodeInfo *CodeInfo=nullptr)
Return a copy of the specified function and add it to that function's module.
void computeDeadSymbolsWithConstProp(ModuleSummaryIndex &Index, const DenseSet< GlobalValue::GUID > &GUIDPreservedSymbols, function_ref< PrevailingType(GlobalValue::GUID)> isPrevailing, bool ImportEnabled)
Compute dead symbols and run constant propagation in combined index after that.
Error EmitImportsFiles(StringRef ModulePath, StringRef OutputFilename, const ModuleToSummariesForIndexTy &ModuleToSummariesForIndex)
Emit into OutputFilename the files module ModulePath will import from.
Expected< std::unique_ptr< ModuleSummaryIndex > > getModuleSummaryIndexForFile(StringRef Path, bool IgnoreEmptyThinLTOIndexFile=false)
Parse the module summary index out of an IR file and return the module summary index object if found,...
DenseMap< GlobalValue::GUID, GlobalValueSummary * > GVSummaryMapTy
Map of global value GUID to its summary, used to identify values defined in a particular module,...
void thinLTOFinalizeInModule(Module &TheModule, const GVSummaryMapTy &DefinedGlobals, bool PropagateAttrs)
Based on the information recorded in the summaries during global summary-based analysis:
Struct that holds a reference to a particular GUID in a global value summary.