[llvm] c8b69c9 - [NFC][SampleFDO] Clean the unneeded field and the related loop (#132376)

via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 27 20:06:03 PDT 2025


Author: Jinjie Huang
Date: 2025-03-28T11:06:00+08:00
New Revision: c8b69c90760072b2813a3465d70817470f63cd4a

URL: https://github.com/llvm/llvm-project/commit/c8b69c90760072b2813a3465d70817470f63cd4a
DIFF: https://github.com/llvm/llvm-project/commit/c8b69c90760072b2813a3465d70817470f63cd4a.diff

LOG: [NFC][SampleFDO] Clean the unneeded field and the related loop (#132376)

Clean the unneeded field 'TotalCollectedSamples' and the unnecessary
loop.
The field seems introduced in:https://reviews.llvm.org/D31952, and its
uses were removed in: https://reviews.llvm.org/D19287, but this field
and unnecessary calculation were not cleaned up.
This patch will remove these unneeded codes.

Added: 
    

Modified: 
    llvm/lib/Transforms/IPO/SampleProfile.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/IPO/SampleProfile.cpp b/llvm/lib/Transforms/IPO/SampleProfile.cpp
index a998f1a1b99a2..8b1140e8eabcd 100644
--- a/llvm/lib/Transforms/IPO/SampleProfile.cpp
+++ b/llvm/lib/Transforms/IPO/SampleProfile.cpp
@@ -562,12 +562,6 @@ class SampleProfileLoader final : public SampleProfileLoaderBaseImpl<Function> {
   /// used to generate the current profile.
   std::shared_ptr<ProfileSymbolList> PSL;
 
-  /// Total number of samples collected in this profile.
-  ///
-  /// This is the sum of all the samples collected in all the functions executed
-  /// at runtime.
-  uint64_t TotalCollectedSamples = 0;
-
   // Information recorded when we declined to inline a call site
   // because we have determined it is too cold is accumulated for
   // each callee function. Initially this is just the entry count.
@@ -2183,10 +2177,6 @@ bool SampleProfileLoader::runOnModule(Module &M, ModuleAnalysisManager *AM,
       rejectHighStalenessProfile(M, PSI, Reader->getProfiles()))
     return false;
 
-  // Compute the total number of samples collected in this profile.
-  for (const auto &I : Reader->getProfiles())
-    TotalCollectedSamples += I.second.getTotalSamples();
-
   auto Remapper = Reader->getRemapper();
   // Populate the symbol map.
   for (const auto &N_F : M.getValueSymbolTable()) {


        


More information about the llvm-commits mailing list