public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
@ 2021-12-16  6:46 jens.seifert at de dot ibm.com
  2021-12-16  6:49 ` [Bug target/103743] " pinskia at gcc dot gnu.org
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: jens.seifert at de dot ibm.com @ 2021-12-16  6:46 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 103743
           Summary: PPC: Inefficient equality compare for large 64-bit
                    constants having only 16-bit relevant bits in high
                    part
           Product: gcc
           Version: 8.3.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
          Assignee: unassigned at gcc dot gnu.org
          Reporter: jens.seifert at de dot ibm.com
  Target Milestone: ---

int overflow();
int negOverflow(long long in)
{
   if (in == 0x8000000000000000LL)
   {
      return overflow();
   }
   return 0;
}

Generates:
negOverflow(long long):
        .quad   .L.negOverflow(long long),.TOC.@tocbase,0
.L.negOverflow(long long):
        li 9,-1
        rldicr 9,9,0,0
        cmpd 0,3,9
        beq 0,.L10
        li 3,0
        blr
.L10:
        mflr 0
        std 0,16(1)
        stdu 1,-112(1)
        bl overflow()
        nop
        addi 1,1,112
        ld 0,16(1)
        mtlr 0
        blr
        .long 0
        .byte 0,9,0,1,128,0,0,0

Instead of:
        li 9,-1
        rldicr 9,9,0,0
        cmpd 0,3,9

Expected output:
        rotldi 3,3,1
        cmpdi 0,3,1

This should be only applied if constant fits into 16-bit and if those 16-bit
are in the first 32-bit.

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
@ 2021-12-16  6:49 ` pinskia at gcc dot gnu.org
  2021-12-16 15:06 ` bergner at gcc dot gnu.org
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pinskia at gcc dot gnu.org @ 2021-12-16  6:49 UTC (permalink / raw)
  To: gcc-bugs

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

Andrew Pinski <pinskia at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |enhancement

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
  2021-12-16  6:49 ` [Bug target/103743] " pinskia at gcc dot gnu.org
@ 2021-12-16 15:06 ` bergner at gcc dot gnu.org
  2021-12-16 22:14 ` pthaugen at gcc dot gnu.org
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: bergner at gcc dot gnu.org @ 2021-12-16 15:06 UTC (permalink / raw)
  To: gcc-bugs

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

Peter Bergner <bergner at gcc dot gnu.org> changed:

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

--- Comment #1 from Peter Bergner <bergner at gcc dot gnu.org> ---
Pat, does the patch from Alan you're working to get committed help with this
test case?

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
  2021-12-16  6:49 ` [Bug target/103743] " pinskia at gcc dot gnu.org
  2021-12-16 15:06 ` bergner at gcc dot gnu.org
