[llvm] [SLP][REVEC] Add getScalarizationOverhead helper function to reduce error when REVEC is enabled. (PR #128530)
Alexey Bataev via llvm-commits
llvm-commits at lists.llvm.org
Mon Feb 24 10:04:26 PST 2025
================
@@ -5221,9 +5256,9 @@ BoUpSLP::canVectorizeLoads(ArrayRef<Value *> VL, const Value *VL0,
PtrVecTy, DemandedElts, /*Insert=*/true, /*Extract=*/false, CostKind);
else
VectorGEPCost +=
- TTI.getScalarizationOverhead(
- PtrVecTy, APInt::getOneBitSet(VecTy->getNumElements(), 0),
- /*Insert=*/true, /*Extract=*/false, CostKind) +
+ TTI.getScalarizationOverhead(PtrVecTy, APInt::getOneBitSet(Sz, 0),
----------------
alexey-bataev wrote:
This is not a part of this change, the common function is not used
https://github.com/llvm/llvm-project/pull/128530
More information about the llvm-commits
mailing list