[17/n] PR85694: AArch64 support for AVG_FLOOR/CEIL

This patch adds AArch64 patterns for the new AVG_FLOOR/CEIL operations.
AVG_FLOOR is [SU]HADD and AVG_CEIL is [SU]RHADD.

2018-07-03  Richard Sandiford  <richard.sandiford@arm.com>

gcc/
	PR tree-optimization/85694
	* config/aarch64/iterators.md (HADD, RHADD): New int iterators.
	(u): Handle UNSPEC_SHADD, UNSPEC_UHADD, UNSPEC_SRHADD and
	UNSPEC_URHADD.
	* config/aarch64/aarch64-simd.md (<u>avg<mode>3_floor)
	(<u>avg<mode>3_ceil): New patterns.

gcc/testsuite/
	PR tree-optimization/85694
	* lib/target-supports.exp (check_effective_target_vect_avg_qi):
	Return true for AArch64 without SVE.
	* gcc.target/aarch64/vect_hadd_1.h: New file.
	* gcc.target/aarch64/vect_shadd_1.c: New test.
	* gcc.target/aarch64/vect_srhadd_1.c: Likewise.
	* gcc.target/aarch64/vect_uhadd_1.c: Likewise.
	* gcc.target/aarch64/vect_urhadd_1.c: Likewise.

From-SVN: r262347
This commit is contained in:
Richard Sandiford 2018-07-03 14:27:28 +00:00 committed by Richard Sandiford
parent 25d861fef3
commit 42addb5adf
10 changed files with 165 additions and 3 deletions

View File

@ -1,3 +1,12 @@
2018-07-03 Richard Sandiford <richard.sandiford@arm.com>
PR tree-optimization/85694
* config/aarch64/iterators.md (HADD, RHADD): New int iterators.
(u): Handle UNSPEC_SHADD, UNSPEC_UHADD, UNSPEC_SRHADD and
UNSPEC_URHADD.
* config/aarch64/aarch64-simd.md (<u>avg<mode>3_floor)
(<u>avg<mode>3_ceil): New patterns.
2018-07-03 David Malcolm <dmalcolm@redhat.com>
* gcc.dg/vect/slp-perm-1.c: Remove "note: " prefix from

View File

