[llvm] [PowerPC] Avoid repeated hash lookups (NFC) (PR #132659)

Kazu Hirata via llvm-commits llvm-commits at lists.llvm.org
Sun Mar 23 19:57:55 PDT 2025


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

None

>From 5e16a9cc9488c630150e4d7c94183a7b61f9bf7f Mon Sep 17 00:00:00 2001
From: Kazu Hirata <kazu at google.com>
Date: Sun, 23 Mar 2025 08:11:01 -0700
Subject: [PATCH] [PowerPC] Avoid repeated hash lookups (NFC)

---
 llvm/lib/Target/PowerPC/PPCFastISel.cpp | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/llvm/lib/Target/PowerPC/PPCFastISel.cpp b/llvm/lib/Target/PowerPC/PPCFastISel.cpp
index 9e7185287d291..e92e00f80c552 100644
--- a/llvm/lib/Target/PowerPC/PPCFastISel.cpp
+++ b/llvm/lib/Target/PowerPC/PPCFastISel.cpp
@@ -2263,17 +2263,17 @@ Register PPCFastISel::fastMaterializeConstant(const Constant *C) {
 // Materialize the address created by an alloca into a register, and
 // return the register number (or zero if we failed to handle it).
 Register PPCFastISel::fastMaterializeAlloca(const AllocaInst *AI) {
+  DenseMap<const AllocaInst *, int>::iterator SI =
+      FuncInfo.StaticAllocaMap.find(AI);
+
   // Don't handle dynamic allocas.
-  if (!FuncInfo.StaticAllocaMap.count(AI))
+  if (SI == FuncInfo.StaticAllocaMap.end())
     return Register();
 
   MVT VT;
   if (!isLoadTypeLegal(AI->getType(), VT))
     return Register();
 
-  DenseMap<const AllocaInst*, int>::iterator SI =
-    FuncInfo.StaticAllocaMap.find(AI);
-
   if (SI != FuncInfo.StaticAllocaMap.end()) {
     Register ResultReg = createResultReg(&PPC::G8RC_and_G8RC_NOX0RegClass);
     BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, MIMD, TII.get(PPC::ADDI8),



More information about the llvm-commits mailing list