[llvm] [ExecutionEngine] Avoid repeated hash lookups (NFC) (PR #131959)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 18 19:52:55 PDT 2025


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

None

>From c0ec00a807f5d577506004d79b533fb404a9f068 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Tue, 18 Mar 2025 12:28:25 -0700
Subject: [PATCH] [ExecutionEngine] Avoid repeated hash lookups (NFC)

---
 llvm/lib/ExecutionEngine/Orc/ReOptimizeLayer.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/llvm/lib/ExecutionEngine/Orc/ReOptimizeLayer.cpp b/llvm/lib/ExecutionEngine/Orc/ReOptimizeLayer.cpp
index e2669fd1fc86b..11a9cca4a9b4f 100644
--- a/llvm/lib/ExecutionEngine/Orc/ReOptimizeLayer.cpp
+++ b/llvm/lib/ExecutionEngine/Orc/ReOptimizeLayer.cpp
@@ -274,6 +274,6 @@ Error ReOptimizeLayer::handleRemoveResources(JITDylib &JD, ResourceKey K) {
 void ReOptimizeLayer::handleTransferResources(JITDylib &JD, ResourceKey DstK,
                                               ResourceKey SrcK) {
   std::unique_lock<std::mutex> Lock(Mutex);
-  MUResources[DstK].insert(MUResources[SrcK].begin(), MUResources[SrcK].end());
+  MUResources[DstK].insert_range(MUResources[SrcK]);
   MUResources.erase(SrcK);
 }



More information about the llvm-commits mailing list