mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 15:20:10 +00:00
3403a17fea
On x86-64, _dl_runtime_resolve must preserve the first 8 vector registers. Add 3 _dl_runtime_resolve tests to verify that SSE, AVX and AVX512 registers are preserved. * sysdeps/x86_64/Makefile (tests): Add tst-sse, tst-avx and tst-avx512. (test-extras): Add tst-avx-aux and tst-avx512-aux. (extra-test-objs): Add tst-avx-aux.o and tst-avx512-aux.o. (modules-names): Add tst-ssemod, tst-avxmod and tst-avx512mod. ($(objpfx)tst-sse): New rule. ($(objpfx)tst-avx): Likewise. ($(objpfx)tst-avx512): Likewise. (CFLAGS-tst-avx-aux.c): New. (CFLAGS-tst-avxmod.c): Likewise. (CFLAGS-tst-avx512-aux.c): Likewise. (CFLAGS-tst-avx512mod.c): Likewise. * sysdeps/x86_64/tst-avx-aux.c: New file. * sysdeps/x86_64/tst-avx.c: Likewise. * sysdeps/x86_64/tst-avx512-aux.c: Likewise. * sysdeps/x86_64/tst-avx512.c: Likewise. * sysdeps/x86_64/tst-avx512mod.c: Likewise. * sysdeps/x86_64/tst-avxmod.c: Likewise. * sysdeps/x86_64/tst-sse.c: Likewise. * sysdeps/x86_64/tst-ssemod.c: Likewise.
49 lines
1.0 KiB
C
49 lines
1.0 KiB
C
/* Test case for x86-64 preserved AVX512 registers in dynamic linker. */
|
|
|
|
#ifdef __AVX512F__
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <immintrin.h>
|
|
|
|
__m512i
|
|
avx512_test (__m512i x0, __m512i x1, __m512i x2, __m512i x3,
|
|
__m512i x4, __m512i x5, __m512i x6, __m512i x7)
|
|
{
|
|
__m512i zmm;
|
|
|
|
zmm = _mm512_set1_epi32 (0);
|
|
if (memcmp (&zmm, &x0, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (1);
|
|
if (memcmp (&zmm, &x1, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (2);
|
|
if (memcmp (&zmm, &x2, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (3);
|
|
if (memcmp (&zmm, &x3, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (4);
|
|
if (memcmp (&zmm, &x4, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (5);
|
|
if (memcmp (&zmm, &x5, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (6);
|
|
if (memcmp (&zmm, &x6, sizeof (zmm)))
|
|
abort ();
|
|
|
|
zmm = _mm512_set1_epi32 (7);
|
|
if (memcmp (&zmm, &x7, sizeof (zmm)))
|
|
abort ();
|
|
|
|
return _mm512_set1_epi32 (0x12349876);
|
|
}
|
|
#endif
|