public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/37174]  New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
@ 2008-08-20  7:36 jv244 at cam dot ac dot uk
  2008-08-20  7:38 ` [Bug middle-end/37174] " jv244 at cam dot ac dot uk
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: jv244 at cam dot ac dot uk @ 2008-08-20  7:36 UTC (permalink / raw)
  To: gcc-bugs

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

this night's trunk breaks building CP2K, testcase to be attached:

> gfortran -c -O3 -ffast-math -funroll-loops -ftree-vectorize -march=native -v bug.f90
Using built-in specs.
Target: x86_64-unknown-linux-gnu
Configured with: /data/vondele/gcc_bench/gcc_trunk/gcc/configure
--prefix=/data/vondele/gcc_bench/gcc_trunk/build --enable-languages=c,fortran
Thread model: posix
gcc version 4.4.0 20080819 (experimental) (GCC)
COLLECT_GCC_OPTIONS='-c' '-O3' '-ffast-math' '-funroll-loops'
'-ftree-vectorize'  '-v'

/data/vondele/gcc_bench/gcc_trunk/build/libexec/gcc/x86_64-unknown-linux-gnu/4.4.0/f951
bug.f90 -march=core2 -mcx16 -msahf --param l1-cache-size=32 --param
l1-cache-line-size=64 --param l2-cache-size=4096 -mtune=core2 -quiet -dumpbase
bug.f90 -auxbase bug -O3 -version -ffast-math -funroll-loops -ftree-vectorize
-fintrinsic-modules-path
/data/vondele/gcc_bench/gcc_trunk/build/lib/gcc/x86_64-unknown-linux-gnu/4.4.0/finclude
-o /tmp/ccNb5Smz.s
GNU Fortran (GCC) version 4.4.0 20080819 (experimental)
(x86_64-unknown-linux-gnu)
        compiled by GNU C version 4.4.0 20080819 (experimental), GMP version
4.2.2, MPFR version 2.3.1.
GGC heuristics: --param ggc-min-expand=30 --param ggc-min-heapsize=4096
bug.f90: In function ‘nmr_shift_print’:
bug.f90:121: internal compiler error: in vinfo_for_stmt, at
tree-vectorizer.h:546
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.

most likely due to '2008-08-19  Ira Rosen  <irar@il.ibm.com>'


-- 
           Summary: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: jv244 at cam dot ac dot uk
  GCC host triplet: x86_64-unknown-linux-gnu
GCC target triplet: x86_64-unknown-linux-gnu
OtherBugsDependingO 29975
             nThis:


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


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

* [Bug middle-end/37174] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
@ 2008-08-20  7:38 ` jv244 at cam dot ac dot uk
  2008-08-20  9:40 ` wouter dot vermaelen at scarlet dot be
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jv244 at cam dot ac dot uk @ 2008-08-20  7:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from jv244 at cam dot ac dot uk  2008-08-20 07:36 -------
Created an attachment (id=16105)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16105&action=view)
testcase


-- 


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


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

* [Bug middle-end/37174] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
  2008-08-20  7:38 ` [Bug middle-end/37174] " jv244 at cam dot ac dot uk
@ 2008-08-20  9:40 ` wouter dot vermaelen at scarlet dot be
  2008-08-20  9:48 ` [Bug tree-optimization/37174] [4.4 Regression] " rguenth at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: wouter dot vermaelen at scarlet dot be @ 2008-08-20  9:40 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from wouter dot vermaelen at scarlet dot be  2008-08-20 09:38 -------
I can trigger the same ICE with this testcase:

---------------------------------------------------
int* getFoo();
struct Bar {
        Bar();
        int* foo1;
        int* foo2;
        int* table[4][4][4];
};
Bar::Bar() {
        foo1 = getFoo();
        foo2 = getFoo();
        for (int a = 0; a < 4; ++a) {
                for (int b = 0; b < 4; ++b) {
                        for (int c = 0; c < 4; ++c) {
                                table[a][b][c] = foo1;
                        }
                }
        }
}
--------------------------------------------------------

compile with:
  g++ -O3 bug.ii


-- 

wouter dot vermaelen at scarlet dot be changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |wouter dot vermaelen at
                   |                            |scarlet dot be


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


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

