public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
@ 2015-02-22 12:21 olegendo at gcc dot gnu.org
  2015-02-22 13:04 ` [Bug target/65162] " olegendo at gcc dot gnu.org
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: olegendo at gcc dot gnu.org @ 2015-02-22 12:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 65162
           Summary: [5 Regression][SH] Redundant tests when storing
                    bswapped T bit result in unaligned mem
           Product: gcc
           Version: 5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: olegendo at gcc dot gnu.org
            Target: sh*-*-*

The following example is taken from libav, which contains quite some uses of
this code pattern.

typedef unsigned short int uint16_t;
union unaligned_16 { uint16_t l; } __attribute__((packed));

int
test (unsigned char* buf, int bits_per_component)
{
  (((union unaligned_16 *)(buf))->l) =
    __builtin_bswap16 (bits_per_component == 10 ? 1 : 0);

  return 0;
}

compiled with 4.8 / 4.9 and -m4 -O2:

        mov     r5,r0
        cmp/eq  #10,r0
        movt    r0
        swap.b  r0,r0
        extu.w  r0,r0
        extu.b  r0,r1
        shlr8   r0
        mov.b   r1,@r4
        mov.b   r0,@(1,r4)
    rts
    mov     #0,r0

compiled with 5.0 r220892:

        mov     r5,r0
        cmp/eq  #10,r0
        movt    r1
        swap.b  r1,r1      // r1 = T << 8
        extu.w  r1,r1
        tst     r1,r1      // T = r1 == 0 = 1-T
        mov     #-1,r0
        negc    r0,r0      // r0 = 1-T = r1 != 0 = cmp/eq #10,r0
        extu.b  r1,r2
        mov.b   r0,@(1,r4) // @(1,r4) = cmp/eq #10,r0
        mov.b   r2,@r4     // @r4 = 0
        rts
        mov     #0,r0

This is caused by the introduction of the treg_set_expr stuff.
For some reason, combine tries to recalculate the 'other' stored byte and tries
this pattern:

Successfully matched this instruction:
(set (reg:SI 179)
    (ne:SI (reg:SI 164 [ D.1476 ])
        (const_int 0 [0])))

The resulting insn sequence looks roughly like this:

(set (reg:SI 169) (eq:SI (reg:SI 5 r5) (const_int 10)))
(set (reg:HI 170) (rotate:HI (subreg:HI (reg:SI 169) 0) (const_int 8)))
(set (reg:SI 164) (zero_extend:SI (reg:HI 170)))
(set (reg:SI 171) (zero_extend:SI (subreg:QI (reg:SI 164) 0)))
(set (mem:QI (reg/v/f:SI 166) (subreg:QI (reg:SI 171) 0)))
(set (reg:SI 179) (ne:SI (reg:SI 164) (const_int 0)))
(set (mem:QI (plus:SI (reg/v/f:SI 166) (const_int 1)))
     (subreg:QI (reg:SI 179) 0))


If the ne:SI pattern is not matched, the redundant comparison/test is not
emitted.

The sh_treg_combine.cc RTL was actually meant to handle such cases of repeated
T bit inversions/tests.  However, at the moment it is triggered by conditional
insns only.  Moreover, it currently will not look through zero_extend and the
rotate insns.

On the other hand, this seems to happen only for unaligned stores.  Examples
such as 

typedef unsigned short int uint16_t;
int
test_00 (unsigned short* buf, int bits_per_component)
{
  buf[0] =
    __builtin_bswap16 (bits_per_component == 10 ? 1 : 0);

  return 0;
}

int
test_01 (unsigned char* buf, int bits_per_component)
{
  buf[0] =
    __builtin_bswap16 (bits_per_component == 10 ? 1 : 0);

  return 0;
}

int
test_02 (unsigned char* buf, int bits_per_component)
{
  buf[0] =
    __builtin_bswap16 (bits_per_component == 10 ? 1 : 0) >> 8;

  return 0;
}

int
test_03 (unsigned char* buf, int bits_per_component)
{
  buf[1] = __builtin_bswap16 (bits_per_component == 10 ? 1 : 0) >> 0;
  buf[0] = __builtin_bswap16 (bits_per_component == 10 ? 1 : 0) >> 8;

  return 0;
}

.. do not suffer from the problem.

Probably this problem will not be triggered after unaligned loads/stores have
been improved (PR 64306).


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

* [Bug target/65162] [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
@ 2015-02-22 13:04 ` olegendo at gcc dot gnu.org
  2015-02-23 10:18 ` rguenth at gcc dot gnu.org
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: olegendo at gcc dot gnu.org @ 2015-02-22 13:04 UTC (permalink / raw)
  To: gcc-bugs

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

Oleg Endo <olegendo at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
   Last reconfirmed|                            |2015-02-22
     Ever confirmed|0                           |1

--- Comment #1 from Oleg Endo <olegendo at gcc dot gnu.org> ---
(In reply to Oleg Endo from comment #0)
> The following example is taken from libav, which contains quite some uses of
> this code pattern.
> 
> typedef unsigned short int uint16_t;
> union unaligned_16 { uint16_t l; } __attribute__((packed));
> 
> int
> test (unsigned char* buf, int bits_per_component)
> {
>   (((union unaligned_16 *)(buf))->l) =
>     __builtin_bswap16 (bits_per_component == 10 ? 1 : 0);
> 
>   return 0;
> }
> 

BTW, it should actually translate to something like:

    mov    r6,r0
    cmp/eq    #10,r0
    movt    r0
    mov.b    r0,@(1,r4)
    mov    #0,r0
    rts
    mov.b    r0,@r4

or
    mov    r6,r0
    cmp/eq    #10,r0
    movt    r0
    mov.b    r0,@(1,r4)
    shlr8   r0
    rts
    mov.b    r0,@r4


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

* [Bug target/65162] [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
  2015-02-22 13:04 ` [Bug target/65162] " olegendo at gcc dot gnu.org
