[llvm] be51ef4 - [WebAssembly] Avoid repeated hash lookups (NFC) (#127960)
via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 08:57:34 PST 2025
Author: Kazu Hirata
Date: 2025-02-20T08:57:30-08:00
New Revision: be51ef4518ad3375e267667a89d379ce46efc4bb
URL: https://github.com/llvm/llvm-project/commit/be51ef4518ad3375e267667a89d379ce46efc4bb
DIFF: https://github.com/llvm/llvm-project/commit/be51ef4518ad3375e267667a89d379ce46efc4bb.diff
LOG: [WebAssembly] Avoid repeated hash lookups (NFC) (#127960)
Added:
Modified:
llvm/lib/Target/WebAssembly/WebAssemblySortRegion.cpp
Removed:
################################################################################
diff --git a/llvm/lib/Target/WebAssembly/WebAssemblySortRegion.cpp b/llvm/lib/Target/WebAssembly/WebAssemblySortRegion.cpp
index cd84e68aed140..0469fbf15b251 100644
--- a/llvm/lib/Target/WebAssembly/WebAssemblySortRegion.cpp
+++ b/llvm/lib/Target/WebAssembly/WebAssemblySortRegion.cpp
@@ -28,17 +28,17 @@ const SortRegion *SortRegionInfo::getRegionFor(const MachineBasicBlock *MBB) {
// WE->contains(ML->getHeader()), but not ML->contains(WE->getHeader()).
if ((ML && !WE) || (ML && WE && WE->contains(ML->getHeader()))) {
// If the smallest region containing MBB is a loop
- if (LoopMap.count(ML))
- return LoopMap[ML].get();
- LoopMap[ML] = std::make_unique<ConcreteSortRegion<MachineLoop>>(ML);
- return LoopMap[ML].get();
+ auto [It, Inserted] = LoopMap.try_emplace(ML);
+ if (Inserted)
+ It->second = std::make_unique<ConcreteSortRegion<MachineLoop>>(ML);
+ return It->second.get();
} else {
// If the smallest region containing MBB is an exception
- if (ExceptionMap.count(WE))
- return ExceptionMap[WE].get();
- ExceptionMap[WE] =
- std::make_unique<ConcreteSortRegion<WebAssemblyException>>(WE);
- return ExceptionMap[WE].get();
+ auto [It, Inserted] = ExceptionMap.try_emplace(WE);
+ if (Inserted)
+ It->second =
+ std::make_unique<ConcreteSortRegion<WebAssemblyException>>(WE);
+ return It->second.get();
}
}
More information about the llvm-commits
mailing list