[llvm] [ctxprof][nfc] Make `computeImportForFunction` a member of `ModuleImportsManager` (PR #134011)
Mircea Trofin via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 18:16:06 PDT 2025
https://github.com/mtrofin updated https://github.com/llvm/llvm-project/pull/134011
>From 7a534bface6448cc12e2323957ccc3835dfc1710 Mon Sep 17 00:00:00 2001
From: Mircea Trofin <mtrofin at google.com>
Date: Tue, 1 Apr 2025 16:53:48 -0700
Subject: [PATCH] [ctxprof][nfc] Make `computeImportForFunction` a member of
`ModuleImportsManager`
---
llvm/lib/Transforms/IPO/FunctionImport.cpp | 26 ++++++++++++----------
1 file changed, 14 insertions(+), 12 deletions(-)
diff --git a/llvm/lib/Transforms/IPO/FunctionImport.cpp b/llvm/lib/Transforms/IPO/FunctionImport.cpp
index cfefc0e8c43a8..43807a8feb36e 100644
--- a/llvm/lib/Transforms/IPO/FunctionImport.cpp
+++ b/llvm/lib/Transforms/IPO/FunctionImport.cpp
@@ -497,6 +497,13 @@ static const char *getFailureName(FunctionImporter::ImportFailureReason Reason);
/// Determine the list of imports and exports for each module.
class ModuleImportsManager {
+ void computeImportForFunction(
+ const FunctionSummary &Summary, unsigned Threshold,
+ const GVSummaryMapTy &DefinedGVSummaries,
+ SmallVectorImpl<EdgeInfo> &Worklist, GlobalsImporter &GVImporter,
+ FunctionImporter::ImportMapTy &ImportList,
+ FunctionImporter::ImportThresholdsTy &ImportThresholds);
+
protected:
function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
IsPrevailing;
@@ -852,14 +859,11 @@ getFailureName(FunctionImporter::ImportFailureReason Reason) {
/// Compute the list of functions to import for a given caller. Mark these
/// imported functions and the symbols they reference in their source module as
/// exported from their source module.
-static void computeImportForFunction(
- const FunctionSummary &Summary, const ModuleSummaryIndex &Index,
- const unsigned Threshold, const GVSummaryMapTy &DefinedGVSummaries,
- function_ref<bool(GlobalValue::GUID, const GlobalValueSummary *)>
- isPrevailing,
+void ModuleImportsManager::computeImportForFunction(
+ const FunctionSummary &Summary, const unsigned Threshold,
+ const GVSummaryMapTy &DefinedGVSummaries,
SmallVectorImpl<EdgeInfo> &Worklist, GlobalsImporter &GVImporter,
FunctionImporter::ImportMapTy &ImportList,
- DenseMap<StringRef, FunctionImporter::ExportSetTy> *ExportLists,
FunctionImporter::ImportThresholdsTy &ImportThresholds) {
GVImporter.onImportingSummary(Summary);
static int ImportCount = 0;
@@ -1064,9 +1068,8 @@ void ModuleImportsManager::computeImportForModule(
// Skip import for global variables
continue;
LLVM_DEBUG(dbgs() << "Initialize import for " << VI << "\n");
- computeImportForFunction(*FuncSummary, Index, ImportInstrLimit,
- DefinedGVSummaries, IsPrevailing, Worklist, GVI,
- ImportList, ExportLists, ImportThresholds);
+ computeImportForFunction(*FuncSummary, ImportInstrLimit, DefinedGVSummaries,
+ Worklist, GVI, ImportList, ImportThresholds);
}
// Process the newly imported functions and add callees to the worklist.
@@ -1076,9 +1079,8 @@ void ModuleImportsManager::computeImportForModule(
auto Threshold = std::get<1>(GVInfo);
if (auto *FS = dyn_cast<FunctionSummary>(Summary))
- computeImportForFunction(*FS, Index, Threshold, DefinedGVSummaries,
- IsPrevailing, Worklist, GVI, ImportList,
- ExportLists, ImportThresholds);
+ computeImportForFunction(*FS, Threshold, DefinedGVSummaries, Worklist,
+ GVI, ImportList, ImportThresholds);
}
// Print stats about functions considered but rejected for importing
More information about the llvm-commits
mailing list