public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call
@ 2014-06-17 19:53 jamborm at gcc dot gnu.org
  2014-06-18  7:51 ` [Bug ipa/61540] " rguenth at gcc dot gnu.org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-06-17 19:53 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 61540
           Summary: internal compiler error in
                    try_make_edge_direct_virtual_call
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ipa
          Assignee: jamborm at gcc dot gnu.org
          Reporter: jamborm at gcc dot gnu.org

Created attachment 32958
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=32958&action=edit
Simple testcase

$ ~/gcc/trunk/inst/bin/g++ pr.C -O3 -fno-early-inlining -S
pr.C:38:1: internal compiler error: in try_make_edge_direct_virtual_call, at
ipa-prop.c:3007
 }
 ^
0xa39460 try_make_edge_direct_virtual_call
        /home/mjambor/gcc/trunk/src/gcc/ipa-prop.c:3006
0xa39460 update_indirect_edges_after_inlining
        /home/mjambor/gcc/trunk/src/gcc/ipa-prop.c:3062
0xa39460 propagate_info_to_inlined_callees
        /home/mjambor/gcc/trunk/src/gcc/ipa-prop.c:3138
0xa38e1e propagate_info_to_inlined_callees
        /home/mjambor/gcc/trunk/src/gcc/ipa-prop.c:3142
0x10dd48c inline_call(cgraph_edge*, bool, vec<cgraph_edge*, va_heap, vl_ptr>*,
int*, bool, bool*)
        /home/mjambor/gcc/trunk/src/gcc/ipa-inline-transform.c:282
0x10da041 recursive_inlining
        /home/mjambor/gcc/trunk/src/gcc/ipa-inline.c:1401
0x10da041 inline_small_functions
        /home/mjambor/gcc/trunk/src/gcc/ipa-inline.c:1773
0x10da041 ipa_inline
        /home/mjambor/gcc/trunk/src/gcc/ipa-inline.c:2190
0x10da041 execute
        /home/mjambor/gcc/trunk/src/gcc/ipa-inline.c:2552


The testcase does invoke undefined behavior but the assert triggering
this should emit a builtin_unreachable instead.


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

* [Bug ipa/61540] internal compiler error in try_make_edge_direct_virtual_call
  2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
@ 2014-06-18  7:51 ` rguenth at gcc dot gnu.org
  2014-06-18 12:15 ` jamborm at gcc dot gnu.org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-06-18  7:51 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2014-06-18
     Ever confirmed|0                           |1

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


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

* [Bug ipa/61540] internal compiler error in try_make_edge_direct_virtual_call
  2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
  2014-06-18  7:51 ` [Bug ipa/61540] " rguenth at gcc dot gnu.org
@ 2014-06-18 12:15 ` jamborm at gcc dot gnu.org
  2014-06-20 11:20 ` jamborm at gcc dot gnu.org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-06-18 12:15 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Jambor <jamborm at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED

--- Comment #2 from Martin Jambor <jamborm at gcc dot gnu.org> ---
I've proposed a fix on the mailing list:

https://gcc.gnu.org/ml/gcc-patches/2014-06/msg01430.html


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

* [Bug ipa/61540] internal compiler error in try_make_edge_direct_virtual_call
  2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
  2014-06-18  7:51 ` [Bug ipa/61540] " rguenth at gcc dot gnu.org
  2014-06-18 12:15 ` jamborm at gcc dot gnu.org
@ 2014-06-20 11:20 ` jamborm at gcc dot gnu.org
  2014-06-20 11:27 ` jamborm at gcc dot gnu.org
  2014-06-20 11:28 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-06-20 11:20 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Author: jamborm
Date: Fri Jun 20 11:19:46 2014
New Revision: 211847

URL: https://gcc.gnu.org/viewcvs?rev=211847&root=gcc&view=rev
Log:
2014-06-20  Martin Jambor  <mjambor@suse.cz>

    PR ipa/61540
    * ipa-prop.c (impossible_devirt_target): New function.
    (try_make_edge_direct_virtual_call): Use it, also instead of
    asserting.

testsuite/
        * g++.dg/ipa/pr61540.C: New test.


Added:
    trunk/gcc/testsuite/g++.dg/ipa/pr61540.C
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-prop.c
    trunk/gcc/testsuite/ChangeLog


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

* [Bug ipa/61540] internal compiler error in try_make_edge_direct_virtual_call
  2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2014-06-20 11:20 ` jamborm at gcc dot gnu.org
@ 2014-06-20 11:27 ` jamborm at gcc dot gnu.org
  2014-06-20 11:28 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-06-20 11:27 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Author: jamborm
Date: Fri Jun 20 11:26:42 2014
New Revision: 211848

URL: https://gcc.gnu.org/viewcvs?rev=211848&root=gcc&view=rev
Log:
2014-06-20  Martin Jambor  <mjambor@suse.cz>

    PR ipa/61540
    * ipa-prop.c (impossible_devirt_target): New function.
    (try_make_edge_direct_virtual_call): Use it, also instead of
    asserting.

testsuite/
        * g++.dg/ipa/pr61540.C: New test.


Added:
    branches/gcc-4_9-branch/gcc/testsuite/g++.dg/ipa/pr61540.C
Modified:
    branches/gcc-4_9-branch/gcc/ChangeLog
    branches/gcc-4_9-branch/gcc/ipa-prop.c
    branches/gcc-4_9-branch/gcc/testsuite/ChangeLog


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

* [Bug ipa/61540] internal compiler error in try_make_edge_direct_virtual_call
  2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2014-06-20 11:27 ` jamborm at gcc dot gnu.org
@ 2014-06-20 11:28 ` jamborm at gcc dot gnu.org
  4 siblings, 0 replies; 6+ messages in thread
From: jamborm at gcc dot gnu.org @ 2014-06-20 11:28 UTC (permalink / raw)
  To: gcc-bugs

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

Martin Jambor <jamborm at gcc dot gnu.org> changed:

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

--- Comment #5 from Martin Jambor <jamborm at gcc dot gnu.org> ---
Fixed.


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

end of thread, other threads:[~2014-06-20 11:28 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-17 19:53 [Bug ipa/61540] New: internal compiler error in try_make_edge_direct_virtual_call jamborm at gcc dot gnu.org
2014-06-18  7:51 ` [Bug ipa/61540] " rguenth at gcc dot gnu.org
2014-06-18 12:15 ` jamborm at gcc dot gnu.org
2014-06-20 11:20 ` jamborm at gcc dot gnu.org
2014-06-20 11:27 ` jamborm at gcc dot gnu.org
2014-06-20 11:28 ` jamborm 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).