public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/37318]  New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
@ 2008-09-01 19:06 danglin at gcc dot gnu dot org
  2008-09-01 19:10 ` [Bug middle-end/37318] " danglin at gcc dot gnu dot org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-01 19:06 UTC (permalink / raw)
  To: gcc-bugs

Executing on host: /test/gnu/gcc/objdir/gcc/xgcc -B/test/gnu/gcc/objdir/gcc/  
-
DSKIP_DECIMAL_FLOAT -c  -o c_compat_x_tst.o
/test/gnu/gcc/gcc/gcc/testsuite/gcc.
dg/compat//scalar-by-value-4_x.c    (timeout = 300)
/test/gnu/gcc/gcc/gcc/testsuite/gcc.dg/compat//scalar-by-value-4_x.c: In
functio
n 'checkcc':
/test/gnu/gcc/gcc/gcc/testsuite/gcc.dg/compat//scalar-by-value-4_x.c:72:
interna
l compiler error: in emit_group_store, at expr.c:2084

Breakpoint 1, emit_group_store (orig_dst=0x800003fffddea380, 
    src=0x800003fffddd0290, type=0x0, ssize=2) at ../../gcc/gcc/expr.c:1916
1916      enum machine_mode m = GET_MODE (orig_dst);
(gdb) bt
#0  emit_group_store (orig_dst=0x800003fffddea380, src=0x800003fffddd0290, 
    type=0x0, ssize=2) at ../../gcc/gcc/expr.c:1916
#1  0x40000000005e22b0 in assign_parm_remove_parallels (
    data=0x800003fffdff19c0) at ../../gcc/gcc/function.c:2433
#2  0x40000000005e44d4 in assign_parm_setup_stack (all=0x800003fffdff1968, 
    parm=0x800003fffdfb3b40, data=0x800003fffdff19c0)
    at ../../gcc/gcc/function.c:2845
#3  0x40000000005e5b5c in assign_parms (fndecl=0x800003fffdfa0f00)
    at ../../gcc/gcc/function.c:3054
#4  0x40000000005ecec4 in expand_function_start (subr=0x800003fffdfa0f00)
    at ../../gcc/gcc/function.c:4313
#5  0x4000000000df06c8 in gimple_expand_cfg ()
    at ../../gcc/gcc/cfgexpand.c:2300
#6  0x400000000073ed20 in execute_one_pass (pass=0x800000010004ab78)
    at ../../gcc/gcc/passes.c:1277
#7  0x400000000073f29c in execute_pass_list (pass=0x800000010004ab78)
    at ../../gcc/gcc/passes.c:1325
#8  0x4000000000962824 in tree_rest_of_compilation (fndecl=0x800003fffdfa0f00)
    at ../../gcc/gcc/tree-optimize.c:418
#9  0x4000000000cc7480 in cgraph_expand_function (node=0x800003fffdfbb000)
    at ../../gcc/gcc/cgraphunit.c:1039
#10 0x4000000000cc7c64 in cgraph_output_in_order ()
    at ../../gcc/gcc/cgraphunit.c:1190
---Type <return> to continue, or q <return> to quit---
#11 0x4000000000cc82dc in cgraph_optimize ()
    at ../../gcc/gcc/cgraphunit.c:1301
#12 0x40000000001cc1b4 in c_write_global_declarations ()
    at ../../gcc/gcc/c-decl.c:8080
#13 0x4000000000891ad4 in compile_file () at ../../gcc/gcc/toplev.c:979
#14 0x400000000089586c in do_compile () at ../../gcc/gcc/toplev.c:2181
#15 0x4000000000895988 in toplev_main (argc=16, argv=0x800003fffdff0620)
    at ../../gcc/gcc/toplev.c:2213
#16 0x40000000002c5ae8 in main (argc=-2147482625, argv=0x800003fffddd0290)
    at ../../gcc/gcc/main.c:35

(gdb) p bytepos
$1 = 0
(gdb) p debug_rtx (src)
(parallel:CQI [
        (expr_list:REG_DEP_TRUE (reg:DI 26 %r26 [ x ])
            (const_int 0 [0x0]))
    ])
$2 = void
(gdb) p dest_size
$3 = 2
(gdb) p tmp_size
$4 = 8


-- 
           Summary: [4.4 Regression] gcc.dg/compat//scalar-by-value-
                    4_x.c:72: ICE: in emit_group_store, at expr.c:2084
           Product: gcc
           Version: 4.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: danglin at gcc dot gnu dot org
 GCC build triplet: hppa64-hp-hpux11.11
  GCC host triplet: hppa64-hp-hpux11.11
GCC target triplet: hppa64-hp-hpux11.11


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
@ 2008-09-01 19:10 ` danglin at gcc dot gnu dot org
  2008-09-01 20:41 ` joseph at codesourcery dot com
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-01 19:10 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from danglin at gcc dot gnu dot org  2008-09-01 19:08 -------
Also,

(gdb) p debug_rtx (orig_dst)
(concat:CQI (reg:QI 95)
    (reg:QI 96))


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
  2008-09-01 19:10 ` [Bug middle-end/37318] " danglin at gcc dot gnu dot org
