2015-12-10 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / aesimc.c
blob676f919f597bff2f3ff8fe1d8ee34a138dd7131b
1 /* { dg-do run } */
2 /* { dg-require-effective-target aes } */
3 /* { dg-options "-O2 -maes" } */
5 #ifndef CHECK_H
6 #define CHECK_H "aes-check.h"
7 #endif
9 #ifndef TEST
10 #define TEST aes_test
11 #endif
13 #include CHECK_H
15 #include <wmmintrin.h>
16 #include <string.h>
18 extern void abort (void);
20 #define NUM 1024
22 static __m128i src1[NUM];
23 static __m128i edst[NUM];
25 static __m128i resdst[NUM];
27 /* Initialize input/output vectors. (Currently, there is only one set
28 of input/output vectors). */
30 static void
31 init_data (__m128i *s1, __m128i *d)
33 int i;
35 for (i = 0; i < NUM; i++)
37 s1[i] = _mm_setr_epi32 (0x5d53475d, 0x63746f72,
38 0x73745665, 0x7b5b5465);
39 d[i] = _mm_setr_epi32 (0x81c3b3e5, 0x2b18330a,
40 0x44b109c8, 0x627a6f66);
44 static void
45 TEST (void)
47 int i;
49 init_data (src1, edst);
51 for (i = 0; i < NUM; i += 16)
53 resdst[i] = _mm_aesimc_si128 (src1[i]);
54 resdst[i + 1] = _mm_aesimc_si128 (src1[i + 1]);
55 resdst[i + 2] = _mm_aesimc_si128 (src1[i + 2]);
56 resdst[i + 3] = _mm_aesimc_si128 (src1[i + 3]);
57 resdst[i + 4] = _mm_aesimc_si128 (src1[i + 4]);
58 resdst[i + 5] = _mm_aesimc_si128 (src1[i + 5]);
59 resdst[i + 6] = _mm_aesimc_si128 (src1[i + 6]);
60 resdst[i + 7] = _mm_aesimc_si128 (src1[i + 7]);
61 resdst[i + 8] = _mm_aesimc_si128 (src1[i + 8]);
62 resdst[i + 9] = _mm_aesimc_si128 (src1[i + 9]);
63 resdst[i + 10] = _mm_aesimc_si128 (src1[i + 10]);
64 resdst[i + 11] = _mm_aesimc_si128 (src1[i + 11]);
65 resdst[i + 12] = _mm_aesimc_si128 (src1[i + 12]);
66 resdst[i + 13] = _mm_aesimc_si128 (src1[i + 13]);
67 resdst[i + 14] = _mm_aesimc_si128 (src1[i + 14]);
68 resdst[i + 15] = _mm_aesimc_si128 (src1[i + 15]);
71 for (i = 0; i < NUM; i++)
72 if (memcmp(edst + i, resdst + i, sizeof (__m128i)))
73 abort ();