[llvm] [GlobalISel] Avoid repeated hash lookups (NFC) (PR #128461)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sun Feb 23 21:19:38 PST 2025


https://github.com/kazutakahirata created https://github.com/llvm/llvm-project/pull/128461

None

>From 584428742aef2e9fc075840ee9720157c57699b7 Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 23 Feb 2025 09:05:22 -0800
Subject: [PATCH] [GlobalISel] Avoid repeated hash lookups (NFC)

---
 llvm/lib/CodeGen/GlobalISel/LegacyLegalizerInfo.cpp | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

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