public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/31585]  New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
@ 2007-04-16  6:49 ubizjak at gmail dot com
  2007-04-16  7:02 ` [Bug target/31585] " ubizjak at gmail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ubizjak at gmail dot com @ 2007-04-16  6:49 UTC (permalink / raw)
  To: gcc-bugs

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain, Size: 1604 bytes --]

These tests all start to fail after the fix for PR 31361 was committed to SVN.
FAILing tests test SSE intrinsics by:

--quote--
/* Test that the intrinsics compile with optimization.  All of them are
   defined as inline functions in mmintrin.h that reference the proper
   builtin functions.  Defining away "static" and "__inline" results in
   all of them being compiled as proper functions.  */

#define static
#define __inline

#include <xmmintrin.h>
--/quote--


Following testcase illustrates the failure:

--cut here--
typedef short __v8hi __attribute__ ((__vector_size__ (16)));
typedef long long __m128i __attribute__ ((__vector_size__ (16),
__may_alias__));

__m128i test (__m128i __A, const int __B)
{
  return (__m128i)__builtin_ia32_psrlwi128 ((__v8hi)__A, __B);
}
--cut here--

gcc -O2 -msse2 test.c
test.c: In function âtestâ:
test.c:6: error: shift must be an immediate

(sse-13.c and sse-14.c fail on x86_64 only as it defaults to -msse2. On i386,
these tests are compiled using -msse, so xmmintrin.h is not included).


-- 
           Summary: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c
                    and sse-14.c)
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Keywords: ssemmx
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: ubizjak at gmail dot com
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

* [Bug target/31585] gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
  2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
@ 2007-04-16  7:02 ` ubizjak at gmail dot com
  2007-05-19 23:28 ` uros at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ubizjak at gmail dot com @ 2007-04-16  7:02 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from ubizjak at gmail dot com  2007-04-16 08:02 -------
Proposed patch to macroize these functions in emmintrin.h
(http://gcc.gnu.org/ml/gcc-patches/2007-04/msg00096.html).

Please note that some other intrinsic functions, such as _mm_shuffle_ps() are
defined as macro as well because of their check for constant arguments.


-- 

ubizjak at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|                            |http://gcc.gnu.org/ml/gcc-
                   |                            |patches/2007-
                   |                            |04/msg00096.html
           Keywords|                            |patch


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

* [Bug target/31585] gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
  2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
  2007-04-16  7:02 ` [Bug target/31585] " ubizjak at gmail dot com
@ 2007-05-19 23:28 ` uros at gcc dot gnu dot org
  2007-05-20  9:54 ` uros at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: uros at gcc dot gnu dot org @ 2007-05-19 23:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from uros at gcc dot gnu dot org  2007-05-20 00:28 -------
Subject: Bug 31585

Author: uros
Date: Sat May 19 23:27:48 2007
New Revision: 124861

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=124861
Log:
        PR target/31585
        * config/i386/pmmintrin.h: Do not include xmmintrin.h
        * config/i386/xmmintrin.h (_mm_extract_pi16): Implement as always
        inlined function, not as a macro.
        (_mm_prefetch): Ditto.
        (_m_pextrw): Ditto.
        (_mm_insert_pi16): Ditto.
        (_m_pinsrw): Ditto.
        (_mm_shuffle_pi16): Ditto.  Add const to __N argument.
        (_m_pshufw): Ditto. Add const to __N argument.
        (_mm_shufle_ps): Ditto.  Add const to __mask argument.
        * config/i386/emmintrin.h (_mm_slli_epi16): Add const to __B argument.
        (_mm_slli_epi32): Ditto.
        (_mm_srli_si128): Implement as always inlined function, not as a macro.
        Add __inline to function declaration.
        (_mm_slli_si128): Ditto.

testsuite/ChangeLog:

        PR target/31585
        * gcc.target/i386/sse-13.c: Use -mssse3 and -msse4a compile options.
        (__builtin_ia32_psllwi128): Redefine to test with immediate operand.
        (__builtin_ia32_psrlqi128): Ditto.
        (__builtin_ia32_psrlwi128): Ditto.
        (__builtin_ia32_psrldi128): Ditto.
        (__builtin_ia32_psrldqi128): Ditto.
        (__builtin_ia32_pslldqi128): Ditto.
        (__builtin_ia32_psrawi128): Ditto.
        (__builtin_ia32_psradi128): Ditto.
        (__builtin_ia32_psllqi128): Ditto.
        (__builtin_ia32_pslldi128): Ditto.
        (__builtin_prefetch): Ditto.
        (__builtin_ia32_pshufw): Ditto.
        (__builtin_ia32_vec_set_v4hi): Ditto.
        (__builtin_ia32_vec_ext_v4hi): Ditto.
        (__builtin_ia32_shufps): Ditto.
        * gcc.target/i386/sse-14.c: Same changes as sse-13.c.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/i386/emmintrin.h
    trunk/gcc/config/i386/pmmintrin.h
    trunk/gcc/config/i386/xmmintrin.h
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/i386/sse-13.c
    trunk/gcc/testsuite/gcc.target/i386/sse-14.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

* [Bug target/31585] gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
  2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
  2007-04-16  7:02 ` [Bug target/31585] " ubizjak at gmail dot com
  2007-05-19 23:28 ` uros at gcc dot gnu dot org
@ 2007-05-20  9:54 ` uros at gcc dot gnu dot org
  2007-05-20  9:56 ` ubizjak at gmail dot com
  2007-05-26  3:12 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: uros at gcc dot gnu dot org @ 2007-05-20  9:54 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from uros at gcc dot gnu dot org  2007-05-20 10:54 -------
Subject: Bug 31585

Author: uros
Date: Sun May 20 09:54:23 2007
New Revision: 124868

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=124868
Log:
        PR target/31585
        * gcc.target/i386/sse-vect-types.c: Do not redefine "static"
        and "__inline".  Use "-msse" instead of "-msse2".


Modified:
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.target/i386/sse-vect-types.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

* [Bug target/31585] gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
  2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
                   ` (2 preceding siblings ...)
  2007-05-20  9:54 ` uros at gcc dot gnu dot org
@ 2007-05-20  9:56 ` ubizjak at gmail dot com
  2007-05-26  3:12 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: ubizjak at gmail dot com @ 2007-05-20  9:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from ubizjak at gmail dot com  2007-05-20 10:55 -------
Fixed.


-- 

ubizjak at gmail dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                URL|http://gcc.gnu.org/ml/gcc-  |
                   |patches/2007-               |
                   |04/msg00096.html            |
             Status|UNCONFIRMED                 |RESOLVED
           Keywords|patch                       |
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

* [Bug target/31585] gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c)
  2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
                   ` (3 preceding siblings ...)
  2007-05-20  9:56 ` ubizjak at gmail dot com
@ 2007-05-26  3:12 ` pinskia at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-05-26  3:12 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.3.0


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31585


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

end of thread, other threads:[~2007-05-26  3:12 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-04-16  6:49 [Bug target/31585] New: gcc.target/i386/sse-vect-types.c FAILs (also sse-13.c and sse-14.c) ubizjak at gmail dot com
2007-04-16  7:02 ` [Bug target/31585] " ubizjak at gmail dot com
2007-05-19 23:28 ` uros at gcc dot gnu dot org
2007-05-20  9:54 ` uros at gcc dot gnu dot org
2007-05-20  9:56 ` ubizjak at gmail dot com
2007-05-26  3:12 ` pinskia at gcc dot gnu dot org

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).