[llvm-branch-commits] [llvm] [LoopVectorize] Support vectorization of compressing patterns (PR #214491)

Benjamin Maxwell via llvm-branch-commits llvm-branch-commits at lists.llvm.org
Fri Aug 14 09:53:30 PDT 2026


================
@@ -2903,6 +2920,38 @@ void LoopVectorizationCostModel::collectLoopUniforms(ElementCount VF) {
     AddToWorklistIfAllowed(IndUpdate);
   }
 
+  // Handle monotonic phis (similarly to induction vars).
+  for (const auto &MonotonicPHI : Legal->getMonotonicPHIs()) {
----------------
MacDue wrote:

I'll have a look into reworking the descriptor to only allow compresstore/expandload uses for now. I agree it would be safer (and less of a hack than the invalid cost). 

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


More information about the llvm-branch-commits mailing list