[llvm-branch-commits] [llvm] [ThinLTO] Generate import status in per-module combined summary (PR #88024)
Teresa Johnson via llvm-branch-commits
llvm-branch-commits at lists.llvm.org
Wed May 8 15:37:47 PDT 2024
================
@@ -1634,17 +1752,27 @@ Expected<bool> FunctionImporter::importFunctions(
return std::move(Err);
auto &ImportGUIDs = FunctionsToImportPerModule->second;
+
// Find the globals to import
SetVector<GlobalValue *> GlobalsToImport;
for (Function &F : *SrcModule) {
if (!F.hasName())
continue;
auto GUID = F.getGUID();
- auto Import = ImportGUIDs.count(GUID);
- LLVM_DEBUG(dbgs() << (Import ? "Is" : "Not") << " importing function "
- << GUID << " " << F.getName() << " from "
- << SrcModule->getSourceFileName() << "\n");
- if (Import) {
+ auto ImportType = maybeGetImportType(ImportGUIDs, GUID);
+
+ if (!ImportType) {
----------------
teresajohnson wrote:
Also consider indicating which are imported as declarations in the debug message?
https://github.com/llvm/llvm-project/pull/88024
More information about the llvm-branch-commits
mailing list