[llvm] [Support] Avoid repeated hash lookups (NFC) (PR #130891)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 11 21:27:00 PDT 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/130891
None
>From eec6fce3e9627a8e776f22c1b98bbb179650052d Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Tue, 11 Mar 2025 09:05:08 -0700
Subject: [PATCH] [Support] Avoid repeated hash lookups (NFC)
---
llvm/lib/Support/DebugCounter.cpp | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/llvm/lib/Support/DebugCounter.cpp b/llvm/lib/Support/DebugCounter.cpp
index a5d8a704bdd21..3a5983c4788a1 100644
--- a/llvm/lib/Support/DebugCounter.cpp
+++ b/llvm/lib/Support/DebugCounter.cpp
@@ -208,9 +208,10 @@ void DebugCounter::print(raw_ostream &OS) const {
OS << "Counters and values:\n";
for (auto &CounterName : CounterNames) {
unsigned CounterID = getCounterId(std::string(CounterName));
- OS << left_justify(RegisteredCounters[CounterID], 32) << ": {"
- << Us.Counters[CounterID].Count << ",";
- printChunks(OS, Us.Counters[CounterID].Chunks);
+ auto &C = Us.Counters[CounterID];
+ OS << left_justify(RegisteredCounters[CounterID], 32) << ": {" << C.Count
+ << ",";
+ printChunks(OS, C.Chunks);
OS << "}\n";
}
}
More information about the llvm-commits
mailing list