File: tst-avxmod.c

package info (click to toggle)
glibc 2.41-11
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 300,376 kB
  • sloc: ansic: 1,050,583; asm: 238,243; makefile: 20,379; python: 13,537; sh: 11,827; cpp: 5,197; awk: 1,795; perl: 317; yacc: 292; pascal: 182; sed: 19
file content (48 lines) | stat: -rw-r--r-- 1,024 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/* 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