diff mbox

Fix sse_loadlps constraints (PR target/53759)

Message ID 20120625144217.GD20264@tucnak.redhat.com
State New
Headers show

Commit Message

Jakub Jelinek June 25, 2012, 2:42 p.m. UTC
Hi!

When the sse_loadlps and avx_loadlps patterns were merged together using
enabled attribute, apparently vmovlps alternative got a typo,
x <- x, x alternative is there already earlier, vmovlps should be
x <- m, 0 for noavx (that is right) and x <- m, x for avx.

Bootstrapped/regtested on x86_64-linux and i686-linux, ok for trunk/4.7?

2012-06-25  Jakub Jelinek  <jakub@redhat.com>

	PR target/53759
	* config/i386/sse.md (sse_loadlps): Use x m x constraints instead
	of x x x in the vmovlps load alternative.

	* gcc.target/i386/pr53759.c: New test.


	Jakub

Comments

Richard Henderson June 25, 2012, 2:46 p.m. UTC | #1
On 2012-06-25 07:42, Jakub Jelinek wrote:
> 	PR target/53759
> 	* config/i386/sse.md (sse_loadlps): Use x m x constraints instead
> 	of x x x in the vmovlps load alternative.
> 
> 	* gcc.target/i386/pr53759.c: New test.


Ok,.


r~
diff mbox

Patch

--- gcc/config/i386/sse.md.jj	2012-06-25 08:38:32.000000000 +0200
+++ gcc/config/i386/sse.md	2012-06-25 09:53:57.622335534 +0200
@@ -3943,7 +3943,7 @@  (define_expand "sse_loadlps_exp"
 (define_insn "sse_loadlps"
   [(set (match_operand:V4SF 0 "nonimmediate_operand"     "=x,x,x,x,m")
 	(vec_concat:V4SF
-	  (match_operand:V2SF 2 "nonimmediate_operand"   " 0,x,m,x,x")
+	  (match_operand:V2SF 2 "nonimmediate_operand"   " 0,x,m,m,x")
 	  (vec_select:V2SF
 	    (match_operand:V4SF 1 "nonimmediate_operand" " x,x,0,x,0")
 	    (parallel [(const_int 2) (const_int 3)]))))]
--- gcc/testsuite/gcc.target/i386/pr53759.c.jj	2012-06-25 10:09:29.075376198 +0200
+++ gcc/testsuite/gcc.target/i386/pr53759.c	2012-06-25 10:09:19.000000000 +0200
@@ -0,0 +1,17 @@ 
+/* PR target/53759 */
+/* { dg-do compile } */
+/* { dg-options "-O2 -mavx" } */
+/* { dg-require-effective-target avx } */
+
+#include <xmmintrin.h>
+
+void
+foo (__m128 *x, __m64 *y)
+{
+  __m128 a = _mm_setzero_ps ();
+  __m128 b = _mm_loadl_pi (a, y);
+  *x = _mm_add_ps (b, b);
+}
+
+/* { dg-final { scan-assembler "vmovlps\[ \\t\]" } } */
+/* { dg-final { scan-assembler-not "vshufps\[ \\t\]" } } */