* [Bug tree-optimization/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
  2008-08-20  7:38 ` [Bug middle-end/37174] " jv244 at cam dot ac dot uk
  2008-08-20  9:40 ` wouter dot vermaelen at scarlet dot be
@ 2008-08-20  9:48 ` rguenth at gcc dot gnu dot org
  2008-08-20  9:50 ` [Bug middle-end/37174] " irar at il dot ibm dot com
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-08-20  9:48 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|middle-end                  |tree-optimization
           Keywords|                            |ice-on-valid-code
            Summary|ICE: in vinfo_for_stmt, at  |[4.4 Regression] ICE: in
                   |tree-vectorizer.h:546       |vinfo_for_stmt, at tree-
                   |                            |vectorizer.h:546
   Target Milestone|---                         |4.4.0


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (2 preceding siblings ...)
  2008-08-20  9:48 ` [Bug tree-optimization/37174] [4.4 Regression] " rguenth at gcc dot gnu dot org
@ 2008-08-20  9:50 ` irar at il dot ibm dot com
  2008-08-20 10:45 ` wouter dot vermaelen at scarlet dot be
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: irar at il dot ibm dot com @ 2008-08-20  9:50 UTC (permalink / raw)
  To: gcc-bugs



-- 

irar at il dot ibm dot com changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |irar at il dot ibm dot com
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
          Component|tree-optimization           |middle-end
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-08-20 09:49:21
               date|                            |
   Target Milestone|4.4.0                       |---


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (3 preceding siblings ...)
  2008-08-20  9:50 ` [Bug middle-end/37174] " irar at il dot ibm dot com
@ 2008-08-20 10:45 ` wouter dot vermaelen at scarlet dot be
  2008-08-20 12:20 ` irar at il dot ibm dot com
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: wouter dot vermaelen at scarlet dot be @ 2008-08-20 10:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from wouter dot vermaelen at scarlet dot be  2008-08-20 10:43 -------
I can confirm, SVN revision trunk@139225 is the first one with this bug.


-- 


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (4 preceding siblings ...)
  2008-08-20 10:45 ` wouter dot vermaelen at scarlet dot be
@ 2008-08-20 12:20 ` irar at il dot ibm dot com
  2008-08-20 12:35 ` jv244 at cam dot ac dot uk
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: irar at il dot ibm dot com @ 2008-08-20 12:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from irar at il dot ibm dot com  2008-08-20 12:18 -------
I am testing the following patch:

Index: tree-vect-analyze.c
===================================================================
--- tree-vect-analyze.c (revision 139225)
+++ tree-vect-analyze.c (working copy)
@@ -2531,7 +2535,7 @@ vect_get_and_check_slp_defs (loop_vec_in
       /* Check if DEF_STMT is a part of a pattern and get the def stmt from
          the pattern. Check that all the stmts of the node are in the
          pattern.  */
-      if (def_stmt && vinfo_for_stmt (def_stmt)
+      if (def_stmt && dt[i] == vect_loop_def && vinfo_for_stmt (def_stmt)
           && STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (def_stmt)))
         {
           if (!*first_stmt_dt0)

If everything goes OK, I will submit it tomorrow.


-- 


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (5 preceding siblings ...)
  2008-08-20 12:20 ` irar at il dot ibm dot com
@ 2008-08-20 12:35 ` jv244 at cam dot ac dot uk
  2008-08-22  9:58 ` rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: jv244 at cam dot ac dot uk @ 2008-08-20 12:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jv244 at cam dot ac dot uk  2008-08-20 12:34 -------
(In reply to comment #4)
> I am testing the following patch:

I checked that it fixed the problem with the original bug (PR37174.tgz)

Thanks!

> 
> Index: tree-vect-analyze.c
> ===================================================================
> --- tree-vect-analyze.c (revision 139225)
> +++ tree-vect-analyze.c (working copy)
> @@ -2531,7 +2535,7 @@ vect_get_and_check_slp_defs (loop_vec_in
>        /* Check if DEF_STMT is a part of a pattern and get the def stmt from
>           the pattern. Check that all the stmts of the node are in the
>           pattern.  */
> -      if (def_stmt && vinfo_for_stmt (def_stmt)
> +      if (def_stmt && dt[i] == vect_loop_def && vinfo_for_stmt (def_stmt)
>            && STMT_VINFO_IN_PATTERN_P (vinfo_for_stmt (def_stmt)))
>          {
>            if (!*first_stmt_dt0)
> 
> If everything goes OK, I will submit it tomorrow.
> 


-- 


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (6 preceding siblings ...)
  2008-08-20 12:35 ` jv244 at cam dot ac dot uk
@ 2008-08-22  9:58 ` rguenth at gcc dot gnu dot org
  2008-08-22 14:15 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-08-22  9:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2008-08-22 09:57 -------
*** Bug 37198 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |weiliang dot lin at intel
                   |                            |dot com


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (7 preceding siblings ...)
  2008-08-22  9:58 ` rguenth at gcc dot gnu dot org
@ 2008-08-22 14:15 ` rguenth at gcc dot gnu dot org
  2008-08-23 10:44 ` irar at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-08-22 14:15 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1
   Target Milestone|---                         |4.4.0


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (8 preceding siblings ...)
  2008-08-22 14:15 ` rguenth at gcc dot gnu dot org
@ 2008-08-23 10:44 ` irar at gcc dot gnu dot org
  2008-08-23 11:34 ` irar at il dot ibm dot com
  2008-08-23 11:43 ` burnus at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: irar at gcc dot gnu dot org @ 2008-08-23 10:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from irar at gcc dot gnu dot org  2008-08-23 10:43 -------
Subject: Bug 37174

Author: irar
Date: Sat Aug 23 10:42:34 2008
New Revision: 139508

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=139508
Log:
        PR tree-optimization/37174
        * tree-vect-analyze.c (vect_get_and_check_slp_defs): Check that the
        def stmt is a part of the loop before accessing its stmt_vec_info.


Added:
    trunk/gcc/testsuite/g++.dg/vect/pr37174.cc
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/tree-vect-analyze.c


-- 


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (9 preceding siblings ...)
  2008-08-23 10:44 ` irar at gcc dot gnu dot org
@ 2008-08-23 11:34 ` irar at il dot ibm dot com
  2008-08-23 11:43 ` burnus at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: irar at il dot ibm dot com @ 2008-08-23 11:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from irar at il dot ibm dot com  2008-08-23 11:32 -------
Fixed.


-- 

irar at il dot ibm dot com changed:

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


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


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

* [Bug middle-end/37174] [4.4 Regression] ICE: in vinfo_for_stmt, at tree-vectorizer.h:546
  2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
                   ` (10 preceding siblings ...)
  2008-08-23 11:34 ` irar at il dot ibm dot com
@ 2008-08-23 11:43 ` burnus at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: burnus at gcc dot gnu dot org @ 2008-08-23 11:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from burnus at gcc dot gnu dot org  2008-08-23 11:41 -------
*** Bug 37209 has been marked as a duplicate of this bug. ***


-- 

burnus at gcc dot gnu dot org changed:

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


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


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

end of thread, other threads:[~2008-08-23 11:43 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-08-20  7:36 [Bug middle-end/37174] New: ICE: in vinfo_for_stmt, at tree-vectorizer.h:546 jv244 at cam dot ac dot uk
2008-08-20  7:38 ` [Bug middle-end/37174] " jv244 at cam dot ac dot uk
2008-08-20  9:40 ` wouter dot vermaelen at scarlet dot be
2008-08-20  9:48 ` [Bug tree-optimization/37174] [4.4 Regression] " rguenth at gcc dot gnu dot org
2008-08-20  9:50 ` [Bug middle-end/37174] " irar at il dot ibm dot com
2008-08-20 10:45 ` wouter dot vermaelen at scarlet dot be
2008-08-20 12:20 ` irar at il dot ibm dot com
2008-08-20 12:35 ` jv244 at cam dot ac dot uk
2008-08-22  9:58 ` rguenth at gcc dot gnu dot org
2008-08-22 14:15 ` rguenth at gcc dot gnu dot org
2008-08-23 10:44 ` irar at gcc dot gnu dot org
2008-08-23 11:34 ` irar at il dot ibm dot com
2008-08-23 11:43 ` burnus 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).