@ 2008-09-01 20:41 ` joseph at codesourcery dot com
  2008-09-02 11:38 ` rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: joseph at codesourcery dot com @ 2008-09-01 20:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from joseph at codesourcery dot com  2008-09-01 20:40 -------
Subject: Re:  [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72:
 ICE: in emit_group_store, at expr.c:2084

Someone needs to review HJ's patch

http://gcc.gnu.org/ml/gcc-patches/2008-08/msg01078.html

that fixes such a failure at least for IA64 (the failure is seen on 
several targets).


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
  2008-09-01 19:10 ` [Bug middle-end/37318] " danglin at gcc dot gnu dot org
  2008-09-01 20:41 ` joseph at codesourcery dot com
@ 2008-09-02 11:38 ` rguenth at gcc dot gnu dot org
  2008-09-02 11:39 ` rguenth at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-09-02 11:38 UTC (permalink / raw)
  To: gcc-bugs



-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.4.0


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2008-09-02 11:38 ` rguenth at gcc dot gnu dot org
@ 2008-09-02 11:39 ` rguenth at gcc dot gnu dot org
  2008-09-02 22:56 ` danglin at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2008-09-02 11:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from rguenth at gcc dot gnu dot org  2008-09-02 11:38 -------
It has been committed already.


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2008-09-02 11:39 ` rguenth at gcc dot gnu dot org
@ 2008-09-02 22:56 ` danglin at gcc dot gnu dot org
  2008-10-22  3:05 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-09-02 22:56 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from danglin at gcc dot gnu dot org  2008-09-02 22:55 -------
With HJL's patch, this changes to:

FAIL: gcc.dg/compat/scalar-by-value-4 c_compat_x_tst.o-c_compat_y_tst.o execute 


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2008-09-02 22:56 ` danglin at gcc dot gnu dot org
@ 2008-10-22  3:05 ` mmitchel at gcc dot gnu dot org
  2008-10-22 12:58 ` jsm28 at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2008-10-22  3:05 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2008-10-22  3:05 ` mmitchel at gcc dot gnu dot org
@ 2008-10-22 12:58 ` jsm28 at gcc dot gnu dot org
  2008-10-22 16:14 ` jakub at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: jsm28 at gcc dot gnu dot org @ 2008-10-22 12:58 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from jsm28 at gcc dot gnu dot org  2008-10-22 12:57 -------
Does the execution failure still exist after my patch

2008-09-17  Joseph Myers  <joseph@codesourcery.com>

        * expr.c (emit_group_store): Do not shift before moving via a
        stack slot.

?


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (6 preceding siblings ...)
  2008-10-22 12:58 ` jsm28 at gcc dot gnu dot org
@ 2008-10-22 16:14 ` jakub at gcc dot gnu dot org
  2008-10-22 18:39 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-10-23 16:06 ` danglin at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: jakub at gcc dot gnu dot org @ 2008-10-22 16:14 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from jakub at gcc dot gnu dot org  2008-10-22 16:13 -------
Could be also a dup of PR37316.


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (7 preceding siblings ...)
  2008-10-22 16:14 ` jakub at gcc dot gnu dot org
@ 2008-10-22 18:39 ` dave at hiauly1 dot hia dot nrc dot ca
  2008-10-23 16:06 ` danglin at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2008-10-22 18:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from dave at hiauly1 dot hia dot nrc dot ca  2008-10-22 18:38 -------
Subject: Re:  [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in
emit_group_store, at expr.c:2084

> ------- Comment #6 from jakub at gcc dot gnu dot org  2008-10-22 16:13 -------
> Could be also a dup of PR37316.

Yes, I also believe this to be the case.

Dave


-- 


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


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

* [Bug middle-end/37318] [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084
  2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
                   ` (8 preceding siblings ...)
  2008-10-22 18:39 ` dave at hiauly1 dot hia dot nrc dot ca
@ 2008-10-23 16:06 ` danglin at gcc dot gnu dot org
  9 siblings, 0 replies; 11+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-10-23 16:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from danglin at gcc dot gnu dot org  2008-10-23 16:05 -------


*** This bug has been marked as a duplicate of 37316 ***


-- 

danglin at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |RESOLVED
         Resolution|                            |DUPLICATE


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


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

end of thread, other threads:[~2008-10-23 16:06 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-09-01 19:06 [Bug middle-end/37318] New: [4.4 Regression] gcc.dg/compat//scalar-by-value-4_x.c:72: ICE: in emit_group_store, at expr.c:2084 danglin at gcc dot gnu dot org
2008-09-01 19:10 ` [Bug middle-end/37318] " danglin at gcc dot gnu dot org
2008-09-01 20:41 ` joseph at codesourcery dot com
2008-09-02 11:38 ` rguenth at gcc dot gnu dot org
2008-09-02 11:39 ` rguenth at gcc dot gnu dot org
2008-09-02 22:56 ` danglin at gcc dot gnu dot org
2008-10-22  3:05 ` mmitchel at gcc dot gnu dot org
2008-10-22 12:58 ` jsm28 at gcc dot gnu dot org
2008-10-22 16:14 ` jakub at gcc dot gnu dot org
2008-10-22 18:39 ` dave at hiauly1 dot hia dot nrc dot ca
2008-10-23 16:06 ` danglin 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).