From 67138ea1b041fe1637da6b3568f064f172d9358c Mon Sep 17 00:00:00 2001 From: Uros Bizjak Date: Fri, 27 Nov 2020 18:41:56 +0100 Subject: [PATCH] testsuite/i386: Fix XOP and FMA4 checking functions [PR98036]. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Add missing returns and remove unnecessary postfix increments. 2020-11-27 Uroš Bizjak PR testsuite/98036 gcc/testsuite/ * gcc.target/i386/fma4-256-maccXX.c (check_maccps): Remove unnecessary postfix increment on a returned variable. (check_maccpd): Ditto. * gcc.target/i386/fma4-256-msubXX.c (check_msubps): Ditto. (check_msubpd): Ditto. * gcc.target/i386/fma4-256-nmaccXX.c (check_nmaccps): Ditto. (check_nmaccpd): Ditto. * gcc.target/i386/fma4-256-nmsubXX.c (check_nmsubps): Ditto. (check_nmsubpd): Ditto. * gcc.target/i386/fma4-maccXX.c (check_maccps): Ditto. (check_maccpd): Ditto. (check_maccss): Ditto. (check_maccsd): Ditto. * gcc.target/i386/fma4-msubXX.c (check_msubps): Ditto. (check_msubpd): Ditto. (check_msubss): Ditto. (check_msubsd): Ditto. * gcc.target/i386/fma4-nmaccXX.c (check_nmaccps): Ditto. (check_nmaccpd): Ditto. (check_nmaccss): Ditto. (check_nmaccsd): Ditto. * gcc.target/i386/fma4-nmsubXX.c (check_nmsubps): Ditto. (check_nmsubpd): Ditto. (check_nmsubss): Ditto. (check_nmsubsd): Ditto. * gcc.target/i386/xop-haddX.c (check_sbyte2word): Add missing return. (check_sbyte2dword): Remove unnecessary postfix increment on a returned value. (check_sbyte2qword): Ditto. (check_sword2dword): Add missing return. (check_sword2qword): Remove unnecessary postfix increment on a returned value. (check_dword2qword): Add missing return. * gcc.target/i386/xop-hadduX.c (check_byte2word): Add missing return. (check_byte2dword): Remove unnecessary postfix increment on a returned value. (check_byte2qword): Ditto. (check_word2dword): Add missing return. (check_word2qword): Remove unnecessary postfix increment on a returned value. (check_word2qword): Add missing return. * gcc.target/i386/xop-hsubX.c (check_sbyte2word): Add missing return. (check_sword2dword): Ditto. (check_sword2qword): Ditto. --- gcc/testsuite/gcc.target/i386/fma4-256-maccXX.c | 5 ++--- gcc/testsuite/gcc.target/i386/fma4-256-msubXX.c | 5 ++--- gcc/testsuite/gcc.target/i386/fma4-256-nmaccXX.c | 5 ++--- gcc/testsuite/gcc.target/i386/fma4-256-nmsubXX.c | 5 ++--- gcc/testsuite/gcc.target/i386/fma4-maccXX.c | 10 ++++----- gcc/testsuite/gcc.target/i386/fma4-msubXX.c | 9 ++++---- gcc/testsuite/gcc.target/i386/fma4-nmaccXX.c | 12 ++++------- gcc/testsuite/gcc.target/i386/fma4-nmsubXX.c | 12 ++++------- gcc/testsuite/gcc.target/i386/xop-haddX.c | 27 +++++++++++------------- gcc/testsuite/gcc.target/i386/xop-hadduX.c | 22 ++++++++++--------- gcc/testsuite/gcc.target/i386/xop-hsubX.c | 16 ++++++++------ 11 files changed, 57 insertions(+), 71 deletions(-) diff --git a/gcc/testsuite/gcc.target/i386/fma4-256-maccXX.c b/gcc/testsuite/gcc.target/i386/fma4-256-maccXX.c index 134200a..ee0ddf1 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-256-maccXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-256-maccXX.c @@ -17,7 +17,6 @@ union double d[NUM * 4]; } dst, res, src1, src2, src3; - /* Note that in macc*,msub*,mnmacc* and mnsub* instructions, the intermdediate product is not rounded, only the addition is rounded. */ @@ -56,7 +55,7 @@ check_maccps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -70,7 +69,7 @@ check_maccpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static void diff --git a/gcc/testsuite/gcc.target/i386/fma4-256-msubXX.c b/gcc/testsuite/gcc.target/i386/fma4-256-msubXX.c index d6cafb4..0251eb2 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-256-msubXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-256-msubXX.c @@ -55,7 +55,7 @@ check_msubps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,7 +69,7 @@ check_msubpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -92,5 +92,4 @@ fma4_test (void) if (check_msubpd ()) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/fma4-256-nmaccXX.c b/gcc/testsuite/gcc.target/i386/fma4-256-nmaccXX.c index 261f302..d9671f3 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-256-nmaccXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-256-nmaccXX.c @@ -55,7 +55,7 @@ check_nmaccps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,7 +69,7 @@ check_nmaccpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -92,5 +92,4 @@ fma4_test (void) if (check_nmaccpd ()) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/fma4-256-nmsubXX.c b/gcc/testsuite/gcc.target/i386/fma4-256-nmsubXX.c index ccbdf0e..385cd95 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-256-nmsubXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-256-nmsubXX.c @@ -55,7 +55,7 @@ check_nmsubps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,7 +69,7 @@ check_nmsubpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -92,5 +92,4 @@ fma4_test (void) if (check_nmsubpd (&dst.y[i], &src1.d[i * 2], &src2.d[i * 2], &src3.d[i * 2])) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/fma4-maccXX.c b/gcc/testsuite/gcc.target/i386/fma4-maccXX.c index 4b4c005..d401d4e 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-maccXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-maccXX.c @@ -17,7 +17,6 @@ union double d[NUM * 2]; } dst, res, src1, src2, src3; - /* Note that in macc*,msub*,mnmacc* and mnsub* instructions, the intermdediate product is not rounded, only the addition is rounded. */ @@ -56,7 +55,7 @@ check_maccps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -70,7 +69,7 @@ check_maccpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } @@ -84,7 +83,7 @@ check_maccss () if (dst.f[i] != res.f[i]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -97,7 +96,7 @@ check_maccsd () if (dst.d[i] != res.d[i]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -132,5 +131,4 @@ fma4_test (void) if (check_maccsd ()) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/fma4-msubXX.c b/gcc/testsuite/gcc.target/i386/fma4-msubXX.c index eed7558..192cb5d 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-msubXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-msubXX.c @@ -55,7 +55,7 @@ check_msubps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,10 +69,9 @@ check_msubpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } - static int check_msubss () { @@ -83,7 +82,7 @@ check_msubss () if (dst.f[i] != res.f[i]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -96,7 +95,7 @@ check_msubsd () if (dst.d[i] != res.d[i]) check_fails++; } - return check_fails++; + return check_fails; } static void diff --git a/gcc/testsuite/gcc.target/i386/fma4-nmaccXX.c b/gcc/testsuite/gcc.target/i386/fma4-nmaccXX.c index 9abf746..7a89fb0 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-nmaccXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-nmaccXX.c @@ -55,7 +55,7 @@ check_nmaccps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,10 +69,9 @@ check_nmaccpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } - static int check_nmaccss () { @@ -83,7 +82,7 @@ check_nmaccss () if (dst.f[i] != res.f[i]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -96,7 +95,7 @@ check_nmaccsd () if (dst.d[i] != res.d[i]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -112,7 +111,6 @@ fma4_test (void) if (check_nmaccps ()) abort (); - for (i = 0; i < NUM; i++) dst.x[i] = _mm_nmacc_ss (src1.x[i], src2.x[i], src3.x[i]); @@ -126,12 +124,10 @@ fma4_test (void) if (check_nmaccpd ()) abort (); - for (i = 0; i < NUM; i++) dst.y[i] = _mm_nmacc_sd (src1.y[i], src2.y[i], src3.y[i]); if (check_nmaccsd ()) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/fma4-nmsubXX.c b/gcc/testsuite/gcc.target/i386/fma4-nmsubXX.c index 85fbecd..c0bce41 100644 --- a/gcc/testsuite/gcc.target/i386/fma4-nmsubXX.c +++ b/gcc/testsuite/gcc.target/i386/fma4-nmsubXX.c @@ -55,7 +55,7 @@ check_nmsubps () if (dst.f[i + j] != res.f[i + j]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -69,10 +69,9 @@ check_nmsubpd () if (dst.d[i + j] != res.d[i + j]) check_fails++; } - return check_fails++; + return check_fails; } - static int check_nmsubss () { @@ -83,7 +82,7 @@ check_nmsubss () if (dst.f[i] != res.f[i]) check_fails++; } - return check_fails++; + return check_fails; } static int @@ -96,7 +95,7 @@ check_nmsubsd () if (dst.d[i] != res.d[i]) check_fails++; } - return check_fails++; + return check_fails; } static void @@ -111,7 +110,6 @@ fma4_test (void) if (check_nmsubps (&dst.x[i], &src1.f[i * 4], &src2.f[i * 4], &src3.f[i * 4])) abort (); - for (i = 0; i < NUM; i++) dst.x[i] = _mm_nmsub_ss (src1.x[i], src2.x[i], src3.x[i]); @@ -126,12 +124,10 @@ fma4_test (void) if (check_nmsubpd (&dst.y[i], &src1.d[i * 2], &src2.d[i * 2], &src3.d[i * 2])) abort (); - for (i = 0; i < NUM; i++) dst.y[i] = _mm_nmsub_sd (src1.y[i], src2.y[i], src3.y[i]); if (check_nmsubsd (&dst.y[i], &src1.d[i * 2], &src2.d[i * 2], &src3.d[i * 2])) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/xop-haddX.c b/gcc/testsuite/gcc.target/i386/xop-haddX.c index 7d3220b..68f2752 100644 --- a/gcc/testsuite/gcc.target/i386/xop-haddX.c +++ b/gcc/testsuite/gcc.target/i386/xop-haddX.c @@ -34,7 +34,6 @@ init_sword () src1.si[i] = i; } - static void init_sdword () { @@ -58,6 +57,7 @@ check_sbyte2word () check_fails++; } } + return check_fails; } static int @@ -76,7 +76,7 @@ check_sbyte2dword () check_fails++; } } - return check_fails++; + return check_fails; } static int @@ -96,14 +96,14 @@ check_sbyte2qword () check_fails++; } } - return check_fails++; + return check_fails; } static int check_sword2dword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 8); i = i + 8) + for (i = 0; i < NUM * 8; i = i + 8) { for (j = 0; j < 4; j++) { @@ -114,6 +114,7 @@ check_sword2dword () check_fails++; } } + return check_fails; } static int @@ -132,14 +133,14 @@ check_sword2qword () check_fails++; } } - return check_fails++; + return check_fails; } static int check_dword2qword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 4); i = i + 4) + for (i = 0; i < NUM * 4; i = i + 4) { for (j = 0; j < 2; j++) { @@ -150,6 +151,7 @@ check_dword2qword () check_fails++; } } + return check_fails; } static void @@ -163,15 +165,13 @@ xop_test (void) dst.x[i] = _mm_haddw_epi8 (src1.x[i]); if (check_sbyte2word()) - abort (); - + abort (); - for (i = 0; i < (NUM ); i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddd_epi8 (src1.x[i]); if (check_sbyte2dword()) abort (); - for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddq_epi8 (src1.x[i]); @@ -179,10 +179,9 @@ xop_test (void) if (check_sbyte2qword()) abort (); - init_sword (); - for (i = 0; i < (NUM ); i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddd_epi16 (src1.x[i]); if (check_sword2dword()) @@ -193,14 +192,12 @@ xop_test (void) if (check_sword2qword()) abort (); - init_sdword (); - for (i = 0; i < NUM; i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddq_epi32 (src1.x[i]); if (check_dword2qword()) abort (); - } diff --git a/gcc/testsuite/gcc.target/i386/xop-hadduX.c b/gcc/testsuite/gcc.target/i386/xop-hadduX.c index 9c7ea9a..06a4a2e 100644 --- a/gcc/testsuite/gcc.target/i386/xop-hadduX.c +++ b/gcc/testsuite/gcc.target/i386/xop-hadduX.c @@ -34,7 +34,6 @@ init_word () src1.si[i] = i; } - static void init_dword () { @@ -58,6 +57,7 @@ check_byte2word () check_fails++; } } + return check_fails; } static int @@ -76,7 +76,7 @@ check_byte2dword () check_fails++; } } - return check_fails++; + return check_fails; } static int @@ -96,14 +96,14 @@ check_byte2qword () check_fails++; } } - return check_fails++; + return check_fails; } static int check_word2dword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 8); i = i + 8) + for (i = 0; i < NUM * 8; i = i + 8) { for (j = 0; j < 4; j++) { @@ -114,6 +114,7 @@ check_word2dword () check_fails++; } } + return check_fails; } static int @@ -132,14 +133,14 @@ check_word2qword () check_fails++; } } - return check_fails++; + return check_fails; } static int check_dword2qword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 4); i = i + 4) + for (i = 0; i < NUM * 4; i = i + 4) { for (j = 0; j < 2; j++) { @@ -150,6 +151,7 @@ check_dword2qword () check_fails++; } } + return check_fails; } static void @@ -167,7 +169,7 @@ xop_test (void) abort (); /* Check haddubd */ - for (i = 0; i < (NUM ); i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddd_epu8 (src1.x[i]); if (check_byte2dword()) @@ -183,14 +185,13 @@ xop_test (void) /* Check hadduwd */ init_word (); - for (i = 0; i < (NUM ); i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddd_epu16 (src1.x[i]); if (check_word2dword()) abort (); /* Check haddbuwq */ - for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddq_epu16 (src1.x[i]); @@ -199,7 +200,8 @@ xop_test (void) /* Check hadudq */ init_dword (); - for (i = 0; i < NUM; i++) + + for (i = 0; i < NUM; i++) dst.x[i] = _mm_haddq_epu32 (src1.x[i]); if (check_dword2qword()) diff --git a/gcc/testsuite/gcc.target/i386/xop-hsubX.c b/gcc/testsuite/gcc.target/i386/xop-hsubX.c index f0fa9b3..e4c4373 100644 --- a/gcc/testsuite/gcc.target/i386/xop-hsubX.c +++ b/gcc/testsuite/gcc.target/i386/xop-hsubX.c @@ -34,7 +34,6 @@ init_sword () src1.si[i] = i; } - static void init_sdword () { @@ -58,13 +57,14 @@ check_sbyte2word () check_fails++; } } + return check_fails; } static int check_sword2dword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 8); i = i + 8) + for (i = 0; i < NUM * 8; i = i + 8) { for (j = 0; j < 4; j++) { @@ -75,13 +75,14 @@ check_sword2dword () check_fails++; } } + return check_fails; } static int check_dword2qword () { int i, j, s, t, check_fails = 0; - for (i = 0; i < (NUM * 4); i = i + 4) + for (i = 0; i < NUM * 4; i = i + 4) { for (j = 0; j < 2; j++) { @@ -92,6 +93,7 @@ check_dword2qword () check_fails++; } } + return check_fails; } static void @@ -106,13 +108,12 @@ xop_test (void) dst.x[i] = _mm_hsubw_epi8 (src1.x[i]); if (check_sbyte2word()) - abort (); - + abort (); /* Check hsubwd */ init_sword (); - for (i = 0; i < (NUM ); i++) + for (i = 0; i < NUM; i++) dst.x[i] = _mm_hsubd_epi16 (src1.x[i]); if (check_sword2dword()) @@ -120,7 +121,8 @@ xop_test (void) /* Check hsubdq */ init_sdword (); - for (i = 0; i < NUM; i++) + + for (i = 0; i < NUM; i++) dst.x[i] = _mm_hsubq_epi32 (src1.x[i]); if (check_dword2qword()) -- 2.7.4