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

via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 07:51:01 PST 2025


Author: Kazu Hirata
Date: 2025-02-10T07:50:57-08:00
New Revision: 6228379a6c98d90d81db1a7b15f9682b7b01fb90

URL: https://github.com/llvm/llvm-project/commit/6228379a6c98d90d81db1a7b15f9682b7b01fb90
DIFF: https://github.com/llvm/llvm-project/commit/6228379a6c98d90d81db1a7b15f9682b7b01fb90.diff

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

Added: 
    

Modified: 
    llvm/tools/llvm-profgen/MissingFrameInferrer.cpp

Removed: 
    


################################################################################
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