diff mbox series

[rs6000] Don't use deprecated __vector long in intrinsic compatibility headers

Message ID 8febe16d-e0e1-a430-90bb-a6937894e270@linux.ibm.com
State New
Headers show
Series [rs6000] Don't use deprecated __vector long in intrinsic compatibility headers | expand

Commit Message

Bill Schmidt Oct. 22, 2018, 6:33 p.m. UTC
Hi,

We should never use __vector long in the intrinsics compatibility headers,
since this has different meanings on 32- and 64-bit targets.  This patch
corrects a number of places where this previously slipped through.

Bootstrapped and tested on powerpc64le-linux-gnu with no regressions.
Is this okay for trunk?

Thanks,
Bill


2018-10-22  Bill Schmidt  <wschmidt@linux.ibm.com>
	    Jinsong Ji <jji@us.ibm.com>

	* config/rs6000/emmintrin.h (_mm_cvtpd_epi32): Change deprecated
	__vector long to __vector long long.
	(_mm_cvtpd_ps): Likewise.
	(_mm_cvttpd_epi32): Likewise.
	(_mm_cvtpi32_pd): Likewise.
	(_mm_unpackhi_epi64): Likewise.
	(_mm_unpacklo_epi64): Likewise.

Comments

Segher Boessenkool Oct. 23, 2018, 12:09 a.m. UTC | #1
Hi!

On Mon, Oct 22, 2018 at 01:33:18PM -0500, Bill Schmidt wrote:
> We should never use __vector long in the intrinsics compatibility headers,
> since this has different meanings on 32- and 64-bit targets.  This patch
> corrects a number of places where this previously slipped through.

> --- gcc/config/rs6000/emmintrin.h	(revision 265389)
> +++ gcc/config/rs6000/emmintrin.h	(working copy)
> @@ -888,7 +888,8 @@ _mm_cvtpd_epi32 (__m128d __A)
>  
>  #ifdef _ARCH_PWR8
>    temp = vec_mergeo (temp, temp);
> -  result = (__v4si)vec_vpkudum ((__vector long)temp, (__vector long)vzero);
> +  result = (__v4si)vec_vpkudum ((__vector long long)temp,
> +				(__vector long long)vzero);

The old code had this as well, but there should be a space after a cast.

Okay for trunk with or without that fixed up.  Thanks!


Segher
diff mbox series

Patch

Index: gcc/config/rs6000/emmintrin.h
===================================================================
--- gcc/config/rs6000/emmintrin.h	(revision 265389)
+++ gcc/config/rs6000/emmintrin.h	(working copy)
@@ -888,7 +888,8 @@  _mm_cvtpd_epi32 (__m128d __A)
 
 #ifdef _ARCH_PWR8
   temp = vec_mergeo (temp, temp);
-  result = (__v4si)vec_vpkudum ((__vector long)temp, (__vector long)vzero);
+  result = (__v4si)vec_vpkudum ((__vector long long)temp,
+				(__vector long long)vzero);
 #else
   {
     const __v16qu pkperm = {0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0a, 0x0b,
@@ -922,7 +923,8 @@  _mm_cvtpd_ps (__m128d __A)
 
 #ifdef _ARCH_PWR8
   temp = vec_mergeo (temp, temp);
-  result = (__v4sf)vec_vpkudum ((__vector long)temp, (__vector long)vzero);
+  result = (__v4sf)vec_vpkudum ((__vector long long)temp,
+				(__vector long long)vzero);
 #else
   {
     const __v16qu pkperm = {0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0a, 0x0b,
@@ -950,7 +952,8 @@  _mm_cvttpd_epi32 (__m128d __A)
 
 #ifdef _ARCH_PWR8
   temp = vec_mergeo (temp, temp);
-  result = (__v4si)vec_vpkudum ((__vector long)temp, (__vector long)vzero);
+  result = (__v4si)vec_vpkudum ((__vector long long)temp,
+				(__vector long long)vzero);
 #else
   {
     const __v16qu pkperm = {0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0a, 0x0b,
@@ -986,7 +989,7 @@  _mm_cvtpi32_pd (__m64 __A)
 
   temp = (__v4si)vec_splats (__A);
   tmp2 = (__v2di)vec_unpackl (temp);
-  result = vec_ctf ((__vector signed long)tmp2, 0);
+  result = vec_ctf ((__vector signed long long)tmp2, 0);
   return (__m128d)result;
 }
 #endif
@@ -1289,7 +1292,8 @@  _mm_unpackhi_epi32 (__m128i __A, __m128i __B)
 extern __inline __m128i __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _mm_unpackhi_epi64 (__m128i __A, __m128i __B)
 {
-  return (__m128i) vec_mergel ((__vector long)__A, (__vector long)__B);
+  return (__m128i) vec_mergel ((__vector long long)__A,
+			       (__vector long long)__B);
 }
 
 extern __inline __m128i __attribute__((__gnu_inline__, __always_inline__, __artificial__))
@@ -1313,7 +1317,8 @@  _mm_unpacklo_epi32 (__m128i __A, __m128i __B)
 extern __inline __m128i __attribute__((__gnu_inline__, __always_inline__, __artificial__))
 _mm_unpacklo_epi64 (__m128i __A, __m128i __B)
 {
-  return (__m128i) vec_mergeh ((__vector long)__A, (__vector long)__B);
+  return (__m128i) vec_mergeh ((__vector long long)__A,
+			       (__vector long long)__B);
 }
 
 extern __inline __m128i __attribute__((__gnu_inline__, __always_inline__, __artificial__))