27#include "llvm/Config/llvm-config.h"
56#include "llvm/Support/VCSRevision.h"
72#define DEBUG_TYPE "lto"
74Error LTO::setupOptimizationRemarks() {
81 return DiagFileOrErr.takeError();
83 DiagnosticOutputFile = std::move(*DiagFileOrErr);
90 if (!LinkerRemarkFunction) {
91 DummyModule = std::make_unique<Module>(
"remark_dummy",
RegularLTO.
Ctx);
109 cl::desc(
"Dump the SCCs in the ThinLTO index's callgraph"));
120 cl::desc(
"Enable global value internalization in LTO"));
124 cl::desc(
"Keep copies of symbols in LTO indexing"));
141 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
152 Hasher.
update(LLVM_VERSION_STRING);
154 Hasher.
update(LLVM_REVISION);
162 auto AddUnsigned = [&](
unsigned I) {
167 auto AddUint64 = [&](uint64_t
I) {
172 auto AddUint8 = [&](
const uint8_t I) {
196 AddUnsigned(
static_cast<int>(Conf.
CGOptLevel));
197 AddUnsigned(
static_cast<int>(Conf.
CGFileType));
205 AddUint8(Conf.
Dtlto);
208 auto ModHash = Index.getModuleHash(ModuleID);
213 std::vector<uint64_t> ExportsGUID;
214 ExportsGUID.reserve(ExportList.
size());
215 for (
const auto &VI : ExportList)
216 ExportsGUID.push_back(VI.getGUID());
220 for (
auto GUID : ExportsGUID)
225 auto Comp = [&](
const std::pair<StringRef, GlobalValue::GUID> &L,
226 const std::pair<StringRef, GlobalValue::GUID> &R) {
227 return std::make_pair(Index.getModule(L.first)->second, L.second) <
228 std::make_pair(Index.getModule(R.first)->second, R.second);
234 for (
const auto &[FromModule, GUID,
Type] : SortedImportList)
235 ++ModuleToNumImports[FromModule];
237 std::optional<StringRef> LastModule;
238 for (
const auto &[FromModule, GUID,
Type] : SortedImportList) {
239 if (LastModule != FromModule) {
243 LastModule = FromModule;
244 auto ModHash = Index.getModule(FromModule)->second;
246 AddUint64(ModuleToNumImports[FromModule]);
253 for (
auto &Entry : ResolvedODR) {
262 std::set<GlobalValue::GUID> UsedCfiDefs;
263 std::set<GlobalValue::GUID> UsedCfiDecls;
266 std::set<GlobalValue::GUID> UsedTypeIds;
269 if (CfiFunctionDefs.
contains(ValueGUID))
270 UsedCfiDefs.insert(ValueGUID);
271 if (CfiFunctionDecls.
contains(ValueGUID))
272 UsedCfiDecls.insert(ValueGUID);
277 AddUnsigned(GS->getVisibility());
278 AddUnsigned(GS->isLive());
279 AddUnsigned(GS->canAutoHide());
281 AddUnsigned(VI.isDSOLocal(Index.withDSOLocalPropagation()));
282 AddUsedCfiGlobal(VI.getGUID());
285 AddUnsigned(GVS->maybeReadOnly());
286 AddUnsigned(GVS->maybeWriteOnly());
289 for (
auto &TT : FS->type_tests())
290 UsedTypeIds.insert(TT);
291 for (
auto &TT : FS->type_test_assume_vcalls())
292 UsedTypeIds.insert(TT.GUID);
293 for (
auto &TT : FS->type_checked_load_vcalls())
294 UsedTypeIds.insert(TT.GUID);
295 for (
auto &TT : FS->type_test_assume_const_vcalls())
296 UsedTypeIds.insert(TT.VFunc.GUID);
297 for (
auto &TT : FS->type_checked_load_const_vcalls())
298 UsedTypeIds.insert(TT.VFunc.GUID);
299 for (
auto &ET : FS->calls()) {
300 AddUnsigned(ET.first.isDSOLocal(Index.withDSOLocalPropagation()));
301 AddUsedCfiGlobal(ET.first.getGUID());
309 SortedDefinedGlobals(DefinedGlobals.
begin(), DefinedGlobals.
end());
311 for (
auto &GS : SortedDefinedGlobals) {
317 AddUsedCfiGlobal(GS.first);
318 AddUsedThings(GS.second);
323 for (
const auto &[FromModule, GUID,
Type] : SortedImportList) {
329 AddUsedThings(AS->getBaseObject());
335 AddUnsigned(S.TTRes.TheKind);
336 AddUnsigned(S.TTRes.SizeM1BitWidth);
338 AddUint64(S.TTRes.AlignLog2);
339 AddUint64(S.TTRes.SizeM1);
340 AddUint64(S.TTRes.BitMask);
341 AddUint64(S.TTRes.InlineBits);
343 AddUint64(S.WPDRes.size());
344 for (
auto &WPD : S.WPDRes) {
345 AddUnsigned(WPD.first);
346 AddUnsigned(WPD.second.TheKind);
347 AddString(WPD.second.SingleImplName);
349 AddUint64(WPD.second.ResByArg.size());
350 for (
auto &ByArg : WPD.second.ResByArg) {
351 AddUint64(ByArg.first.size());
352 for (uint64_t Arg : ByArg.first)
354 AddUnsigned(ByArg.second.TheKind);
355 AddUint64(ByArg.second.Info);
356 AddUnsigned(ByArg.second.Byte);
357 AddUnsigned(ByArg.second.Bit);
364 auto TidIter = Index.typeIds().equal_range(TId);
366 AddTypeIdSummary(
I.second.first,
I.second.second);
369 AddUnsigned(UsedCfiDefs.size());
370 for (
auto &V : UsedCfiDefs)
373 AddUnsigned(UsedCfiDecls.size());
374 for (
auto &V : UsedCfiDecls)
380 Hasher.
update(FileOrErr.get()->getBuffer());
385 Hasher.
update(FileOrErr.get()->getBuffer());
416 C.VisibilityScheme ==
Config::ELF ? VI.getELFVisibility()
418 for (
auto &S : VI.getSummaryList()) {
433 if (isPrevailing(VI.getGUID(), S.get())) {
434 assert(!S->wasPromoted() &&
435 "promoted symbols used to be internal linkage and shouldn't have "
436 "a prevailing variant");
449 S->setCanAutoHide(VI.canAutoHide() &&
450 !GUIDPreservedSymbols.
count(VI.getGUID()));
453 Visibility = S->getVisibility();
470 S->setVisibility(Visibility);
472 if (S->linkage() != OriginalLinkage)
473 recordNewLinkage(S->modulePath(), VI.getGUID(), S->linkage());
477 for (
auto &S : VI.getSummaryList()) {
482 S->setVisibility(Visibility);
504 for (
auto &
I : Index)
505 for (
auto &S :
I.second.getSummaryList())
507 GlobalInvolvedWithAlias.
insert(&AS->getAliasee());
509 for (
auto &
I : Index)
511 GlobalInvolvedWithAlias, isPrevailing,
512 recordNewLinkage, GUIDPreservedSymbols);
524 const bool SingleExternallyVisibleCopy =
525 VI.getSummaryList().size() == 1 &&
528 bool NameRecorded =
false;
529 for (
auto &S : VI.getSummaryList()) {
532 if (isExported(S->modulePath(), VI)) {
538 if (ExternallyVisibleSymbolNamesPtr && !NameRecorded) {
540 if (ExternallyVisibleSymbolNamesPtr->
insert(VI.name()).second)
541 S->setNoRenameOnPromotion(
true);
604 if (SingleExternallyVisibleCopy && isPrevailing(VI.getGUID(), S.get()))
617 assert(!Index.withInternalizeAndPromote());
619 for (
auto &
I : Index)
622 ExternallyVisibleSymbolNamesPtr);
623 Index.setWithInternalizeAndPromote();
630 std::unique_ptr<InputFile> File(
new InputFile);
636 File->TargetTriple = FOrErr->TheReader.getTargetTriple();
637 File->SourceFileName = FOrErr->TheReader.getSourceFileName();
638 File->COFFLinkerOpts = FOrErr->TheReader.getCOFFLinkerOpts();
639 File->DependentLibraries = FOrErr->TheReader.getDependentLibraries();
640 File->ComdatTable = FOrErr->TheReader.getComdatTable();
644 for (
unsigned I = 0;
I != FOrErr->Mods.size(); ++
I) {
645 size_t Begin = File->Symbols.size();
647 FOrErr->TheReader.module_symbols(
I))
650 if (Sym.isGlobal() && !Sym.isFormatSpecific())
651 File->Symbols.push_back(Sym);
652 File->ModuleSymIndices.push_back({Begin, File->Symbols.size()});
655 File->Mods = FOrErr->Mods;
656 File->Strtab = std::move(FOrErr->Strtab);
657 return std::move(File);
669 return Mods[0].getModuleIdentifier();
673 assert(Mods.size() == 1 &&
"Expect only one bitcode module");
701 Alloc = std::make_unique<BumpPtrAllocator>();
702 GlobalResolutionSymbolSaver = std::make_unique<llvm::StringSaver>(*Alloc);
711 LinkerRemarkFunction =
nullptr;
719 unsigned Partition,
bool InSummary,
722 auto *ResI = Res.
begin();
723 auto *ResE = Res.
end();
734 if (GlobalResolutionSymbolSaver && !GlobalResolutions->contains(SymbolName))
735 SymbolName = GlobalResolutionSymbolSaver->save(SymbolName);
737 auto &GlobalRes = (*GlobalResolutions)[SymbolName];
738 GlobalRes.UnnamedAddr &= Sym.isUnnamedAddr();
740 assert(!GlobalRes.Prevailing &&
741 "Multiple prevailing defs are not allowed");
742 GlobalRes.Prevailing =
true;
743 GlobalRes.IRName = std::string(Sym.getIRName());
744 }
else if (!GlobalRes.Prevailing && GlobalRes.IRName.empty()) {
751 GlobalRes.IRName = std::string(Sym.getIRName());
766 if (GlobalRes.IRName != Sym.getIRName()) {
767 GlobalRes.Partition = GlobalResolution::External;
768 GlobalRes.VisibleOutsideSummary =
true;
771 bool IsLibcall = Sym.isLibcall(TLI, Libcalls);
779 (GlobalRes.Partition != GlobalResolution::Unknown &&
780 GlobalRes.Partition != Partition)) {
781 GlobalRes.Partition = GlobalResolution::External;
784 GlobalRes.Partition = Partition;
788 GlobalRes.VisibleOutsideSummary |=
795void LTO::releaseGlobalResolutionsMemory() {
797 GlobalResolutions.reset();
799 GlobalResolutionSymbolSaver.reset();
807 auto ResI = Res.
begin();
812 OS <<
"-r=" << Path <<
',' << Sym.getName() <<
',';
830 assert(!CalledGetMaxTasks);
836 InputFile *
Input = (*InputOrErr).get();
838 if (
Conf.ResolutionFile)
841 if (
RegularLTO.CombinedModule->getTargetTriple().empty()) {
843 RegularLTO.CombinedModule->setTargetTriple(InputTriple);
849 for (
unsigned I = 0;
I !=
Input->Mods.size(); ++
I) {
850 if (
auto Err = addModule(*
Input, InputRes,
I, Res).moveInto(Res))
860 "bitcode libfuncs were set twice; maybe accidentally clobbered?");
861 this->BitcodeLibFuncs.append(BitcodeLibFuncs.begin(), BitcodeLibFuncs.end());
872 if (EnableSplitLTOUnit) {
876 if (*EnableSplitLTOUnit != LTOInfo->EnableSplitLTOUnit)
879 EnableSplitLTOUnit = LTOInfo->EnableSplitLTOUnit;
884 !LTOInfo->UnifiedLTO)
886 "unified LTO compilation must use "
887 "compatible bitcode modules (use -funified-lto)",
897 Input.IsThinLTO |= IsThinLTO;
899 auto ModSyms =
Input.module_symbols(ModI);
900 addModuleToGlobalRes(ModSyms, Res,
902 LTOInfo->HasSummary,
Triple(
Input.getTargetTriple()));
905 return addThinLTO(BM, ModSyms, Res);
908 auto ModOrErr = addRegularLTO(
Input, InputRes, BM, ModSyms, Res);
910 return ModOrErr.takeError();
911 Res = ModOrErr->second;
913 if (!LTOInfo->HasSummary) {
914 if (
Error Err = linkRegularLTO(std::move(ModOrErr->first),
940 std::set<const Comdat *> &NonPrevailingComdats) {
945 if (!NonPrevailingComdats.count(
C))
955 GO->setComdat(
nullptr);
962 std::pair<LTO::RegularLTOState::AddedModule, ArrayRef<SymbolResolution>>>
966 llvm::TimeTraceScope timeScope(
"LTO add regular LTO");
968 Expected<std::unique_ptr<Module>> MOrErr =
974 Mod.M = std::move(*MOrErr);
976 if (
Error Err =
M.materializeMetadata())
977 return std::move(Err);
983 if (NamedMDNode *CfiFunctionsMD =
M.getNamedMetadata(
"cfi.functions"))
984 M.eraseNamedMetadata(CfiFunctionsMD);
985 }
else if (NamedMDNode *AliasesMD =
M.getNamedMetadata(
"aliases")) {
988 DenseSet<StringRef> Prevailing;
990 if (
R.Prevailing && !
I.getIRName().empty())
991 Prevailing.
insert(
I.getIRName());
992 std::vector<MDNode *> AliasGroups;
993 for (MDNode *AliasGroup : AliasesMD->operands()) {
994 std::vector<Metadata *> Aliases;
995 for (
Metadata *Alias : AliasGroup->operands()) {
998 Aliases.push_back(Alias);
1000 if (Aliases.size() > 1)
1003 AliasesMD->clearOperands();
1004 for (MDNode *
G : AliasGroups)
1005 AliasesMD->addOperand(
G);
1010 ModuleSymbolTable SymTab;
1013 for (GlobalVariable &GV :
M.globals())
1014 if (GV.hasAppendingLinkage())
1015 Mod.Keep.push_back(&GV);
1017 DenseSet<GlobalObject *> AliasedGlobals;
1018 for (
auto &GA :
M.aliases())
1019 if (GlobalObject *GO = GA.getAliaseeObject())
1020 AliasedGlobals.
insert(GO);
1029 auto MsymI = SymTab.
symbols().begin(), MsymE = SymTab.
symbols().end();
1031 while (MsymI != MsymE) {
1041 std::set<const Comdat *> NonPrevailingComdats;
1042 SmallSet<StringRef, 2> NonPrevailingAsmSymbols;
1043 for (
const InputFile::Symbol &Sym : Syms) {
1053 if (Sym.isUndefined())
1055 Mod.Keep.push_back(GV);
1059 if (
R.LinkerRedefined)
1067 (GV->hasLinkOnceODRLinkage() || GV->hasWeakODRLinkage() ||
1068 GV->hasAvailableExternallyLinkage()) &&
1075 Mod.Keep.push_back(GV);
1077 if (GV->hasComdat())
1078 NonPrevailingComdats.insert(GV->getComdat());
1083 if (
R.FinalDefinitionInLinkageUnit) {
1084 GV->setDSOLocal(
true);
1085 if (GV->hasDLLImportStorageClass())
1087 DefaultStorageClass);
1089 }
else if (
auto *AS =
1093 NonPrevailingAsmSymbols.
insert(AS->first);
1101 if (Sym.isCommon()) {
1104 auto &CommonRes =
RegularLTO.Commons[std::string(Sym.getIRName())];
1105 CommonRes.Size = std::max(CommonRes.Size, Sym.getCommonSize());
1106 if (uint32_t SymAlignValue = Sym.getCommonAlignment()) {
1107 CommonRes.Alignment =
1108 std::max(
Align(SymAlignValue), CommonRes.Alignment);
1110 CommonRes.Prevailing |=
R.Prevailing;
1114 if (!
M.getComdatSymbolTable().empty())
1115 for (GlobalValue &GV :
M.global_values())
1120 if (
M.hasModuleInlineAsm()) {
1121 std::string NewIA =
".lto_discard";
1122 if (!NonPrevailingAsmSymbols.
empty()) {
1125 M, [&](StringRef Name, StringRef Alias) {
1126 if (!NonPrevailingAsmSymbols.
count(Alias))
1127 NonPrevailingAsmSymbols.
erase(Name);
1129 NewIA +=
" " +
llvm::join(NonPrevailingAsmSymbols,
", ");
1132 M.prependModuleInlineAsm(NewIA);
1136 return std::make_pair(std::move(
Mod), Res);
1139Error LTO::linkRegularLTO(RegularLTOState::AddedModule
Mod,
1140 bool LivenessFromIndex) {
1141 llvm::TimeTraceScope timeScope(
"LTO link regular LTO");
1142 std::vector<GlobalValue *>
Keep;
1143 for (GlobalValue *GV :
Mod.Keep) {
1144 if (LivenessFromIndex) {
1146 if (!
ThinLTO.CombinedIndex.isGUIDLive(GUID)) {
1148 if (DiagnosticOutputFile) {
1149 if (
Error Err =
F->materialize())
1151 auto R = OptimizationRemark(
DEBUG_TYPE,
"deadfunction",
F);
1152 R <<
ore::NV(
"Function",
F) <<
" not added to the combined module ";
1167 GlobalValue *CombinedGV =
1180Expected<ArrayRef<SymbolResolution>>
1183 llvm::TimeTraceScope timeScope(
"LTO add thin LTO");
1186 DenseSet<StringRef> Prevailing;
1187 for (
const InputFile::Symbol &Sym : Syms) {
1190 if (!Sym.getIRName().empty() &&
R.Prevailing)
1191 Prevailing.
insert(Sym.getIRName());
1195 StringMap<GlobalValue::GUID> IRSpecifiedGUIDs;
1198 [&](StringRef Name) { return (Prevailing.count(Name) > 0); },
1200 auto IT = IRSpecifiedGUIDs.insert({VI.name(), VI.getGUID()});
1203 if (
auto GRIt = GlobalResolutions->find(
VI.name());
1204 GRIt != GlobalResolutions->end() &&
1205 Prevailing.
count(
VI.name())) {
1206 GRIt->second.setGUID(VI.getGUID());
1215 auto GUIDIter = IRSpecifiedGUIDs.
find(Sym.getIRName());
1220 GUIDIter == IRSpecifiedGUIDs.
end()
1225 if (!Sym.getIRName().empty() &&
1226 (
R.Prevailing ||
R.FinalDefinitionInLinkageUnit)) {
1228 ThinLTO.setPrevailingModuleForGUID(GUID, BMID);
1233 if (
R.LinkerRedefined)
1234 if (
auto *S = ThinLTO.CombinedIndex.findSummaryInModule(GUID, BMID))
1240 if (
R.FinalDefinitionInLinkageUnit) {
1241 if (
auto *S = ThinLTO.CombinedIndex.findSummaryInModule(GUID, BMID)) {
1242 S->setDSOLocal(
true);
1248 if (!ThinLTO.ModuleMap.insert({BMID, BM}).second)
1250 "Expected at most one ThinLTO module per bitcode file",
1253 if (!Conf.ThinLTOModulesToCompile.empty()) {
1254 if (!ThinLTO.ModulesToCompile)
1255 ThinLTO.ModulesToCompile = ModuleMapType();
1258 for (
const std::string &Name : Conf.ThinLTOModulesToCompile) {
1259 if (BMID.contains(Name)) {
1260 ThinLTO.ModulesToCompile->insert({BMID, BM});
1261 LLVM_DEBUG(
dbgs() <<
"[ThinLTO] Selecting " << BMID <<
" to compile\n");
1271 CalledGetMaxTasks =
true;
1272 auto ModuleCount =
ThinLTO.ModulesToCompile ?
ThinLTO.ModulesToCompile->size()
1274 return RegularLTO.ParallelCodeGenParallelismLevel + ModuleCount;
1279Error LTO::checkPartiallySplit() {
1289 Combined, Intrinsic::type_checked_load_relative);
1293 if ((TypeTestFunc && !TypeTestFunc->
use_empty()) ||
1294 (TypeCheckedLoadFunc && !TypeCheckedLoadFunc->
use_empty()) ||
1295 (TypeCheckedLoadRelativeFunc &&
1296 !TypeCheckedLoadRelativeFunc->
use_empty()))
1298 "inconsistent LTO Unit splitting (recompile with -fsplit-lto-unit)",
1304 for (
auto &S :
P.second.getSummaryList()) {
1308 if (!FS->type_test_assume_vcalls().empty() ||
1309 !FS->type_checked_load_vcalls().empty() ||
1310 !FS->type_test_assume_const_vcalls().empty() ||
1311 !FS->type_checked_load_const_vcalls().empty() ||
1312 !FS->type_tests().empty())
1314 "inconsistent LTO Unit splitting (recompile with -fsplit-lto-unit)",
1329 for (
auto &Res : *GlobalResolutions) {
1332 if (Res.second.IRName.
empty())
1337 if (Res.second.VisibleOutsideSummary && Res.second.Prevailing)
1338 GUIDPreservedSymbols.insert(GUID);
1340 if (Res.second.ExportDynamic)
1341 DynamicExportSymbols.insert(GUID);
1343 GUIDPrevailingResolutions[GUID] =
1348 auto It = GUIDPrevailingResolutions.
find(
G);
1349 if (It == GUIDPrevailingResolutions.
end())
1354 isPrevailing,
Conf.OptLevel > 0);
1358 if (!StatsFileOrErr)
1359 return StatsFileOrErr.takeError();
1360 std::unique_ptr<ToolOutputFile> StatsFile = std::move(StatsFileOrErr.get());
1362 if (
Error Err = setupOptimizationRemarks())
1371 ThinLTO.CombinedIndex.setWithSupportsHotColdNew();
1373 Error Result = runRegularLTO(AddStream);
1377 Result = runThinLTO(AddStream, Cache, GUIDPreservedSymbols);
1394 if (
Error Err = linkRegularLTO(std::move(M),
true))
1402 if (
Error Err = checkPartiallySplit())
1409 if (!
I.second.Prevailing)
1424 GV->setAlignment(
I.second.Alignment);
1434 bool WholeProgramVisibilityEnabledInLTO =
1435 Conf.HasWholeProgramVisibility &&
1438 (!
Conf.ValidateAllVtablesHaveTypeInfos ||
Conf.AllVtablesHaveTypeInfos);
1442 auto IsVisibleToRegularObj = [&](StringRef
name) {
1443 auto It = GlobalResolutions->find(
name);
1444 return (It == GlobalResolutions->end() ||
1445 It->second.VisibleOutsideSummary || !It->second.Prevailing);
1451 *
RegularLTO.CombinedModule, WholeProgramVisibilityEnabledInLTO,
1452 DynamicExportSymbols,
Conf.ValidateAllVtablesHaveTypeInfos,
1453 IsVisibleToRegularObj);
1455 WholeProgramVisibilityEnabledInLTO);
1457 if (
Conf.PreOptModuleHook &&
1461 if (!
Conf.CodeGenOnly) {
1462 for (
const auto &R : *GlobalResolutions) {
1464 RegularLTO.CombinedModule->getNamedValue(
R.second.IRName);
1465 if (!
R.second.isPrevailingIRSymbol())
1467 if (
R.second.Partition != 0 &&
1468 R.second.Partition != GlobalResolution::External)
1496 if (
Conf.PostInternalizeModuleHook &&
1501 if (!
RegularLTO.EmptyCombinedModule ||
Conf.AlwaysEmitRegularLTOObj) {
1521 return LibcallSymbols;
1526 auto TLII = std::make_unique<TargetLibraryInfoImpl>(TT);
1529 LibFuncSymbols.
reserve(LibFunc::NumLibFuncs);
1530 for (
unsigned I = LibFunc::Begin_LibFunc;
I != LibFunc::End_LibFunc; ++
I) {
1531 LibFunc
F =
static_cast<LibFunc
>(
I);
1535 return LibFuncSymbols;
1541 return emitFiles(ImportList, Task, ModulePath, NewModulePath,
1542 NewModulePath +
".thinlto.bc");
1554 ImportList, ModuleToSummariesForIndex,
1555 DeclarationSummaries);
1558 std::unique_ptr<raw_pwrite_stream> OS;
1559 if (
Conf.GetSummaryIndexOutputStream) {
1560 OS =
Conf.GetSummaryIndexOutputStream(Task);
1561 assert(OS &&
"GetSummaryIndexOutputStream returned null");
1563 auto FileOS = std::make_unique<raw_fd_ostream>(SummaryPath, EC,
1567 OS = std::move(FileOS);
1571 &DeclarationSummaries);
1574 if (
Conf.GetImportsListOutputArray) {
1575 std::vector<std::string> &ImportsListRef =
1576 Conf.GetImportsListOutputArray(Task);
1578 ModulePath, ModuleToSummariesForIndex,
1579 [&](
StringRef M) { ImportsListRef.push_back(M.str()); });
1582 ModuleToSummariesForIndex))
1595 bool ShouldEmitIndexFiles;
1604 OnWrite, ShouldEmitImportsFiles, ThinLTOParallelism),
1605 ShouldEmitIndexFiles(ShouldEmitIndexFiles) {
1607 CfiFunctionDefs.
insert_range(Defs.getExportedThinLTOGUIDs());
1609 CfiFunctionDecls.
insert_range(Decls.getExportedThinLTOGUIDs());
1615class InProcessThinBackend :
public CGThinBackend {
1624 InProcessThinBackend(
1629 bool ShouldEmitIndexFiles,
bool ShouldEmitImportsFiles,
1631 : CGThinBackend(Conf, CombinedIndex, ModuleToDefinedGVSummaries, OnWrite,
1632 ShouldEmitIndexFiles, ShouldEmitImportsFiles,
1633 ThinLTOParallelism),
1635 BitcodeLibFuncs(BitcodeLibFuncs) {}
1637 virtual Error runThinLTOBackendThread(
1638 AddStreamFn AddStream, FileCache Cache,
unsigned Task, BitcodeModule BM,
1639 ModuleSummaryIndex &CombinedIndex,
1640 const FunctionImporter::ImportMapTy &ImportList,
1642 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1644 MapVector<StringRef, BitcodeModule> &ModuleMap) {
1646 llvm::TimeTraceScope timeScope(
"Run ThinLTO backend thread (in-process)",
1648 auto RunThinBackend = [&](
AddStreamFn AddStream) {
1649 LTOLLVMContext BackendContext(Conf);
1650 Expected<std::unique_ptr<Module>> MOrErr = BM.
parseModule(BackendContext);
1654 return thinBackend(Conf, Task, AddStream, **MOrErr, CombinedIndex,
1655 ImportList, DefinedGlobals, &ModuleMap,
1658 if (ShouldEmitIndexFiles) {
1659 if (
auto E = emitFiles(ImportList, Task, ModuleID, ModuleID.str()))
1665 [](uint32_t V) { return V == 0; }))
1668 return RunThinBackend(AddStream);
1672 Conf, CombinedIndex, ModuleID, ImportList, ExportList, ResolvedODR,
1673 DefinedGlobals, CfiFunctionDefs, CfiFunctionDecls);
1674 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task,
Key, ModuleID);
1677 AddStreamFn &CacheAddStream = *CacheAddStreamOrErr;
1679 return RunThinBackend(CacheAddStream);
1685 unsigned Task, BitcodeModule BM,
1686 const FunctionImporter::ImportMapTy &ImportList,
1688 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1689 MapVector<StringRef, BitcodeModule> &ModuleMap)
override {
1691 assert(ModuleToDefinedGVSummaries.
count(ModulePath));
1693 ModuleToDefinedGVSummaries.
find(ModulePath)->second;
1694 BackendThreadPool.async(
1695 [=](BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
1696 const FunctionImporter::ImportMapTy &ImportList,
1698 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
1701 MapVector<StringRef, BitcodeModule> &ModuleMap) {
1705 Error E = runThinLTOBackendThread(
1706 AddStream, Cache, Task, BM, CombinedIndex, ImportList, ExportList,
1707 ResolvedODR, DefinedGlobals, ModuleMap);
1709 std::unique_lock<std::mutex>
L(ErrMu);
1718 BM, std::ref(CombinedIndex), std::ref(ImportList), std::ref(ExportList),
1719 std::ref(ResolvedODR), std::ref(DefinedGlobals), std::ref(ModuleMap));
1722 OnWrite(std::string(ModulePath));
1732class FirstRoundThinBackend :
public InProcessThinBackend {
1737 FirstRoundThinBackend(
1738 const Config &Conf, ModuleSummaryIndex &CombinedIndex,
1739 ThreadPoolStrategy ThinLTOParallelism,
1740 const DenseMap<StringRef, GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1744 : InProcessThinBackend(Conf, CombinedIndex, ThinLTOParallelism,
1745 ModuleToDefinedGVSummaries, std::
move(CGAddStream),
1746 std::
move(CGCache), nullptr,
1748 false, BitcodeLibFuncs),
1749 IRAddStream(std::
move(IRAddStream)), IRCache(std::
move(IRCache)) {}
1751 Error runThinLTOBackendThread(
1752 AddStreamFn CGAddStream, FileCache CGCache,
unsigned Task,
1753 BitcodeModule BM, ModuleSummaryIndex &CombinedIndex,
1754 const FunctionImporter::ImportMapTy &ImportList,
1756 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1758 MapVector<StringRef, BitcodeModule> &ModuleMap)
override {
1760 llvm::TimeTraceScope timeScope(
"Run ThinLTO backend thread (first round)",
1762 auto RunThinBackend = [&](
AddStreamFn CGAddStream,
1764 LTOLLVMContext BackendContext(Conf);
1765 Expected<std::unique_ptr<Module>> MOrErr = BM.
parseModule(BackendContext);
1769 return thinBackend(Conf, Task, CGAddStream, **MOrErr, CombinedIndex,
1770 ImportList, DefinedGlobals, &ModuleMap,
1776 if (ShouldEmitIndexFiles) {
1777 if (
auto E = emitFiles(ImportList, Task, ModuleID, ModuleID.str()))
1782 "Both caches for CG and IR should have matching availability");
1785 [](uint32_t V) { return V == 0; }))
1788 return RunThinBackend(CGAddStream, IRAddStream);
1792 Conf, CombinedIndex, ModuleID, ImportList, ExportList, ResolvedODR,
1793 DefinedGlobals, CfiFunctionDefs, CfiFunctionDecls);
1794 Expected<AddStreamFn> CacheCGAddStreamOrErr =
1795 CGCache(Task, CGKey, ModuleID);
1798 AddStreamFn &CacheCGAddStream = *CacheCGAddStreamOrErr;
1802 Expected<AddStreamFn> CacheIRAddStreamOrErr =
1803 IRCache(Task, IRKey, ModuleID);
1806 AddStreamFn &CacheIRAddStream = *CacheIRAddStreamOrErr;
1812 if (CacheCGAddStream || CacheIRAddStream) {
1815 return RunThinBackend(CacheCGAddStream ? CacheCGAddStream : CGAddStream,
1816 CacheIRAddStream ? CacheIRAddStream : IRAddStream);
1828class SecondRoundThinBackend :
public InProcessThinBackend {
1829 std::unique_ptr<SmallVector<StringRef>> IRFiles;
1833 SecondRoundThinBackend(
1834 const Config &Conf, ModuleSummaryIndex &CombinedIndex,
1835 ThreadPoolStrategy ThinLTOParallelism,
1836 const DenseMap<StringRef, GVSummaryMapTy> &ModuleToDefinedGVSummaries,
1841 : InProcessThinBackend(Conf, CombinedIndex, ThinLTOParallelism,
1842 ModuleToDefinedGVSummaries, std::
move(AddStream),
1846 false, BitcodeLibFuncs),
1847 IRFiles(std::
move(IRFiles)), CombinedCGDataHash(CombinedCGDataHash) {}
1849 Error runThinLTOBackendThread(
1850 AddStreamFn AddStream, FileCache Cache,
unsigned Task, BitcodeModule BM,
1851 ModuleSummaryIndex &CombinedIndex,
1852 const FunctionImporter::ImportMapTy &ImportList,
1854 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1856 MapVector<StringRef, BitcodeModule> &ModuleMap)
override {
1858 llvm::TimeTraceScope timeScope(
"Run ThinLTO backend thread (second round)",
1860 auto RunThinBackend = [&](
AddStreamFn AddStream) {
1861 LTOLLVMContext BackendContext(Conf);
1862 std::unique_ptr<Module> LoadedModule =
1865 return thinBackend(Conf, Task, AddStream, *LoadedModule, CombinedIndex,
1866 ImportList, DefinedGlobals, &ModuleMap,
1867 true, BitcodeLibFuncs);
1871 [](uint32_t V) { return V == 0; }))
1874 return RunThinBackend(AddStream);
1879 Conf, CombinedIndex, ModuleID, ImportList, ExportList, ResolvedODR,
1880 DefinedGlobals, CfiFunctionDefs, CfiFunctionDecls);
1882 std::to_string(CombinedCGDataHash));
1883 Expected<AddStreamFn> CacheAddStreamOrErr = Cache(Task,
Key, ModuleID);
1886 AddStreamFn &CacheAddStream = *CacheAddStreamOrErr;
1888 if (CacheAddStream) {
1891 return RunThinBackend(CacheAddStream);
1901 bool ShouldEmitIndexFiles,
1902 bool ShouldEmitImportsFiles) {
1908 return std::make_unique<InProcessThinBackend>(
1909 Conf, CombinedIndex, Parallelism, ModuleToDefinedGVSummaries,
1910 AddStream, Cache, OnWrite, ShouldEmitIndexFiles,
1911 ShouldEmitImportsFiles, BitcodeLibFuncs);
1937 return std::string(Path);
1941 if (!ParentPath.
empty()) {
1944 llvm::errs() <<
"warning: could not create directory '" << ParentPath
1945 <<
"': " << EC.message() <<
'\n';
1947 return std::string(NewPath);
1952 std::string OldPrefix, NewPrefix, NativeObjectPrefix;
1958 WriteIndexesThinBackend(
1962 std::string OldPrefix, std::string NewPrefix,
1963 std::string NativeObjectPrefix,
bool ShouldEmitImportsFiles,
1966 OnWrite, ShouldEmitImportsFiles, ThinLTOParallelism),
1967 OldPrefix(OldPrefix), NewPrefix(NewPrefix),
1968 NativeObjectPrefix(NativeObjectPrefix),
1969 LinkedObjectsFile(LinkedObjectsFile) {
1970 auto Defs = CombinedIndex.
cfiFunctionDefs().getExportedThinLTOGUIDs();
1971 CfiFunctionDefs.
insert(Defs.begin(), Defs.end());
1973 CfiFunctionDecls.
insert(Decls.begin(), Decls.end());
1980 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes> &ResolvedODR,
1988 if (LinkedObjectsFile) {
1989 std::string ObjectPrefix =
1990 NativeObjectPrefix.empty() ? NewPrefix : NativeObjectPrefix;
1991 std::string LinkedObjectsFilePath =
1993 *LinkedObjectsFile << LinkedObjectsFilePath <<
'\n';
1996 BackendThreadPool.async(
1997 [
this](
unsigned Task,
const StringRef ModulePath,
1998 const FunctionImporter::ImportMapTy &ImportList,
2000 const std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>
2002 const std::string &OldPrefix,
const std::string &NewPrefix) {
2003 std::string NewModulePath =
2005 auto E = emitFiles(ImportList, Task, ModulePath, NewModulePath);
2007 std::unique_lock<std::mutex>
L(ErrMu);
2013 assert(ModuleToDefinedGVSummaries.
count(ModulePath));
2015 ModuleToDefinedGVSummaries.
find(ModulePath)->second;
2021 Conf, CombinedIndex, ModulePath, ImportList, ExportList,
2022 ResolvedODR, DefinedGlobals, CfiFunctionDefs, CfiFunctionDecls);
2025 Task, ModulePath, ImportList, ExportList, ResolvedODR, OldPrefix,
2029 OnWrite(std::string(ModulePath));
2033 bool isSensitiveToInputOrder()
override {
2043 std::string NewPrefix, std::string NativeObjectPrefix,
2051 return std::make_unique<WriteIndexesThinBackend>(
2052 Conf, CombinedIndex, Parallelism, ModuleToDefinedGVSummaries,
2053 OldPrefix, NewPrefix, NativeObjectPrefix, ShouldEmitImportsFiles,
2054 LinkedObjectsFile, OnWrite);
2073 llvm::errs() <<
"warning: [ThinLTO] No module compiled\n";
2077 if (
Conf.CombinedIndexHook &&
2078 !
Conf.CombinedIndexHook(
ThinLTO.CombinedIndex, GUIDPreservedSymbols))
2083 DenseMap<StringRef, GVSummaryMapTy> ModuleToDefinedGVSummaries(
2085 ThinLTO.CombinedIndex.collectDefinedGVSummariesPerModule(
2086 ModuleToDefinedGVSummaries);
2095 if (!ModuleToDefinedGVSummaries.
count(
Mod.first))
2098 FunctionImporter::ImportListsTy ImportLists(
ThinLTO.ModuleMap.size());
2099 DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists(
2101 StringMap<std::map<GlobalValue::GUID, GlobalValue::LinkageTypes>> ResolvedODR;
2106 std::set<GlobalValue::GUID> ExportedGUIDs;
2108 bool WholeProgramVisibilityEnabledInLTO =
2109 Conf.HasWholeProgramVisibility &&
2112 (!
Conf.ValidateAllVtablesHaveTypeInfos ||
Conf.AllVtablesHaveTypeInfos);
2114 ThinLTO.CombinedIndex.setWithWholeProgramVisibility();
2119 DenseSet<GlobalValue::GUID> VisibleToRegularObjSymbols;
2120 if (WholeProgramVisibilityEnabledInLTO &&
2121 Conf.ValidateAllVtablesHaveTypeInfos) {
2124 auto IsVisibleToRegularObj = [&](StringRef
name) {
2125 auto It = GlobalResolutions->find(
name);
2126 return (It == GlobalResolutions->end() ||
2127 It->second.VisibleOutsideSummary || !It->second.Prevailing);
2131 VisibleToRegularObjSymbols,
2132 IsVisibleToRegularObj);
2138 ThinLTO.CombinedIndex, WholeProgramVisibilityEnabledInLTO,
2139 DynamicExportSymbols, VisibleToRegularObjSymbols);
2144 std::map<ValueInfo, std::vector<VTableSlotSummary>> LocalWPDTargetsMap;
2145 DenseSet<StringRef> ExternallyVisibleSymbolNames;
2151 DenseSet<StringRef> *ExternallyVisibleSymbolNamesPtr =
2153 ? &ExternallyVisibleSymbolNames
2157 ExternallyVisibleSymbolNamesPtr);
2160 return ThinLTO.isPrevailingModuleForGUID(GUID, S->modulePath());
2163 MemProfContextDisambiguation ContextDisambiguation;
2164 ContextDisambiguation.
run(
2166 [&](StringRef
PassName, StringRef RemarkName,
const Twine &
Msg) {
2167 auto R = OptimizationRemark(PassName.data(), RemarkName,
2168 LinkerRemarkFunction);
2178 for (
auto &Res : *GlobalResolutions) {
2181 if (Res.second.Partition != GlobalResolution::External ||
2182 !Res.second.isPrevailingIRSymbol())
2184 auto GUID = Res.second.getGUID();
2186 if (
ThinLTO.CombinedIndex.isGUIDLive(GUID))
2187 ExportedGUIDs.insert(GUID);
2194 releaseGlobalResolutionsMemory();
2196 if (
Conf.OptLevel > 0)
2198 isPrevailing, ImportLists, ExportLists);
2202 auto Defs =
ThinLTO.CombinedIndex.cfiFunctionDefs().getExportedThinLTOGUIDs();
2203 ExportedGUIDs.insert(Defs.begin(), Defs.end());
2205 ThinLTO.CombinedIndex.cfiFunctionDecls().getExportedThinLTOGUIDs();
2206 ExportedGUIDs.insert(Decls.begin(), Decls.end());
2208 auto isExported = [&](StringRef ModuleIdentifier, ValueInfo
VI) {
2209 const auto &ExportList = ExportLists.
find(ModuleIdentifier);
2210 return (ExportList != ExportLists.end() && ExportList->second.
count(VI)) ||
2211 ExportedGUIDs.count(
VI.getGUID());
2217 LocalWPDTargetsMap, ExternallyVisibleSymbolNamesPtr);
2219 if (ExternallyVisibleSymbolNamesPtr) {
2222 for (
auto &
I :
ThinLTO.CombinedIndex) {
2223 ValueInfo
VI =
ThinLTO.CombinedIndex.getValueInfo(
I);
2224 for (
const auto &Summary :
VI.getSummaryList()) {
2225 const GlobalValueSummary *
Base =
Summary->getBaseObject();
2229 ExternallyVisibleSymbolNamesPtr->
insert(
VI.name());
2237 ExternallyVisibleSymbolNamesPtr);
2239 auto recordNewLinkage = [&](StringRef ModuleIdentifier,
2242 ResolvedODR[ModuleIdentifier][
GUID] = NewLinkage;
2245 recordNewLinkage, GUIDPreservedSymbols);
2254 TimeTraceScopeExit.release();
2259 auto RunBackends = [&](ThinBackendProc *BackendProcess) ->
Error {
2260 auto ProcessOneModule = [&](
int I) ->
Error {
2264 return BackendProcess->start(
2266 ImportLists[
Mod.first], ExportLists[
Mod.first],
2270 BackendProcess->setup(ModuleMap.
size(),
2272 RegularLTO.CombinedModule->getTargetTriple());
2274 if (BackendProcess->getThreadCount() == 1 ||
2275 BackendProcess->isSensitiveToInputOrder()) {
2281 for (
int I = 0,
E = ModuleMap.
size();
I !=
E; ++
I)
2282 if (
Error E = ProcessOneModule(
I))
2289 std::vector<BitcodeModule *> ModulesVec;
2290 ModulesVec.reserve(ModuleMap.
size());
2291 for (
auto &
Mod : ModuleMap)
2292 ModulesVec.push_back(&
Mod.second);
2294 if (
Error E = ProcessOneModule(
I))
2297 return BackendProcess->wait();
2301 std::unique_ptr<ThinBackendProc> BackendProc =
2303 AddStream, Cache, BitcodeLibFuncs);
2304 return RunBackends(BackendProc.get());
2312 LLVM_DEBUG(
dbgs() <<
"[TwoRounds] Initializing ThinLTO two-codegen rounds\n");
2315 auto Parallelism =
ThinLTO.Backend.getParallelism();
2318 cgdata::StreamCacheData CG(MaxTasks, Cache,
"CG"),
IR(MaxTasks, Cache,
"IR");
2323 LLVM_DEBUG(
dbgs() <<
"[TwoRounds] Running the first round of codegen\n");
2324 auto FirstRoundLTO = std::make_unique<FirstRoundThinBackend>(
2325 Conf,
ThinLTO.CombinedIndex, Parallelism, ModuleToDefinedGVSummaries,
2326 CG.AddStream, CG.Cache, BitcodeLibFuncs,
IR.AddStream,
IR.Cache);
2327 if (
Error E = RunBackends(FirstRoundLTO.get()))
2332 if (
Error E = CombinedHashOrErr.takeError())
2334 auto CombinedHash = *CombinedHashOrErr;
2335 LLVM_DEBUG(
dbgs() <<
"[TwoRounds] CGData hash: " << CombinedHash <<
"\n");
2339 LLVM_DEBUG(
dbgs() <<
"[TwoRounds] Running the second round of codegen\n");
2340 auto SecondRoundLTO = std::make_unique<SecondRoundThinBackend>(
2341 Conf,
ThinLTO.CombinedIndex, Parallelism, ModuleToDefinedGVSummaries,
2342 AddStream, Cache, BitcodeLibFuncs,
IR.getResult(), CombinedHash);
2343 return RunBackends(SecondRoundLTO.get());
2361 if (
Error E = ResultOrErr.takeError())
2362 return std::move(E);
2365 (*ResultOrErr)->keep();
2373 if (StatsFilename.
empty())
2384 return std::move(StatsFile);
2392 std::vector<int> ModulesOrdering(Seq.begin(), Seq.end());
2393 llvm::sort(ModulesOrdering, [&](
int LeftIndex,
int RightIndex) {
2394 auto LSize = R[LeftIndex]->getBuffer().size();
2395 auto RSize = R[RightIndex]->getBuffer().size();
2396 return LSize > RSize;
2398 return ModulesOrdering;
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
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")))
Function Alias Analysis false
static GCRegistry::Add< ShadowStackGC > C("shadow-stack", "Very portable GC for uncooperative code generators")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
static void writeToResolutionFile(raw_ostream &OS, InputFile *Input, ArrayRef< SymbolResolution > Res)
static void thinLTOResolvePrevailingGUID(const Config &C, ValueInfo VI, DenseSet< GlobalValueSummary * > &GlobalInvolvedWithAlias, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, function_ref< void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> recordNewLinkage, const DenseSet< GlobalValue::GUID > &GUIDPreservedSymbols)
static void handleNonPrevailingComdat(GlobalValue &GV, std::set< const Comdat * > &NonPrevailingComdats)
static void thinLTOInternalizeAndPromoteGUID(ValueInfo VI, function_ref< bool(StringRef, ValueInfo)> isExported, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, DenseSet< StringRef > *ExternallyVisibleSymbolNamesPtr)
static cl::opt< bool > DumpThinCGSCCs("dump-thin-cg-sccs", cl::init(false), cl::Hidden, cl::desc("Dump the SCCs in the ThinLTO index's callgraph"))
Legalize the Machine IR a function s Machine IR
static constexpr StringLiteral Filename
Provides a library for accessing information about this process and other processes on the operating ...
This file defines the scope_exit class, which executes user-defined cleanup logic at scope exit.
This file defines the SmallSet class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
static const char PassName[]
Represent a constant reference to an array (0 or more elements consecutively in memory),...
bool empty() const
Check if the array is empty.
const T & consume_front()
consume_front() - Returns the first element and drops it from ArrayRef.
static LLVM_ABI ArrayType * get(Type *ElementType, uint64_t NumElements)
This static method is the primary way to construct an ArrayType.
Represents a module in a bitcode file.
StringRef getModuleIdentifier() const
LLVM_ABI Expected< std::unique_ptr< Module > > parseModule(LLVMContext &Context, ParserCallbacks Callbacks={})
Read the entire bitcode module and return it.
LLVM_ABI Error readSummary(ModuleSummaryIndex &CombinedIndex, StringRef ModulePath, std::function< bool(StringRef)> IsPrevailing=nullptr, std::function< void(ValueInfo)> OnValueInfo=nullptr)
Parse the specified bitcode buffer and merge its module summary index into CombinedIndex.
LLVM_ABI Expected< std::unique_ptr< Module > > getLazyModule(LLVMContext &Context, bool ShouldLazyLoadMetadata, bool IsImporting, ParserCallbacks Callbacks={})
Read the bitcode module and prepare for lazy deserialization of function bodies.
auto getExportedThinLTOGUIDs() const
get the set of GUIDs that should also be exported because they are the GUIDs of the cfi functions enc...
static LLVM_ABI ConstantAggregateZero * get(Type *Ty)
A parsed version of the target data layout string in and methods for querying it.
iterator find(const_arg_type_t< KeyT > Val)
std::pair< iterator, bool > try_emplace(KeyT &&Key, Ts &&...Args)
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
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.
The map maintains the list of imports.
DenseSet< ValueInfo > ExportSetTy
The set contains an entry for every global value that the module exports.
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)
Function and variable summary information to aid decisions and implementation of importing.
static bool isAppendingLinkage(LinkageTypes Linkage)
static LLVM_ABI GUID getGUIDAssumingExternalLinkage(StringRef GlobalName)
Return a 64-bit global unique ID constructed from the name of a global symbol.
static bool isExternalWeakLinkage(LinkageTypes Linkage)
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...
void setUnnamedAddr(UnnamedAddr Val)
uint64_t GUID
Declare a type to represent a global unique identifier for a global value.
bool hasLocalLinkage() const
LLVM_ABI GUID getGUIDOrFallback() const
Return the GUID for this value if it has been assigned, otherwise fall back to computing it based on ...
LLVM_ABI const Comdat * getComdat() const
static bool isLinkOnceLinkage(LinkageTypes Linkage)
void setLinkage(LinkageTypes LT)
DLLStorageClassTypes
Storage classes of global values for PE targets.
static bool isExternalLinkage(LinkageTypes Linkage)
VisibilityTypes
An enumeration for the kinds of visibility of global values.
@ DefaultVisibility
The GV is visible.
static LLVM_ABI std::string getGlobalIdentifier(StringRef Name, GlobalValue::LinkageTypes Linkage, StringRef FileName)
Return the modified name for a global value suitable to be used as the key for a global lookup (e....
static LinkageTypes getWeakLinkage(bool ODR)
static bool isWeakForLinker(LinkageTypes Linkage)
Whether the definition of this global may be replaced at link time.
bool hasAppendingLinkage() const
bool hasAvailableExternallyLinkage() const
LinkageTypes
An enumeration for the kinds of linkage for global values.
@ CommonLinkage
Tentative definitions.
@ InternalLinkage
Rename collisions when linking (static functions).
@ ExternalLinkage
Externally visible function.
@ WeakAnyLinkage
Keep one copy of named function when linking (weak)
@ AvailableExternallyLinkage
Available for inspection, not emission.
DLLStorageClassTypes getDLLStorageClass() const
static bool isLinkOnceODRLinkage(LinkageTypes Linkage)
LLVM_ABI uint64_t getGlobalSize(const DataLayout &DL) const
Get the size of this global variable in bytes.
LLVM_ABI void eraseFromParent()
eraseFromParent - This method unlinks 'this' from the containing module and deletes it.
void setAlignment(Align Align)
Sets the alignment attribute of the GlobalVariable.
This is an important class for using LLVM in a threaded context.
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
This class implements a map that also provides access to all stored values in a deterministic order.
LLVM_ABI PreservedAnalyses run(Module &M, ModuleAnalysisManager &AM)
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,...
Class to hold module path string table and global value map, and encapsulate methods for operating on...
CfiFunctionIndex & cfiFunctionDecls()
void setPartiallySplitLTOUnits()
void releaseTemporaryMemory()
const ModuleHash & getModuleHash(const StringRef ModPath) const
Get the module SHA1 hash recorded for the given module path.
bool partiallySplitLTOUnits() const
const StringMap< ModuleHash > & modulePaths() const
Table of modules, containing module hash and id.
CfiFunctionIndex & cfiFunctionDefs()
LLVM_ABI void addModule(Module *M)
static LLVM_ABI void CollectAsmSymvers(const Module &M, function_ref< void(StringRef, StringRef)> AsmSymver)
Parse inline ASM and collect the symvers directives that are defined in the current module.
PointerUnion< GlobalValue *, AsmSymbol * > Symbol
LLVM_ABI uint32_t getSymbolFlags(Symbol S) const
ArrayRef< Symbol > symbols() const
A Module instance is used to store all the information related to an LLVM module.
A class that wrap the SHA1 algorithm.
LLVM_ABI void update(ArrayRef< uint8_t > Data)
Digest more data.
LLVM_ABI std::array< uint8_t, 20 > result()
Return the current raw 160-bits SHA1 for the digested data since the last call to init().
size_type count(const T &V) const
count - Return 1 if the element is in the set, 0 otherwise.
std::pair< const_iterator, bool > insert(const T &V)
insert - Insert an element into the set if it isn't already there.
SmallString - A SmallString is just a SmallVector with methods and accessors that make it work better...
StringRef str() const
Explicit conversion to StringRef.
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.
A wrapper around a string literal that serves as a proxy for constructing global tables of StringRefs...
iterator find(StringRef Key)
size_type count(StringRef Key) const
count - Return 1 if the element is in the map, 0 otherwise.
Represent a constant reference to a string, i.e.
constexpr bool empty() const
Check if the string is empty.
constexpr const char * data() const
Get a pointer to the start of the string (which may not be null terminated).
Saves strings in the provided stable storage and returns a StringRef with a stable character pointer.
StringRef save(const char *S)
Implementation of the target library information.
Provides information about what library functions are available for the current target.
bool has(LibFunc F) const
Tests whether a library function is available.
StringRef getName(LibFunc F) const
LibFunc getLibFunc(StringRef funcName) const
Searches for a particular function name.
MCTargetOptions MCOptions
Machine level options.
DebuggerKind DebuggerTuning
Which debugger to tune for.
unsigned FunctionSections
Emit functions into separate sections.
unsigned DataSections
Emit data into separate sections.
This tells how a thread pool will be used.
The TimeTraceScope is a helper class to call the begin and end functions of the time trace profiler.
Triple - Helper class for working with autoconf configuration names.
bool isArm64e() const
Tests whether the target is the Apple "arm64e" AArch64 subarch.
ArchType getArch() const
Get the parsed architecture type of this triple.
bool isOSDarwin() const
Is this a "Darwin" OS (macOS, iOS, tvOS, watchOS, DriverKit, XROS, or bridgeOS).
bool isOSBinFormatELF() const
Tests whether the OS uses the ELF binary format.
Twine - A lightweight data structure for efficiently representing the concatenation of temporary valu...
The instances of the Type class are immutable: once they are created, they are never changed.
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
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 StringRef getName() const
Return a constant reference to the value's name.
LLVM_ABI void takeName(Value *V)
Transfer the name from V to this value.
std::pair< iterator, bool > insert(const ValueT &V)
bool contains(const_arg_type_t< ValueT > V) const
Check if the set contains the given element.
void insert_range(Range &&R)
size_type count(const_arg_type_t< ValueT > V) const
Return 1 if the specified key is in the set, 0 otherwise.
iterator find(const_arg_type_t< ValueT > V)
An efficient, type-erasing, non-owning reference to a callable.
Ephemeral symbols produced by Reader::symbols() and Reader::module_symbols().
LTO(Config Conf, ThinBackend Backend={}, unsigned ParallelCodeGenParallelismLevel=1, LTOKind LTOMode=LTOK_Default)
Create an LTO object.
Error add(std::unique_ptr< InputFile > Obj, ArrayRef< SymbolResolution > Res)
Add an input file to the LTO link, using the provided symbol resolutions.
struct llvm::lto::LTO::RegularLTOState RegularLTO
static SmallVector< const char * > getRuntimeLibcallSymbols(const Triple &TT)
Static method that returns a list of libcall symbols that can be generated by LTO but might not be vi...
virtual Expected< std::shared_ptr< lto::InputFile > > addInput(std::unique_ptr< lto::InputFile > InputPtr)
void setBitcodeLibFuncs(ArrayRef< StringRef > BitcodeLibFuncs)
Set the list of functions implemented in bitcode that were not extracted from an archive.
LTOKind
Unified LTO modes.
@ LTOK_UnifiedRegular
Regular LTO, with Unified LTO enabled.
@ LTOK_Default
Any LTO mode without Unified LTO. The default mode.
@ LTOK_UnifiedThin
ThinLTO, with Unified LTO enabled.
void emitRemark(OptimizationRemark &Remark)
Helper to emit an optimization remark during the LTO link when outside of the standard optimization p...
struct llvm::lto::LTO::ThinLTOState ThinLTO
unsigned getMaxTasks() const
Returns an upper bound on the number of tasks that the client may expect.
virtual Error run(AddStreamFn AddStream, FileCache Cache={})
Runs the LTO pipeline.
static SmallVector< StringRef > getLibFuncSymbols(const Triple &TT, llvm::StringSaver &Saver)
Static method that returns a list of library function symbols that can be generated by LTO but might ...
This class defines the interface to the ThinLTO backend.
bool ShouldEmitImportsFiles
const DenseMap< StringRef, GVSummaryMapTy > & ModuleToDefinedGVSummaries
ModuleSummaryIndex & CombinedIndex
LLVM_ABI Error emitFiles(const FunctionImporter::ImportMapTy &ImportList, unsigned Task, StringRef ModulePath, const std::string &NewModulePath) const
A raw_ostream that writes to a file descriptor.
This class implements an extremely fast bulk output stream that can only output to a stream.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Align[]
Key for Kernel::Arg::Metadata::mAlign.
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.
static auto libcall_impls()
LLVM_ABI Expected< stable_hash > mergeCodeGenData(ArrayRef< StringRef > ObjectFiles)
Merge the codegen data from the scratch objects ObjectFiles from the first codegen round.
LLVM_ABI std::unique_ptr< Module > loadModuleForTwoRounds(BitcodeModule &OrigModule, unsigned Task, LLVMContext &Context, ArrayRef< StringRef > IRFiles)
Load the optimized bitcode module for the second codegen round.
initializer< Ty > init(const Ty &Val)
LLVM_ABI ThinBackend createInProcessThinBackend(ThreadPoolStrategy Parallelism, IndexWriteCallback OnWrite=nullptr, bool ShouldEmitIndexFiles=false, bool ShouldEmitImportsFiles=false)
This ThinBackend runs the individual backend jobs in-process.
LLVM_ABI std::string getThinLTOOutputFile(StringRef Path, StringRef OldPrefix, StringRef NewPrefix)
Given the original Path to an output file, replace any path prefix matching OldPrefix with NewPrefix.
LLVM_ABI Error thinBackend(const Config &C, unsigned Task, AddStreamFn AddStream, Module &M, const ModuleSummaryIndex &CombinedIndex, const FunctionImporter::ImportMapTy &ImportList, const GVSummaryMapTy &DefinedGlobals, MapVector< StringRef, BitcodeModule > *ModuleMap, bool CodeGenOnly, ArrayRef< StringRef > BitcodeLibFuncs, AddStreamFn IRAddStream=nullptr, const std::vector< uint8_t > &CmdArgs=std::vector< uint8_t >())
Runs a ThinLTO backend.
LLVM_ABI StringLiteral getThinLTODefaultCPU(const Triple &TheTriple)
LLVM_ABI Expected< std::unique_ptr< ToolOutputFile > > setupStatsFile(StringRef StatsFilename)
Setups the output file for saving statistics.
LLVM_ABI Error backend(const Config &C, AddStreamFn AddStream, unsigned ParallelCodeGenParallelismLevel, Module &M, ModuleSummaryIndex &CombinedIndex, ArrayRef< StringRef > BitcodeLibFuncs)
Runs a regular LTO backend.
std::function< void(const std::string &)> IndexWriteCallback
LLVM_ABI Error finalizeOptimizationRemarks(LLVMRemarkFileHandle DiagOutputFile)
LLVM_ABI ThinBackend createWriteIndexesThinBackend(ThreadPoolStrategy Parallelism, std::string OldPrefix, std::string NewPrefix, std::string NativeObjectPrefix, bool ShouldEmitImportsFiles, raw_fd_ostream *LinkedObjectsFile, IndexWriteCallback OnWrite)
This ThinBackend writes individual module indexes to files, instead of running the individual backend...
LLVM_ABI Expected< LLVMRemarkFileHandle > setupLLVMOptimizationRemarks(LLVMContext &Context, StringRef RemarksFilename, StringRef RemarksPasses, StringRef RemarksFormat, bool RemarksWithHotness, std::optional< uint64_t > RemarksHotnessThreshold=0, int Count=-1)
Setup optimization remarks.
LLVM_ABI std::vector< int > generateModulesOrdering(ArrayRef< BitcodeModule * > R)
Produces a container ordering for optimal multi-threaded processing.
LLVM_ABI Expected< IRSymtabFile > readIRSymtab(MemoryBufferRef MBRef)
Reads a bitcode file, creating its irsymtab if necessary.
DiagnosticInfoOptimizationBase::Argument NV
void write64le(void *P, uint64_t V)
void write32le(void *P, uint32_t V)
LLVM_ABI std::error_code create_directories(const Twine &path, bool IgnoreExisting=true, perms Perms=owner_all|group_all)
Create all the non-existent directories in path.
LLVM_ABI StringRef parent_path(StringRef path LLVM_LIFETIME_BOUND, Style style=Style::native)
Get parent path.
LLVM_ABI bool replace_path_prefix(SmallVectorImpl< char > &Path, StringRef OldPrefix, StringRef NewPrefix, Style style=Style::native)
Replace matching path prefix with another path.
This is an optimization pass for GlobalISel generic memory operations.
ThreadPoolStrategy heavyweight_hardware_concurrency(unsigned ThreadCount=0)
Returns a thread strategy for tasks requiring significant memory or other resources.
detail::zippy< detail::zip_shortest, T, U, Args... > zip(T &&t, U &&u, Args &&...args)
zip iterator for two or more iteratable types.
cl::opt< std::string > RemarksFormat("lto-pass-remarks-format", cl::desc("The format used for serializing remarks (default: YAML)"), cl::value_desc("format"), cl::init("yaml"))
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.
bool all_of(R &&range, UnaryPredicate P)
Provide wrappers to std::all_of which take ranges instead of having to pass begin/end explicitly.
Error createFileError(const Twine &F, Error E)
Concatenate a source file path and/or name with an Error.
decltype(auto) dyn_cast(const From &Val)
dyn_cast<X> - Return the argument parameter cast to the specified type.
LLVM_ABI void generateParamAccessSummary(ModuleSummaryIndex &Index)
cl::opt< bool > CodeGenDataThinLTOTwoRounds("codegen-data-thinlto-two-rounds", cl::init(false), cl::Hidden, cl::desc("Enable two-round ThinLTO code generation. The first round " "emits codegen data, while the second round uses the emitted " "codegen data for further optimizations."))
LLVM_ABI Expected< LLVMRemarkFileHandle > setupLLVMOptimizationRemarks(LLVMContext &Context, StringRef RemarksFilename, StringRef RemarksPasses, StringRef RemarksFormat, bool RemarksWithHotness, std::optional< uint64_t > RemarksHotnessThreshold=0)
Set up optimization remarks that output to a file.
cl::opt< std::string > RemarksPasses("lto-pass-remarks-filter", cl::desc("Only record optimization remarks from passes whose " "names match the given regular expression"), cl::value_desc("regex"))
LLVM_ABI std::error_code inconvertibleErrorCode()
The value returned by this function can be returned from convertToErrorCode for Error values where no...
LLVM_ABI raw_fd_ostream & outs()
This returns a reference to a raw_fd_ostream for standard output.
DenseMap< GlobalValue::GUID, GlobalValueSummary * > GVSummaryMapTy
Map of global value GUID to its summary, used to identify values defined in a particular module,...
auto dyn_cast_if_present(const Y &Val)
dyn_cast_if_present<X> - Functionally identical to dyn_cast, except that a null (or none in the case ...
iterator_range< T > make_range(T x, T y)
Convenience function for iterating over sub-ranges.
uint64_t stable_hash
An opaque object representing a stable hash code.
std::string utostr(uint64_t X, bool isNeg=false)
LLVM_ABI bool thinLTOPropagateFunctionAttrs(ModuleSummaryIndex &Index, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing)
Propagate function attributes for function summaries along the index's callgraph during thinlink.
LLVM_ABI bool hasWholeProgramVisibility(bool WholeProgramVisibilityEnabledInLTO)
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 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.
auto dyn_cast_or_null(const Y &Val)
LLVM_ABI void EnableStatistics(bool DoPrintOnExit=true)
Enable the collection and printing of statistics.
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...
LLVM_ABI void timeTraceProfilerInitialize(unsigned TimeTraceGranularity, StringRef ProcName, bool TimeTraceVerbose=false)
Initialize the time trace profiler.
LLVM_ABI void timeTraceProfilerFinishThread()
Finish a time trace profiler running on a worker thread.
LLVM_ABI std::string recomputeLTOCacheKey(const std::string &Key, StringRef ExtraID)
Recomputes the LTO cache key for a given key with an extra identifier.
Error joinErrors(Error E1, Error E2)
Concatenate errors.
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.
void sort(IteratorTy Start, IteratorTy End)
cl::opt< bool > AlwaysRenamePromotedLocals("always-rename-promoted-locals", cl::init(true), cl::Hidden, cl::desc("Always rename promoted locals."))
bool timeTraceProfilerEnabled()
Is the time trace profiler enabled, i.e. initialized?
LLVM_ABI raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
std::map< std::string, GVSummaryMapTy, std::less<> > ModuleToSummariesForIndexTy
Map of a module name to the GUIDs and summaries we will import from that module.
LLVM_ABI cl::opt< bool > EnableLTOInternalization
Enable global value internalization in LTO.
cl::opt< bool > RemarksWithHotness("lto-pass-remarks-with-hotness", cl::desc("With PGO, include profile count in optimization remarks"), cl::Hidden)
LLVM_ABI void timeTraceProfilerEnd()
Manually end the last time section.
cl::opt< std::string > RemarksFilename("lto-pass-remarks-output", cl::desc("Output filename for pass remarks"), cl::value_desc("filename"))
cl::opt< bool > SupportsHotColdNew
Indicate we are linking with an allocator that supports hot/cold operator new interfaces.
class LLVM_GSL_OWNER SmallVector
Forward declaration of SmallVector so that calculateSmallVectorDefaultInlinedElements can reference s...
LLVM_ABI void thinLTOResolvePrevailingInIndex(const lto::Config &C, ModuleSummaryIndex &Index, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, function_ref< void(StringRef, GlobalValue::GUID, GlobalValue::LinkageTypes)> recordNewLinkage, const DenseSet< GlobalValue::GUID > &GUIDPreservedSymbols)
Resolve linkage for prevailing symbols in the Index.
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_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
Error make_error(ArgTs &&... Args)
Make a Error instance representing failure using the given error info type.
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ Mod
The access may modify the value stored in memory.
std::string join(IteratorT Begin, IteratorT End, StringRef Separator)
Joins the strings in the range [Begin, End), adding Separator between the elements.
cl::opt< bool > EnableMemProfContextDisambiguation
Enable MemProf context disambiguation for thin link.
cl::opt< bool > ForceImportAll
RelativeUniformCounterPtr ValuesPtrExpr VTableAddr Count
LLVM_ABI 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.
ArrayRef(const T &OneElt) -> ArrayRef< T >
void toHex(ArrayRef< uint8_t > Input, bool LowerCase, SmallVectorImpl< char > &Output)
Convert buffer Input to its hexadecimal representation. The returned string is double the size of Inp...
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
LLVM_ABI void processImportsFiles(StringRef ModulePath, const ModuleToSummariesForIndexTy &ModuleToSummariesForIndex, function_ref< void(const std::string &)> F)
Call F passing each of the files module ModulePath will import from.
cl::opt< std::optional< uint64_t >, false, remarks::HotnessThresholdParser > RemarksHotnessThreshold("lto-pass-remarks-hotness-threshold", cl::desc("Minimum profile count required for an " "optimization remark to be output." " Use 'auto' to apply the threshold from profile summary."), cl::value_desc("uint or 'auto'"), cl::init(0), cl::Hidden)
decltype(auto) cast(const From &Val)
cast<X> - Return the argument parameter cast to the specified type.
constexpr auto seq(T Begin, T End)
Iterate over an integral type from Begin up to - but not including - End.
LLVM_ABI std::string computeLTOCacheKey(const lto::Config &Conf, const ModuleSummaryIndex &Index, StringRef ModuleID, const FunctionImporter::ImportMapTy &ImportList, const FunctionImporter::ExportSetTy &ExportList, const std::map< GlobalValue::GUID, GlobalValue::LinkageTypes > &ResolvedODR, const GVSummaryMapTy &DefinedGlobals, const DenseSet< GlobalValue::GUID > &CfiFunctionDefs={}, const DenseSet< GlobalValue::GUID > &CfiFunctionDecls={})
Computes a unique hash for the Module considering the current list of export/import and other global ...
LLVM_ABI Error errorCodeToError(std::error_code EC)
Helper for converting an std::error_code to a Error.
static cl::opt< bool > LTOKeepSymbolCopies("lto-keep-symbol-copies", cl::init(false), cl::Hidden, cl::desc("Keep copies of symbols in LTO indexing"))
LLVM_ABI bool UpgradeDebugInfo(Module &M)
Check the debug info version number, if it is out-dated, drop the debug info.
SmallPtrSet< GlobalValueSummary *, 0 > GVSummaryPtrSet
A set of global value summary pointers.
std::function< Expected< std::unique_ptr< CachedFileStream > >( unsigned Task, const Twine &ModuleName)> AddStreamFn
This type defines the callback to add a file that is generated on the fly.
LLVM_ABI void PrintStatisticsJSON(raw_ostream &OS)
Print statistics in JSON format.
void consumeError(Error Err)
Consume a Error without doing anything.
LLVM_ABI 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.
LLVM_ABI Error EmitImportsFiles(StringRef ModulePath, StringRef OutputFilename, const ModuleToSummariesForIndexTy &ModuleToSummariesForIndex)
Emit into OutputFilename the files module ModulePath will import from.
@ Keep
No function return thunk.
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...
LLVM_ABI TimeTraceProfilerEntry * timeTraceProfilerBegin(StringRef Name, StringRef Detail)
Manually begin a time section, with the given Name and Detail.
LLVM_ABI void thinLTOInternalizeAndPromoteInIndex(ModuleSummaryIndex &Index, function_ref< bool(StringRef, ValueInfo)> isExported, function_ref< bool(GlobalValue::GUID, const GlobalValueSummary *)> isPrevailing, DenseSet< StringRef > *ExternallyVisibleSymbolNamesPtr=nullptr)
Update the linkages in the given Index to mark exported values as external and non-exported values as...
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...
Implement std::hash so that hash_code can be used in STL containers.
This type represents a file cache system that manages caching of files.
A simple container for information about the supported runtime calls.
unsigned getNumAvailableLibcallImpls() const
bool isAvailable(RTLIB::LibcallImpl Impl) const
RTLIB::LibcallImpl getSupportedLibcallImpl(StringRef FuncName) const
Check if this is valid libcall for the current module, otherwise RTLIB::Unsupported.
static StringRef getLibcallImplName(RTLIB::LibcallImpl CallImpl)
Get the libcall routine name for the specified libcall implementation.
Struct that holds a reference to a particular GUID in a global value summary.
Function object to check whether the first component of a container supported by std::get (like std::...
std::function< std::string &(size_t Task)> GetCacheKeyOutputString
Called by WriteIndexesThinBackend when it needs to store a bitcode module's cache key.
std::optional< uint64_t > RemarksHotnessThreshold
The minimum hotness value a diagnostic needs in order to be included in optimization diagnostics.
std::optional< CodeModel::Model > CodeModel
bool CodeGenOnly
Disable entirely the optimizer, including importing for ThinLTO.
std::vector< std::string > MAttrs
std::vector< std::string > MllvmArgs
CodeGenOptLevel CGOptLevel
bool Dtlto
This flag is used as one of parameters to calculate cache entries and to ensure that in-process cache...
std::string DefaultTriple
Setting this field will replace unspecified target triples in input files with this triple.
std::string DwoDir
The directory to store .dwo files.
std::string RemarksFilename
Optimization remarks file path.
std::string OverrideTriple
Setting this field will replace target triples in input files with this triple.
std::string ProfileRemapping
Name remapping file for profile data.
bool TimeTraceEnabled
Time trace enabled.
std::string RemarksPasses
Optimization remarks pass filter.
std::string OptPipeline
If this field is set, the set of passes run in the middle-end optimizer will be the one specified by ...
unsigned TimeTraceGranularity
Time trace granularity.
bool RemarksWithHotness
Whether to emit optimization remarks with hotness informations.
std::optional< Reloc::Model > RelocModel
CodeGenFileType CGFileType
bool Freestanding
Flag to indicate that the optimizer should not assume builtins are present on the target.
std::string SampleProfile
Sample PGO profile path.
std::string RemarksFormat
The format used for serializing remarks (default: YAML).
std::vector< AddedModule > ModsWithSummaries
std::unique_ptr< IRMover > Mover
unsigned ParallelCodeGenParallelismLevel
std::map< std::string, CommonResolution > Commons
std::unique_ptr< Module > CombinedModule
LLVM_ABI RegularLTOState(unsigned ParallelCodeGenParallelismLevel, const Config &Conf)
LLVM_ABI ThinLTOState(ThinBackend Backend)
std::optional< ModuleMapType > ModulesToCompile
ModuleSummaryIndex CombinedIndex
The resolution for a symbol.
unsigned FinalDefinitionInLinkageUnit
The definition of this symbol is unpreemptable at runtime and is known to be in this linkage unit.
unsigned ExportDynamic
The symbol was exported dynamically, and therefore could be referenced by a shared library not visibl...
unsigned Prevailing
The linker has chosen this definition of the symbol.
unsigned LinkerRedefined
Linker redefined version of the symbol which appeared in -wrap or -defsym linker option.
unsigned VisibleToRegularObj
The definition of this symbol is visible outside of the LTO unit.
This type defines the behavior following the thin-link phase during ThinLTO.