[llvm] 1dbfbb5 - [MemProf] Stop cloning traversal on single allocation type (#126131)

via llvm-commits llvm-commits at lists.llvm.org
Thu Feb 6 13:21:06 PST 2025


Author: Teresa Johnson
Date: 2025-02-06T13:21:02-08:00
New Revision: 1dbfbb5ce60794a5e986df706ea8e7a058115e26

URL: https://github.com/llvm/llvm-project/commit/1dbfbb5ce60794a5e986df706ea8e7a058115e26
DIFF: https://github.com/llvm/llvm-project/commit/1dbfbb5ce60794a5e986df706ea8e7a058115e26.diff

LOG: [MemProf] Stop cloning traversal on single allocation type (#126131)

We were previously checking this after recursing on all callers, but if
we already have a single allocation type there is no need to even look
at any callers. Didn't show a significant improvement overall, but it
does reduce the count of times we enter the identifyClones and do other
checks.

Added: 
    

Modified: 
    llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp b/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
index f6764be9b273e7..d748b162d78094 100644
--- a/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
+++ b/llvm/lib/Transforms/IPO/MemProfContextDisambiguation.cpp
@@ -3407,6 +3407,10 @@ void CallsiteContextGraph<DerivedCCG, FuncTy, CallTy>::identifyClones(
   if (!Node->hasCall())
     return;
 
+  // No need to look at any callers if allocation type already unambiguous.
+  if (hasSingleAllocType(Node->AllocTypes))
+    return;
+
 #ifndef NDEBUG
   auto Insert =
 #endif


        


More information about the llvm-commits mailing list