aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/arm/acle/simd32.c
blob: d9b337da35bae5a7eedf17bcd05c8fc065557425 (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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
/* { dg-do compile } */
/* { dg-require-effective-target arm_simd32_ok } */
/* { dg-add-options arm_simd32 } */

#include <arm_acle.h>

int16x2_t
test_sxtab16 (int16x2_t a, int8x4_t b)
{
  return __sxtab16 (a, b);
}

/* { dg-final { scan-assembler-times "sxtab16\t...?, ...?, ...?" 1 } } */


int16x2_t
test_sxtb16 (int8x4_t a)
{
  return __sxtb16 (a);
}

/* { dg-final { scan-assembler-times "sxtab16\t...?, ...?" 1 } } */

int8x4_t
test_qadd8 (int8x4_t a, int8x4_t b)
{
  return __qadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tqadd8\t...?, ...?, ...?" 1 } } */

int8x4_t
test_qsub8 (int8x4_t a, int8x4_t b)
{
  return __qsub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tqsub8\t...?, ...?, ...?" 1 } } */

int8x4_t
test_shadd8 (int8x4_t a, int8x4_t b)
{
  return __shadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tshadd8\t...?, ...?, ...?" 1 } } */

int8x4_t
test_shsub8 (int8x4_t a, int8x4_t b)
{
  return __shsub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tshsub8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_uhadd8 (uint8x4_t a, uint8x4_t b)
{
  return __uhadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tuhadd8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_uhsub8 (uint8x4_t a, uint8x4_t b)
{
  return __uhsub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tuhsub8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_uqadd8 (uint8x4_t a, uint8x4_t b)
{
  return __uqadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tuqadd8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_uqsub8 (uint8x4_t a, uint8x4_t b)
{
  return __uqsub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tuqsub8\t...?, ...?, ...?" 1 } } */

int16x2_t
test_qadd16 (int16x2_t a, int16x2_t b)
{
  return __qadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tqadd16\t...?, ...?, ...?" 1 } } */

int16x2_t
test_qasx (int16x2_t a, int16x2_t b)
{
  return __qasx (a, b);
}

/* { dg-final { scan-assembler-times "\tqasx\t...?, ...?, ...?" 1 } } */

int16x2_t
test_qsax (int16x2_t a, int16x2_t b)
{
  return __qsax (a, b);
}

/* { dg-final { scan-assembler-times "\tqsax\t...?, ...?, ...?" 1 } } */

int16x2_t
test_qsub16 (int16x2_t a, int16x2_t b)
{
  return __qsub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tqsub16\t...?, ...?, ...?" 1 } } */

int16x2_t
test_shadd16 (int16x2_t a, int16x2_t b)
{
  return __shadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tshadd16\t...?, ...?, ...?" 1 } } */

int16x2_t
test_shasx (int16x2_t a, int16x2_t b)
{
  return __shasx (a, b);
}

/* { dg-final { scan-assembler-times "\tshasx\t...?, ...?, ...?" 1 } } */

int16x2_t
test_shsax (int16x2_t a, int16x2_t b)
{
  return __shsax (a, b);
}

/* { dg-final { scan-assembler-times "\tshsax\t...?, ...?, ...?" 1 } } */

int16x2_t
test_shsub16 (int16x2_t a, int16x2_t b)
{
  return __shsub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tshsub16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uhadd16 (uint16x2_t a, uint16x2_t b)
{
  return __uhadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tuhadd16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uhasx (uint16x2_t a, uint16x2_t b)
{
  return __uhasx (a, b);
}

/* { dg-final { scan-assembler-times "\tuhasx\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uhsax (uint16x2_t a, uint16x2_t b)
{
  return __uhsax (a, b);
}

/* { dg-final { scan-assembler-times "\tuhsax\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uhsub16 (uint16x2_t a, uint16x2_t b)
{
  return __uhsub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tuhsub16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uqadd16 (uint16x2_t a, uint16x2_t b)
{
  return __uqadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tuqadd16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uqasx (uint16x2_t a, uint16x2_t b)
{
  return __uqasx (a, b);
}

/* { dg-final { scan-assembler-times "\tuqasx\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uqsax (uint16x2_t a, uint16x2_t b)
{
  return __uqsax (a, b);
}

/* { dg-final { scan-assembler-times "\tuqsax\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uqsub16 (uint16x2_t a, uint16x2_t b)
{
  return __uqsub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tuqsub16\t...?, ...?, ...?" 1 } } */

int32_t
test_smusd (int16x2_t a, int16x2_t b)
{
  return __smusd (a, b);
}

/* { dg-final { scan-assembler-times "\tsmusd\t...?, ...?, ...?" 1 } } */

int32_t
test_smusdx (int16x2_t a, int16x2_t b)
{
  return __smusdx (a, b);
}

/* { dg-final { scan-assembler-times "\tsmusdx\t...?, ...?, ...?" 1 } } */

uint32_t
test_usad8 (uint8x4_t a, uint8x4_t b)
{
  return __usad8 (a, b);
}

/* { dg-final { scan-assembler-times "\tusad8\t...?, ...?, ...?" 1 } } */

uint32_t
test_usada8 (uint8x4_t a, uint8x4_t b, uint32_t c)
{
  return __usada8 (a, b, c);
}

/* { dg-final { scan-assembler-times "\tusada8\t...?, ...?, ...?, ...?" 1 } } */

int64_t
test_smlald (int16x2_t a, int16x2_t b, int64_t c)
{
  return __smlald (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlald\t...?, ...?, ...?, ...?" 1 } } */

int64_t
test_smlaldx (int16x2_t a, int16x2_t b, int64_t c)
{
  return __smlaldx (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlaldx\t...?, ...?, ...?, ...?" 1 } } */

int64_t
test_smlsld (int16x2_t a, int16x2_t b, int64_t c)
{
  return __smlsld (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlsld\t...?, ...?, ...?, ...?" 1 } } */

int64_t
test_smlsldx (int16x2_t a, int16x2_t b, int64_t c)
{
  return __smlsldx (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlsldx\t...?, ...?, ...?, ...?" 1 } } */

int8x4_t
test_sadd8 (int8x4_t a, int8x4_t b)
{
  return __sadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tsadd8\t...?, ...?, ...?" 1 } } */

int8x4_t
test_ssub8 (int8x4_t a, int8x4_t b)
{
  return __ssub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tssub8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_uadd8 (uint8x4_t a, uint8x4_t b)
{
  return __uadd8 (a, b);
}

/* { dg-final { scan-assembler-times "\tuadd8\t...?, ...?, ...?" 1 } } */

uint8x4_t
test_usub8 (uint8x4_t a, uint8x4_t b)
{
  return __usub8 (a, b);
}

/* { dg-final { scan-assembler-times "\tusub8\t...?, ...?, ...?" 1 } } */

int16x2_t
test_sadd16 (int16x2_t a, int16x2_t b)
{
  return __sadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tsadd8\t...?, ...?, ...?" 1 } } */

int16x2_t
test_sasx (int16x2_t a, int16x2_t b)
{
  return __sasx (a, b);
}

/* { dg-final { scan-assembler-times "\tsasx\t...?, ...?, ...?" 1 } } */

int16x2_t
test_ssax (int16x2_t a, int16x2_t b)
{
  return __ssax (a, b);
}

/* { dg-final { scan-assembler-times "\tssax\t...?, ...?, ...?" 1 } } */

int16x2_t
test_ssub16 (int16x2_t a, int16x2_t b)
{
  return __ssub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tssub16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uadd16 (uint16x2_t a, uint16x2_t b)
{
  return __uadd16 (a, b);
}

/* { dg-final { scan-assembler-times "\tuadd16\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_uasx (uint16x2_t a, uint16x2_t b)
{
  return __uasx (a, b);
}

/* { dg-final { scan-assembler-times "\tuasx\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_usax (uint16x2_t a, uint16x2_t b)
{
  return __usax (a, b);
}

/* { dg-final { scan-assembler-times "\tusax\t...?, ...?, ...?" 1 } } */

uint16x2_t
test_usub16 (uint16x2_t a, uint16x2_t b)
{
  return __usub16 (a, b);
}

/* { dg-final { scan-assembler-times "\tusub16\t...?, ...?, ...?" 1 } } */

int32_t
test_smlad (int16x2_t a, int16x2_t b, int32_t c)
{
  return __smlad (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlad\t...?, ...?, ...?, ...?" 1 } } */

int32_t
test_smladx (int16x2_t a, int16x2_t b, int32_t c)
{
  return __smladx (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmladx\t...?, ...?, ...?, ...?" 1 } } */

int32_t
test_smlsd (int16x2_t a, int16x2_t b, int32_t c)
{
  return __smlsd (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlsd\t...?, ...?, ...?, ...?" 1 } } */

int32_t
test_smlsdx (int16x2_t a, int16x2_t b, int32_t c)
{
  return __smlsdx (a, b, c);
}

/* { dg-final { scan-assembler-times "\tsmlsdx\t...?, ...?, ...?, ...?" 1 } } */

int32_t
test_smuad (int16x2_t a, int16x2_t b)
{
  return __smuad (a, b);
}

/* { dg-final { scan-assembler-times "\tsmuad\t...?, ...?, ...?" 1 } } */

int32_t
test_smuadx (int16x2_t a, int16x2_t b)
{
  return __smuadx (a, b);
}

/* { dg-final { scan-assembler-times "\tsmuadx\t...?, ...?, ...?" 1 } } */

int16x2_t
test_ssat16 (int16x2_t a)
{
  return __ssat16 (a, 13);
}

/* { dg-final { scan-assembler-times "\tssat16\t...?, #13, ...?" 1 } } */

int16x2_t
test_usat16 (int16x2_t a)
{
  return __usat16 (a, 15);
}

/* { dg-final { scan-assembler-times "\tusat16\t...?, #15, ...?" 1 } } */