public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/14981] New: ICE in _mm_xor_pd for SSE2  with -O1
@ 2004-04-16 18:54 davide dot rossetti at roma1 dot infn dot it
  2004-04-16 19:10 ` [Bug target/14981] " bangerth at dealii dot org
                   ` (33 more replies)
  0 siblings, 34 replies; 35+ messages in thread
From: davide dot rossetti at roma1 dot infn dot it @ 2004-04-16 18:54 UTC (permalink / raw)
  To: gcc-bugs

tried on snapshot 3.4-20040414 but exists since 3.4-20040218
3.3.2 20040108 (Red Hat Linux 3.3.2-6) is OK
CVS HEAD from 3.5 is OK

ICE is:
gcc_snapshot/build/bin/gcc -v -save-temps -O1 -S -msse2 -mfpmath=sse v2dfxor3.c
...
 /beatle/home1/sw/gcc_snapshot/build/libexec/gcc/i686-pc-linux-gnu/3.4.0/cc1
-fpreprocessed v2dfxor3.i -quiet -dumpbase v2dfxor3.c -msse2 -mfpmath=sse
-mtune=pentiumpro -auxbase v2dfxor3 -O1 -version -o v2dfxor3.s
GNU C version 3.4.0 20040414 (prerelease) (i686-pc-linux-gnu)
        compiled by GNU C version 3.3.2 20040108 (Red Hat Linux 3.3.2-6).
GGC heuristics: --param ggc-min-expand=64 --param ggc-min-heapsize=64266
v2dfxor3.c: In function `xorv2df3':
v2dfxor3.c:10: internal compiler error: in immed_double_const, at emit-rtl.c:481
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

it is caused by immed_double_const() mistakenly been called by
simplify_immed_subreg(). the latter is not ready to take TImode in outer_class ...


the test is not worth an attachment:

#include <emmintrin.h>
__v2df res;
void xorv2df3(double *x)
{
        __v2df    temp0={x[0],x[1]};
	__v2df    temp1={0x0, 0x0};
        res = _mm_xor_pd(temp0, temp1);
}

-- 
           Summary: ICE in _mm_xor_pd for SSE2  with -O1
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: critical
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: davide dot rossetti at roma1 dot infn dot it
                CC: alessandro dot lonardo at roma1 dot infn dot it,gcc-bugs
                    at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu-gcc-3.4.0
  GCC host triplet: i686-pc-linux-gnu-gcc-3.4.0
GCC target triplet: i686-pc-linux-gnu-gcc-3.4.0


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


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

end of thread, other threads:[~2005-05-09 16:52 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-16 18:54 [Bug target/14981] New: ICE in _mm_xor_pd for SSE2 with -O1 davide dot rossetti at roma1 dot infn dot it
2004-04-16 19:10 ` [Bug target/14981] " bangerth at dealii dot org
2004-04-16 19:15 ` bangerth at dealii dot org
2004-04-16 19:58 ` [Bug target/14981] [3.4 only] " pinskia at gcc dot gnu dot org
2004-04-19 14:56 ` pinskia at gcc dot gnu dot org
2004-04-20  2:34 ` [Bug target/14981] [3.3/3.4 Regression] " giovannibajo at libero dot it
2004-04-20  2:40 ` pinskia at gcc dot gnu dot org
2004-04-20  6:48 ` bangerth at dealii dot org
2004-04-20  7:18 ` pinskia at gcc dot gnu dot org
2004-06-06  3:53 ` giovannibajo at libero dot it
2004-06-21 21:16 ` mmitchel at gcc dot gnu dot org
2004-08-17  2:51 ` [Bug target/14981] [3.4/3.5 " reichelt at gcc dot gnu dot org
2004-08-29 18:12 ` mmitchel at gcc dot gnu dot org
2004-08-29 18:16 ` mmitchel at gcc dot gnu dot org
2004-10-21  3:17 ` [Bug target/14981] [3.4/4.0 " pinskia at gcc dot gnu dot org
2004-11-01  0:45 ` mmitchel at gcc dot gnu dot org
2004-11-30 15:59 ` [Bug target/14981] [3.4 " uros at gcc dot gnu dot org
2004-12-01  0:43 ` [Bug target/14981] [3.4/4.0 " reichelt at gcc dot gnu dot org
2004-12-01  6:50 ` uros at gcc dot gnu dot org
2004-12-02  9:49 ` [Bug target/14981] [3.4 " reichelt at gcc dot gnu dot org
2004-12-02 10:30 ` belyshev at lubercy dot com
2004-12-03 10:18 ` reichelt at gcc dot gnu dot org
2004-12-03 11:51 ` reichelt at gcc dot gnu dot org
2004-12-05  9:31 ` ebotcazou at gcc dot gnu dot org
2004-12-13 12:01 ` [Bug target/14981] [3.4/4.0 " reichelt at gcc dot gnu dot org
2004-12-14  8:53 ` ebotcazou at gcc dot gnu dot org
2004-12-15  4:23 ` rth at gcc dot gnu dot org
2004-12-15 12:18 ` rth at gcc dot gnu dot org
2004-12-15 12:24 ` rth at gcc dot gnu dot org
2005-03-21  6:22 ` uros at kss-loka dot si
2005-03-21 13:41 ` [Bug target/14981] [3.4 " uros at kss-loka dot si
2005-03-22  8:43 ` uros at kss-loka dot si
2005-03-22 15:54 ` cvs-commit at gcc dot gnu dot org
2005-03-22 16:02 ` uros at kss-loka dot si
2005-05-09 16:52 ` jakub 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).