public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012
@ 2020-07-29 15:27 clyon at gcc dot gnu.org
  2020-07-30  6:00 ` [Bug target/96372] " rguenth at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 11+ messages in thread
From: clyon at gcc dot gnu.org @ 2020-07-29 15:27 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

            Bug ID: 96372
           Summary: [11 regression] arm/ivopts.c fails since r11-2012
           Product: gcc
           Version: 10.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: clyon at gcc dot gnu.org
  Target Milestone: ---

Since r11-2012-gd2ed233cb940aa3eecc163d98b47979dd81dbc0a, I've noticed that
FAIL: gcc.target/arm/ivopts.c object-size text <= 20

depending on how GCC is configured.

For instance:
* target arm-none-eabi with target-board=-mcpu=cortex-a7/-mfloat-abi=hard
or
* target arm-none-linux-gnueabi --with-mode arm --with-cpu cortex-a9

The log says:
spawn -ignore SIGHUP arm-none-linux-gnueabi-size ivopts.o
   text    data     bss     dec     hex filename
     32       0       0      32      20 ivopts.o
text size is 32
FAIL: gcc.target/arm/ivopts.c object-size text <= 20

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
@ 2020-07-30  6:00 ` rguenth at gcc dot gnu.org
  2021-01-14  9:06 ` rguenth at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-07-30  6:00 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Version|10.0                        |11.0
   Target Milestone|---                         |11.0

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
  2020-07-30  6:00 ` [Bug target/96372] " rguenth at gcc dot gnu.org
@ 2021-01-14  9:06 ` rguenth at gcc dot gnu.org
  2021-01-14 11:22 ` akrl at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-01-14  9:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

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

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

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
  2020-07-30  6:00 ` [Bug target/96372] " rguenth at gcc dot gnu.org
  2021-01-14  9:06 ` rguenth at gcc dot gnu.org
@ 2021-01-14 11:22 ` akrl at gcc dot gnu.org
  2021-01-15 15:32   ` Andrea Corallo
  2021-01-15 15:32 ` andrea.corallo at arm dot com
                   ` (5 subsequent siblings)
  8 siblings, 1 reply; 11+ messages in thread
From: akrl at gcc dot gnu.org @ 2021-01-14 11:22 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

akrl at gcc dot gnu.org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |akrl at gcc dot gnu.org
           Assignee|unassigned at gcc dot gnu.org      |akrl at gcc dot gnu.org

--- Comment #1 from akrl at gcc dot gnu.org ---
Will take a look

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

