public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
@ 2010-12-14  6:06 raj.khem at gmail dot com
  2010-12-14  9:32 ` [Bug target/46934] " ramana at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: raj.khem at gmail dot com @ 2010-12-14  6:06 UTC (permalink / raw)
  To: gcc-bugs

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

           Summary: gcc ICE: error: unrecognizable insn: in extract_insn,
                    at recog.c:2109
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: raj.khem@gmail.com
              Host: x86_64-linux
            Target: arm-none-linux-gnueabi
             Build: x86_64-linux


attached testcase reduced from samba when building for armvte/thumb with -Os
caused a gcc ICE with 4.6.0. Note that it works ok for arm mode and for other
opt levels than -Os

arm-none-linux-gnueabi-gcc-4.6.0 -mthumb -Os cli_reg.i -S

cli_reg.i: In function ‘caller’:
cli_reg.i:20:1: error: unrecognizable insn:
(insn 6 5 7 3 (set (reg:SI 137)
        (plus:SI (reg/v:SI 136 [ reg_type ])
            (const_int 2147483648 [0x80000000]))) cli_reg.i:4 -1
     (nil))
cli_reg.i:20:1: internal compiler error: in extract_insn, at recog.c:2109
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.


testcase

$ cat cli_reg.i
int caller(unsigned int reg_type)
{

 switch (reg_type)
 {
 case 0x80000000:
  return (int)foo();

 case 0x80000003:
  return (int) bar();

 case 0x80000001:
  return (int) baz();

 case 0x80000004:
  return (int) fooz();

 }

}


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
@ 2010-12-14  9:32 ` ramana at gcc dot gnu.org
  2010-12-23 10:09 ` cltang at gcc dot gnu.org
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: ramana at gcc dot gnu.org @ 2010-12-14  9:32 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice-on-valid-code
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2010.12.14 09:31:56
                 CC|                            |ramana at gcc dot gnu.org
   Target Milestone|---                         |4.6.0
     Ever Confirmed|0                           |1

--- Comment #1 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> 2010-12-14 09:31:56 UTC ---
Confirmed.


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
  2010-12-14  9:32 ` [Bug target/46934] " ramana at gcc dot gnu.org
@ 2010-12-23 10:09 ` cltang at gcc dot gnu.org
  2011-03-23 15:06 ` cltang at gcc dot gnu.org
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cltang at gcc dot gnu.org @ 2010-12-23 10:09 UTC (permalink / raw)
  To: gcc-bugs

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

Chung-Lin Tang <cltang at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |cltang at gcc dot gnu.org

--- Comment #2 from Chung-Lin Tang <cltang at gcc dot gnu.org> 2010-12-23 10:09:29 UTC ---
I think this can be solved by changing the predicate of operand[2] in
*thumb1_addsi3 to "reg_or_int_operand". This allows later passes like reload to
do its job.

However, after the above change, I see another ICE during reload:
h.c:16:1: error: unrecognizable insn:
(insn 88 3 6 2 (set (reg:SI 3 r3)
        (const_int 2147483648 [0x80000000])) h.c:5 -1
     (nil))
h.c:16:1: internal compiler error: in extract_insn, at recog.c:2127

This turns out to be because, the generic 'general_operand' predicate used in
thumb1_movsi_insn does a "trunc_int_for_mode (INTVAL(op), mode) == INTVAL(op)"
test, and 0x80000000 (2147483648) gets negated due to the sign-extension in
trunc_int_for_mode(), failing the equality test:

trunc_int_for_mode(2147483648, SImode) == -2147483648 (0xFFFFFFFF80000000)

We can probably fix this by using another ARM predicate in this case, though
this boundary case of trunc_int_for_mode() is troubling, as the above
truncate-and-test-for-equality idiom seems quite common in the compiler.


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
  2010-12-14  9:32 ` [Bug target/46934] " ramana at gcc dot gnu.org
  2010-12-23 10:09 ` cltang at gcc dot gnu.org
