public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug tree-optimization/41661]  New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
@ 2009-10-10 16:08 pinskia at gcc dot gnu dot org
  2009-10-10 16:11 ` [Bug tree-optimization/41661] " pinskia at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-10-10 16:08 UTC (permalink / raw)
  To: gcc-bugs

gcc.dg/vmx/bug-2.c fails at -O3 with the following ICE:
/home/apinski/src/local/gcc/gcc/testsuite/gcc.dg/vmx/bug-2.c:24:1: internal
compiler error: in build_int_cst_wide, at tree.c:1147

Which is caused by the fold_binary call here:
#10 0x109fe834 in ipcp_lattice_from_jfunc (info=0x1119b3b0, lat=0xff90c4ec,
jfunc=0x1119bc98) at /home/apinski/src/local/gcc/gcc/ipa-cp.c:302
302             cst = fold_binary (jfunc->value.pass_through.operation,

(gdb) p debug_generic_expr (cst)
1.0e+0
$1 = void
(gdb) p debug_generic_expr (jfunc->value.pass_through.operand)
1.0e+0

I will see if I can get a non PowerPC specific testcase soon.


-- 
           Summary: [4.5 Regression] ICE due to IPCP trying to create/fold a
                    REAL typed comparision
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Keywords: ice-on-valid-code
          Severity: normal
          Priority: P3
         Component: tree-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
GCC target triplet: powerpc*-linux-gnu


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
@ 2009-10-10 16:11 ` pinskia at gcc dot gnu dot org
  2009-10-10 16:27 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-10-10 16:11 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jamborm at gcc dot gnu dot
                   |                            |org
   Target Milestone|---                         |4.5.0


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
  2009-10-10 16:11 ` [Bug tree-optimization/41661] " pinskia at gcc dot gnu dot org
@ 2009-10-10 16:27 ` pinskia at gcc dot gnu dot org
  2009-10-10 19:46 ` jamborm at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-10-10 16:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from pinskia at gcc dot gnu dot org  2009-10-10 16:27 -------
Here is a testcase that fails also on x86_64 (but it also fails most likely
everywhere):
check (int result, const char *name)
{
  if (!result)
      printf ("fail %s\n", name);
}
#define vector __attribute__((vector_size(16) ))
static vector unsigned char value =
  { 0x7c, 0x12, 0x1, 0xd5,
    0x39, 0x66, 0xa8, 0x87 };
int g(int, vector unsigned char, vector unsigned char);
void initn_c (
 double p5 ,
       vector unsigned char p6)
{
  check(p5 == 1, "p5");
  check(g (2, (p6), (value)), "p6");
}
void test(int a)
{
  initn_c (1, value);
}


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 GCC target triplet|powerpc*-linux-gnu          |


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
  2009-10-10 16:11 ` [Bug tree-optimization/41661] " pinskia at gcc dot gnu dot org
  2009-10-10 16:27 ` pinskia at gcc dot gnu dot org
@ 2009-10-10 19:46 ` jamborm at gcc dot gnu dot org
  2009-10-12 17:34 ` jamborm at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jamborm at gcc dot gnu dot org @ 2009-10-10 19:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from jamborm at gcc dot gnu dot org  2009-10-10 19:46 -------
Thanks, I'll have a look at it early next week.


-- 

jamborm at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jamborm at gcc dot gnu dot
                   |dot org                     |org
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2009-10-10 19:46:12
               date|                            |


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2009-10-10 19:46 ` jamborm at gcc dot gnu dot org
@ 2009-10-12 17:34 ` jamborm at gcc dot gnu dot org
  2009-10-13 11:31 ` jamborm at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: jamborm at gcc dot gnu dot org @ 2009-10-12 17:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from jamborm at gcc dot gnu dot org  2009-10-12 17:34 -------
Proposed patch: http://gcc.gnu.org/ml/gcc-patches/2009-10/msg00771.html


-- 


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2009-10-12 17:34 ` jamborm at gcc dot gnu dot org
@ 2009-10-13 11:31 ` jamborm at gcc dot gnu dot org
  2009-10-13 11:33 ` jamborm at gcc dot gnu dot org
  2009-10-14  4:57 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jamborm at gcc dot gnu dot org @ 2009-10-13 11:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from jamborm at gcc dot gnu dot org  2009-10-13 11:31 -------
Subject: Bug 41661

Author: jamborm
Date: Tue Oct 13 11:31:08 2009
New Revision: 152702

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=152702
Log:
2009-10-13  Martin Jambor  <mjambor@suse.cz>

        PR tree-optimization/41661
        * ipa-prop.c (compute_complex_pass_through): Allow only operations
        that are tcc_comparisons or do not change the type in any
        un-usleless way.
        * ipa-cp.c (ipcp_lattice_from_jfunc): Request boolean type when
        folding tcc_comparison operations.

        * testsuite/gcc.c-torture/compile/pr41661.c: New test.



Added:
    trunk/gcc/testsuite/gcc.c-torture/compile/pr41661.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/ipa-cp.c
    trunk/gcc/ipa-prop.c
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2009-10-13 11:31 ` jamborm at gcc dot gnu dot org
@ 2009-10-13 11:33 ` jamborm at gcc dot gnu dot org
  2009-10-14  4:57 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: jamborm at gcc dot gnu dot org @ 2009-10-13 11:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jamborm at gcc dot gnu dot org  2009-10-13 11:32 -------
Fixed.


-- 

jamborm at gcc dot gnu dot org changed:

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


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


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

* [Bug tree-optimization/41661] [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision
  2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2009-10-13 11:33 ` jamborm at gcc dot gnu dot org
@ 2009-10-14  4:57 ` pinskia at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2009-10-14  4:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from pinskia at gcc dot gnu dot org  2009-10-14 04:57 -------
*** Bug 41147 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dominiq at lps dot ens dot
                   |                            |fr


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


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

end of thread, other threads:[~2009-10-14  4:57 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-10-10 16:08 [Bug tree-optimization/41661] New: [4.5 Regression] ICE due to IPCP trying to create/fold a REAL typed comparision pinskia at gcc dot gnu dot org
2009-10-10 16:11 ` [Bug tree-optimization/41661] " pinskia at gcc dot gnu dot org
2009-10-10 16:27 ` pinskia at gcc dot gnu dot org
2009-10-10 19:46 ` jamborm at gcc dot gnu dot org
2009-10-12 17:34 ` jamborm at gcc dot gnu dot org
2009-10-13 11:31 ` jamborm at gcc dot gnu dot org
2009-10-13 11:33 ` jamborm at gcc dot gnu dot org
2009-10-14  4:57 ` pinskia 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).