public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints.
@ 2005-06-16  9:18 pluto at agmk dot net
  2005-06-16  9:55 ` [Bug other/22089] " pluto at agmk dot net
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: pluto at agmk dot net @ 2005-06-16  9:18 UTC (permalink / raw)
  To: gcc-bugs

# gcc-4.1-20050616/08:28cvs 
 
(...) 
stage1/xgcc -Bstage1/ -B/usr/i686-pld-linux/bin/ -c   -O2 -march=i686  
-mtune=pentium4  -pipe -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes  
-Wmissing-prototypes -pedantic -Wno-long-long -Wno-variadic-macros  
-Wold-style-definition  -fno-common   -DHAVE_CONFIG_H    -I. -I. -I../../gcc  
-I../../gcc/. -I../../gcc/../include -I../../gcc/../libcpp/include  \  
        ../../gcc/config/i386/i386.c -o i386.o  
../../gcc/config/i386/i386.c: In function 'ix86_expand_vector_init':  
../../gcc/config/i386/i386.c:17034: error: insn does not satisfy its  
constraints:  
(insn 368 344 380 4 (set (reg:QI 138)  
        (const_int 0 [0x0])) 45 {*movqi_1} (nil)  
    (expr_list:REG_EQUIV (const_int 0 [0x0])  
        (nil)))  
../../gcc/config/i386/i386.c:17034: internal compiler error:  
in reload_cse_simplify_operands, at postreload.c:391

-- 
           Summary: bootstrap ices / insn does not satisfy its constraints.
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: other
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pluto at agmk dot net
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pld-linux
  GCC host triplet: i686-pld-linux
GCC target triplet: i686-pld-linux


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


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

* [Bug other/22089] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
@ 2005-06-16  9:55 ` pluto at agmk dot net
  2005-06-16 11:33 ` [Bug target/22089] [4,1 Regression] " pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pluto at agmk dot net @ 2005-06-16  9:55 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pluto at agmk dot net  2005-06-16 09:53 -------
-mtune=pentium4 causes ice. 
 
$ stage1/xgcc -Bstage1 i386.i -c -march=i686 -O2 works fine. 
 

-- 


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
  2005-06-16  9:55 ` [Bug other/22089] " pluto at agmk dot net
@ 2005-06-16 11:33 ` pinskia at gcc dot gnu dot org
  2005-06-16 11:42 ` reichelt at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-16 11:33 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|other                       |target
           Keywords|                            |build, ice-on-valid-code
            Summary|bootstrap ices / insn does  |[4,1 Regression] bootstrap
                   |not satisfy its constraints.|ices / insn does not satisfy
                   |                            |its constraints.


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
  2005-06-16  9:55 ` [Bug other/22089] " pluto at agmk dot net
  2005-06-16 11:33 ` [Bug target/22089] [4,1 Regression] " pinskia at gcc dot gnu dot org
@ 2005-06-16 11:42 ` reichelt at gcc dot gnu dot org
  2005-06-16 12:26 ` reichelt at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-06-16 11:42 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-06-16 11:41 -------
Confirmed.

The following testcase crashes the mainline compiler (-O -march=pentium4):

=========================================
struct A
{
  struct A* p;
};

int bar(struct A*, struct A*);
int baz();

void foo (int i, struct A* q)
{
  char c, d = 1;

  while (i)
    {
      if (q)
        c = 1;
      if (q->p->p)
        d = 0;
      if (bar (q->p->p, q->p))
        c = 0;
      --i;
    }

  if (c && d && baz ())
    return;
}
=========================================


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
           Keywords|                            |monitored
   Last reconfirmed|0000-00-00 00:00:00         |2005-06-16 11:41:41
               date|                            |
   Target Milestone|---                         |4.1.0


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (2 preceding siblings ...)
  2005-06-16 11:42 ` reichelt at gcc dot gnu dot org
@ 2005-06-16 12:26 ` reichelt at gcc dot gnu dot org
  2005-06-17 14:39 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-06-16 12:26 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-06-16 12:26 -------
Bernd, this was introduced by your patch
http://gcc.gnu.org/ml/gcc-cvs/2005-06/msg00559.html

Could you please have a look?


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |bernds at gcc dot gnu dot
                   |                            |org


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (3 preceding siblings ...)
  2005-06-16 12:26 ` reichelt at gcc dot gnu dot org
@ 2005-06-17 14:39 ` pinskia at gcc dot gnu dot org
  2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-17 14:39 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-17 14:39 -------
Fixed by RTH's patch in
<http://gcc.gnu.org/ml/gcc-patches/2005-06/msg01487.html>.

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


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (5 preceding siblings ...)
  2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
@ 2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
  2005-06-17 17:17 ` laurent at guerby dot net
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-17 14:49 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-17 14:49 -------
Woops the patch has not been checked in yet for some reason I thought it was.

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


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (4 preceding siblings ...)
  2005-06-17 14:39 ` pinskia at gcc dot gnu dot org
@ 2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
  2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-17 14:49 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |NEW


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


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

* [Bug target/22089] [4,1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (6 preceding siblings ...)
  2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
@ 2005-06-17 17:17 ` laurent at guerby dot net
  2005-06-17 20:32 ` [Bug target/22089] [4.1 " laurent at guerby dot net
  2005-06-17 20:35 ` rth at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: laurent at guerby dot net @ 2005-06-17 17:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From laurent at guerby dot net  2005-06-17 17:17 -------
For the record, the following 12 ACATS tests get the same ICE on x86-linux.

c38202a 
c3a0004 
c910001 
c940005 
c940010 
c940013 
c95086c 
c95086e 
c95086f 
c951002 
c954024 
c954026

-- 


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


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

* [Bug target/22089] [4.1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (7 preceding siblings ...)
  2005-06-17 17:17 ` laurent at guerby dot net
@ 2005-06-17 20:32 ` laurent at guerby dot net
  2005-06-17 20:35 ` rth at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: laurent at guerby dot net @ 2005-06-17 20:32 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From laurent at guerby dot net  2005-06-17 20:32 -------
All ACATS fail are fixed by RTH patch.

http://gcc.gnu.org/ml/gcc-testresults/2005-06/msg01046.html

-- 


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


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

* [Bug target/22089] [4.1 Regression] bootstrap ices / insn does not satisfy its constraints.
  2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
                   ` (8 preceding siblings ...)
  2005-06-17 20:32 ` [Bug target/22089] [4.1 " laurent at guerby dot net
@ 2005-06-17 20:35 ` rth at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: rth at gcc dot gnu dot org @ 2005-06-17 20:35 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From rth at gcc dot gnu dot org  2005-06-17 20:35 -------
Fixed.

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


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


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

end of thread, other threads:[~2005-06-17 20:35 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-16  9:18 [Bug other/22089] New: bootstrap ices / insn does not satisfy its constraints pluto at agmk dot net
2005-06-16  9:55 ` [Bug other/22089] " pluto at agmk dot net
2005-06-16 11:33 ` [Bug target/22089] [4,1 Regression] " pinskia at gcc dot gnu dot org
2005-06-16 11:42 ` reichelt at gcc dot gnu dot org
2005-06-16 12:26 ` reichelt at gcc dot gnu dot org
2005-06-17 14:39 ` pinskia at gcc dot gnu dot org
2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
2005-06-17 14:49 ` pinskia at gcc dot gnu dot org
2005-06-17 17:17 ` laurent at guerby dot net
2005-06-17 20:32 ` [Bug target/22089] [4.1 " laurent at guerby dot net
2005-06-17 20:35 ` rth 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).