[llvm] [SPIRV] Avoid repeated hash lookups (NFC) (PR #128303)
via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 00:15:26 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-backend-spir-v
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/128303.diff
1 Files Affected:
- (modified) llvm/lib/Target/SPIRV/SPIRVDuplicatesTracker.h (+5-4)
``````````diff
diff --git a/llvm/lib/Target/SPIRV/SPIRVDuplicatesTracker.h b/llvm/lib/Target/SPIRV/SPIRVDuplicatesTracker.h
index e574892712298..441e32c1eb695 100644
--- a/llvm/lib/Target/SPIRV/SPIRVDuplicatesTracker.h
+++ b/llvm/lib/Target/SPIRV/SPIRVDuplicatesTracker.h
@@ -154,22 +154,23 @@ template <typename KeyTy> class SPIRVDuplicatesTrackerBase {
if (find(V, MF).isValid())
return;
- Storage[V][MF] = R;
+ auto &S = Storage[V];
+ S[MF] = R;
if (std::is_same<Function,
typename std::remove_const<
typename std::remove_pointer<KeyTy>::type>::type>() ||
std::is_same<Argument,
typename std::remove_const<
typename std::remove_pointer<KeyTy>::type>::type>())
- Storage[V].setIsFunc(true);
+ S.setIsFunc(true);
if (std::is_same<GlobalVariable,
typename std::remove_const<
typename std::remove_pointer<KeyTy>::type>::type>())
- Storage[V].setIsGV(true);
+ S.setIsGV(true);
if (std::is_same<Constant,
typename std::remove_const<
typename std::remove_pointer<KeyTy>::type>::type>())
- Storage[V].setIsConst(true);
+ S.setIsConst(true);
}
Register find(KeyTy V, const MachineFunction *MF) const {
``````````
</details>
https://github.com/llvm/llvm-project/pull/128303
More information about the llvm-commits
mailing list