mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-09 14:50:05 +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 AVX registers in dynamic linker. */
|
|
|
|
#ifdef __AVX__
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <immintrin.h>
|
|
|
|
__m256i
|
|
avx_test (__m256i x0, __m256i x1, __m256i x2, __m256i x3,
|
|
__m256i x4, __m256i x5, __m256i x6, __m256i x7)
|
|
{
|
|
__m256i ymm;
|
|
|
|
ymm = _mm256_set1_epi32 (0);
|
|
if (memcmp (&ymm, &x0, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (1);
|
|
if (memcmp (&ymm, &x1, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (2);
|
|
if (memcmp (&ymm, &x2, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (3);
|
|
if (memcmp (&ymm, &x3, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (4);
|
|
if (memcmp (&ymm, &x4, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (5);
|
|
if (memcmp (&ymm, &x5, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (6);
|
|
if (memcmp (&ymm, &x6, sizeof (ymm)))
|
|
abort ();
|
|
|
|
ymm = _mm256_set1_epi32 (7);
|
|
if (memcmp (&ymm, &x7, sizeof (ymm)))
|
|
abort ();
|
|
|
|
return _mm256_set1_epi32 (0x12349876);
|
|
}
|
|
#endif
|