[llvm] [SLP] Use named structs in vectorizeStores() (NFC) (PR #132781)

Benjamin Maxwell via llvm-commits llvm-commits at lists.llvm.org
Tue Apr 1 15:44:13 PDT 2025


================
@@ -19945,6 +19945,41 @@ static bool checkTreeSizes(ArrayRef<std::pair<unsigned, unsigned>> Sizes,
   return Dev * 96 / (Mean * Mean) == 0;
 }
 
+namespace {
+
+/// A group of instructions that we'll try to bundle together using vector ops.
+/// They are ordered using the signed distance of their address operand to the
+/// address of this group's BaseInstr.
+struct RelatedStoreInsts {
+  RelatedStoreInsts(unsigned BaseInstrIdx) { reset(BaseInstrIdx); }
+  void reset(unsigned NewBaseInstr) {
+    BaseInstrIdx = NewBaseInstr;
+    Instrs.clear();
+    insert(NewBaseInstr, 0);
+  }
+
+  void insert(unsigned InstrIdx, int PtrDist) {
+    Instrs.emplace(PtrDist, InstrIdx);
+  }
+
+  /// Return the instruction with a pointer distance of \p PtrDist, or nullopt.
+  std::optional<unsigned> getInstIdx(int PtrDist) const {
+    auto It = Instrs.find(PtrDist);
+    if (It != Instrs.end())
+      return It->second;
+    return std::nullopt;
+  }
----------------
MacDue wrote:

Given the only use of this is where alexey would like to avoid a double-lookup, I think you could tweak this method to:

```suggestion
  /// Return the instruction with a pointer distance of \p PtrDist, or insert \p  InstIdx
  /// at \p PtrDist if no such instruction exists. Returns the existing instruction, if found,
  /// or std::nullopt on insertion.
  std::optional<unsigned> getOrInsertInstIdx(int PtrDist, int InstIdx) const {
    auto [It, Inserted] = Instrs.insert(PtrDist, InstIdx);
    if (!Inserted)
      return It->second;
    return std::nullopt;
  }
```

https://github.com/llvm/llvm-project/pull/132781


More information about the llvm-commits mailing list