[llvm] [SLP] Use named structs in vectorizeStores() (NFC) (PR #132781)
Gaƫtan Bossu via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 08:07:11 PDT 2025
================
@@ -19994,6 +19994,38 @@ 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 {
----------------
gbossu wrote:
I want to refactor the code one step at a time so it's easy to review (and follow in the commits history as well). Currently my goal is to get rid of the `std::pair<int, std::set<std::pair<...>>>` data structure that was used, and introduce something a bit more readable. Once this is done, I'll open a follow-up PR that brings OOP and simplifies `vectorizeStores()` further.
https://github.com/llvm/llvm-project/pull/132781
More information about the llvm-commits
mailing list