[llvm] 8a58f83 - [X86] Avoid repeated hash lookups (NFC) (#128130)

via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 21 11:08:54 PST 2025


Author: Kazu Hirata
Date: 2025-02-21T11:08:51-08:00
New Revision: 8a58f83b041693b9373a1724af97a82bd844a899

URL: https://github.com/llvm/llvm-project/commit/8a58f83b041693b9373a1724af97a82bd844a899
DIFF: https://github.com/llvm/llvm-project/commit/8a58f83b041693b9373a1724af97a82bd844a899.diff

LOG: [X86] Avoid repeated hash lookups (NFC) (#128130)

Added: 
    

Modified: 
    llvm/lib/Target/X86/X86PreTileConfig.cpp

Removed: 
    


################################################################################
diff  --git a/llvm/lib/Target/X86/X86PreTileConfig.cpp b/llvm/lib/Target/X86/X86PreTileConfig.cpp
index 96801636deb9e..e8d90da1fb1e0 100644
--- a/llvm/lib/Target/X86/X86PreTileConfig.cpp
+++ b/llvm/lib/Target/X86/X86PreTileConfig.cpp
@@ -234,9 +234,10 @@ INITIALIZE_PASS_END(X86PreTileConfig, "tilepreconfig",
 void X86PreTileConfig::collectShapeInfo(MachineInstr &MI, unsigned Shapes) {
   auto RecordShape = [&](MachineInstr *MI, MachineBasicBlock *MBB) {
     MIRef MIR(MI, MBB);
-    auto I = llvm::lower_bound(ShapeBBs[MBB], MIR);
-    if (I == ShapeBBs[MBB].end() || *I != MIR)
-      ShapeBBs[MBB].insert(I, MIR);
+    auto &Refs = ShapeBBs[MBB];
+    auto I = llvm::lower_bound(Refs, MIR);
+    if (I == Refs.end() || *I != MIR)
+      Refs.insert(I, MIR);
   };
 
   // All shapes have same row in multi-tile operand.


        


More information about the llvm-commits mailing list