[NFC][Sample PGO] Avoid non-const accessor for CallsiteSamples
authorWenlei He <aktoon@gmail.com>
Wed, 28 Jun 2023 18:54:39 +0000 (11:54 -0700)
committerWenlei He <aktoon@gmail.com>
Wed, 28 Jun 2023 20:43:30 +0000 (13:43 -0700)
Exposing a non-const accessor for clearing CallsiteSamples during flattening is a big of an overkill. Replace the non-const accessor with removeAllCallsiteSamples.

Differential Revision: https://reviews.llvm.org/D153995

llvm/include/llvm/ProfileData/SampleProf.h

index f92b993..12cc1f2 100644 (file)
@@ -800,6 +800,12 @@ public:
     return Count;
   }
 
+  // Remove all call site samples for inlinees. This is needed when flattening
+  // a nested profile.
+  void removeAllCallsiteSamples() {
+    CallsiteSamples.clear();
+  }
+
   // Accumulate all call target samples to update the body samples.
   void updateCallsiteSamples() {
     for (auto &I : BodySamples) {
@@ -957,8 +963,6 @@ public:
     return CallsiteSamples;
   }
 
-  CallsiteSampleMap &getCallsiteSamples() { return CallsiteSamples; }
-
   /// Return the maximum of sample counts in a function body. When SkipCallSite
   /// is false, which is the default, the return count includes samples in the
   /// inlined functions. When SkipCallSite is true, the return count only
@@ -1384,9 +1388,9 @@ private:
     auto Ret = OutputProfiles.try_emplace(Context, FS);
     FunctionSamples &Profile = Ret.first->second;
     if (Ret.second) {
-      // When it's the copy of the old profile, just clear all the inlinees'
-      // samples.
-      Profile.getCallsiteSamples().clear();
+      // Clear nested inlinees' samples for the flattened copy. These inlinees
+      // will have their own top-level entries after flattening.
+      Profile.removeAllCallsiteSamples();
       // We recompute TotalSamples later, so here set to zero.
       Profile.setTotalSamples(0);
     } else {