-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit 'origin/master' into fedora/master
- Loading branch information
Showing
49 changed files
with
2,735 additions
and
493 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ stamp.* | |
*.tgz | ||
*.bz2 | ||
=* | ||
TAGS | ||
TODO | ||
AUTHORS | ||
copyr-* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/* Test case for x86-64 preserved registers in dynamic linker. */ | ||
|
||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <cpuid.h> | ||
#include <emmintrin.h> | ||
|
||
extern __m128i audit_test (__m128i, __m128i, __m128i, __m128i, | ||
__m128i, __m128i, __m128i, __m128i); | ||
|
||
int | ||
main (void) | ||
{ | ||
unsigned int eax, ebx, ecx, edx; | ||
|
||
/* Run AVX test only if AVX is supported. */ | ||
if (__get_cpuid (1, &eax, &ebx, &ecx, &edx) | ||
&& (ecx & bit_AVX)) | ||
{ | ||
__m128i xmm = _mm_setzero_si128 (); | ||
__m128i ret = audit_test (xmm, xmm, xmm, xmm, xmm, xmm, xmm, xmm); | ||
|
||
xmm = _mm_set1_epi32 (0x98abcdef); | ||
if (memcmp (&xmm, &ret, sizeof (ret))) | ||
abort (); | ||
} | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
#include "tst-audit6.c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* Test case for x86-64 preserved registers in dynamic linker. */ | ||
|
||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <emmintrin.h> | ||
|
||
__m128i | ||
audit_test (__m128i x0, __m128i x1, __m128i x2, __m128i x3, | ||
__m128i x4, __m128i x5, __m128i x6, __m128i x7) | ||
{ | ||
__m128i xmm; | ||
|
||
xmm = _mm_set1_epi32 (0x100); | ||
if (memcmp (&xmm, &x0, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x101); | ||
if (memcmp (&xmm, &x1, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x102); | ||
if (memcmp (&xmm, &x2, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x103); | ||
if (memcmp (&xmm, &x3, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x104); | ||
if (memcmp (&xmm, &x4, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x105); | ||
if (memcmp (&xmm, &x5, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x106); | ||
if (memcmp (&xmm, &x6, sizeof (xmm))) | ||
abort (); | ||
|
||
xmm = _mm_set1_epi32 (0x107); | ||
if (memcmp (&xmm, &x7, sizeof (xmm))) | ||
abort (); | ||
|
||
return _mm_setzero_si128 (); | ||
} |
Oops, something went wrong.