[llvm] [AMDGPU] Avoid repeated hash lookups (NFC) (PR #132657)
Kazu Hirata via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 23 19:56:46 PDT 2025
https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/132657
None
>From b1d6f279f59c3d196f81bd033a48c9a7fe578c8f Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 23 Mar 2025 08:01:48 -0700
Subject: [PATCH] [AMDGPU] Avoid repeated hash lookups (NFC)
---
llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp b/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
index eafa324a04b00..5906b1caeed3d 100644
--- a/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
+++ b/llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp
@@ -1743,10 +1743,12 @@ bool SIInsertWaitcnts::generateWaitcntInstBefore(MachineInstr &MI,
for (const MachineMemOperand *Memop : MI.memoperands()) {
const Value *Ptr = Memop->getValue();
- if (Memop->isStore() && SLoadAddresses.count(Ptr)) {
- addWait(Wait, SmemAccessCounter, 0);
- if (PDT->dominates(MI.getParent(), SLoadAddresses.find(Ptr)->second))
- SLoadAddresses.erase(Ptr);
+ if (Memop->isStore()) {
+ if (auto It = SLoadAddresses.find(Ptr); It != SLoadAddresses.end()) {
+ addWait(Wait, SmemAccessCounter, 0);
+ if (PDT->dominates(MI.getParent(), It->second))
+ SLoadAddresses.erase(It);
+ }
}
unsigned AS = Memop->getAddrSpace();
if (AS != AMDGPUAS::LOCAL_ADDRESS && AS != AMDGPUAS::FLAT_ADDRESS)
More information about the llvm-commits
mailing list