[llvm] [LoopVectorize] Don't scalarize predicated instruction with optsize (PR #129265)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Tue Mar 11 08:22:00 PDT 2025


================
@@ -5518,6 +5517,9 @@ InstructionCost LoopVectorizationCostModel::computePredInstDiscount(
     // includes the scalarization overhead of the predicated instruction.
     InstructionCost VectorCost = getInstructionCost(I, VF);
 
+    if (VectorCost == InstructionCost::getInvalid())
+      continue;
----------------
fhahn wrote:

Should this return here? The comment for the loop says it computes the discount of scalarizing the whole expression, so skipping here means we just ignored some costs, while it is not possible to scalarize the whole expression.

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


More information about the llvm-commits mailing list