[llvm] [RISCV] Support VP_SPLAT mask operations (PR #132345)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Fri Mar 21 02:16:08 PDT 2025
================
@@ -12773,8 +12774,30 @@ SDValue RISCVTargetLowering::lowerVPSplatExperimental(SDValue Op,
Mask = convertToScalableVector(MaskVT, Mask, DAG, Subtarget);
}
- SDValue Result =
- lowerScalarSplat(SDValue(), Val, VL, ContainerVT, DL, DAG, Subtarget);
+ SDValue Result;
+ if (VT.getScalarType() == MVT::i1) {
+ if (isa<ConstantSDNode>(Val)) {
+ SDValue TrueV = DAG.getNode(RISCVISD::VMSET_VL, DL, ContainerVT, VL);
+ SDValue FalseV = DAG.getNode(RISCVISD::VMCLR_VL, DL, ContainerVT, VL);
+ // This select instruction will be optimized
+ Result = DAG.getSelect(DL, VT, Val, TrueV, FalseV);
----------------
lukel97 wrote:
Nit, if you've casted it to a ConstantSDNode it's pretty easy to check the value:
```suggestion
if (auto *C = dyn_cast<ConstantSDNode>(Val)) {
SDValue Result = DAG.getNode(C->getZExtValue() ? RISCVISD::VMSET_VL : RISCVISD::VMCLR_VL, DL, ContainerVT, VL);
```
https://github.com/llvm/llvm-project/pull/132345
More information about the llvm-commits
mailing list