The FMA folds in match.pd currently only matches (negate @0) directly.
When the negated operand is wrapped in a type conversion
(e.g. (convert (negate @0))), the simplification to IFN_FNMA does not
trigger.
This prevents folding of patterns such as:
*c = *c - (v8u)(*a * *b);
when the multiply operands undergo vector type conversions before being
passed to FMA. In such cases the expression lowers to neg + mla/mad
instead of the more optimal msb/mls on AArch64 SVE, because the current
fold cannot see through the casts.
Extend the match pattern to allow conversions on the negated
operand and the second multiplicand:
(fmas:c (nop_convert (negate @0)) @1 @2)
The fold rewrites the expression as:
convert (IFN_FNMA (convert:ut @0) (convert:ut @1) (convert:ut @2))
The match is restricted to nop_convert on the negated operand to avoid
folding through value-changing conversions. This enables recognition of
the subtraction-of-product form even when vector element type casts are
present.
The fold is only performed when signed overflow is unobservable for
both the outer FMA operation and the inner negation. This avoids
changing sanitized overflow behaviour when looking through the nop
conversion on the negated operand.
With this change, AArch64 SVE code generation is able to select msb/mls
instead of emitting a separate neg followed by mla/mad.
This patch was bootstrapped and regression tested on aarch64-linux-gnu.
PR/target 123924
gcc/
* match.pd: Allow conversions in FMA-to-FNMA fold.
gcc/testsuite/
* gcc.target/aarch64/sve/fnma_match.c: New test.
* gcc.target/aarch64/sve/pr123897.c:
Update the test to scan for FNMA in the tree dump.
---
Previous discussion:
https://inbox.sourceware.org/gcc-patches/[email protected]/
Changes since v4:
- Made the nop_convert unconditional.
- Only check for sanitized behavior.
- Always do the FNMA in unsigned domain.
Changes since v3:
- Added checks for signed integer overflow
Changes since v2:
- Fixed coding style issues.
- Corrected the PR number in the commit message.
Changes since v1:
- Updated the patch to address review comments.
- Simplified the pattern by removing the conversion match on the second operand.
- Added new tests in the existing test file.
- Removed tests that showed existing codegen didn't break.
gcc/match.pd | 16 ++++-
.../gcc.target/aarch64/sve/fnma_match.c | 59 +++++++++++++++++++
.../gcc.target/aarch64/sve/pr123897.c | 3 +-
3 files changed, 76 insertions(+), 2 deletions(-)
create mode 100644 gcc/testsuite/gcc.target/aarch64/sve/fnma_match.c
diff --git a/gcc/match.pd b/gcc/match.pd
index b037b1a2876..4ed058f6e18 100644
--- a/gcc/match.pd
+++ b/gcc/match.pd
@@ -9927,7 +9927,21 @@ DEFINE_INT_AND_FLOAT_ROUND_FN (RINT)
(simplify
(negate (fmas@3 @0 @1 @2))
(if (!HONOR_SIGN_DEPENDENT_ROUNDING (type) && single_use (@3))
- (IFN_FNMS @0 @1 @2))))
+ (IFN_FNMS @0 @1 @2)))
+ (simplify
+ (fmas:c (nop_convert (negate @0)) @1 @2)
+ (with { tree t = TREE_TYPE (@0); }
+ (if ((!ANY_INTEGRAL_TYPE_P (type)
+ || TYPE_UNSIGNED (type)
+ || !TYPE_OVERFLOW_SANITIZED (type))
+ && (!ANY_INTEGRAL_TYPE_P (t)
+ || TYPE_UNSIGNED (t)
+ || !TYPE_OVERFLOW_SANITIZED (type)))
+ /* Move the negation into FNMA only when signed overflow is
+ unobservable for both the outer operation and the inner negate. */
+ (with { tree utype = unsigned_type_for (type); }
+ (convert (IFN_FNMA (convert:utype @0) (convert:utype @1)
+ (convert:utype @2))))))))
(simplify
(IFN_FMS:c (negate @0) @1 @2)
diff --git a/gcc/testsuite/gcc.target/aarch64/sve/fnma_match.c
b/gcc/testsuite/gcc.target/aarch64/sve/fnma_match.c
new file mode 100644
index 00000000000..9b6d6fe6e3e
--- /dev/null
+++ b/gcc/testsuite/gcc.target/aarch64/sve/fnma_match.c
@@ -0,0 +1,59 @@
+/* { dg-do compile } */
+/* { dg-options "-O2 -march=armv9-a -msve-vector-bits=256" } */
+
+typedef __attribute__((__vector_size__(sizeof(int)*8))) signed int v8i;
+typedef __attribute__((__vector_size__(sizeof(int)*8))) unsigned int v8u;
+
+void g(v8i *a, v8i *b, v8u *c)
+{
+ *c = *c - (v8u)(*a * *b);
+}
+
+v8u g_(v8i a, v8i b, v8u c)
+{
+ return c - (v8u)(a * b);
+}
+
+void h(v8u *a, v8u *b, v8i *c)
+{
+ *c = *c - (v8i)(*a * *b);
+}
+
+v8i h_(v8u a, v8u b, v8i c)
+{
+ return c - (v8i)(a * b);
+}
+
+void x(v8u *a, v8u *b, v8i *c)
+{
+ *c = *c + ((v8i)(-*a) * (v8i)*b);
+}
+
+v8i x_(v8u a, v8u b, v8i c)
+{
+ return c + ((v8i)(-a) * (v8i)b);
+}
+
+void y(v8u *a, v8i *b,v8i *c)
+{
+ *c = *c + ((v8i)(-*a) * *b);
+}
+
+v8i y_(v8u a, v8i b, v8i c)
+{
+ return c + ((v8i)(-a) * b);
+}
+
+void z(v8i *a, v8u *b, v8u *c)
+{
+ *c = *c + ((v8u)(-*a) * *b);
+}
+
+v8u z_(v8i a, v8u b, v8u c)
+{
+ return c + ((v8u)(-a) * b);
+}
+
+/* { dg-final { scan-assembler-times "\\tmsb\\t" 5 } } */
+/* { dg-final { scan-assembler-times "\\tmls\\t" 5 } } */
+/* { dg-final { scan-assembler-not "\\tneg\\t" } } */
diff --git a/gcc/testsuite/gcc.target/aarch64/sve/pr123897.c
b/gcc/testsuite/gcc.target/aarch64/sve/pr123897.c
index d74efabb7f8..45bc52522a9 100644
--- a/gcc/testsuite/gcc.target/aarch64/sve/pr123897.c
+++ b/gcc/testsuite/gcc.target/aarch64/sve/pr123897.c
@@ -13,4 +13,5 @@ void g(v8i *a,v8i *b,v8u *c)
*c = *c - (v8u)(*a * *b);
}
-/* { dg-final { scan-tree-dump-times "\.FMA" 2 "widening_mul" } } */
+/* { dg-final { scan-tree-dump-times "\.FMA" 1 "widening_mul" } } */
+/* { dg-final { scan-tree-dump-times "\.FNMA" 1 "widening_mul" } } */
--
2.43.0