[llvm] [SLP]Initial support for (masked)loads + compress and (masked)interleaved (PR #132099)

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Fri Mar 21 04:46:56 PDT 2025


================
@@ -5214,6 +5221,145 @@ static Value *createExtractVector(IRBuilderBase &Builder, Value *Vec,
   return Builder.CreateShuffleVector(Vec, Mask);
 }
 
+/// Builds compress-like mask for shuffles for the given \p PointerOps, ordered
+/// with \p Order.
+static void buildCompressMask(ArrayRef<Value *> PointerOps,
----------------
RKSimon wrote:

Worth returning true (or std::optional<unsigned>) here if the compression stride is uniform?

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


More information about the llvm-commits mailing list