[llvm] 78408fd - [ExecutionEngine] Avoid repeated map lookups (NFC) (#131552)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 16 23:52:50 PDT 2025
Author: Kazu Hirata
Date: 2025-03-16T23:52:47-07:00
New Revision: 78408fddccf34b7d79eb655fa2cb4dfacdfb8ae3
URL: https://github.com/llvm/llvm-project/commit/78408fddccf34b7d79eb655fa2cb4dfacdfb8ae3
DIFF: https://github.com/llvm/llvm-project/commit/78408fddccf34b7d79eb655fa2cb4dfacdfb8ae3.diff
LOG: [ExecutionEngine] Avoid repeated map lookups (NFC) (#131552)
Added:
Modified:
llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
Removed:
################################################################################
diff --git a/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h b/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
index 701cc3a881496..222928e1a2d20 100644
--- a/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
+++ b/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/RuntimeDyldMachOAArch64.h
@@ -445,10 +445,10 @@ class RuntimeDyldMachOAArch64
(RE.Size == 2 || RE.Size == 3)) ||
RE.Size == 2);
SectionEntry &Section = Sections[RE.SectionID];
- StubMap::const_iterator i = Stubs.find(Value);
+ auto [It, Inserted] = Stubs.try_emplace(Value);
int64_t Offset;
- if (i != Stubs.end())
- Offset = static_cast<int64_t>(i->second);
+ if (!Inserted)
+ Offset = static_cast<int64_t>(It->second);
else {
// FIXME: There must be a better way to do this then to check and fix the
// alignment every time!!!
@@ -458,7 +458,7 @@ class RuntimeDyldMachOAArch64
(BaseAddress + Section.getStubOffset() + StubAlignment - 1) &
-StubAlignment;
unsigned StubOffset = StubAddress - BaseAddress;
- Stubs[Value] = StubOffset;
+ It->second = StubOffset;
assert(isAligned(getStubAlignment(), StubAddress) &&
"GOT entry not aligned");
RelocationEntry GOTRE(RE.SectionID, StubOffset,
More information about the llvm-commits
mailing list