public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/38359]  New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
@ 2008-12-02  0:07 debian-gcc at lists dot debian dot org
  2008-12-02  0:13 ` [Bug tree-optimization/38359] " pinskia at gcc dot gnu dot org
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2008-12-02  0:07 UTC (permalink / raw)
  To: gcc-bugs

[forwarded from http://bugs.debian.org/PR492505]

works with 4.2 branch, fails with 4.3 branch and trunk, succeeds with -O0

$ gcc-4.3 000.c -c -O1
000.c: In function '_ov_64_seek_lap':
000.c:33: internal compiler error: in set_lattice_value, at tree-ssa-ccp.c:487
Please submit a full bug report,
with preprocessed source if appropriate.

void _ov_64_seek_lap (void)
{
  unsigned x1, x2, x3;
  unsigned ltmp_3978_7;
  unsigned ltmp_3978_7__PHI_TEMPORARY;
  unsigned ltmp_4011_7__PHI_TEMPORARY;
  unsigned ltmp_4012_7;
  signed ltmp_4011_7;

  if (x1)
  {
    if (x2)
    {
      goto llvm_cbe__ov_initset_2e_exit;
    }
  }
  while (1)
    ;

llvm_cbe__ov_initset_2e_exit:
  if (x3)
  {
    ltmp_3978_7__PHI_TEMPORARY = 0xffffff7e;
    goto llvm_cbe_ov_halfrate_p_2e_exit;
  }
  ltmp_3978_7__PHI_TEMPORARY = 1;

llvm_cbe_ov_halfrate_p_2e_exit:
  ltmp_3978_7 = ltmp_3978_7__PHI_TEMPORARY;
  ltmp_4011_7__PHI_TEMPORARY = 0xffffffff;
  ltmp_4011_7 = ltmp_4011_7__PHI_TEMPORARY;
  ltmp_4012_7 = ltmp_4011_7 >> ltmp_3978_7;
}


-- 
           Summary: [4.3/4.4 regression] ICE in set_lattice_value, at tree-
                    ssa-ccp.c:466
           Product: gcc
           Version: 4.3.3
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: debian-gcc at lists dot debian dot org


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
@ 2008-12-02  0:13 ` pinskia at gcc dot gnu dot org
  2008-12-02  0:26 ` debian-gcc at lists dot debian dot org
                   ` (10 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2008-12-02  0:13 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2008-12-02 00:11 -------
Here is a shorter testcase:
void _ov_64_seek_lap (void)
{
  _Bool x1, x2, x3;
  unsigned ltmp_3978_7;
  unsigned ltmp_3978_7__PHI_TEMPORARY;
  unsigned ltmp_4011_7__PHI_TEMPORARY;
  unsigned ltmp_4012_7;
  signed ltmp_4011_7;

  if (!x1 || !x2)
    while (1) ;

  if (x3)
    ltmp_3978_7__PHI_TEMPORARY = 0xffffff7e;
  else
    ltmp_3978_7__PHI_TEMPORARY = 1;

  ltmp_3978_7 = ltmp_3978_7__PHI_TEMPORARY;
  ltmp_4011_7__PHI_TEMPORARY = 0xffffffff;
  ltmp_4011_7 = ltmp_4011_7__PHI_TEMPORARY;
  ltmp_4012_7 = ltmp_4011_7 >> ltmp_3978_7;
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-12-02 00:11:53
               date|                            |
   Target Milestone|---                         |4.3.3


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
  2008-12-02  0:13 ` [Bug tree-optimization/38359] " pinskia at gcc dot gnu dot org
@ 2008-12-02  0:26 ` debian-gcc at lists dot debian dot org
  2008-12-02 11:21 ` rguenth at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: debian-gcc at lists dot debian dot org @ 2008-12-02  0:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from debian-gcc at lists dot debian dot org  2008-12-02 00:24 -------
link is http://bugs.debian.org/492505


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
  2008-12-02  0:13 ` [Bug tree-optimization/38359] " pinskia at gcc dot gnu dot org
  2008-12-02  0:26 ` debian-gcc at lists dot debian dot org
@ 2008-12-02 11:21 ` rguenth at gcc dot gnu dot org
  2008-12-02 12:23 ` rguenth at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 11:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from rguenth at gcc dot gnu dot org  2008-12-02 11:18 -------
I will have a look.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |rguenth at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2008-12-02 00:11:53         |2008-12-02 11:18:47
               date|                            |


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (2 preceding siblings ...)
  2008-12-02 11:21 ` rguenth at gcc dot gnu dot org
@ 2008-12-02 12:23 ` rguenth at gcc dot gnu dot org
  2008-12-02 13:24 ` rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 12:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2008-12-02 12:21 -------
Minimal testcase:

unsigned _ov_64_seek_lap (_Bool x1, _Bool x2, _Bool x3)
{
  unsigned ltmp_3978_7__PHI_TEMPORARY;
  unsigned ltmp_4011_7__PHI_TEMPORARY;
  signed ltmp_4011_7;

  if (!x1 || !x2)
    while (1) ;

  if (x3)
    ltmp_3978_7__PHI_TEMPORARY = 0xffffff7e;
  else
    ltmp_3978_7__PHI_TEMPORARY = 1;

  ltmp_4011_7 = -1;
  return ltmp_4011_7 >> ltmp_3978_7__PHI_TEMPORARY;
}


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (3 preceding siblings ...)
  2008-12-02 12:23 ` rguenth at gcc dot gnu dot org
@ 2008-12-02 13:24 ` rguenth at gcc dot gnu dot org
  2008-12-02 14:51 ` rguenth at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 13:24 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from rguenth at gcc dot gnu dot org  2008-12-02 13:23 -------
This is const_binop folding -1 >> -130 to zero and fold_binary -1 >> n to -1.

11458       case RSHIFT_EXPR:
11459         /* Optimize -1 >> x for arithmetic right shifts.  */
11460         if (integer_all_onesp (arg0) && !TYPE_UNSIGNED (type))
11461           return omit_one_operand (type, arg0, arg1);
11462         /* ... fall through ...  */

but this is of course only correct if arg1 is >= 0.

I have a patch.


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (4 preceding siblings ...)
  2008-12-02 13:24 ` rguenth at gcc dot gnu dot org
@ 2008-12-02 14:51 ` rguenth at gcc dot gnu dot org
  2008-12-02 14:53 ` [Bug tree-optimization/38359] [4.3 Regression] " rguenth at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 14:51 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2008-12-02 14:50 -------
Subject: Bug 38359

Author: rguenth
Date: Tue Dec  2 14:49:00 2008
New Revision: 142356

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=142356
Log:
2008-12-02  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/38359
        * fold-const.c (fold_binary): Fold -1 >> x to -1 only for
        non-negative x.

        * gcc.c-torture/compile/pr38359.c: New testcase.
        * gcc.c-torture/execute/shiftopt-1.c: Adjust.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/fold-const.c
    trunk/gcc/testsuite/ChangeLog
    trunk/gcc/testsuite/gcc.c-torture/execute/shiftopt-1.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (5 preceding siblings ...)
  2008-12-02 14:51 ` rguenth at gcc dot gnu dot org
@ 2008-12-02 14:53 ` rguenth at gcc dot gnu dot org
  2008-12-02 14:57 ` rguenth at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 14:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from rguenth at gcc dot gnu dot org  2008-12-02 14:51 -------
Fixed for 4.4.0.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
      Known to fail|4.3.3 4.4.0                 |4.3.3
      Known to work|4.2.5                       |4.2.5 4.4.0
            Summary|[4.3/4.4 regression] ICE in |[4.3 Regression] ICE in
                   |set_lattice_value, at tree- |set_lattice_value, at tree-
                   |ssa-ccp.c:466               |ssa-ccp.c:466


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (6 preceding siblings ...)
  2008-12-02 14:53 ` [Bug tree-optimization/38359] [4.3 Regression] " rguenth at gcc dot gnu dot org
@ 2008-12-02 14:57 ` rguenth at gcc dot gnu dot org
  2008-12-05 12:47 ` rguenth at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-02 14:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from rguenth at gcc dot gnu dot org  2008-12-02 14:56 -------
Subject: Bug 38359

Author: rguenth
Date: Tue Dec  2 14:55:04 2008
New Revision: 142357

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=142357
Log:
2008-12-02  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/38359
        * gcc.c-torture/compile/pr38359.c: New testcase.

Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr38359.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (7 preceding siblings ...)
  2008-12-02 14:57 ` rguenth at gcc dot gnu dot org
@ 2008-12-05 12:47 ` rguenth at gcc dot gnu dot org
  2009-01-24 10:27 ` rguenth at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-12-05 12:47 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

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


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (8 preceding siblings ...)
  2008-12-05 12:47 ` rguenth at gcc dot gnu dot org
@ 2009-01-24 10:27 ` rguenth at gcc dot gnu dot org
  2009-01-24 23:27 ` rguenth at gcc dot gnu dot org
  2009-01-24 23:28 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 10:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from rguenth at gcc dot gnu dot org  2009-01-24 10:21 -------
GCC 4.3.3 is being released, adjusting target milestone.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.3.3                       |4.3.4


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (9 preceding siblings ...)
  2009-01-24 10:27 ` rguenth at gcc dot gnu dot org
@ 2009-01-24 23:27 ` rguenth at gcc dot gnu dot org
  2009-01-24 23:28 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 23:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from rguenth at gcc dot gnu dot org  2009-01-24 23:27 -------
Subject: Bug 38359

Author: rguenth
Date: Sat Jan 24 23:26:56 2009
New Revision: 143656

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=143656
Log:
2009-01-25  Richard Guenther  <rguenther@suse.de>

        Backport from mainline:
        2008-12-02  Richard Guenther  <rguenther@suse.de>

        PR tree-optimization/38359
        * fold-const.c (fold_binary): Fold -1 >> x to -1 only for
        non-negative x.

        * gcc.c-torture/compile/pr38359.c: New testcase.
        * gcc.c-torture/execute/shiftopt-1.c: Adjust.

Added:
    branches/gcc-4_3-branch/gcc/testsuite/gcc.c-torture/compile/pr38359.c
      - copied unchanged from r142357,
trunk/gcc/testsuite/gcc.c-torture/compile/pr38359.c
Modified:
    branches/gcc-4_3-branch/gcc/ChangeLog
    branches/gcc-4_3-branch/gcc/fold-const.c
    branches/gcc-4_3-branch/gcc/testsuite/ChangeLog
    branches/gcc-4_3-branch/gcc/testsuite/gcc.c-torture/execute/shiftopt-1.c


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

* [Bug tree-optimization/38359] [4.3 Regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466
  2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
                   ` (10 preceding siblings ...)
  2009-01-24 23:27 ` rguenth at gcc dot gnu dot org
@ 2009-01-24 23:28 ` rguenth at gcc dot gnu dot org
  11 siblings, 0 replies; 13+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2009-01-24 23:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from rguenth at gcc dot gnu dot org  2009-01-24 23:28 -------
Fixed.


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
      Known to work|4.2.5 4.4.0                 |4.2.5 4.3.4 4.4.0
         Resolution|                            |FIXED


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=38359


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

end of thread, other threads:[~2009-01-24 23:28 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-12-02  0:07 [Bug tree-optimization/38359] New: [4.3/4.4 regression] ICE in set_lattice_value, at tree-ssa-ccp.c:466 debian-gcc at lists dot debian dot org
2008-12-02  0:13 ` [Bug tree-optimization/38359] " pinskia at gcc dot gnu dot org
2008-12-02  0:26 ` debian-gcc at lists dot debian dot org
2008-12-02 11:21 ` rguenth at gcc dot gnu dot org
2008-12-02 12:23 ` rguenth at gcc dot gnu dot org
2008-12-02 13:24 ` rguenth at gcc dot gnu dot org
2008-12-02 14:51 ` rguenth at gcc dot gnu dot org
2008-12-02 14:53 ` [Bug tree-optimization/38359] [4.3 Regression] " rguenth at gcc dot gnu dot org
2008-12-02 14:57 ` rguenth at gcc dot gnu dot org
2008-12-05 12:47 ` rguenth at gcc dot gnu dot org
2009-01-24 10:27 ` rguenth at gcc dot gnu dot org
2009-01-24 23:27 ` rguenth at gcc dot gnu dot org
2009-01-24 23:28 ` rguenth at gcc dot gnu dot 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).