[llvm] [RISCV] Undo unprofitable zext of icmp combine (PR #134306)
Craig Topper via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 4 08:35:54 PDT 2025
================
@@ -15040,6 +15040,68 @@ static SDValue performTRUNCATECombine(SDNode *N, SelectionDAG &DAG,
return combineTruncSelectToSMaxUSat(N, DAG);
}
+// InstCombinerImpl::transformZExtICmp will narrow a zext of an icmp with a
+// truncation. But RVV doesn't have truncation instructions for more than twice
+// the bitwidth.
+//
+// E.g. trunc <vscale x 1 x i64> %x to <vscale x 1 x i8> will generate:
+//
+// vsetvli a0, zero, e32, m2, ta, ma
+// vnsrl.wi v12, v8, 0
+// vsetvli zero, zero, e16, m1, ta, ma
+// vnsrl.wi v8, v12, 0
+// vsetvli zero, zero, e8, mf2, ta, ma
+// vnsrl.wi v8, v8, 0
+//
+// So reverse the combine so we generate an vmseq/vmsne again:
+//
+// and (lshr (trunc X), ShAmt), 1
+// -->
+// zext (icmp ne (and X, (1 << ShAmt)), 0)
+//
+// and (lshr (not (trunc X)), ShAmt), 1
+// -->
+// zext (icmp eq (and X, (1 << ShAmt)), 0)
+static SDValue reverseZExtICmpCombine(SDNode *N, SelectionDAG &DAG,
+ const RISCVSubtarget &Subtarget) {
+ using namespace SDPatternMatch;
+ SDLoc DL(N);
+
+ if (!Subtarget.hasVInstructions())
+ return SDValue();
+
+ EVT VT = N->getValueType(0);
+ if (!VT.isVector())
+ return SDValue();
+
+ APInt ShAmt;
+ SDValue Inner;
+ if (!sd_match(N, m_And(m_OneUse(m_Srl(m_Value(Inner), m_ConstInt(ShAmt))),
+ m_One())))
+ return SDValue();
+
+ SDValue X;
+ bool IsNot;
+ if (sd_match(Inner, m_Not(m_Trunc(m_Value(X)))))
+ IsNot = true;
+ else if (sd_match(Inner, m_Trunc(m_Value(X))))
+ IsNot = false;
+ else
+ return SDValue();
+
+ EVT WideVT = X.getValueType();
+ if (VT.getScalarSizeInBits() >= WideVT.getScalarSizeInBits() / 2)
+ return SDValue();
+
+ SDValue Res =
+ DAG.getNode(ISD::AND, DL, WideVT, X,
+ DAG.getConstant(1 << ShAmt.getZExtValue(), DL, WideVT));
+ Res = DAG.getSetCC(DL, WideVT.changeElementType(MVT::i1), Res,
----------------
topperc wrote:
Don't use changeElementType. It's half broken. If WideVT happens to be a simple VT, but the VT with the element type changed is not simple, it will fail.
https://github.com/llvm/llvm-project/pull/134306
More information about the llvm-commits
mailing list