[llvm] [AMDGPU] Avoid repeated hash lookups (NFC) (PR #132657)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Mar 23 19:57:25 PDT 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-amdgpu
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/132657.diff
1 Files Affected:
- (modified) llvm/lib/Target/AMDGPU/SIInsertWaitcnts.cpp (+6-4)
``````````diff
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)
``````````
</details>
https://github.com/llvm/llvm-project/pull/132657
More information about the llvm-commits
mailing list