@ 2011-03-23 15:06 ` cltang at gcc dot gnu.org
  2011-03-24  7:58 ` cltang at gcc dot gnu.org
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cltang at gcc dot gnu.org @ 2011-03-23 15:06 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #3 from Chung-Lin Tang <cltang at gcc dot gnu.org> 2011-03-23 14:48:38 UTC ---
Please disregard the above comments, I think this is an ARM backend problem
after all.


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
                   ` (2 preceding siblings ...)
  2011-03-23 15:06 ` cltang at gcc dot gnu.org
@ 2011-03-24  7:58 ` cltang at gcc dot gnu.org
  2011-03-25 19:55 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: cltang at gcc dot gnu.org @ 2011-03-24  7:58 UTC (permalink / raw)
  To: gcc-bugs


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

--- Comment #4 from Chung-Lin Tang <cltang at gcc dot gnu.org> 2011-03-24 02:47:58 UTC ---
Author: cltang
Date: Thu Mar 24 02:47:55 2011
New Revision: 171379

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=171379
Log:
2011-03-23  Chung-Lin Tang  <cltang@codesourcery.com>

    PR target/46934
    * config/arm/arm.md (casesi): Use the gen_int_mode() function
    to subtract lower bound instead of GEN_INT().

    testsuite/
    * gcc.target/arm/pr46934.c: New.

Added:
    trunk/gcc/testsuite/gcc.target/arm/pr46934.c
Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/arm/arm.md
    trunk/gcc/testsuite/ChangeLog


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
                   ` (3 preceding siblings ...)
  2011-03-24  7:58 ` cltang at gcc dot gnu.org
@ 2011-03-25 19:55 ` jakub at gcc dot gnu.org
  2011-04-28 16:06 ` rguenth at gcc dot gnu.org
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: jakub at gcc dot gnu.org @ 2011-03-25 19:55 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.0                       |4.6.1

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> 2011-03-25 19:51:58 UTC ---
GCC 4.6.0 is being released, adjusting target milestone.


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
                   ` (4 preceding siblings ...)
  2011-03-25 19:55 ` jakub at gcc dot gnu.org
@ 2011-04-28 16:06 ` rguenth at gcc dot gnu.org
  2011-05-16  8:26 ` cltang at gcc dot gnu.org
  2011-09-19  6:21 ` jye2 at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: rguenth at gcc dot gnu.org @ 2011-04-28 16:06 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.6.1                       |---


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
                   ` (5 preceding siblings ...)
  2011-04-28 16:06 ` rguenth at gcc dot gnu.org
@ 2011-05-16  8:26 ` cltang at gcc dot gnu.org
  2011-09-19  6:21 ` jye2 at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: cltang at gcc dot gnu.org @ 2011-05-16  8:26 UTC (permalink / raw)
  To: gcc-bugs

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

Chung-Lin Tang <cltang at gcc dot gnu.org> changed:

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

--- Comment #6 from Chung-Lin Tang <cltang at gcc dot gnu.org> 2011-05-16 08:09:48 UTC ---
This is fixed now.


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

* [Bug target/46934] gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109
  2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
                   ` (6 preceding siblings ...)
  2011-05-16  8:26 ` cltang at gcc dot gnu.org