* Re: [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2021-01-14 11:22 ` akrl at gcc dot gnu.org
@ 2021-01-15 15:32   ` Andrea Corallo
  0 siblings, 0 replies; 11+ messages in thread
From: Andrea Corallo @ 2021-01-15 15:32 UTC (permalink / raw)
  To: akrl at gcc dot gnu.org via Gcc-bugs; +Cc: akrl at gcc dot gnu.org, nd

I see what's going on, originally this object-size text <= 20 test was
gated with target 'arm_thumb2'.

My patch to exclude LOB targets replaced that with
'arm_thumb2_ok_no_arm_v8_1_lob', unfortunatelly this is relying on
'arm_thumb2_ok' that has a different semantic compared to the original
'arm_thumb2'.

I'll post the patch I'm testing.  Looks nothing serious to me tho.

  Andrea


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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2021-01-14 11:22 ` akrl at gcc dot gnu.org
@ 2021-01-15 15:32 ` andrea.corallo at arm dot com
  2021-01-15 15:33 ` akrl at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: andrea.corallo at arm dot com @ 2021-01-15 15:32 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

--- Comment #2 from Andrea Corallo <andrea.corallo at arm dot com> ---
I see what's going on, originally this object-size text <= 20 test was
gated with target 'arm_thumb2'.

My patch to exclude LOB targets replaced that with
'arm_thumb2_ok_no_arm_v8_1_lob', unfortunatelly this is relying on
'arm_thumb2_ok' that has a different semantic compared to the original
'arm_thumb2'.

I'll post the patch I'm testing.  Looks nothing serious to me tho.

  Andrea

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2021-01-15 15:32 ` andrea.corallo at arm dot com
@ 2021-01-15 15:33 ` akrl at gcc dot gnu.org
  2021-01-15 16:10 ` akrl at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: akrl at gcc dot gnu.org @ 2021-01-15 15:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

akrl at gcc dot gnu.org changed:

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

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2021-01-15 15:33 ` akrl at gcc dot gnu.org
@ 2021-01-15 16:10 ` akrl at gcc dot gnu.org
  2021-01-21 13:35 ` cvs-commit at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 11+ messages in thread
From: akrl at gcc dot gnu.org @ 2021-01-15 16:10 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

akrl at gcc dot gnu.org changed:

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

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2021-01-15 16:10 ` akrl at gcc dot gnu.org
@ 2021-01-21 13:35 ` cvs-commit at gcc dot gnu.org
  2021-04-09 19:24 ` ramana at gcc dot gnu.org
  2021-04-09 19:26 ` akrl at gcc dot gnu.org
  8 siblings, 0 replies; 11+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2021-01-21 13:35 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

--- Comment #3 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Andrea Corallo <akrl@gcc.gnu.org>:

https://gcc.gnu.org/g:0568f801effcea6f4e066c40bc346513d6b946c5

commit r11-6836-g0568f801effcea6f4e066c40bc346513d6b946c5
Author: Andrea Corallo <andrea.corallo@arm.com>
Date:   Fri Jan 15 15:34:19 2021 +0100

    arm: [testuiste] Fix ivopts.c target test [PR96372]

    gcc/
    2021-01-15  Andrea Corallo  <andrea.corallo@arm.com>
            PR target/96372
            * doc/sourcebuild.texi (arm_thumb2_no_arm_v8_1_lob): Document.

    gcc/testsuite/
    2021-01-15  Andrea Corallo  <andrea.corallo@arm.com>
            PR target/96372
            * lib/target-supports.exp
            (check_effective_target_arm_thumb2_no_arm_v8_1_lob): Define proc.
            * gcc.target/arm/ivopts.c: Use target
            'arm_thumb2_no_arm_v8_1_lob'.

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2021-01-21 13:35 ` cvs-commit at gcc dot gnu.org
@ 2021-04-09 19:24 ` ramana at gcc dot gnu.org
  2021-04-09 19:26 ` akrl at gcc dot gnu.org
  8 siblings, 0 replies; 11+ messages in thread
From: ramana at gcc dot gnu.org @ 2021-04-09 19:24 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

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

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

--- Comment #4 from Ramana Radhakrishnan <ramana at gcc dot gnu.org> ---
Is this now fixed ?

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

* [Bug target/96372] [11 regression] arm/ivopts.c fails since r11-2012
  2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2021-04-09 19:24 ` ramana at gcc dot gnu.org
@ 2021-04-09 19:26 ` akrl at gcc dot gnu.org
  8 siblings, 0 replies; 11+ messages in thread
From: akrl at gcc dot gnu.org @ 2021-04-09 19:26 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96372

akrl at gcc dot gnu.org changed:

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

--- Comment #5 from akrl at gcc dot gnu.org ---
Yes AFAIK it is, closing thanks.

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

end of thread, other threads:[~2021-04-09 19:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-29 15:27 [Bug target/96372] New: [11 regression] arm/ivopts.c fails since r11-2012 clyon at gcc dot gnu.org
2020-07-30  6:00 ` [Bug target/96372] " rguenth at gcc dot gnu.org
2021-01-14  9:06 ` rguenth at gcc dot gnu.org
2021-01-14 11:22 ` akrl at gcc dot gnu.org
2021-01-15 15:32   ` Andrea Corallo
2021-01-15 15:32 ` andrea.corallo at arm dot com
2021-01-15 15:33 ` akrl at gcc dot gnu.org
2021-01-15 16:10 ` akrl at gcc dot gnu.org
2021-01-21 13:35 ` cvs-commit at gcc dot gnu.org
2021-04-09 19:24 ` ramana at gcc dot gnu.org
2021-04-09 19:26 ` akrl 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).