[llvm] [X86] Fold AND(Y, XOR(X, SUB(0, X))) to ANDN(Y, BLSMSK(X)) (PR #128348)
Simon Pilgrim via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 22 07:57:01 PST 2025
================
@@ -51045,6 +51045,31 @@ static SDValue combineBMILogicOp(SDNode *N, SelectionDAG &DAG,
return SDValue();
}
+/// Fold AND(Y, XOR(X, NEG(X))) -> ANDN(Y, BLSMSK(X)) if BMI is available.
+static SDValue combineAndXorSubWithBMI(SDValue Op, SDValue OtherOp, SDLoc DL,
+ SelectionDAG &DAG,
+ const X86Subtarget &Subtarget) {
+ using namespace llvm::SDPatternMatch;
+
+ EVT VT = Op.getValueType();
+ // Make sure this node is a candidate for BMI instructions.
+ if (!Subtarget.hasBMI() || !VT.isScalarInteger() ||
+ (VT != MVT::i32 && VT != MVT::i64))
+ return SDValue();
+
+ SDValue X;
+ if (!sd_match(Op,
+ m_OneUse(m_Xor(m_Value(X), m_OneUse(m_Neg(m_Deferred(X)))))))
+ return SDValue();
+
+ SDValue BLSMSK =
+ DAG.getNode(ISD::XOR, DL, VT, X,
+ DAG.getNode(ISD::SUB, DL, VT, X, DAG.getConstant(1, DL, VT)));
+ SDValue AndN = DAG.getNode(ISD::AND, SDLoc(Op), VT, OtherOp,
+ DAG.getNOT(SDLoc(Op), BLSMSK, VT));
----------------
RKSimon wrote:
Reuse DL instead of SDLoc(Op)
https://github.com/llvm/llvm-project/pull/128348
More information about the llvm-commits
mailing list