public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
@ 2015-01-12 11:30 ` rguenth at gcc dot gnu.org
  2015-01-12 11:34 ` trippels at gcc dot gnu.org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-01-12 11:30 UTC (permalink / raw)
  To: gcc-bugs

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

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

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


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
  2015-01-12 11:30 ` [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664 rguenth at gcc dot gnu.org
@ 2015-01-12 11:34 ` trippels at gcc dot gnu.org
  2015-01-12 12:16 ` trippels at gcc dot gnu.org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-12 11:34 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
1664          gcc_assert (max_count || current_badness >= badness);

(gdb) p current_badness
$2 = {
  m_sig = -1,
  m_exp = -1
}
(gdb) p badness
$3 = {
  m_sig = -1726576832,
  m_exp = -28
}


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
  2015-01-12 11:30 ` [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664 rguenth at gcc dot gnu.org
  2015-01-12 11:34 ` trippels at gcc dot gnu.org
@ 2015-01-12 12:16 ` trippels at gcc dot gnu.org
  2015-01-12 15:11 ` hubicka at gcc dot gnu.org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-12 12:16 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
Sorry I've pasted the wrong values in comment 1.


(gdb) p current_badness
$6 = {
  m_sig = -1726576896,
  m_exp = -28
}
(gdb) p badness
$7 = {
  m_sig = -1726576832,
  m_exp = -28
}


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2015-01-12 12:16 ` trippels at gcc dot gnu.org
@ 2015-01-12 15:11 ` hubicka at gcc dot gnu.org
  2015-01-12 21:28 ` hubicka at gcc dot gnu.org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-01-12 15:11 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #3 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
Thanks a lot for testcase! Smells like a roundoff error, too.   Will debug it
today.


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2015-01-12 15:11 ` hubicka at gcc dot gnu.org
@ 2015-01-12 21:28 ` hubicka at gcc dot gnu.org
  2015-01-13 13:59 ` trippels at gcc dot gnu.org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-01-12 21:28 UTC (permalink / raw)
  To: gcc-bugs

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

Jan Hubicka <hubicka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |ASSIGNED
   Last reconfirmed|                            |2015-01-12
           Assignee|unassigned at gcc dot gnu.org      |hubicka at gcc dot gnu.org
     Ever confirmed|0                           |1

--- Comment #4 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
I am testing the following
Index: ipa-inline.c
===================================================================
--- ipa-inline.c        (revision 219452)
+++ ipa-inline.c        (working copy)
@@ -1626,6 +1626,8 @@ inline_small_functions (void)
          reset_edge_caches (where);
           update_caller_keys (&edge_heap, where,
                              updated_nodes, NULL);
+          update_callee_keys (&edge_heap, where,
+                             updated_nodes);
           bitmap_clear (updated_nodes);
        }
     }
@@ -1661,7 +1663,7 @@ inline_small_functions (void)
       /* Disable checking for profile because roundoff errors may cause slight
          deviations in the order.  */
       gcc_assert (max_count || cached_badness == current_badness);
-      gcc_assert (max_count || current_badness >= badness);
+      gcc_assert (current_badness >= badness);
 #else
       current_badness = edge_badness (edge, false);
 #endif


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (4 preceding siblings ...)
  2015-01-12 21:28 ` hubicka at gcc dot gnu.org
@ 2015-01-13 13:59 ` trippels at gcc dot gnu.org
  2015-01-13 14:00 ` pinskia at gcc dot gnu.org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: trippels at gcc dot gnu.org @ 2015-01-13 13:59 UTC (permalink / raw)
  To: gcc-bugs

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

Markus Trippelsdorf <trippels at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |hjl.tools at gmail dot com

--- Comment #5 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
*** Bug 64582 has been marked as a duplicate of this bug. ***


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (5 preceding siblings ...)
  2015-01-13 13:59 ` trippels at gcc dot gnu.org
@ 2015-01-13 14:00 ` pinskia at gcc dot gnu.org
  2015-01-13 22:41 ` hubicka at gcc dot gnu.org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2015-01-13 14:00 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
           Severity|normal                      |blocker

--- Comment #6 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
This also shows up in SPEC2k6 while compiling 483.xalancbmk.


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (6 preceding siblings ...)
  2015-01-13 14:00 ` pinskia at gcc dot gnu.org
@ 2015-01-13 22:41 ` hubicka at gcc dot gnu.org
  2015-01-14  0:07 ` hubicka at gcc dot gnu.org
  2024-04-03  4:49 ` pinskia at gcc dot gnu.org
  9 siblings, 0 replies; 10+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-01-13 22:41 UTC (permalink / raw)
  To: gcc-bugs

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

Jan Hubicka <hubicka at gcc dot gnu.org> changed:

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

--- Comment #8 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
Fixed.


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (7 preceding siblings ...)
  2015-01-13 22:41 ` hubicka at gcc dot gnu.org
@ 2015-01-14  0:07 ` hubicka at gcc dot gnu.org
  2024-04-03  4:49 ` pinskia at gcc dot gnu.org
  9 siblings, 0 replies; 10+ messages in thread
From: hubicka at gcc dot gnu.org @ 2015-01-14  0:07 UTC (permalink / raw)
  To: gcc-bugs

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

Jan Hubicka <hubicka at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |acsawdey at linux dot vnet.ibm.com

--- Comment #9 from Jan Hubicka <hubicka at gcc dot gnu.org> ---
*** Bug 64586 has been marked as a duplicate of this bug. ***


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

* [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664
       [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
                   ` (8 preceding siblings ...)
  2015-01-14  0:07 ` hubicka at gcc dot gnu.org
@ 2024-04-03  4:49 ` pinskia at gcc dot gnu.org
  9 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2024-04-03  4:49 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikulas at artax dot karlin.mff.cu
                   |                            |ni.cz

--- Comment #10 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
*** Bug 64545 has been marked as a duplicate of this bug. ***

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

end of thread, other threads:[~2024-04-03  4:49 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-64565-4@http.gcc.gnu.org/bugzilla/>
2015-01-12 11:30 ` [Bug ipa/64565] [5 Regression] ICE: in inline_small_functions, at ipa-inline.c:1664 rguenth at gcc dot gnu.org
2015-01-12 11:34 ` trippels at gcc dot gnu.org
2015-01-12 12:16 ` trippels at gcc dot gnu.org
2015-01-12 15:11 ` hubicka at gcc dot gnu.org
2015-01-12 21:28 ` hubicka at gcc dot gnu.org
2015-01-13 13:59 ` trippels at gcc dot gnu.org
2015-01-13 14:00 ` pinskia at gcc dot gnu.org
2015-01-13 22:41 ` hubicka at gcc dot gnu.org
2015-01-14  0:07 ` hubicka at gcc dot gnu.org
2024-04-03  4:49 ` pinskia 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).