[llvm] [llvm][Timer] Don't print timers in TimerGroup when all Timers are removed (PR #131026)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 13:46:39 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-support
Author: Arthur Eubanks (aeubanks)
<details>
<summary>Changes</summary>
Only print them on TimerGroup destruction (or eagerly when TimerGroup::printAll() is called).
We should be able to destroy all Timers in a TimerGroup while delaying printing the stored TimeRecords.
---
Full diff: https://github.com/llvm/llvm-project/pull/131026.diff
2 Files Affected:
- (modified) llvm/lib/Support/Timer.cpp (+5-8)
- (modified) llvm/unittests/Support/TimerTest.cpp (+17-1)
``````````diff
diff --git a/llvm/lib/Support/Timer.cpp b/llvm/lib/Support/Timer.cpp
index 089dae2886f22..eca726828c697 100644
--- a/llvm/lib/Support/Timer.cpp
+++ b/llvm/lib/Support/Timer.cpp
@@ -284,6 +284,11 @@ TimerGroup::~TimerGroup() {
while (FirstTimer)
removeTimer(*FirstTimer);
+ if (!TimersToPrint.empty()) {
+ std::unique_ptr<raw_ostream> OutStream = CreateInfoOutputFile();
+ PrintQueuedTimers(*OutStream);
+ }
+
// Remove the group from the TimerGroupList.
sys::SmartScopedLock<true> L(timerLock());
*Prev = Next;
@@ -305,14 +310,6 @@ void TimerGroup::removeTimer(Timer &T) {
*T.Prev = T.Next;
if (T.Next)
T.Next->Prev = T.Prev;
-
- // Print the report when all timers in this group are destroyed if some of
- // them were started.
- if (FirstTimer || TimersToPrint.empty())
- return;
-
- std::unique_ptr<raw_ostream> OutStream = CreateInfoOutputFile();
- PrintQueuedTimers(*OutStream);
}
void TimerGroup::addTimer(Timer &T) {
diff --git a/llvm/unittests/Support/TimerTest.cpp b/llvm/unittests/Support/TimerTest.cpp
index 5686b394e16cd..612fd7231da70 100644
--- a/llvm/unittests/Support/TimerTest.cpp
+++ b/llvm/unittests/Support/TimerTest.cpp
@@ -66,4 +66,20 @@ TEST(Timer, CheckIfTriggered) {
EXPECT_FALSE(T1.hasTriggered());
}
-} // end anon namespace
+TEST(Timer, TimerGroupTimerDestructed) {
+ testing::internal::CaptureStderr();
+
+ {
+ TimerGroup TG("tg", "desc");
+ {
+ Timer T1("T1", "T1", TG);
+ T1.startTimer();
+ T1.stopTimer();
+ }
+ EXPECT_TRUE(testing::internal::GetCapturedStderr().empty());
+ testing::internal::CaptureStderr();
+ }
+ EXPECT_FALSE(testing::internal::GetCapturedStderr().empty());
+}
+
+} // namespace
``````````
</details>
https://github.com/llvm/llvm-project/pull/131026
More information about the llvm-commits
mailing list