public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "cvs-commit at gcc dot gnu.org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug rtl-optimization/89310] Poor code generation returning float field from a struct
Date: Tue, 21 Jul 2020 03:37:57 +0000	[thread overview]
Message-ID: <bug-89310-4-pyx0hL2B2V@http.gcc.gnu.org/bugzilla/> (raw)
In-Reply-To: <bug-89310-4@http.gcc.gnu.org/bugzilla/>

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

--- Comment #9 from CVS Commits <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Xiong Hu Luo <luoxhu@gcc.gnu.org>:

https://gcc.gnu.org/g:2ef4cf87a7c7f36c1fe523e4d71bbb4846ab0c35

commit r11-2245-g2ef4cf87a7c7f36c1fe523e4d71bbb4846ab0c35
Author: Xionghu Luo <luoxhu@linux.ibm.com>
Date:   Mon Jul 20 22:37:30 2020 -0500

    rs6000: Define movsf_from_si2 to extract high part SF element from
DImode[PR89310]

    For extracting high part element from DImode register like:

    {%1:SF=unspec[r122:DI>>0x20#0] 86;clobber scratch;}

    split it before reload with "and mask" to avoid generating shift right
    32 bit then shift left 32 bit.  This pattern also exists in PR42475 and
    PR67741, etc.

    srdi 3,3,32
    sldi 9,3,32
    mtvsrd 1,9
    xscvspdpn 1,1

    =>

    rldicr 3,3,0,31
    mtvsrd 1,3
    xscvspdpn 1,1

    Bootstrap and regression tested pass on Power8-LE.

    gcc/ChangeLog:

    2020-07-21  Xionghu Luo  <luoxhu@linux.ibm.com>

            PR rtl-optimization/89310
            * config/rs6000/rs6000.md (movsf_from_si2): New
define_insn_and_split.

    gcc/testsuite/ChangeLog:

    2020-07-21  Xionghu Luo  <luoxhu@linux.ibm.com>

            PR rtl-optimization/89310
            * gcc.target/powerpc/pr89310.c: New test.

  parent reply	other threads:[~2020-07-21  3:37 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <bug-89310-4@http.gcc.gnu.org/bugzilla/>
2020-06-23  1:29 ` luoxhu at gcc dot gnu.org
2020-06-24 18:12 ` segher at gcc dot gnu.org
2020-06-28  9:56 ` luoxhu at gcc dot gnu.org
2020-06-29 17:46 ` segher at gcc dot gnu.org
2020-07-02 23:12 ` segher at gcc dot gnu.org
2020-07-21  3:37 ` cvs-commit at gcc dot gnu.org [this message]
2020-07-22  1:34 ` luoxhu 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-89310-4-pyx0hL2B2V@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).