[llvm] [RISCV] Add DAG combine to convert (iN reduce.add (zext (vXi1 A to vXiN)) into vcpop.m (PR #127497)
Sergey Kachkov via llvm-commits
llvm-commits at lists.llvm.org
Thu Feb 20 01:43:45 PST 2025
================
@@ -18128,11 +18141,24 @@ static SDValue combineScalarCTPOPToVCPOP(SDNode *N, SelectionDAG &DAG,
if (!SrcMVT.isVector() || SrcMVT.getVectorElementType() != MVT::i1)
return SDValue();
- if (!useRVVForFixedLengthVectorVT(SrcMVT, Subtarget))
- return SDValue();
+ // Check that destination type is large enough to hold result without
+ // overflow.
+ if (Opc == ISD::VECREDUCE_ADD) {
+ unsigned MaxNumElts = SrcMVT.getVectorMinNumElements();
----------------
skachkov-sc wrote:
Done
https://github.com/llvm/llvm-project/pull/127497
More information about the llvm-commits
mailing list