public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
@ 2005-02-14 18:33 micis at gmx dot de
  2005-02-14 18:34 ` [Bug tree-optimization/19951] " micis at gmx dot de
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: micis at gmx dot de @ 2005-02-14 18:33 UTC (permalink / raw)
  To: gcc-bugs

When I compile ACE5.4.2 with the latest snapshot (20050213) I get an ICE.

Michael Cieslinski


g++ -O2 -ftree-vectorize -c -o server.o server.ii
server.cpp: In function 'int main(int, char**)':
server.cpp:89: internal compiler error: in tree_split_edge, at tree-cfg.c:3199
Please submit a full bug report, with preprocessed source if appropriate.

g++ -v
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: ../gcc40/configure --prefix=/usr/local/gcc40d --program-
suffix=40d --with-arch=opteron --enable-languages=c,c++ --enable-checking
Thread model: posix
gcc version 4.0.0 20050213 (experimental)

-- 
           Summary: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-
                    vectorize
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: micis at gmx dot de
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: x86_64-unknown-linux-gnu
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
@ 2005-02-14 18:34 ` micis at gmx dot de
  2005-02-14 20:05 ` pinskia at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: micis at gmx dot de @ 2005-02-14 18:34 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From micis at gmx dot de  2005-02-14 13:45 -------
Created an attachment (id=8192)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=8192&action=view)
preprocessed source


-- 


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
  2005-02-14 18:34 ` [Bug tree-optimization/19951] " micis at gmx dot de
@ 2005-02-14 20:05 ` pinskia at gcc dot gnu dot org
  2005-02-15 20:56 ` dorit at il dot ibm dot com
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-02-14 20:05 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-02-14 15:48 -------
Hmm, we are trying to split an abnormal (most likely an eh) edge.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |pinskia at gcc dot gnu dot
                   |                            |org
           Keywords|                            |ice-on-valid-code


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
  2005-02-14 18:34 ` [Bug tree-optimization/19951] " micis at gmx dot de
  2005-02-14 20:05 ` pinskia at gcc dot gnu dot org
@ 2005-02-15 20:56 ` dorit at il dot ibm dot com
  2005-02-17 16:45 ` giovannibajo at libero dot it
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: dorit at il dot ibm dot com @ 2005-02-15 20:56 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dorit at il dot ibm dot com  2005-02-15 13:23 -------
I'm testing this patch (it solves this PR):

Index: tree-vectorizer.c
===============================================================
====
RCS file: /cvs/gcc/gcc/gcc/tree-vectorizer.c,v
retrieving revision 2.73
diff -c -3 -p -r2.73 tree-vectorizer.c
*** tree-vectorizer.c   12 Feb 2005 12:57:01 -0000      2.73
--- tree-vectorizer.c   15 Feb 2005 13:18:34 -0000
*************** vect_analyze_loop_form (struct loop *loo
*** 5581,5597 ****
      }

    /* Make sure we have a preheader basic block.  */
!   if (!loop->pre_header)
      {
!       rescan = true;
!       loop_split_edge_with (loop_preheader_edge (loop), NULL);
      }

    /* Make sure there exists a single-predecessor exit bb:  */
!   if (EDGE_COUNT (loop->exit_edges[0]->dest->preds) != 1)
      {
!       rescan = true;
!       loop_split_edge_with (loop->exit_edges[0], NULL);
      }

    if (rescan)
--- 5581,5617 ----
      }

    /* Make sure we have a preheader basic block.  */
!   if (!loop->pre_header || EDGE_COUNT (loop->pre_header->succs) != 1)
      {
!       edge e = loop_preheader_edge (loop);
!       if (!e->flags & EDGE_ABNORMAL)
!       {
!         loop_split_edge_with (e, NULL);
!         rescan = true;
!       }
!       else
!       {
!         if (vect_print_dump_info (REPORT_BAD_FORM_LOOPS, loop_loc))
!           fprintf (vect_dump, "not vectorized: no preheader bb.");
!         return NULL;
!       }
      }

    /* Make sure there exists a single-predecessor exit bb:  */
!   if (EDGE_COUNT (loop->single_exit->dest->preds) != 1)
      {
!       edge e = loop->single_exit;
!       if (!e->flags & EDGE_ABNORMAL)
!       {
!           loop_split_edge_with (e, NULL);
!           rescan = true;
!       }
!       else
!       {
!         if (vect_print_dump_info (REPORT_BAD_FORM_LOOPS, loop_loc))
!           fprintf (vect_dump, "not vectorized: exit-bb has multiple preds.");
!         return NULL;
!       }
      }

    if (rescan)

-- 


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (2 preceding siblings ...)
  2005-02-15 20:56 ` dorit at il dot ibm dot com
@ 2005-02-17 16:45 ` giovannibajo at libero dot it
  2005-02-18 18:17 ` reichelt at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: giovannibajo at libero dot it @ 2005-02-17 16:45 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-02-17 12:45:18
               date|                            |


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (3 preceding siblings ...)
  2005-02-17 16:45 ` giovannibajo at libero dot it
