[llvm] 71b7b1f - [GlobalISel] Avoid repeated hash lookups (NFC) (#128461)
via llvm-commits
llvm-commits at lists.llvm.org
Sun Feb 23 23:43:09 PST 2025
Author: Kazu Hirata
Date: 2025-02-23T23:43:05-08:00
New Revision: 71b7b1f79f8eab5b4d4eb0354d5b74ce3addd977
URL: https://github.com/llvm/llvm-project/commit/71b7b1f79f8eab5b4d4eb0354d5b74ce3addd977
DIFF: https://github.com/llvm/llvm-project/commit/71b7b1f79f8eab5b4d4eb0354d5b74ce3addd977.diff
LOG: [GlobalISel] Avoid repeated hash lookups (NFC) (#128461)
Added:
Modified:
llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp
Removed:
################################################################################
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];
More information about the llvm-commits
mailing list