@ -3387,6 +3387,22 @@
;; <su><r>h<addsub>.
(define_expand "<u>avg<mode>3_floor"
[(set (match_operand:VDQ_BHSI 0 "register_operand")
(unspec:VDQ_BHSI [(match_operand:VDQ_BHSI 1 "register_operand")
(match_operand:VDQ_BHSI 2 "register_operand")]
HADD))]
"TARGET_SIMD"
)
(define_expand "<u>avg<mode>3_ceil"
[(set (match_operand:VDQ_BHSI 0 "register_operand")
(unspec:VDQ_BHSI [(match_operand:VDQ_BHSI 1 "register_operand")
(match_operand:VDQ_BHSI 2 "register_operand")]
RHADD))]
"TARGET_SIMD"
)
(define_insn "aarch64_<sur>h<addsub><mode>"
[(set (match_operand:VDQ_BHSI 0 "register_operand" "=w")
(unspec:VDQ_BHSI [(match_operand:VDQ_BHSI 1 "register_operand" "w")

View File

@ -1461,6 +1461,10 @@
UNSPEC_SHSUB UNSPEC_UHSUB
UNSPEC_SRHSUB UNSPEC_URHSUB])
(define_int_iterator HADD [UNSPEC_SHADD UNSPEC_UHADD])
(define_int_iterator RHADD [UNSPEC_SRHADD UNSPEC_URHADD])
(define_int_iterator DOTPROD [UNSPEC_SDOT UNSPEC_UDOT])
(define_int_iterator ADDSUBHN [UNSPEC_ADDHN UNSPEC_RADDHN
@ -1683,8 +1687,10 @@
(define_int_attr u [(UNSPEC_SQSHLU "u") (UNSPEC_SQSHL "") (UNSPEC_UQSHL "")
(UNSPEC_SQSHRUN "u") (UNSPEC_SQRSHRUN "u")
(UNSPEC_SQSHRN "") (UNSPEC_UQSHRN "")
(UNSPEC_SQRSHRN "") (UNSPEC_UQRSHRN "")])
(UNSPEC_SQSHRN "") (UNSPEC_UQSHRN "")
(UNSPEC_SQRSHRN "") (UNSPEC_UQRSHRN "")
(UNSPEC_SHADD "") (UNSPEC_UHADD "u")
(UNSPEC_SRHADD "") (UNSPEC_URHADD "u")])
(define_int_attr addsub [(UNSPEC_SHADD "add")
(UNSPEC_UHADD "add")

View File

@ -1,3 +1,14 @@
2018-07-03 Richard Sandiford <richard.sandiford@arm.com>
PR tree-optimization/85694
* lib/target-supports.exp (check_effective_target_vect_avg_qi):
Return true for AArch64 without SVE.
* gcc.target/aarch64/vect_hadd_1.h: New file.
* gcc.target/aarch64/vect_shadd_1.c: New test.
* gcc.target/aarch64/vect_srhadd_1.c: Likewise.
* gcc.target/aarch64/vect_uhadd_1.c: Likewise.
* gcc.target/aarch64/vect_urhadd_1.c: Likewise.
2018-07-03 Marek Polacek <polacek@redhat.com>
PR middle-end/86202

View File

@ -0,0 +1,39 @@
#include <stdint.h>
#pragma GCC target "+nosve"
#define N 100
#define DEF_FUNC(TYPE, B1, B2, C1, C2) \
void __attribute__ ((noipa)) \
f_##TYPE (TYPE *restrict a, TYPE *restrict b, TYPE *restrict c) \
{ \
for (int i = 0; i < N; ++i) \
a[i] = ((__int128) b[i] + c[i] + BIAS) >> 1; \
}
#define TEST_FUNC(TYPE, B1, B2, C1, C2) \
{ \
TYPE a[N], b[N], c[N]; \
for (TYPE i = 0; i < N; ++i) \
{ \
b[i] = B1 + i * B2; \
c[i] = C1 + i * C2; \
} \
f_##TYPE (a, b, c); \
for (TYPE i = 0; i < N; ++i) \
if (a[i] != ((B1 + C1 + BIAS + (__int128) i * (B2 + C2)) >> 1)) \
__builtin_abort (); \
}
#define FOR_EACH_SIGNED_TYPE(T) \
T (int8_t, -124, 2, -40, 1) \
T (int16_t, -32000, 510, -10000, 257) \
T (int32_t, -2000000000, 131072, -3277000, 65537) \
T (int64_t, -44, 100, -10000, 99)
#define FOR_EACH_UNSIGNED_TYPE(T) \
T (uint8_t, 4, 2, 40, 1) \
T (uint16_t, 12, 510, 10000, 257) \
T (uint32_t, 20, 131072, 3277000, 65537) \
T (uint64_t, 90, 100, 10000, 99)

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-O2 --save-temps -ftree-vectorize" } */
#include "vect_hadd_1.h"
#define BIAS 0
FOR_EACH_SIGNED_TYPE (DEF_FUNC)
int
main (void)
{
FOR_EACH_SIGNED_TYPE (TEST_FUNC);
return 0;
}
/* { dg-final { scan-assembler {\tshadd\tv[0-9]+\.16b,} } } */
/* { dg-final { scan-assembler {\tshadd\tv[0-9]+\.8h,} } } */
/* { dg-final { scan-assembler {\tshadd\tv[0-9]+\.4s,} } } */
/* { dg-final { scan-assembler-not {\tshadd\tv[0-9]+\.2d,} } } */

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-O2 --save-temps -ftree-vectorize" } */
#include "vect_hadd_1.h"
#define BIAS 1
FOR_EACH_SIGNED_TYPE (DEF_FUNC)
int
main (void)
{
FOR_EACH_SIGNED_TYPE (TEST_FUNC);
return 0;
}
/* { dg-final { scan-assembler {\tsrhadd\tv[0-9]+\.16b,} } } */
/* { dg-final { scan-assembler {\tsrhadd\tv[0-9]+\.8h,} } } */
/* { dg-final { scan-assembler {\tsrhadd\tv[0-9]+\.4s,} } } */
/* { dg-final { scan-assembler-not {\tsrhadd\tv[0-9]+\.2d,} } } */

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-O2 --save-temps -ftree-vectorize" } */
#include "vect_hadd_1.h"
#define BIAS 0
FOR_EACH_UNSIGNED_TYPE (DEF_FUNC)
int
main (void)
{
FOR_EACH_UNSIGNED_TYPE (TEST_FUNC);
return 0;
}
/* { dg-final { scan-assembler {\tuhadd\tv[0-9]+\.16b,} } } */
/* { dg-final { scan-assembler {\tuhadd\tv[0-9]+\.8h,} } } */
/* { dg-final { scan-assembler {\tuhadd\tv[0-9]+\.4s,} } } */
/* { dg-final { scan-assembler-not {\tuhadd\tv[0-9]+\.2d,} } } */

View File

@ -0,0 +1,20 @@
/* { dg-do run } */
/* { dg-options "-O2 --save-temps -ftree-vectorize" } */
#include "vect_hadd_1.h"
#define BIAS 1
FOR_EACH_UNSIGNED_TYPE (DEF_FUNC)
int
main (void)
{
FOR_EACH_UNSIGNED_TYPE (TEST_FUNC);
return 0;
}
/* { dg-final { scan-assembler {\turhadd\tv[0-9]+\.16b,} } } */
/* { dg-final { scan-assembler {\turhadd\tv[0-9]+\.8h,} } } */
/* { dg-final { scan-assembler {\turhadd\tv[0-9]+\.4s,} } } */
/* { dg-final { scan-assembler-not {\turhadd\tv[0-9]+\.2d,} } } */

View File

@ -6317,7 +6317,8 @@ proc check_effective_target_vect_usad_char { } {
# and unsigned average operations on vectors of bytes.
proc check_effective_target_vect_avg_qi {} {
return 0
return [expr { [istarget aarch64*-*-*]
&& ![check_effective_target_aarch64_sve] }]
}
# Return 1 if the target plus current options supports a vector