public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking
@ 2014-09-02 14:11 krebbel at gcc dot gnu.org
  2014-09-02 14:13 ` [Bug debug/63135] " krebbel at gcc dot gnu.org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: krebbel at gcc dot gnu.org @ 2014-09-02 14:11 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 63135
           Summary: [4.9 regression] Infinite loop in var-tracking
           Product: gcc
           Version: 4.9.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
          Assignee: unassigned at gcc dot gnu.org
          Reporter: krebbel at gcc dot gnu.org

Created attachment 33435
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=33435&action=edit
Preprocessed zsh 5.0.6 source file

zsh compilation runs into infinite loop on S/390:

cc1 builtin.i -m64 -mzarch -march=z900 -g  -O2 -fstack-protector-all -o
builtin.s

reghunt indicates that the failure started to appear with r208165 and for
mainline got fixed (or papered over) with r211007. However, it still fails with
GCC 4.9 branch.

(gdb) bt
#0  0x000000008088f8ea in dv_uid (dv=0x812accb8) at
/home/andreas/clean/gcc/gcc/var-tracking.c:443
#1  dv_htab_hash (dv=0x812accb8) at
/home/andreas/clean/gcc/gcc/var-tracking.c:461
#2  dv_htab_hash (dv=0x812accb8) at
/home/andreas/clean/gcc/gcc/var-tracking.c:1604
#3  vars_copy (src=..., dst=...) at
/home/andreas/clean/gcc/gcc/var-tracking.c:1816
#4  shared_hash_unshare (vars=0x81258960) at
/home/andreas/clean/gcc/gcc/var-tracking.c:1610
#5  0x0000000080895d34 in shared_hash_find_slot_unshare_1 (ins=INSERT,
dvhash=169, dv=0x81188080, 
    pvars=0x81187758) at /home/andreas/clean/gcc/gcc/var-tracking.c:1646
#6  shared_hash_find_slot_unshare (ins=INSERT, dv=0x81188080, pvars=0x81187758)
    at /home/andreas/clean/gcc/gcc/var-tracking.c:1654
#7  set_variable_part (set=0x81187620, loc=0x3fff6e1e8b8, dv=0x81188080,
offset=0, 
    initialized=VAR_INIT_STATUS_INITIALIZED, set_src=0x0, iopt=INSERT)
    at /home/andreas/clean/gcc/gcc/var-tracking.c:7768
#8  0x000000008089625a in var_mem_decl_set (set=0x81187620, loc=0x3fff6e1e8b8, 
    initialized=<optimized out>, dv=0x81188080, offset=<optimized out>,
set_src=0x0, iopt=INSERT)
    at /home/andreas/clean/gcc/gcc/var-tracking.c:2341
#9  0x000000008089acd0 in val_bind (modified=<optimized out>, loc=<optimized
out>, 
    val=<optimized out>, set=<optimized out>) at
/home/andreas/clean/gcc/gcc/var-tracking.c:2455
#10 val_resolve (set=0x81187620, val=0x81188080, loc=0x3fff6e1e8b8,
insn=<optimized out>)
    at /home/andreas/clean/gcc/gcc/var-tracking.c:2653
#11 0x000000008089b8b6 in compute_bb_dataflow (bb=0x3fff6cbcc30)
    at /home/andreas/clean/gcc/gcc/var-tracking.c:6718
#12 0x000000008089cba4 in vt_find_locations () at
/home/andreas/clean/gcc/gcc/var-tracking.c:7070
#13 0x000000008089f0ca in variable_tracking_main_1 ()
    at /home/andreas/clean/gcc/gcc/var-tracking.c:10294


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
@ 2014-09-02 14:13 ` krebbel at gcc dot gnu.org
  2014-09-02 14:15 ` rguenth at gcc dot gnu.org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: krebbel at gcc dot gnu.org @ 2014-09-02 14:13 UTC (permalink / raw)
  To: gcc-bugs

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

Andreas Krebbel <krebbel at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Target|                            |s390x-ibm-linux
                 CC|                            |doko at gcc dot gnu.org
               Host|                            |s390x-ibm-linux
              Build|                            |s390x-ibm-linux

--- Comment #1 from Andreas Krebbel <krebbel at gcc dot gnu.org> ---
CC'ing Matthias since this is Debian BZ:
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=759870


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
  2014-09-02 14:13 ` [Bug debug/63135] " krebbel at gcc dot gnu.org
@ 2014-09-02 14:15 ` rguenth at gcc dot gnu.org
  2014-10-30 10:41 ` jakub at gcc dot gnu.org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-09-02 14:15 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to work|                            |4.8.3, 5.0
   Target Milestone|---                         |4.9.2


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
  2014-09-02 14:13 ` [Bug debug/63135] " krebbel at gcc dot gnu.org
  2014-09-02 14:15 ` rguenth at gcc dot gnu.org
@ 2014-10-30 10:41 ` jakub at gcc dot gnu.org
  2014-11-24 16:54 ` rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2014-10-30 10:41 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.2                       |4.9.3

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.2 has been released.


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2014-10-30 10:41 ` jakub at gcc dot gnu.org
@ 2014-11-24 16:54 ` rguenth at gcc dot gnu.org
  2015-06-26 20:18 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: rguenth at gcc dot gnu.org @ 2014-11-24 16:54 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P2

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
Note this is likely a latent bug.


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2014-11-24 16:54 ` rguenth at gcc dot gnu.org
@ 2015-06-26 20:18 ` jakub at gcc dot gnu.org
  2015-06-26 20:38 ` jakub at gcc dot gnu.org
  2015-10-13  8:34 ` mkuvyrkov at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:18 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 4.9.3 has been released.


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2015-06-26 20:18 ` jakub at gcc dot gnu.org
@ 2015-06-26 20:38 ` jakub at gcc dot gnu.org
  2015-10-13  8:34 ` mkuvyrkov at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-06-26 20:38 UTC (permalink / raw)
  To: gcc-bugs

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

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.9.3                       |4.9.4


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

* [Bug debug/63135] [4.9 regression] Infinite loop in var-tracking
  2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2015-06-26 20:38 ` jakub at gcc dot gnu.org
@ 2015-10-13  8:34 ` mkuvyrkov at gcc dot gnu.org
  6 siblings, 0 replies; 8+ messages in thread
From: mkuvyrkov at gcc dot gnu.org @ 2015-10-13  8:34 UTC (permalink / raw)
  To: gcc-bugs

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

Maxim Kuvyrkov <mkuvyrkov at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mkuvyrkov at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |mkuvyrkov at gcc dot gnu.org

--- Comment #5 from Maxim Kuvyrkov <mkuvyrkov at gcc dot gnu.org> ---
This is likely a DUP of https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61033 . 
Assigning to myself.


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

end of thread, other threads:[~2015-10-13  8:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-02 14:11 [Bug debug/63135] New: [4.9 regression] Infinite loop in var-tracking krebbel at gcc dot gnu.org
2014-09-02 14:13 ` [Bug debug/63135] " krebbel at gcc dot gnu.org
2014-09-02 14:15 ` rguenth at gcc dot gnu.org
2014-10-30 10:41 ` jakub at gcc dot gnu.org
2014-11-24 16:54 ` rguenth at gcc dot gnu.org
2015-06-26 20:18 ` jakub at gcc dot gnu.org
2015-06-26 20:38 ` jakub at gcc dot gnu.org
2015-10-13  8:34 ` mkuvyrkov 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).