[llvm] [RISCV] Avoid VMNOT by swapping VMERGE operands (PR #126751)
Luke Lau via llvm-commits
llvm-commits at lists.llvm.org
Wed Feb 19 20:00:00 PST 2025
================
@@ -8980,6 +8983,20 @@ SDValue RISCVTargetLowering::lowerVectorMaskExt(SDValue Op, SelectionDAG &DAG,
SDValue SplatZero = DAG.getConstant(0, DL, XLenVT);
SDValue SplatTrueVal = DAG.getSignedConstant(ExtTrueVal, DL, XLenVT);
+ if (Src.getOpcode() == ISD::EXTRACT_SUBVECTOR) {
+ SDValue Xor = Src.getOperand(0);
+ if (Xor.getOpcode() == RISCVISD::VMXOR_VL) {
+ SDValue ScalableOnes = Xor.getOperand(1);
+ if (ScalableOnes.getOpcode() == ISD::INSERT_SUBVECTOR &&
+ ScalableOnes.getOperand(0).isUndef() &&
+ ISD::isConstantSplatVectorAllOnes(
+ ScalableOnes.getOperand(1).getNode(), false)) {
----------------
lukel97 wrote:
Same here
https://github.com/llvm/llvm-project/pull/126751
More information about the llvm-commits
mailing list