GLIBC-SA-2024-0004: add commit for 2.31 branch
[glibc.git] / sysdeps / x86_64 / tst-auditmod10a.c
blobf3e7db4411bfe12a53a8289daf7940a5b1abf63d
1 /* Copyright (C) 2012-2024 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <https://www.gnu.org/licenses/>. */
18 /* Test case for x86-64 preserved registers in dynamic linker. */
20 #ifdef __AVX512F__
21 #include <stdlib.h>
22 #include <string.h>
23 #include <immintrin.h>
25 __m512i
26 audit_test (__m512i x0, __m512i x1, __m512i x2, __m512i x3,
27 __m512i x4, __m512i x5, __m512i x6, __m512i x7)
29 __m512i zmm;
31 zmm = _mm512_set1_epi64 (1);
32 if (memcmp (&zmm, &x0, sizeof (zmm)))
33 abort ();
35 zmm = _mm512_set1_epi64 (2);
36 if (memcmp (&zmm, &x1, sizeof (zmm)))
37 abort ();
39 zmm = _mm512_set1_epi64 (3);
40 if (memcmp (&zmm, &x2, sizeof (zmm)))
41 abort ();
43 zmm = _mm512_set1_epi64 (4);
44 if (memcmp (&zmm, &x3, sizeof (zmm)))
45 abort ();
47 zmm = _mm512_set1_epi64 (5);
48 if (memcmp (&zmm, &x4, sizeof (zmm)))
49 abort ();
51 zmm = _mm512_set1_epi64 (6);
52 if (memcmp (&zmm, &x5, sizeof (zmm)))
53 abort ();
55 zmm = _mm512_set1_epi64 (7);
56 if (memcmp (&zmm, &x6, sizeof (zmm)))
57 abort ();
59 zmm = _mm512_set1_epi64 (8);
60 if (memcmp (&zmm, &x7, sizeof (zmm)))
61 abort ();
63 return _mm512_setzero_si512 ();
65 #endif