@ 2005-02-18 18:17 ` reichelt at gcc dot gnu dot org
  2005-02-18 18:18 ` reichelt at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-02-18 18:17 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-02-18 12:06 -------
Reduced testcase:

===========================
struct A
{
    ~A();
};

void foo();

void bar(int i)
{
    A a;

    if (i)
        foo();
    else
        for (;;)
            foo();
}
===========================


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |reichelt at gcc dot gnu dot
                   |                            |org
           Keywords|                            |monitored


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (4 preceding siblings ...)
  2005-02-18 18:17 ` reichelt at gcc dot gnu dot org
@ 2005-02-18 18:18 ` reichelt at gcc dot gnu dot org
  2005-02-20 19:23 ` cvs-commit at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-02-18 18:18 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-02-18 12:19 -------
: Search converges between 2004-11-19-014001-trunk (#644) and
2004-11-19-161001-trunk (#645).

It looks like this was introduced by one of your patches on 2004-11-19, Dorit.

Btw, here's an even shorter testcase:

========================
struct A
{
    ~A();
};

void foo();

void bar()
{
    A a;

    foo();
    for (;;)
        foo();
}
========================


-- 


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (5 preceding siblings ...)
  2005-02-18 18:18 ` reichelt at gcc dot gnu dot org
@ 2005-02-20 19:23 ` cvs-commit at gcc dot gnu dot org
  2005-02-21 10:44 ` cvs-commit at gcc dot gnu dot org
  2005-02-21 19:33 ` reichelt at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-02-20 19:23 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-02-20 13:47 -------
Subject: Bug 19951

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	dorit@gcc.gnu.org	2005-02-20 13:47:29

Modified files:
	gcc            : ChangeLog tree-vect-analyze.c 

Log message:
	PR tree-optimization/19951
	* tree-vect-analyze.c (vect_analyze_loop_form): Check if loop exit edge
	is abnormal.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.7539&r2=2.7540
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-vect-analyze.c.diff?cvsroot=gcc&r1=2.3&r2=2.4



-- 


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (6 preceding siblings ...)
  2005-02-20 19:23 ` cvs-commit at gcc dot gnu dot org
@ 2005-02-21 10:44 ` cvs-commit at gcc dot gnu dot org
  2005-02-21 19:33 ` reichelt at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-02-21 10:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-02-20 20:32 -------
Subject: Bug 19951

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	dorit@gcc.gnu.org	2005-02-20 20:32:41

Modified files:
	gcc/testsuite  : ChangeLog 
	gcc/testsuite/g++.dg: dg.exp 
Added files:
	gcc/testsuite/g++.dg/vect: pr19951.cc vect.exp 

Log message:
	PR tree-optimization/19951
	* g++.dg/vect: New directory.
	* g++.dg/vect/vect.exp: New file.
	* g++.dg/vect/pr19951.cc: New testcase.
	* g++.dg/dg.exp: Also prune vectorizer tests.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.5059&r2=1.5060
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/dg.exp.diff?cvsroot=gcc&r1=1.10&r2=1.11
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/vect/pr19951.cc.diff?cvsroot=gcc&r1=NONE&r2=1.1
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/vect/vect.exp.diff?cvsroot=gcc&r1=NONE&r2=1.1



-- 


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


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

* [Bug tree-optimization/19951] ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize
  2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
                   ` (7 preceding siblings ...)
  2005-02-21 10:44 ` cvs-commit at gcc dot gnu dot org
@ 2005-02-21 19:33 ` reichelt at gcc dot gnu dot org
  8 siblings, 0 replies; 10+ messages in thread
From: reichelt at gcc dot gnu dot org @ 2005-02-21 19:33 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-02-21 08:40 -------
Fixed.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.0.0


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


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

end of thread, other threads:[~2005-02-21  8:40 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-14 18:33 [Bug tree-optimization/19951] New: ICE in tree_split_edge, at tree-cfg.c:3199 with -ftree-vectorize micis at gmx dot de
2005-02-14 18:34 ` [Bug tree-optimization/19951] " micis at gmx dot de
2005-02-14 20:05 ` pinskia at gcc dot gnu dot org
2005-02-15 20:56 ` dorit at il dot ibm dot com
2005-02-17 16:45 ` giovannibajo at libero dot it
2005-02-18 18:17 ` reichelt at gcc dot gnu dot org
2005-02-18 18:18 ` reichelt at gcc dot gnu dot org
2005-02-20 19:23 ` cvs-commit at gcc dot gnu dot org
2005-02-21 10:44 ` cvs-commit at gcc dot gnu dot org
2005-02-21 19:33 ` reichelt 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).