[llvm] [AArch64] Drop poison flags when lowering absolute difference patterns. (PR #152130)
Paul Walker via llvm-commits
llvm-commits at lists.llvm.org
Tue Aug 5 05:16:07 PDT 2025
================
@@ -11398,13 +11398,18 @@ SDValue AArch64TargetLowering::LowerSELECT_CC(
// select_cc lhs, rhs, sub(rhs, lhs), sub(lhs, rhs), cc ->
// select_cc lhs, rhs, neg(sub(lhs, rhs)), sub(lhs, rhs), cc
// The second forms can be matched into subs+cneg.
+ // NOTE: Drop poison generating flags from the negated operand to avoid
+ // inadvertently propagating poison after the canonicalisation.
if (TVal.getOpcode() == ISD::SUB && FVal.getOpcode() == ISD::SUB) {
if (TVal.getOperand(0) == LHS && TVal.getOperand(1) == RHS &&
- FVal.getOperand(0) == RHS && FVal.getOperand(1) == LHS)
+ FVal.getOperand(0) == RHS && FVal.getOperand(1) == LHS) {
FVal = DAG.getNegative(TVal, DL, TVal.getValueType());
- else if (TVal.getOperand(0) == RHS && TVal.getOperand(1) == LHS &&
- FVal.getOperand(0) == LHS && FVal.getOperand(1) == RHS)
+ TVal->dropFlags(SDNodeFlags::PoisonGeneratingFlags);
----------------
paulwalker-arm wrote:
It'll be safer to switch these lines. Whilst unlikely we don't want `getNegative` reacting to flags we're about to remove.
https://github.com/llvm/llvm-project/pull/152130
More information about the llvm-commits
mailing list