[llvm] d38380d - [CSSPGO] Fix redundant reading of profile metadata (#129609)
via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 4 11:40:03 PST 2025
Author: Lei Wang
Date: 2025-03-04T11:39:59-08:00
New Revision: d38380d3d808183652c1e9be34e3a2476ed6ea70
URL: https://github.com/llvm/llvm-project/commit/d38380d3d808183652c1e9be34e3a2476ed6ea70
DIFF: https://github.com/llvm/llvm-project/commit/d38380d3d808183652c1e9be34e3a2476ed6ea70.diff
LOG: [CSSPGO] Fix redundant reading of profile metadata (#129609)
Fix a build speed regression due to repeated reading of profile
metadata. Before the function `readFuncMetadata(ProfileHasAttribute,
Profiles)` reads the metadata for all the functions(`Profiles`),
however, it's actually used for on-demand loading, it can be called for
multiple times, which leads to redundant reading that causes the build
speed regression. Now fix it to read the metadata only for the new
loaded functions(functions in the `FuncsToUse`).
Added:
Modified:
llvm/include/llvm/ProfileData/SampleProfReader.h
llvm/lib/ProfileData/SampleProfReader.cpp
Removed:
################################################################################
diff --git a/llvm/include/llvm/ProfileData/SampleProfReader.h b/llvm/include/llvm/ProfileData/SampleProfReader.h
index 5301f23def3f3..76c7cecded629 100644
--- a/llvm/include/llvm/ProfileData/SampleProfReader.h
+++ b/llvm/include/llvm/ProfileData/SampleProfReader.h
@@ -777,7 +777,7 @@ class SampleProfileReaderExtBinaryBase : public SampleProfileReaderBinary {
std::error_code readSecHdrTable();
std::error_code readFuncMetadata(bool ProfileHasAttribute,
- SampleProfileMap &Profiles);
+ DenseSet<FunctionSamples *> &Profiles);
std::error_code readFuncMetadata(bool ProfileHasAttribute);
std::error_code readFuncMetadata(bool ProfileHasAttribute,
FunctionSamples *FProfile);
diff --git a/llvm/lib/ProfileData/SampleProfReader.cpp b/llvm/lib/ProfileData/SampleProfReader.cpp
index 98c7844378527..d97cc479442e4 100644
--- a/llvm/lib/ProfileData/SampleProfReader.cpp
+++ b/llvm/lib/ProfileData/SampleProfReader.cpp
@@ -826,13 +826,23 @@ bool SampleProfileReaderExtBinaryBase::useFuncOffsetList() const {
std::error_code
SampleProfileReaderExtBinaryBase::read(const DenseSet<StringRef> &FuncsToUse,
SampleProfileMap &Profiles) {
+ if (FuncsToUse.empty())
+ return sampleprof_error::success;
+
Data = ProfileSecRange.first;
End = ProfileSecRange.second;
if (std::error_code EC = readFuncProfiles(FuncsToUse, Profiles))
return EC;
End = Data;
+ DenseSet<FunctionSamples *> ProfilesToReadMetadata;
+ for (auto FName : FuncsToUse) {
+ auto I = Profiles.find(FName);
+ if (I != Profiles.end())
+ ProfilesToReadMetadata.insert(&I->second);
+ }
- if (std::error_code EC = readFuncMetadata(ProfileHasAttribute, Profiles))
+ if (std::error_code EC =
+ readFuncMetadata(ProfileHasAttribute, ProfilesToReadMetadata))
return EC;
return sampleprof_error::success;
}
@@ -1300,14 +1310,12 @@ SampleProfileReaderExtBinaryBase::readFuncMetadata(bool ProfileHasAttribute,
return sampleprof_error::success;
}
-std::error_code
-SampleProfileReaderExtBinaryBase::readFuncMetadata(bool ProfileHasAttribute,
- SampleProfileMap &Profiles) {
+std::error_code SampleProfileReaderExtBinaryBase::readFuncMetadata(
+ bool ProfileHasAttribute, DenseSet<FunctionSamples *> &Profiles) {
if (FuncMetadataIndex.empty())
return sampleprof_error::success;
- for (auto &I : Profiles) {
- FunctionSamples *FProfile = &I.second;
+ for (auto *FProfile : Profiles) {
auto R = FuncMetadataIndex.find(FProfile->getContext().getHashCode());
if (R == FuncMetadataIndex.end())
continue;
More information about the llvm-commits
mailing list