[llvm] [BOLT]Improve profile quality reporting (PR #130810)

via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 3 08:05:34 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp -- bolt/lib/Passes/ProfileQualityStats.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/bolt/lib/Passes/ProfileQualityStats.cpp b/bolt/lib/Passes/ProfileQualityStats.cpp
index c19ba76d1..beb4f0fd7 100644
--- a/bolt/lib/Passes/ProfileQualityStats.cpp
+++ b/bolt/lib/Passes/ProfileQualityStats.cpp
@@ -347,20 +347,20 @@ void printCFGFlowConservationStats(const BinaryContext &BC, raw_ostream &OS,
       }
     }
     double WeightedGap = WeightedGapSum;
-    if (WeightSum > 0) 
+    if (WeightSum > 0)
       WeightedGap /= WeightSum;
     if (opts::Verbosity >= 2 && WorstGap >= 0.9) {
       OS << "Nontrivial CFG gap observed in function "
-          << Function->getPrintName() << "\n"
-          << "Weighted gap: " << formatv("{0:P}", WeightedGap) << "\n";
+         << Function->getPrintName() << "\n"
+         << "Weighted gap: " << formatv("{0:P}", WeightedGap) << "\n";
       if (BBWorstGap)
         OS << "Worst gap: " << formatv("{0:P}", WorstGap)
-            << " at BB with input offset: 0x"
-            << Twine::utohexstr(BBWorstGap->getInputOffset()) << "\n";
+           << " at BB with input offset: 0x"
+           << Twine::utohexstr(BBWorstGap->getInputOffset()) << "\n";
       if (BBWorstGapAbs)
         OS << "Worst gap (absolute value): " << WorstGapAbs << " at BB with "
-            << "input offset 0x"
-            << Twine::utohexstr(BBWorstGapAbs->getInputOffset()) << "\n";
+           << "input offset 0x"
+           << Twine::utohexstr(BBWorstGapAbs->getInputOffset()) << "\n";
       if (opts::Verbosity >= 3)
         Function->dump();
     }

``````````

</details>


https://github.com/llvm/llvm-project/pull/130810


More information about the llvm-commits mailing list