[llvm] bcec6c5 - [Transforms] Avoid repeated hash lookups (NFC) (#130238)

via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 7 00:59:42 PST 2025


Author: Kazu Hirata
Date: 2025-03-07T00:59:39-08:00
New Revision: bcec6c5325a401c3af507b2de649097bba4815d7

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

LOG: [Transforms] Avoid repeated hash lookups (NFC) (#130238)

Added: 
    

Modified: 
    llvm/lib/Transforms/Coroutines/CoroFrame.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Transforms/Coroutines/CoroFrame.cpp b/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
index 62fa3af502e29..2f5f1089067bf 100644
--- a/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
+++ b/llvm/lib/Transforms/Coroutines/CoroFrame.cpp
@@ -785,7 +785,8 @@ static void buildFrameDebugInfo(Function &F, coro::Shape &Shape,
   // fields confilicts with each other.
   unsigned UnknownTypeNum = 0;
   for (unsigned Index = 0; Index < FrameTy->getNumElements(); Index++) {
-    if (!OffsetCache.contains(Index))
+    auto OCIt = OffsetCache.find(Index);
+    if (OCIt == OffsetCache.end())
       continue;
 
     std::string Name;
@@ -797,8 +798,8 @@ static void buildFrameDebugInfo(Function &F, coro::Shape &Shape,
     Type *Ty = FrameTy->getElementType(Index);
     assert(Ty->isSized() && "We can't handle type which is not sized.\n");
     SizeInBits = Layout.getTypeSizeInBits(Ty).getFixedValue();
-    AlignInBits = OffsetCache[Index].first * 8;
-    OffsetInBits = OffsetCache[Index].second * 8;
+    AlignInBits = OCIt->second.first * 8;
+    OffsetInBits = OCIt->second.second * 8;
 
     if (auto It = NameCache.find(Index); It != NameCache.end()) {
       Name = It->second.str();


        


More information about the llvm-commits mailing list