summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/i386/testimm-7.c
diff options
context:
space:
mode:
authorupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
committerupstream source tree <ports@midipix.org>2015-03-15 20:14:05 -0400
commit554fd8c5195424bdbcabf5de30fdc183aba391bd (patch)
tree976dc5ab7fddf506dadce60ae936f43f58787092 /gcc/testsuite/gcc.target/i386/testimm-7.c
downloadcbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.bz2
cbb-gcc-4.6.4-554fd8c5195424bdbcabf5de30fdc183aba391bd.tar.xz
obtained gcc-4.6.4.tar.bz2 from upstream website;upstream
verified gcc-4.6.4.tar.bz2.sig; imported gcc-4.6.4 source tree from verified upstream tarball. downloading a git-generated archive based on the 'upstream' tag should provide you with a source tree that is binary identical to the one extracted from the above tarball. if you have obtained the source via the command 'git clone', however, do note that line-endings of files in your working directory might differ from line-endings of the respective files in the upstream repository.
Diffstat (limited to 'gcc/testsuite/gcc.target/i386/testimm-7.c')
-rw-r--r--gcc/testsuite/gcc.target/i386/testimm-7.c46
1 files changed, 46 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.target/i386/testimm-7.c b/gcc/testsuite/gcc.target/i386/testimm-7.c
new file mode 100644
index 000000000..9b16fc7f0
--- /dev/null
+++ b/gcc/testsuite/gcc.target/i386/testimm-7.c
@@ -0,0 +1,46 @@
+/* PR target/49411 */
+/* { dg-do assemble } */
+/* { dg-options "-O0 -mxop" } */
+/* { dg-require-effective-target xop } */
+
+#include <x86intrin.h>
+
+__m128i i1, i2, i3, i4;
+__m128 a1, a2, a3, a4;
+__m128d d1, d2, d3, d4;
+__m256i l1, l2, l3, l4;
+__m256 b1, b2, b3, b4;
+__m256d e1, e2, e3, e4;
+__m64 m1, m2, m3, m4;
+int k1, k2, k3, k4;
+float f1, f2, f3, f4;
+
+void
+test2bit (void)
+{
+ d1 = _mm_permute2_pd (d2, d3, i1, 3);
+ e1 = _mm256_permute2_pd (e2, e3, l1, 3);
+ a1 = _mm_permute2_ps (a2, a3, i1, 3);
+ b1 = _mm256_permute2_ps (b2, b3, l1, 3);
+ d1 = _mm_permute2_pd (d2, d3, i1, 0);
+ e1 = _mm256_permute2_pd (e2, e3, l1, 0);
+ a1 = _mm_permute2_ps (a2, a3, i1, 0);
+ b1 = _mm256_permute2_ps (b2, b3, l1, 0);
+}
+
+void
+test2args (void)
+{
+ i1 = _mm_extracti_si64 (i2, 255, 0);
+ i1 = _mm_extracti_si64 (i2, 0, 255);
+ i1 = _mm_inserti_si64 (i2, i3, 255, 0);
+ i2 = _mm_inserti_si64 (i2, i3, 0, 255);
+ i1 = _mm_extracti_si64 (i2, 255, 255);
+ i1 = _mm_extracti_si64 (i2, 255, 255);
+ i1 = _mm_inserti_si64 (i2, i3, 255, 255);
+ i2 = _mm_inserti_si64 (i2, i3, 255, 255);
+ i1 = _mm_extracti_si64 (i2, 0, 0);
+ i1 = _mm_extracti_si64 (i2, 0, 0);
+ i1 = _mm_inserti_si64 (i2, i3, 0, 0);
+ i2 = _mm_inserti_si64 (i2, i3, 0, 0);
+}