[llvm] [LLVM][AArch64] Refactor lowering of fixed length integer setcc operations. (PR #132434)
Eli Friedman via llvm-commits
llvm-commits at lists.llvm.org
Wed Apr 2 15:04:36 PDT 2025
================
@@ -25268,6 +25216,14 @@ static SDValue performSETCCCombine(SDNode *N,
if (SDValue V = performOrXorChainCombine(N, DAG))
return V;
+ EVT CmpVT = LHS.getValueType();
+
+ APInt SplatLHSVal;
+ if (CmpVT.isInteger() && Cond == ISD::SETGT &&
+ ISD::isConstantSplatVector(LHS.getNode(), SplatLHSVal) &&
+ SplatLHSVal.isOne())
+ return DAG.getSetCC(DL, VT, DAG.getConstant(0, DL, CmpVT), RHS, ISD::SETGE);
----------------
efriedma-quic wrote:
Probably worth adding a comment explaining why you can't currently use a TableGen pattern for this. But seems fine.
https://github.com/llvm/llvm-project/pull/132434
More information about the llvm-commits
mailing list