@ 2015-02-23 10:18 ` rguenth at gcc dot gnu.org
  2015-04-22 11:57 ` [Bug target/65162] [5/6 " jakub at gcc dot gnu.org
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-02-23 10:18 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P4
   Target Milestone|---                         |5.0


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

* [Bug target/65162] [5/6 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
  2015-02-22 13:04 ` [Bug target/65162] " olegendo at gcc dot gnu.org
  2015-02-23 10:18 ` rguenth at gcc dot gnu.org
@ 2015-04-22 11:57 ` jakub at gcc dot gnu.org
  2015-07-16  9:11 ` rguenth at gcc dot gnu.org
                   ` (6 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: jakub at gcc dot gnu.org @ 2015-04-22 11:57 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|5.0                         |5.2

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 5.1 has been released.


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

* [Bug target/65162] [5/6 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (2 preceding siblings ...)
  2015-04-22 11:57 ` [Bug target/65162] [5/6 " jakub at gcc dot gnu.org
@ 2015-07-16  9:11 ` rguenth at gcc dot gnu.org
  2021-05-14  9:47 ` [Bug target/65162] [9/10/11/12 " jakub at gcc dot gnu.org
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2015-07-16  9:11 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|5.2                         |5.3

--- Comment #3 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 5.2 is being released, adjusting target milestone to 5.3.


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

* [Bug target/65162] [9/10/11/12 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (3 preceding siblings ...)
  2015-07-16  9:11 ` rguenth at gcc dot gnu.org
@ 2021-05-14  9:47 ` jakub at gcc dot gnu.org
  2021-06-01  8:06 ` rguenth at gcc dot gnu.org
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: jakub at gcc dot gnu.org @ 2021-05-14  9:47 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|8.5                         |9.4

--- Comment #9 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 8 branch is being closed.

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

* [Bug target/65162] [9/10/11/12 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (4 preceding siblings ...)
  2021-05-14  9:47 ` [Bug target/65162] [9/10/11/12 " jakub at gcc dot gnu.org
@ 2021-06-01  8:06 ` rguenth at gcc dot gnu.org
  2022-05-27  9:35 ` [Bug target/65162] [10/11/12/13 " rguenth at gcc dot gnu.org
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2021-06-01  8:06 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.4                         |9.5

--- Comment #10 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9.4 is being released, retargeting bugs to GCC 9.5.

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

* [Bug target/65162] [10/11/12/13 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (5 preceding siblings ...)
  2021-06-01  8:06 ` rguenth at gcc dot gnu.org
@ 2022-05-27  9:35 ` rguenth at gcc dot gnu.org
  2022-06-28 10:31 ` jakub at gcc dot gnu.org
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2022-05-27  9:35 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|9.5                         |10.4

--- Comment #11 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 9 branch is being closed

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

* [Bug target/65162] [10/11/12/13 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (6 preceding siblings ...)
  2022-05-27  9:35 ` [Bug target/65162] [10/11/12/13 " rguenth at gcc dot gnu.org
@ 2022-06-28 10:31 ` jakub at gcc dot gnu.org
  2023-07-07  6:38 ` [Bug target/65162] [10/11/12/13/14 " olegendo at gcc dot gnu.org
  2023-07-07 10:30 ` [Bug target/65162] [11/12/13/14 " rguenth at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: jakub at gcc dot gnu.org @ 2022-06-28 10:31 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.4                        |10.5

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
GCC 10.4 is being released, retargeting bugs to GCC 10.5.

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

* [Bug target/65162] [10/11/12/13/14 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (7 preceding siblings ...)
  2022-06-28 10:31 ` jakub at gcc dot gnu.org
@ 2023-07-07  6:38 ` olegendo at gcc dot gnu.org
  2023-07-07 10:30 ` [Bug target/65162] [11/12/13/14 " rguenth at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: olegendo at gcc dot gnu.org @ 2023-07-07  6:38 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #13 from Oleg Endo <olegendo at gcc dot gnu.org> ---
(In reply to Oleg Endo from comment #1)
> (In reply to Oleg Endo from comment #0)
> > The following example is taken from libav, which contains quite some uses of
> > this code pattern.
> > 
> > typedef unsigned short int uint16_t;
> > union unaligned_16 { uint16_t l; } __attribute__((packed));
> > 
> > int
> > test (unsigned char* buf, int bits_per_component)
> > {
> >   (((union unaligned_16 *)(buf))->l) =
> >     __builtin_bswap16 (bits_per_component == 10 ? 1 : 0);
> > 
> >   return 0;
> > }
> > 
> 
> BTW, it should actually translate to something like:
> 
> 	mov	r6,r0
> 	cmp/eq	#10,r0
> 	movt	r0
> 	mov.b	r0,@(1,r4)
> 	mov	#0,r0
> 	rts
> 	mov.b	r0,@r4
> 

It's pretty much what GCC 13 produces (with -mlra -ml)

        mov     r5,r0           ! 51    [c=4 l=2]  movsi_i/1
        cmp/eq  #10,r0          ! 48    [c=4 l=2]  cmpeqsi_t/1
        movt    r0              ! 49    [c=4 l=2]  movt
        mov     #0,r1           ! 11    [c=4 l=2]  movsi_i/2
        mov.b   r0,@(1,r4)      ! 29    [c=4 l=2]  *movqi_store_mem_disp04/0
        mov     #0,r0           ! 34    [c=4 l=2]  movsi_i/2
        rts                     ! 55    [c=0 l=2]  *return_i
        mov.b   r1,@r4          ! 18    [c=4 l=2]  *movqi/5

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

* [Bug target/65162] [11/12/13/14 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem
  2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
                   ` (8 preceding siblings ...)
  2023-07-07  6:38 ` [Bug target/65162] [10/11/12/13/14 " olegendo at gcc dot gnu.org
@ 2023-07-07 10:30 ` rguenth at gcc dot gnu.org
  9 siblings, 0 replies; 11+ messages in thread
From: rguenth at gcc dot gnu.org @ 2023-07-07 10:30 UTC (permalink / raw)
  To: gcc-bugs

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|10.5                        |11.5

--- Comment #14 from Richard Biener <rguenth at gcc dot gnu.org> ---
GCC 10 branch is being closed.

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

end of thread, other threads:[~2023-07-07 10:30 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-22 12:21 [Bug target/65162] New: [5 Regression][SH] Redundant tests when storing bswapped T bit result in unaligned mem olegendo at gcc dot gnu.org
2015-02-22 13:04 ` [Bug target/65162] " olegendo at gcc dot gnu.org
2015-02-23 10:18 ` rguenth at gcc dot gnu.org
2015-04-22 11:57 ` [Bug target/65162] [5/6 " jakub at gcc dot gnu.org
2015-07-16  9:11 ` rguenth at gcc dot gnu.org
2021-05-14  9:47 ` [Bug target/65162] [9/10/11/12 " jakub at gcc dot gnu.org
2021-06-01  8:06 ` rguenth at gcc dot gnu.org
2022-05-27  9:35 ` [Bug target/65162] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:31 ` jakub at gcc dot gnu.org
2023-07-07  6:38 ` [Bug target/65162] [10/11/12/13/14 " olegendo at gcc dot gnu.org
2023-07-07 10:30 ` [Bug target/65162] [11/12/13/14 " rguenth 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).