public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
@ 2013-09-15  7:58 amker.cheng at gmail dot com
  2013-09-17  3:09 ` [Bug target/58423] " zhenqiang.chen at linaro dot org
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: amker.cheng at gmail dot com @ 2013-09-15  7:58 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 58423
           Summary: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
           Product: gcc
           Version: 4.9.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: amker.cheng at gmail dot com

GCC ICEed with shrink-wrap-sibcall.c on a15 with below command line:
./arm-none-eabi-gcc -O2 -marm -mcpu=cortex-a15 -mfpu=neon -mfloat-abi=hard
shrink-wrap-sibcall.c -S -o shrink-wrap-sibcall.S -fno-diagnostics-show-caret
-fdiagnostics-color=never -O2 -g

ICE msg is:

shrink-wrap-sibcall.c: In function 'baz':
shrink-wrap-sibcall.c:26:1: internal compiler error: in
maybe_record_trace_start, at dwarf2cfi.c:2218
0x82bfe41 maybe_record_trace_start
    ../../gcc/gcc/dwarf2cfi.c:2218
0x82c22f2 scan_trace
    ../../gcc/gcc/dwarf2cfi.c:2395
0x82c2a25 create_cfi_notes
    ../../gcc/gcc/dwarf2cfi.c:2549
0x82c2a25 execute_dwarf2_frame
    ../../gcc/gcc/dwarf2cfi.c:2904
0x82c2a25 execute
    ../../gcc/gcc/dwarf2cfi.c:3400
Please submit a full bug report,
with preprocessed source if appropriate.
Please include the complete backtrace with any bug report.
See <http://gcc.gnu.org/bugs.html> for instructions.


GCC is at revision r202599 and the ICE relates to a15/neon/hard-abi, no matter
how it is configured for arm.


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

* [Bug target/58423] [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
  2013-09-15  7:58 [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard amker.cheng at gmail dot com
@ 2013-09-17  3:09 ` zhenqiang.chen at linaro dot org
  2013-10-08  7:58 ` xguo at gcc dot gnu.org
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: zhenqiang.chen at linaro dot org @ 2013-09-17  3:09 UTC (permalink / raw)
  To: gcc-bugs

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

zhenqiang.chen at linaro dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |zhenqiang.chen at linaro dot org

--- Comment #1 from zhenqiang.chen at linaro dot org ---
Root cause:
RTX_FRAME_RELATED_P is not correctly set in function arm_emit_ldrd_pop.

I will create a patch to fix it.


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

* [Bug target/58423] [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
  2013-09-15  7:58 [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard amker.cheng at gmail dot com
  2013-09-17  3:09 ` [Bug target/58423] " zhenqiang.chen at linaro dot org
@ 2013-10-08  7:58 ` xguo at gcc dot gnu.org
  2013-10-30 17:06 ` ramana at gcc dot gnu.org
  2013-11-08 14:22 ` clyon at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: xguo at gcc dot gnu.org @ 2013-10-08  7:58 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from xuepeng guo <xguo at gcc dot gnu.org> ---
Author: xguo
Date: Tue Oct  8 07:58:08 2013
New Revision: 203267

URL: http://gcc.gnu.org/viewcvs?rev=203267&root=gcc&view=rev
Log:
2013-10-08  Zhenqiang Chen  <zhenqiang.chen@linaro.org>

    PR target/58423
    * config/arm/arm.c (arm_emit_ldrd_pop): Attach
    RTX_FRAME_RELATED_P on INSN.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/arm/arm.c


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

* [Bug target/58423] [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
  2013-09-15  7:58 [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard amker.cheng at gmail dot com
  2013-09-17  3:09 ` [Bug target/58423] " zhenqiang.chen at linaro dot org
  2013-10-08  7:58 ` xguo at gcc dot gnu.org
@ 2013-10-30 17:06 ` ramana at gcc dot gnu.org
  2013-11-08 14:22 ` clyon at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: ramana at gcc dot gnu.org @ 2013-10-30 17:06 UTC (permalink / raw)
  To: gcc-bugs

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

Ramana Radhakrishnan <ramana at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |RESOLVED
                 CC|                            |ramana at gcc dot gnu.org
         Resolution|---                         |FIXED
   Target Milestone|---                         |4.9.0

--- Comment #3 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Fixed, presumably.


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

* [Bug target/58423] [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard
  2013-09-15  7:58 [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard amker.cheng at gmail dot com
                   ` (2 preceding siblings ...)
  2013-10-30 17:06 ` ramana at gcc dot gnu.org
@ 2013-11-08 14:22 ` clyon at gcc dot gnu.org
  3 siblings, 0 replies; 5+ messages in thread
From: clyon at gcc dot gnu.org @ 2013-11-08 14:22 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #4 from clyon at gcc dot gnu.org ---
Author: clyon
Date: Fri Nov  8 14:22:10 2013
New Revision: 204570

URL: http://gcc.gnu.org/viewcvs?rev=204570&root=gcc&view=rev
Log:
gcc/
2013-11-05  Zhenqiang Chen <zhenqiang.chen@linaro.org>

    Backport from trunk r203267, r203603 and r204247.
    2013-10-08  Zhenqiang Chen  <zhenqiang.chen@linaro.org>

    PR target/58423
    * config/arm/arm.c (arm_emit_ldrd_pop): Attach
    RTX_FRAME_RELATED_P on INSN.

    2013-10-15  Matthew Gretton-Dann  <matthew.gretton-dann@arm.com>
        Ramana Radhakrishnan  <ramana.radhakrishnan@arm.com>

    * config/arm/t-aprofile: New file.
    * config.gcc: Handle --with-multilib-list option.

    2013-10-31  Zhenqiang Chen  <zhenqiang.chen@linaro.org>

    * lower-subreg.c (resolve_simple_move): Copy REG_INC note.

gcc/testsuite/
2013-11-05  Zhenqiang Chen <zhenqiang.chen@linaro.org>

     Backport from trunk r204247.
     2013-10-31  Zhenqiang Chen  <zhenqiang.chen@linaro.org>

      * gcc.target/arm/lp1243022.c: New test.


Added:
    branches/linaro/gcc-4_8-branch/gcc/config/arm/t-aprofile
    branches/linaro/gcc-4_8-branch/gcc/testsuite/gcc.target/arm/lp1243022.c
Modified:
    branches/linaro/gcc-4_8-branch/gcc/ChangeLog.linaro
    branches/linaro/gcc-4_8-branch/gcc/config.gcc
    branches/linaro/gcc-4_8-branch/gcc/config/arm/arm.c
    branches/linaro/gcc-4_8-branch/gcc/lower-subreg.c
    branches/linaro/gcc-4_8-branch/gcc/testsuite/ChangeLog.linaro


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

end of thread, other threads:[~2013-11-08 14:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-15  7:58 [Bug target/58423] New: [ARM]ICE with shrink-wrap-sibcall.c on a15/neon/hard amker.cheng at gmail dot com
2013-09-17  3:09 ` [Bug target/58423] " zhenqiang.chen at linaro dot org
2013-10-08  7:58 ` xguo at gcc dot gnu.org
2013-10-30 17:06 ` ramana at gcc dot gnu.org
2013-11-08 14:22 ` clyon 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).