diagnostics: move output formats from diagnostic.{c,h} to their own files
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / vsx-vector-2.c
bloba0fe088bbfd1cc553325cd16c506d9c7fd9bca2a
1 /* { dg-do compile } */
2 /* { dg-skip-if "" { powerpc*-*-darwin* } } */
3 /* { dg-options "-O2 -ftree-vectorize -mdejagnu-cpu=power7 -ffast-math" } */
4 /* { dg-require-effective-target powerpc_vsx } */
5 /* { dg-final { scan-assembler "xvaddsp" } } */
6 /* { dg-final { scan-assembler "xvsubsp" } } */
7 /* { dg-final { scan-assembler "xvmulsp" } } */
8 /* { dg-final { scan-assembler "xvdivsp" } } */
9 /* { dg-final { scan-assembler "vmadd" } } */
10 /* { dg-final { scan-assembler "xvmsub" } } */
11 /* { dg-final { scan-assembler "xvrsqrtesp" } } */
12 /* { dg-final { scan-assembler "xvcpsgnsp" } } */
13 /* { dg-final { scan-assembler "xvrspim" } } */
14 /* { dg-final { scan-assembler "xvrspip" } } */
15 /* { dg-final { scan-assembler "xvrspiz" } } */
16 /* { dg-final { scan-assembler "xvrspic" } } */
17 /* { dg-final { scan-assembler "xvrspi " } } */
19 #ifndef SIZE
20 #define SIZE 1024
21 #endif
23 float a[SIZE] __attribute__((__aligned__(32)));
24 float b[SIZE] __attribute__((__aligned__(32)));
25 float c[SIZE] __attribute__((__aligned__(32)));
26 float d[SIZE] __attribute__((__aligned__(32)));
27 float e[SIZE] __attribute__((__aligned__(32)));
29 void
30 vector_add (void)
32 int i;
34 for (i = 0; i < SIZE; i++)
35 a[i] = b[i] + c[i];
38 void
39 vector_subtract (void)
41 int i;
43 for (i = 0; i < SIZE; i++)
44 a[i] = b[i] - c[i];
47 void
48 vector_multiply (void)
50 int i;
52 for (i = 0; i < SIZE; i++)
53 a[i] = b[i] * c[i];
56 void
57 vector_multiply_add (void)
59 int i;
61 for (i = 0; i < SIZE; i++)
62 a[i] = (b[i] * c[i]) + d[i];
65 void
66 vector_multiply_subtract (void)
68 int i;
70 for (i = 0; i < SIZE; i++)
71 a[i] = (b[i] * c[i]) - d[i];
74 void
75 vector_divide (void)
77 int i;
79 for (i = 0; i < SIZE; i++)
80 a[i] = b[i] / c[i];
83 extern float sqrtf (float);
84 extern float floorf (float);
85 extern float ceilf (float);
86 extern float truncf (float);
87 extern float nearbyintf (float);
88 extern float rintf (float);
89 extern float copysignf (float, float);
91 void
92 vector_sqrt (void)
94 int i;
96 for (i = 0; i < SIZE; i++)
97 a[i] = sqrtf (b[i]);
100 void
101 vector_floor (void)
103 int i;
105 for (i = 0; i < SIZE; i++)
106 a[i] = floorf (b[i]);
109 void
110 vector_ceil (void)
112 int i;
114 for (i = 0; i < SIZE; i++)
115 a[i] = ceilf (b[i]);
118 void
119 vector_trunc (void)
121 int i;
123 for (i = 0; i < SIZE; i++)
124 a[i] = truncf (b[i]);
127 void
128 vector_nearbyint (void)
130 int i;
132 for (i = 0; i < SIZE; i++)
133 a[i] = nearbyintf (b[i]);
136 void
137 vector_rint (void)
139 int i;
141 for (i = 0; i < SIZE; i++)
142 a[i] = rintf (b[i]);
145 void
146 vector_copysign (void)
148 int i;
150 for (i = 0; i < SIZE; i++)
151 a[i] = copysignf (b[i], c[i]);