1/* Test case for x86-64 preserved registers in dynamic linker. */
2
3#include <stdlib.h>
4#include <string.h>
5#include <cpuid.h>
6#include <emmintrin.h>
7
8extern __m128i audit_test (__m128i, __m128i, __m128i, __m128i,
9 __m128i, __m128i, __m128i, __m128i);
10
11
12static int
13avx_enabled (void)
14{
15 unsigned int eax, ebx, ecx, edx;
16
17 if (__get_cpuid (leaf: 1, eax: &eax, ebx: &ebx, ecx: &ecx, edx: &edx) == 0
18 || (ecx & (bit_AVX | bit_OSXSAVE)) != (bit_AVX | bit_OSXSAVE))
19 return 0;
20
21 /* Check the OS has AVX and SSE saving enabled. */
22 asm ("xgetbv" : "=a" (eax), "=d" (edx) : "c" (0));
23
24 return (eax & 6) == 6;
25}
26
27
28static int
29do_test (void)
30{
31 /* Run AVX test only if AVX is supported. */
32 if (avx_enabled ())
33 {
34 __m128i xmm = _mm_setzero_si128 ();
35 __m128i ret = audit_test (xmm, xmm, xmm, xmm, xmm, xmm, xmm, xmm);
36
37 xmm = _mm_set1_epi32 (i: 0x98abcdef);
38 if (memcmp (&xmm, &ret, sizeof (ret)))
39 abort ();
40 }
41 return 0;
42}
43
44#define TEST_FUNCTION do_test ()
45#include "../../test-skeleton.c"
46

source code of glibc/sysdeps/x86_64/tst-audit6.c