[llvm] [X86] fold AND(X,SEXT(SETCC())) -> SELECT(SETCC(),X,0) to support AVX512 predicated {k}{z} masks (PR #131788)
Phoebe Wang via llvm-commits
llvm-commits at lists.llvm.org
Tue Mar 18 06:56:30 PDT 2025
================
@@ -51481,6 +51483,22 @@ static SDValue combineAnd(SDNode *N, SelectionDAG &DAG,
}
}
+ // On AVX512 targets, attempt to reverse foldVSelectToSignBitSplatMask.
+ // to make use of predicated selects.
+ // AND(X,SEXT(SETCC())) -> SELECT(SETCC(),X,0)
----------------
phoebewang wrote:
I don't see a problem in test case, but not sure if we have problem in v32i1/v64i1 without AVX512BW.
https://github.com/llvm/llvm-project/pull/131788
More information about the llvm-commits
mailing list