aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/vect_binary_1.c
blob: c1fc9052d84939a27e43dcdb777a3702b5a58172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* { dg-do compile { target { arm*-*-* } } } */
/* { dg-require-effective-target arm_hard_ok } */
/* { dg-require-effective-target arm_v8_neon_ok } */
/* { dg-add-options arm_v8_neon }  */
/* { dg-additional-options "-O3 -mfloat-abi=hard" } */
/* { dg-final { check-function-bodies "**" "" "" } } */

#include <stdint.h>

#define TEST2(OUT, NAME, IN)						\
OUT __attribute__((vector_size(sizeof(OUT) * 2)))			\
test2_##OUT##_##NAME##_##IN (float dummy,				\
			     IN __attribute__((vector_size(sizeof(IN) * 2))) y, \
			     IN __attribute__((vector_size(sizeof(IN) * 2))) z) \
{									\
  OUT __attribute__((vector_size(sizeof(OUT) * 2))) x;			\
  x[0] = __builtin_##NAME (y[0], z[0]);					\
  x[1] = __builtin_##NAME (y[1], z[1]);					\
  return x;								\
}

#define TEST4(OUT, NAME, IN)						\
OUT __attribute__((vector_size(sizeof(OUT) * 4)))			\
test4_##OUT##_##NAME##_##IN (float dummy,				\
			     IN __attribute__((vector_size(sizeof(OUT) * 4))) y,	\
			     IN __attribute__((vector_size(sizeof(OUT) * 4))) z)	\
{									\
  OUT __attribute__((vector_size(sizeof(OUT) * 4))) x;			\
  x[0] = __builtin_##NAME (y[0], z[0]);					\
  x[1] = __builtin_##NAME (y[1], z[1]);					\
  x[2] = __builtin_##NAME (y[2], z[2]);					\
  x[3] = __builtin_##NAME (y[3], z[3]);					\
  return x;								\
}

/*
** test2_float_copysignf_float: { target arm_little_endian }
**	vmov.i32	d0, #(0x80000000|2147483648)(\s+.*)
**	vbsl	d0, d2, d1
**	bx	lr
*/
TEST2 (float, copysignf, float)

/*
** test4_float_copysignf_float: { target arm_little_endian }
**	vmov.i32	q0, #(0x80000000|2147483648)(\s+.*)
**	vbsl	q0, q2, q1
**	bx	lr
*/
TEST4 (float, copysignf, float)