[llvm] [llvm-profgen] Avoid repeated hash lookups (NFC) (PR #126467)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 9 21:29:37 PST 2025


https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/126467

None

>From 0ad8e715f797f395f98e06f1d3dc28cbaa3e51bd Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 9 Feb 2025 13:51:37 -0800
Subject: [PATCH] [llvm-profgen] Avoid repeated hash lookups (NFC)

---
 llvm/tools/llvm-profgen/MissingFrameInferrer.cpp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/llvm/tools/llvm-profgen/MissingFrameInferrer.cpp b/llvm/tools/llvm-profgen/MissingFrameInferrer.cpp
index ee49950f39ca4e2..eefe38cd3fa0025 100644
--- a/llvm/tools/llvm-profgen/MissingFrameInferrer.cpp
+++ b/llvm/tools/llvm-profgen/MissingFrameInferrer.cpp
@@ -206,11 +206,12 @@ uint64_t MissingFrameInferrer::computeUniqueTailCallPath(
 
 uint64_t MissingFrameInferrer::computeUniqueTailCallPath(
     uint64_t From, BinaryFunction *To, SmallVectorImpl<uint64_t> &Path) {
-  if (!TailCallEdgesF.count(From))
+  auto It = TailCallEdgesF.find(From);
+  if (It == TailCallEdgesF.end())
     return 0;
   Path.push_back(From);
   uint64_t NumPaths = 0;
-  for (auto Target : TailCallEdgesF[From]) {
+  for (auto Target : It->second) {
     NumPaths += computeUniqueTailCallPath(Target, To, Path);
     // Stop analyzing the remaining if we are already seeing more than one
     // reachable paths.



More information about the llvm-commits mailing list