@ 2021-12-16 22:14 ` pthaugen at gcc dot gnu.org
  2022-03-15  2:06 ` guojiufu at gcc dot gnu.org
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: pthaugen at gcc dot gnu.org @ 2021-12-16 22:14 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #2 from pthaugen at gcc dot gnu.org ---
(In reply to Peter Bergner from comment #1)
> Pat, does the patch from Alan you're working to get committed help with this
> test case?

No, it just loads the constant slightly different:

        li 9,1
        rotldi 9,9,63
        cmpd 0,3,9

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (2 preceding siblings ...)
  2021-12-16 22:14 ` pthaugen at gcc dot gnu.org
@ 2022-03-15  2:06 ` guojiufu at gcc dot gnu.org
  2022-03-15  7:32 ` guojiufu at gcc dot gnu.org
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: guojiufu at gcc dot gnu.org @ 2022-03-15  2:06 UTC (permalink / raw)
  To: gcc-bugs

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

Jiu Fu Guo <guojiufu at gcc dot gnu.org> changed:

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

--- Comment #3 from Jiu Fu Guo <guojiufu at gcc dot gnu.org> ---
For "in == 0x8000000000000000LL", it would be also ok with:
rotldi %r9,%r3,16
cmpldi %cr0,%r9,32768

And it would be similar for "in == 0x8000FFFFFFFFFFFFLL" (highest bit and
low48bits are all 1)
rotldi %r9,%r3,16
cmpdi %cr0,%r9,-32768

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (3 preceding siblings ...)
  2022-03-15  2:06 ` guojiufu at gcc dot gnu.org
@ 2022-03-15  7:32 ` guojiufu at gcc dot gnu.org
  2022-03-16  9:48 ` guojiufu at gcc dot gnu.org
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: guojiufu at gcc dot gnu.org @ 2022-03-15  7:32 UTC (permalink / raw)
  To: gcc-bugs

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

Jiu Fu Guo <guojiufu at gcc dot gnu.org> changed:

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

--- Comment #4 from Jiu Fu Guo <guojiufu at gcc dot gnu.org> ---
rot(a)==rot(b_)==> a==rot(b')

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (4 preceding siblings ...)
  2022-03-15  7:32 ` guojiufu at gcc dot gnu.org
@ 2022-03-16  9:48 ` guojiufu at gcc dot gnu.org
  2022-05-16  1:59 ` guojiufu at gcc dot gnu.org
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: guojiufu at gcc dot gnu.org @ 2022-03-16  9:48 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #5 from Jiu Fu Guo <guojiufu at gcc dot gnu.org> ---
It would be also ok for the constant that only has 16bits in the middle:
e.g. 0x0000098760000000ULL, we can rotate the constant to 0x9876.

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (5 preceding siblings ...)
  2022-03-16  9:48 ` guojiufu at gcc dot gnu.org
@ 2022-05-16  1:59 ` guojiufu at gcc dot gnu.org
  2022-12-20  3:59 ` cvs-commit at gcc dot gnu.org
  2023-01-09  5:29 ` guojiufu at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: guojiufu at gcc dot gnu.org @ 2022-05-16  1:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #6 from Jiu Fu Guo <guojiufu at gcc dot gnu.org> ---
Drafted a patch:
https://gcc.gnu.org/pipermail/gcc-patches/2022-May/594702.html

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (6 preceding siblings ...)
  2022-05-16  1:59 ` guojiufu at gcc dot gnu.org
@ 2022-12-20  3:59 ` cvs-commit at gcc dot gnu.org
  2023-01-09  5:29 ` guojiufu at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-12-20  3:59 UTC (permalink / raw)
  To: gcc-bugs

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

--- Comment #7 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Jiu Fu Guo <guojiufu@gcc.gnu.org>:

https://gcc.gnu.org/g:1060cd2ad00b5174f4f8ef8ca3d8c283e321ffca

commit r13-4803-g1060cd2ad00b5174f4f8ef8ca3d8c283e321ffca
Author: Jiufu Guo <guojiufu@linux.ibm.com>
Date:   Tue Dec 20 11:43:57 2022 +0800

    rs6000: Optimize cmp on rotated 16bits constant

    Hi,

    When checking eq/ne with a constant which has only 16bits, it can be
    optimized to check the rotated data.  By this, the constant building
    is optimized.

    As the example in PR103743:
    For "in == 0x8000000000000000LL", this patch generates:
            rotldi 3,3,1 ; cmpldi 0,3,1
    instead of:
            li 9,-1 ; rldicr 9,9,0,0 ; cmpd 0,3,9

    Compare with previous version:
    https://gcc.gnu.org/pipermail/gcc-patches/2022-August/600475.html.
    This patch refactor the code according to review comments.
    e.g. updating function names/comments/code.

    This patch pass bootstrap and regtest on ppc64 and ppc64le.
    Is it ok for trunk?  Thanks for comments!

    BR,
    Jeff(Jiufu)

            PR target/103743

    gcc/ChangeLog:

            * config/rs6000/rs6000-protos.h (can_be_rotated_to_lowbits): New.
            (can_be_rotated_to_positive_16bits): New.
            (can_be_rotated_to_negative_15bits): New.
            * config/rs6000/rs6000.cc (can_be_rotated_to_lowbits): New
definition.
            (can_be_rotated_to_positive_16bits): New definition.
            (can_be_rotated_to_negative_15bits): New definition.
            * config/rs6000/rs6000.md (*rotate_on_cmpdi): New
define_insn_and_split.
            (eqne): Move earlier.

    gcc/testsuite/ChangeLog:

            * gcc.target/powerpc/pr103743.c: New test.
            * gcc.target/powerpc/pr103743_1.c: New test.

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

* [Bug target/103743] PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part
  2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
                   ` (7 preceding siblings ...)
  2022-12-20  3:59 ` cvs-commit at gcc dot gnu.org
@ 2023-01-09  5:29 ` guojiufu at gcc dot gnu.org
  8 siblings, 0 replies; 10+ messages in thread
From: guojiufu at gcc dot gnu.org @ 2023-01-09  5:29 UTC (permalink / raw)
  To: gcc-bugs

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

Jiu Fu Guo <guojiufu at gcc dot gnu.org> changed:

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

--- Comment #8 from Jiu Fu Guo <guojiufu at gcc dot gnu.org> ---
Fixed now.

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

end of thread, other threads:[~2023-01-09  5:29 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-16  6:46 [Bug target/103743] New: PPC: Inefficient equality compare for large 64-bit constants having only 16-bit relevant bits in high part jens.seifert at de dot ibm.com
2021-12-16  6:49 ` [Bug target/103743] " pinskia at gcc dot gnu.org
2021-12-16 15:06 ` bergner at gcc dot gnu.org
2021-12-16 22:14 ` pthaugen at gcc dot gnu.org
2022-03-15  2:06 ` guojiufu at gcc dot gnu.org
2022-03-15  7:32 ` guojiufu at gcc dot gnu.org
2022-03-16  9:48 ` guojiufu at gcc dot gnu.org
2022-05-16  1:59 ` guojiufu at gcc dot gnu.org
2022-12-20  3:59 ` cvs-commit at gcc dot gnu.org
2023-01-09  5:29 ` guojiufu 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).