public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "jlegg at feralinteractive dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug middle-end/102518] New: [11/12 regression] ICE during GIMPLE pass: einline in gimplify_modify_expr at -O2
Date: Tue, 28 Sep 2021 16:59:50 +0000	[thread overview]
Message-ID: <bug-102518-4@http.gcc.gnu.org/bugzilla/> (raw)

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

            Bug ID: 102518
           Summary: [11/12 regression] ICE during GIMPLE pass: einline in
                    gimplify_modify_expr at -O2
           Product: gcc
           Version: 11.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jlegg at feralinteractive dot com
  Target Milestone: ---

Compiling this c++ code with g++ -O2 -c:
struct A {
  bool operator<(A b) { return b.x; }
  int x;
} * a;
int f(int *const c) {
  const A & b = reinterpret_cast<A const &>(c);
  while (a)
    if (*a < b)
      return 0;
}
int i;
void g() { f(&i); }

causes an ICE with g++ 11.2.0:
v.ii:10:1: warning: control reaches end of non-void function [-Wreturn-type]
   10 | }
      | ^
during GIMPLE pass: einline
v.ii: In function 'void g()':
v.ii:6:45: internal compiler error: in gimplify_modify_expr, at gimplify.c:5988
    6 |   const A & b = reinterpret_cast<A const &>(c);
      |                                             ^
0x6772ed gimplify_modify_expr
        ../../gcc-11.2.0/gcc/gimplify.c:5988
0xac86de gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-11.2.0/gcc/gimplify.c:14094
0xacd4c2 gimplify_stmt(tree_node**, gimple**)
        ../../gcc-11.2.0/gcc/gimplify.c:6877
0xacd4c2 gimplify_and_add(tree_node*, gimple**)
        ../../gcc-11.2.0/gcc/gimplify.c:489
0xacd4c2 internal_get_tmp_var
        ../../gcc-11.2.0/gcc/gimplify.c:642
0xacd751 get_initialized_tmp_var(tree_node*, gimple**, gimple**, bool)
        ../../gcc-11.2.0/gcc/gimplify.c:674
0xacd751 prepare_gimple_addressable
        ../../gcc-11.2.0/gcc/gimplify.c:4334
0xacd7f1 gimplify_addr_expr
        ../../gcc-11.2.0/gcc/gimplify.c:6230
0xac924f gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-11.2.0/gcc/gimplify.c:14141
0xac9fe8 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-11.2.0/gcc/gimplify.c:14253
0xacb35f gimplify_compound_lval
        ../../gcc-11.2.0/gcc/gimplify.c:3074
0xac81b1 gimplify_expr(tree_node**, gimple**, gimple**, bool (*)(tree_node*),
int)
        ../../gcc-11.2.0/gcc/gimplify.c:14046
0xad86b3 gimple_regimplify_operands(gimple*, gimple_stmt_iterator*)
        ../../gcc-11.2.0/gcc/gimplify-me.c:235
0xd907d2 copy_bb
        ../../gcc-11.2.0/gcc/tree-inline.c:2061
0xd91a64 copy_cfg_body
        ../../gcc-11.2.0/gcc/tree-inline.c:3048
0xd91a64 copy_body
        ../../gcc-11.2.0/gcc/tree-inline.c:3303
0xd94ccf expand_call_inline
        ../../gcc-11.2.0/gcc/tree-inline.c:5119
0xd96279 gimple_expand_calls_inline
        ../../gcc-11.2.0/gcc/tree-inline.c:5309
0xd96279 optimize_inline_calls(tree_node*)
        ../../gcc-11.2.0/gcc/tree-inline.c:5482
0x167957e early_inliner(function*)
        ../../gcc-11.2.0/gcc/ipa-inline.c:3007

The test case was heavily reduced, primarily without human interaction. I
wouldn't be surprised if an incorrect use of a type punned pointer was part of
the original code around the problem area however.

The ICE reproduces with "-O1 -finline-small-functions" instead of "-O2", but
not with plain "-O1".
I was able to reproduce it with compiler explorer using gcc with git hash
51018dd1395c72b3681ae5f84eceb94320472922, and 11.1, but not with 10.3 or
earlier.

             reply	other threads:[~2021-09-28 16:59 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-28 16:59 jlegg at feralinteractive dot com [this message]
2021-09-28 19:31 ` [Bug middle-end/102518] " pinskia at gcc dot gnu.org
2021-09-29  6:14 ` rguenth at gcc dot gnu.org
2021-09-30 10:00 ` [Bug middle-end/102518] [11/12 regression] ICE during GIMPLE pass: einline in gimplify_modify_expr at -O2 since r11-165-geb72dc663e9070b2 marxin at gcc dot gnu.org
2021-09-30 13:01 ` rguenth at gcc dot gnu.org
2021-10-01  6:26 ` cvs-commit at gcc dot gnu.org
2021-10-01  6:26 ` [Bug middle-end/102518] [11 Regression] " rguenth at gcc dot gnu.org
2021-11-08 13:32 ` cvs-commit at gcc dot gnu.org
2021-11-08 13:33 ` rguenth at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-102518-4@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).