@ 2011-09-19  6:21 ` jye2 at gcc dot gnu.org
  7 siblings, 0 replies; 9+ messages in thread
From: jye2 at gcc dot gnu.org @ 2011-09-19  6:21 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from jye2 at gcc dot gnu.org 2011-09-19 06:17:58 UTC ---
Author: jye2
Date: Mon Sep 19 06:17:45 2011
New Revision: 178953

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=178953
Log:
2011-09-19  chengbin  <bin.cheng@arm.com>

    Backport r174035 from mainline
    2011-05-22  Tom de Vries  <tom@codesourcery.com>

    PR middle-end/48689
    * fold-const.c (fold_checksum_tree): Guard TREE_CHAIN use with
    CODE_CONTAINS_STRUCT (TS_COMMON).

    Backport r172297 from mainline
    2011-04-11  Chung-Lin Tang  <cltang@codesourcery.com>
        Richard Earnshaw  <rearnsha@arm.com>

    PR target/48250
    * config/arm/arm.c (arm_legitimize_reload_address): Update cases
    to use sign-magnitude offsets. Reject unsupported unaligned
    cases. Add detailed description in comments.
    * config/arm/arm.md (reload_outdf): Disable for ARM mode; change
    condition from TARGET_32BIT to TARGET_ARM.

    Backport r171978 from mainline
    2011-04-05  Tom de Vries  <tom@codesourcery.com>

    PR target/43920
    * config/arm/arm.h (BRANCH_COST): Set to 1 for Thumb-2 when optimizing
    for size.

    Backport r171632 from mainline
    2011-03-28  Richard Sandiford  <richard.sandiford@linaro.org>

    * builtins.c (expand_builtin_memset_args): Use gen_int_mode
    instead of GEN_INT.

    Backport r171379 from mainline
    2011-03-23  Chung-Lin Tang  <cltang@codesourcery.com>

    PR target/46934
    * config/arm/arm.md (casesi): Use the gen_int_mode() function
    to subtract lower bound instead of GEN_INT().

    Backport r171251 from mainline 
    2011-03-21  Daniel Jacobowitz  <dan@codesourcery.com>

    * config/arm/unwind-arm.c (__gnu_unwind_pr_common): Correct test
    for barrier handlers.

    Backport r171096 from mainline
    2011-03-17  Chung-Lin Tang  <cltang@codesourcery.com>

    PR target/43872
    * config/arm/arm.c (arm_get_frame_offsets): Adjust early
    return condition with !cfun->calls_alloca.


Modified:
    branches/ARM/embedded-4_6-branch/gcc/ChangeLog.arm
    branches/ARM/embedded-4_6-branch/gcc/builtins.c
    branches/ARM/embedded-4_6-branch/gcc/config/arm/arm.c
    branches/ARM/embedded-4_6-branch/gcc/config/arm/arm.h
    branches/ARM/embedded-4_6-branch/gcc/config/arm/arm.md
    branches/ARM/embedded-4_6-branch/gcc/config/arm/unwind-arm.c
    branches/ARM/embedded-4_6-branch/gcc/fold-const.c
    branches/ARM/embedded-4_6-branch/gcc/testsuite/gcc.target/arm/pr40887.c
    branches/ARM/embedded-4_6-branch/gcc/testsuite/gcc.target/arm/pr42575.c
    branches/ARM/embedded-4_6-branch/gcc/testsuite/gcc.target/arm/pr43698.c
    branches/ARM/embedded-4_6-branch/gcc/testsuite/gcc.target/arm/pr44788.c
    branches/ARM/embedded-4_6-branch/gcc/testsuite/gcc.target/arm/sync-1.c


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

end of thread, other threads:[~2011-09-19  6:20 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-14  6:06 [Bug target/46934] New: gcc ICE: error: unrecognizable insn: in extract_insn, at recog.c:2109 raj.khem at gmail dot com
2010-12-14  9:32 ` [Bug target/46934] " ramana at gcc dot gnu.org
2010-12-23 10:09 ` cltang at gcc dot gnu.org
2011-03-23 15:06 ` cltang at gcc dot gnu.org
2011-03-24  7:58 ` cltang at gcc dot gnu.org
2011-03-25 19:55 ` jakub at gcc dot gnu.org
2011-04-28 16:06 ` rguenth at gcc dot gnu.org
2011-05-16  8:26 ` cltang at gcc dot gnu.org
2011-09-19  6:21 ` jye2 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).