public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "pinskia at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/99548] Help me! Lost the fight against the compiler.
Date: Thu, 11 Mar 2021 20:10:34 +0000	[thread overview]
Message-ID: <bug-99548-4-JQQsM1VoQZ@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-99548-4@http.gcc.gnu.org/bugzilla/>

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

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|rtl-optimization            |target

--- Comment #1 from Andrew Pinski <pinskia at gcc dot gnu.org> ---
For aarch64 we get:
        ldp     x4, x3, [x1]
        mov     x7, 38
        ldp     x6, x5, [x2]
        ldr     x8, [x1, 16]
        add     x6, x4, x6
        cmp     x4, x6
        adc     x5, x3, x5
        cmp     x3, x5
        ldr     x3, [x1, 24]
        ldp     x4, x1, [x2, 16]
        adc     x4, x8, x4
        cmp     x8, x4
        adc     x1, x3, x1
        cmp     x3, x1
        csetm   x2, cs
        and     x2, x2, x7
        add     x2, x2, x6
        cmp     x2, x6
        cinc    x6, x5, ls
        cmp     x6, x5
        cinc    x5, x4, ls
        cmp     x5, x4
        cinc    x3, x1, ls
        cmp     x3, x1
        csetm   x1, ls
        and     x1, x1, x7
        add     x1, x1, x2
        str     x1, [x0]
        cmp     x1, x2
        cinc    x1, x6, ls
        str     x1, [x0, 8]
        cmp     x1, x6
        cinc    x1, x5, ls
        cmp     x1, x5
        cinc    x3, x3, ls
        stp     x1, x3, [x0, 16]
        ret
There is only one missing optimization there really:
        csetm   x1, ls
        and     x1, x1, x7
Should be turned into:
csel x1, x7, xzw, ls
Which is repeated a few times.

It looks like x86_64 has other issues.

  reply	other threads:[~2021-03-11 20:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-11 11:00 [Bug rtl-optimization/99548] New: " unlvsur at live dot com
2021-03-11 20:10 ` pinskia at gcc dot gnu.org [this message]
2021-03-11 23:35 ` [Bug target/99548] " unlvsur at live dot com
2021-12-23 21:45 ` pinskia at gcc dot gnu.org

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bug-99548-4-JQQsM1VoQZ@http.gcc.gnu.org/bugzilla/ \
    --to=gcc-bugzilla@gcc.gnu.org \
    --cc=gcc-bugs@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).