Commit aac8c550 by Matthew Malcomson Committed by Kyrylo Tkachov

[AARCH64] Use stdint integers in vect_su_add_sub.c

2018-08-29  Matthew Malcomson  <matthew.malcomson@arm.com>

	* gcc.target/aarch64/simd/vect_su_add_sub.c: Use 32 and 64-bit types
	where appropriate.

From-SVN: r263946
parent 95f0c816
2018-08-29 Matthew Malcomson <matthew.malcomson@arm.com>
* gcc.target/aarch64/simd/vect_su_add_sub.c: Use 32 and 64-bit types
where appropriate.
2018-08-29 Richard Biener <rguenther@suse.de> 2018-08-29 Richard Biener <rguenther@suse.de>
PR tree-optimization/87117 PR tree-optimization/87117
......
/* { dg-do compile } */ /* { dg-do compile } */
/* { dg-options "-O3" } */ /* { dg-options "-O3" } */
typedef int __attribute__ ((mode (SI))) int32_t;
typedef int __attribute__ ((mode (DI))) int64_t;
typedef unsigned __attribute__ ((mode (SI))) size_t;
typedef unsigned __attribute__ ((mode (SI))) uint32_t;
typedef unsigned __attribute__ ((mode (DI))) uint64_t;
/* Ensure we use the signed/unsigned extend vectorized add and sub /* Ensure we use the signed/unsigned extend vectorized add and sub
instructions. */ instructions. */
#define N 1024 #define N 1024
int a[N]; int32_t a[N];
long c[N]; int64_t c[N];
long d[N]; int64_t d[N];
unsigned int ua[N]; uint32_t ua[N];
unsigned long uc[N]; uint64_t uc[N];
unsigned long ud[N]; uint64_t ud[N];
void void
add () add ()
{ {
for (int i = 0; i < N; i++) for (size_t i = 0; i < N; i++)
d[i] = a[i] + c[i]; d[i] = a[i] + c[i];
} }
/* { dg-final { scan-assembler-times "\[ \t\]saddw2\[ \t\]+" 1 } } */ /* { dg-final { scan-assembler-times "\[ \t\]saddw2\[ \t\]+" 1 } } */
...@@ -24,7 +30,7 @@ add () ...@@ -24,7 +30,7 @@ add ()
void void
subtract () subtract ()
{ {
for (int i = 0; i < N; i++) for (size_t i = 0; i < N; i++)
d[i] = c[i] - a[i]; d[i] = c[i] - a[i];
} }
/* { dg-final { scan-assembler-times "\[ \t\]ssubw2\[ \t\]+" 1 } } */ /* { dg-final { scan-assembler-times "\[ \t\]ssubw2\[ \t\]+" 1 } } */
...@@ -33,7 +39,7 @@ subtract () ...@@ -33,7 +39,7 @@ subtract ()
void void
uadd () uadd ()
{ {
for (int i = 0; i < N; i++) for (size_t i = 0; i < N; i++)
ud[i] = ua[i] + uc[i]; ud[i] = ua[i] + uc[i];
} }
/* { dg-final { scan-assembler-times "\[ \t\]uaddw2\[ \t\]+" 1 } } */ /* { dg-final { scan-assembler-times "\[ \t\]uaddw2\[ \t\]+" 1 } } */
...@@ -42,7 +48,7 @@ uadd () ...@@ -42,7 +48,7 @@ uadd ()
void void
usubtract () usubtract ()
{ {
for (int i = 0; i < N; i++) for (size_t i = 0; i < N; i++)
ud[i] = uc[i] - ua[i]; ud[i] = uc[i] - ua[i];
} }
/* { dg-final { scan-assembler-times "\[ \t\]usubw2\[ \t\]+" 1 } } */ /* { dg-final { scan-assembler-times "\[ \t\]usubw2\[ \t\]+" 1 } } */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment