[llvm] [GlobalISel] Avoid repeated hash lookups (NFC) (PR #128461)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 21:20:11 PST 2025
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-llvm-globalisel
Author: Kazu Hirata (kazutakahirata)
<details>
<summary>Changes</summary>
---
Full diff: https://github.com/llvm/llvm-project/pull/128461.diff
1 Files Affected:
- (modified) llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp (+4-6)
``````````diff
diff --git a/llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp b/llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
index f338f66997657..9841c8ae1ffb2 100644
--- a/llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
+++ b/llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
@@ -305,17 +305,15 @@ LegacyLegalizerInfo::findScalarLegalAction(const InstrAspect &Aspect) const {
if (Aspect.Opcode < FirstOp || Aspect.Opcode > LastOp)
return {NotFound, LLT()};
const unsigned OpcodeIdx = getOpcodeIdxForOpcode(Aspect.Opcode);
+ ArrayRef<SizeAndActionsVec> Actions;
if (Aspect.Type.isPointer()) {
auto &PA = AddrSpace2PointerActions[OpcodeIdx];
if (PA.find(Aspect.Type.getAddressSpace()) == PA.end())
return {NotFound, LLT()};
+ Actions = PA.find(Aspect.Type.getAddressSpace())->second;
+ } else {
+ Actions = ScalarActions[OpcodeIdx];
}
- const SmallVector<SizeAndActionsVec, 1> &Actions =
- Aspect.Type.isPointer()
- ? AddrSpace2PointerActions[OpcodeIdx]
- .find(Aspect.Type.getAddressSpace())
- ->second
- : ScalarActions[OpcodeIdx];
if (Aspect.Idx >= Actions.size())
return {NotFound, LLT()};
const SizeAndActionsVec &Vec = Actions[Aspect.Idx];
``````````
</details>
https://github.com/llvm/llvm-project/pull/128461
More information about the llvm-commits
mailing list