[llvm] 3919793 - [WebAssembly] Avoid repeated hash lookups (NFC) (#129469)

via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 3 09:18:39 PST 2025


Author: Kazu Hirata
Date: 2025-03-03T09:18:36-08:00
New Revision: 39197938891b954d199473a58e64e237d1da8d46

URL: https://github.com/llvm/llvm-project/commit/39197938891b954d199473a58e64e237d1da8d46
DIFF: https://github.com/llvm/llvm-project/commit/39197938891b954d199473a58e64e237d1da8d46.diff

LOG: [WebAssembly] Avoid repeated hash lookups (NFC) (#129469)

Added: 
    

Modified: 
    llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
index a308d7f3e09e0..550d8b64dca35 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblyLowerEmscriptenEHSjLj.cpp
@@ -491,15 +491,16 @@ static Value *getAddrSizeInt(Module *M, uint64_t C) {
 Function *
 WebAssemblyLowerEmscriptenEHSjLj::getFindMatchingCatch(Module &M,
                                                        unsigned NumClauses) {
-  if (FindMatchingCatches.count(NumClauses))
-    return FindMatchingCatches[NumClauses];
+  auto [It, Inserted] = FindMatchingCatches.try_emplace(NumClauses);
+  if (!Inserted)
+    return It->second;
   PointerType *Int8PtrTy = PointerType::getUnqual(M.getContext());
   SmallVector<Type *, 16> Args(NumClauses, Int8PtrTy);
   FunctionType *FTy = FunctionType::get(Int8PtrTy, Args, false);
   Function *F = getFunction(
       FTy, "__cxa_find_matching_catch_" + Twine(NumClauses + 2), &M);
   markAsImported(F);
-  FindMatchingCatches[NumClauses] = F;
+  It->second = F;
   return F;
 }
 


        


More information about the llvm-commits mailing list