public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929
@ 2021-06-15 17:06 gscfq@t-online.de
  2021-06-15 17:09 ` [Bug tree-optimization/101083] " pinskia at gcc dot gnu.org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: gscfq@t-online.de @ 2021-06-15 17:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101083

            Bug ID: 101083
           Summary: [12 Regression] ICE with -Ofast in
                    TYPE_VECTOR_SUBPARTS, at tree.h:3929
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: gscfq@t-online.de
  Target Milestone: ---

Needs -Ofast, test case derived from pr97832-2.c (-3.c),
changed recently between 20210606 and 20210613 :


$ cat z1.c
void foo1x1(double* restrict y, const double* restrict x, int clen)
{
  int xi = clen & 2;
  double f_re = x[0+xi+0];
  double f_im = x[4+xi+0];
  int clen2 = (clen+xi) * 2;
  for (int c = 0; c < clen2; c += 8) {
    // y[c] = y[c] - x[c]*conj(f);
    for (int k = 0; k < 4; ++k) {
      double x_re = x[k];
      double x_im = x[c+4+k];
      double y_re = y[c+0+k];
      double y_im = y[c+4+k];
      y_re = y_re - x_re * f_re - x_im * f_im;;
      y_im = y_im + x_re * f_im - x_im * f_re;
      y[c+0+k] = y_re;
      y[c+4+k] = y_im;
    }
  }
}


$ gcc-12-20210613 -c z1.c -O3
$
$ gcc-12-20210613 -c z1.c -Ofast
during GIMPLE pass: vect
z1.c: In function 'foo1x1':
z1.c:1:6: internal compiler error: Segmentation fault
    1 | void foo1x1(double* restrict y, const double* restrict x, int clen)
      |      ^~~~~~
0xbd1bef crash_signal
        ../../gcc/toplev.c:327
0xe321c4 TYPE_VECTOR_SUBPARTS(tree_node const*)
        ../../gcc/tree.h:3929
0xe321c4 vect_get_num_vectors
        ../../gcc/tree-vectorizer.h:1658
0xe321c4 vect_slp_analyze_node_operations_1
        ../../gcc/tree-vect-slp.c:4254
0xe321c4 vect_slp_analyze_node_operations
        ../../gcc/tree-vect-slp.c:4432
0xe32134 vect_slp_analyze_node_operations
        ../../gcc/tree-vect-slp.c:4412
0xe32134 vect_slp_analyze_node_operations
        ../../gcc/tree-vect-slp.c:4412
0xe32134 vect_slp_analyze_node_operations
        ../../gcc/tree-vect-slp.c:4412
0xe34cc9 vect_slp_analyze_operations(vec_info*)
        ../../gcc/tree-vect-slp.c:4619
0xe0f73c vect_analyze_loop_2
        ../../gcc/tree-vect-loop.c:2396
0xe117c4 vect_analyze_loop(loop*, vec_info_shared*)
        ../../gcc/tree-vect-loop.c:2986
0xe4064c try_vectorize_loop_1
        ../../gcc/tree-vectorizer.c:1004
0xe40e41 vectorize_loops()
        ../../gcc/tree-vectorizer.c:1238

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

* [Bug tree-optimization/101083] [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929
  2021-06-15 17:06 [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929 gscfq@t-online.de
@ 2021-06-15 17:09 ` pinskia at gcc dot gnu.org
  2021-06-16  6:49 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-06-15 17:09 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101083

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |12.0

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

* [Bug tree-optimization/101083] [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929
  2021-06-15 17:06 [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929 gscfq@t-online.de
  2021-06-15 17:09 ` [Bug tree-optimization/101083] " pinskia at gcc dot gnu.org
@ 2021-06-16  6:49 ` rguenth at gcc dot gnu.org
  2021-06-16  7:48 ` cvs-commit at gcc dot gnu.org
  2021-06-16  8:52 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-16  6:49 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101083

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Last reconfirmed|                            |2021-06-16
             Status|UNCONFIRMED                 |ASSIGNED
     Ever confirmed|0                           |1
           Assignee|unassigned at gcc dot gnu.org      |rguenth at gcc dot gnu.org

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
Confirmed, mine.

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

* [Bug tree-optimization/101083] [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929
  2021-06-15 17:06 [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929 gscfq@t-online.de
  2021-06-15 17:09 ` [Bug tree-optimization/101083] " pinskia at gcc dot gnu.org
  2021-06-16  6:49 ` rguenth at gcc dot gnu.org
@ 2021-06-16  7:48 ` cvs-commit at gcc dot gnu.org
  2021-06-16  8:52 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-06-16  7:48 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101083

--- Comment #2 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Richard Biener <rguenth@gcc.gnu.org>:

https://gcc.gnu.org/g:4e56b1347687a33efa47d13d357ae3b7ab759c99

commit r12-1493-g4e56b1347687a33efa47d13d357ae3b7ab759c99
Author: Richard Biener <rguenther@suse.de>
Date:   Wed Jun 16 08:56:21 2021 +0200

    tree-optimization/101083 - fix ICE with SLP reassoc

    This makes us pass down the vector type for the two-operand
    SLP node build rather than picking that from operand one which,
    when constant or external, could be NULL.

    2021-06-16  Richard Biener  <rguenther@suse.de>

            PR tree-optimization/101083
            * tree-vect-slp.c (vect_slp_build_two_operator_nodes): Get
            vectype as argument.
            (vect_build_slp_tree_2): Adjust.

            * gcc.dg/vect/pr97832-4.c: New testcase.

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

* [Bug tree-optimization/101083] [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929
  2021-06-15 17:06 [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929 gscfq@t-online.de
                   ` (2 preceding siblings ...)
  2021-06-16  7:48 ` cvs-commit at gcc dot gnu.org
@ 2021-06-16  8:52 ` rguenth at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-16  8:52 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=101083

Richard Biener <rguenth at gcc dot gnu.org> changed:

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

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Fixed.

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

end of thread, other threads:[~2021-06-16  8:52 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-15 17:06 [Bug c/101083] New: [12 Regression] ICE with -Ofast in TYPE_VECTOR_SUBPARTS, at tree.h:3929 gscfq@t-online.de
2021-06-15 17:09 ` [Bug tree-optimization/101083] " pinskia at gcc dot gnu.org
2021-06-16  6:49 ` rguenth at gcc dot gnu.org
2021-06-16  7:48 ` cvs-commit at gcc dot gnu.org
2021-06-16  8:52 ` rguenth at gcc dot gnu.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).