[llvm] 4d79e98 - [Support] Avoid repeated hash lookups (NFC) (#130891)

via llvm-commits llvm-commits at lists.llvm.org
Wed Mar 12 12:19:57 PDT 2025


Author: Kazu Hirata
Date: 2025-03-12T12:19:53-07:00
New Revision: 4d79e9892c482978ba07690e275ea9f7e983a703

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

LOG: [Support] Avoid repeated hash lookups (NFC) (#130891)

Co-authored-by: Nikita Popov <github at npopov.com>

Added: 
    

Modified: 
    llvm/lib/Support/DebugCounter.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Support/DebugCounter.cpp b/llvm/lib/Support/DebugCounter.cpp
index a5d8a704bdd21..a6de07a55482a 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);
+    const CounterInfo &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