public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
* other/8289: Errorneous prototypes of xmmintrin.h functions
@ 2002-10-19 14:56 rakdver
  0 siblings, 0 replies; 3+ messages in thread
From: rakdver @ 2002-10-19 14:56 UTC (permalink / raw)
  To: gcc-gnats; +Cc: jh


>Number:         8289
>Category:       other
>Synopsis:       Errorneous prototypes of xmmintrin.h functions
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Sat Oct 19 14:56:00 PDT 2002
>Closed-Date:
>Last-Modified:
>Originator:     Zdenek Dvorak
>Release:        unknown-1.0
>Organization:
>Environment:

>Description:
The following functions have different prototypes in gcc and intel headers:

First intel, second gcc:

_mm_cvtps_pd:
__m128d _mm_cvtps_pd(__m128)
__m128d _mm_cvtps_pd(__m128d)

_mm_cvtss_sd:
__m128d _mm_cvtss_sd(__m128d, __m128)
__m128d _mm_cvtss_sd(__m128d , __m128d)

_mm_sqrt_sd:
__m128d _mm_sqrt_sd(__m128d, __m128d)
__m128d _mm_sqrt_sd(__m128d)

_mm_cvtpd_epi32:
__m128i _mm_cvtpd_epi32(__m128d)
__m128d _mm_cvtpd_epi32(__m128d)

_mm_cvtps_epi32:
__m128i _mm_cvtps_epi32(__m128)
__m128d _mm_cvtps_epi32(__m128d)

_mm_cvttpd_epi32:
__m128i _mm_cvttpd_epi32(__m128d)
__m128d _mm_cvttpd_epi32(__m128d)

_mm_cvttps_epi32:
__m128i _mm_cvttps_epi32(__m128)
__m128d _mm_cvttps_epi32(__m128d)

_mm_cvtepi32_ps:
__m128 _mm_cvtepi32_ps(__m128i)
__m128d _mm_cvtepi32_ps(__m128i)

_mm_cvtpd_ps:
__m128 _mm_cvtpd_ps(__m128d)
__m128d _mm_cvtpd_ps(__m128d)

_mm_cvtsd_ss:
__m128 _mm_cvtsd_ss(__m128, __m128d)
__m128d _mm_cvtsd_ss(__m128d , __m128d)

_mm_storeh_pd:
void _mm_storeh_pd(double *, __m128d)
void _mm_storeh_pd(__m128d *, double)

_mm_storel_pd:
void _mm_storel_pd(double *, __m128d)
void _mm_storel_pd(__m128d *, double)

_mm_stream_pd:
void _mm_stream_pd(double *, __m128d)
void _mm_stream_pd(__m128d *, __m128d)

Differing only in const attribute:

_mm_load1_pd:
__m128d _mm_load1_pd(double const*)
__m128d _mm_load1_pd(double *)

_mm_loadh_pd:
__m128d _mm_loadh_pd(__m128d, double const*)
__m128d _mm_loadh_pd(__m128d , double *)

_mm_loadl_pd:
__m128d _mm_loadl_pd(__m128d, double const*)
__m128d _mm_loadl_pd(__m128d , double *)

_mm_load_pd:
__m128d _mm_load_pd(double const*)
__m128d _mm_load_pd(double *)

_mm_loadr_pd:
__m128d _mm_loadr_pd(double const*)
__m128d _mm_loadr_pd(double *)

_mm_load_sd:
__m128d _mm_load_sd(double const*)
__m128d _mm_load_sd(double *)

_mm_loadu_pd:
__m128d _mm_loadu_pd(double const*)
__m128d _mm_loadu_pd(double *)

_mm_loadh_pi:
__m128 _mm_loadh_pi(__m128, __m64 const*)
__m128 _mm_loadh_pi(__m128 , __m64 *)

_mm_loadl_pi:
__m128 _mm_loadl_pi(__m128, __m64 const*)
__m128 _mm_loadl_pi(__m128 , __m64 *)

_mm_load_ps1:
__m128 _mm_load_ps1(float const*a)
__m128 _mm_load_ps1(float *)

_mm_load_ps:
__m128 _mm_load_ps(float const*a)
__m128 _mm_load_ps(float *)

_mm_loadr_ps:
__m128 _mm_loadr_ps(float const*a)
__m128 _mm_loadr_ps(float *)

_mm_load_ss:
__m128 _mm_load_ss(float const*a)
__m128 _mm_load_ss(float *)

_mm_loadu_ps:
__m128 _mm_loadu_ps(float const*a)
__m128 _mm_loadu_ps(float *)

_mm_clflush:
void _mm_clflush(void const*)
void _mm_clflush(void *)
>How-To-Repeat:

>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: other/8289: Errorneous prototypes of xmmintrin.h functions
@ 2002-10-27  3:06 Zdenek Dvorak
  0 siblings, 0 replies; 3+ messages in thread
From: Zdenek Dvorak @ 2002-10-27  3:06 UTC (permalink / raw)
  To: nobody; +Cc: gcc-prs

The following reply was made to PR other/8289; it has been noted by GNATS.

From: Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
To: hubicka@gcc.gnu.org, gcc-bugs@gcc.gnu.org, gcc-prs@gcc.gnu.org,
	jh@suse.cz, nobody@gcc.gnu.org, gcc-gnats@gcc.gnu.org
Cc:  
Subject: Re: other/8289: Errorneous prototypes of xmmintrin.h functions
Date: Sun, 27 Oct 2002 12:00:16 +0100

 Hello,
 
 > Synopsis: Errorneous prototypes of xmmintrin.h functions
 > 
 > State-Changed-From-To: open->closed
 > State-Changed-By: hubicka
 > State-Changed-When: Sun Oct 27 02:22:16 2002
 > State-Changed-Why:
 >     I believe I've fixed all the cases.  If you can check easilly, can
 >     you verify the current xmmintrin.h?
 
 yes, it seems OK.
 
 Zdenek


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: other/8289: Errorneous prototypes of xmmintrin.h functions
@ 2002-10-27  2:22 hubicka
  0 siblings, 0 replies; 3+ messages in thread
From: hubicka @ 2002-10-27  2:22 UTC (permalink / raw)
  To: gcc-bugs, gcc-prs, jh, nobody, rakdver

Synopsis: Errorneous prototypes of xmmintrin.h functions

State-Changed-From-To: open->closed
State-Changed-By: hubicka
State-Changed-When: Sun Oct 27 02:22:16 2002
State-Changed-Why:
    I believe I've fixed all the cases.  If you can check easilly, can you verify the current xmmintrin.h?

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=8289


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2002-10-27 11:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-10-19 14:56 other/8289: Errorneous prototypes of xmmintrin.h functions rakdver
2002-10-27  2:22 hubicka
2002-10-27  3:06 Zdenek Dvorak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).