public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF
@ 2004-11-20 20:09 sbo at mis dot mpg dot de
  2004-11-20 20:22 ` [Bug middle-end/18582] [3.3/3.4 Regression] " pinskia at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: sbo at mis dot mpg dot de @ 2004-11-20 20:09 UTC (permalink / raw)
  To: gcc-bugs

Using

  gcc -c ice.c

with the following file "ice.c"

  typedef double v2df __attribute__((mode(V2DF)));
  void
  sse_interpolate_kernel()
  {
    double x2[2];
    v2df xs[2];
    xs[0] = __builtin_ia32_loadupd(x2);
  }

leads to the following internal compiler error:

  ice.c: In function `sse_interpolate_kernel':
  ice.c:11: internal compiler error: in instantiate_virtual_regs_lossage, at
    function.c:3756
  Please submit a full bug report,

The error seems to disappear if I replace the array xs by simple variables or if
I use "-O".

-- 
           Summary: Internal compiler error with arrays of type V2DF
           Product: gcc
           Version: 3.4.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: sbo at mis dot mpg dot de
                CC: gcc-bugs at gcc dot gnu dot org
 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=18582


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

* [Bug middle-end/18582] [3.3/3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
@ 2004-11-20 20:22 ` pinskia at gcc dot gnu dot org
  2005-05-19 17:29 ` mmitchel at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-11-20 20:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2004-11-20 20:21 -------
: Search converges between 2003-01-27-trunk (#173) and 2003-02-03-trunk (#174).
: Search converges between 2003-01-28-3.3 (#19) and 2003-02-04-3.3 (#20).


Fixed on the mainline by the merge of the tree-ssa:
: Search converges between 2004-05-11-trunk (#454) and 2004-05-14-trunk (#455).
Fixed on the tree-ssa branch:
: Search converges between 2003-08-15-ssa (#58) and 2003-08-16-ssa (#59).

(note this does not make sense as usually the things are fixed by the tree-ssa when optimizing).

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |ice-on-valid-code
   Last reconfirmed|0000-00-00 00:00:00         |2004-11-20 20:21:57
               date|                            |
            Summary|Internal compiler error with|[3.3/3.4 Regression]
                   |arrays of type V2DF         |Internal compiler error with
                   |                            |arrays of type V2DF
   Target Milestone|---                         |3.4.4


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


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

* [Bug middle-end/18582] [3.3/3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
  2004-11-20 20:22 ` [Bug middle-end/18582] [3.3/3.4 Regression] " pinskia at gcc dot gnu dot org
@ 2005-05-19 17:29 ` mmitchel at gcc dot gnu dot org
  2005-08-02 15:46 ` [Bug target/18582] [3.4 " rsandifo at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2005-05-19 17:29 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|3.4.4                       |3.4.5


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


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

* [Bug target/18582] [3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
  2004-11-20 20:22 ` [Bug middle-end/18582] [3.3/3.4 Regression] " pinskia at gcc dot gnu dot org
  2005-05-19 17:29 ` mmitchel at gcc dot gnu dot org
@ 2005-08-02 15:46 ` rsandifo at gcc dot gnu dot org
  2005-08-03 14:05 ` cvs-commit at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2005-08-02 15:46 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rsandifo at gcc dot gnu dot org  2005-08-02 15:46 -------
This is a bug in the i386 builtin expansion code.  Testing a fix.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rsandifo at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
          Component|middle-end                  |target
   Last reconfirmed|2005-02-19 14:07:47         |2005-08-02 15:46:10
               date|                            |


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


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

* [Bug target/18582] [3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
                   ` (2 preceding siblings ...)
  2005-08-02 15:46 ` [Bug target/18582] [3.4 " rsandifo at gcc dot gnu dot org
@ 2005-08-03 14:05 ` cvs-commit at gcc dot gnu dot org
  2005-08-03 14:06 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-08-03 14:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-08-03 14:05 -------
Subject: Bug 18582

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	rsandifo@gcc.gnu.org	2005-08-03 14:05:02

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.dg/torture: pr18582-1.c 

Log message:
	PR target/18582
	* testsuite/gcc.dg/torture/pr18582-1.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5871&r2=1.5872
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/torture/pr18582-1.c.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug target/18582] [3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
                   ` (3 preceding siblings ...)
  2005-08-03 14:05 ` cvs-commit at gcc dot gnu dot org
@ 2005-08-03 14:06 ` cvs-commit at gcc dot gnu dot org
  2005-08-03 14:15 ` cvs-commit at gcc dot gnu dot org
  2005-08-03 14:18 ` rsandifo at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-08-03 14:06 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-08-03 14:06 -------
Subject: Bug 18582

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-4_0-branch
Changes by:	rsandifo@gcc.gnu.org	2005-08-03 14:06:05

Modified files:
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.dg/torture: pr18582-1.c 

Log message:
	PR target/18582
	* testsuite/gcc.dg/torture/pr18582-1.c: New test.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=1.5084.2.315&r2=1.5084.2.316
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/torture/pr18582-1.c.diff?cvsroot=gcc&only_with_tag=gcc-4_0-branch&r1=NONE&r2=1.1.2.1



-- 


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


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

* [Bug target/18582] [3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
                   ` (4 preceding siblings ...)
  2005-08-03 14:06 ` cvs-commit at gcc dot gnu dot org
@ 2005-08-03 14:15 ` cvs-commit at gcc dot gnu dot org
  2005-08-03 14:18 ` rsandifo at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-08-03 14:15 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-08-03 14:15 -------
Subject: Bug 18582

CVSROOT:	/cvs/gcc
Module name:	gcc
Branch: 	gcc-3_4-branch
Changes by:	rsandifo@gcc.gnu.org	2005-08-03 14:15:28

Modified files:
	gcc            : ChangeLog 
	gcc/config/i386: i386.c 
	gcc/testsuite  : ChangeLog 
Added files:
	gcc/testsuite/gcc.dg/torture: pr18582-1.c 

Log message:
	PR target/18582
	* config/i386/i386.c (ix86_expand_unop_builtin): Force the target
	to be a register if do_load is true.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=2.2326.2.894&r2=2.2326.2.895
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/config/i386/i386.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.635.2.21&r2=1.635.2.22
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.3389.2.417&r2=1.3389.2.418
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/gcc.dg/torture/pr18582-1.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=NONE&r2=1.1.4.1



-- 


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


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

* [Bug target/18582] [3.4 Regression] Internal compiler error with arrays of type V2DF
  2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
                   ` (5 preceding siblings ...)
  2005-08-03 14:15 ` cvs-commit at gcc dot gnu dot org
@ 2005-08-03 14:18 ` rsandifo at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: rsandifo at gcc dot gnu dot org @ 2005-08-03 14:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rsandifo at gcc dot gnu dot org  2005-08-03 14:18 -------
Patch applied to 3.4.  Relevant parts of testcase also
applied to HEAD and 4.0.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED


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


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

end of thread, other threads:[~2005-08-03 14:18 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-11-20 20:09 [Bug middle-end/18582] New: Internal compiler error with arrays of type V2DF sbo at mis dot mpg dot de
2004-11-20 20:22 ` [Bug middle-end/18582] [3.3/3.4 Regression] " pinskia at gcc dot gnu dot org
2005-05-19 17:29 ` mmitchel at gcc dot gnu dot org
2005-08-02 15:46 ` [Bug target/18582] [3.4 " rsandifo at gcc dot gnu dot org
2005-08-03 14:05 ` cvs-commit at gcc dot gnu dot org
2005-08-03 14:06 ` cvs-commit at gcc dot gnu dot org
2005-08-03 14:15 ` cvs-commit at gcc dot gnu dot org
2005-08-03 14:18 ` rsandifo 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).