public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "anton at samba dot org" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug c/21017] New: ppc 64bit target not using rlwinm
Date: Thu, 14 Apr 2005 01:39:00 -0000	[thread overview]
Message-ID: <20050414013914.21017.anton@samba.org> (raw)

Using a recent 4.0 CVS:

gcc version 4.0.0 20050412 (prerelease)

Compiling the following as 64bit:

unsigned int foo(unsigned int x)
{
                return ((x >> 16) & 0xffff) | ((x & 0xffff) << 16);
}

Results in:

.L.foo:
        slwi 0,3,16
        srwi 3,3,16
        or 3,3,0
        rldicl 3,3,0,32
        blr

Compiling for 32bit results in:

foo:
        rlwinm 3,3,16,0xffffffff
        blr

It looks like the 64bit case could be done in 2 instructions if we masked the
top 32bits of the rlwinm result.

-- 
           Summary: ppc 64bit target not using rlwinm
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Severity: enhancement
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: anton at samba dot org
                CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: powerpc64-unknown-linux-gnu


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=21017


             reply	other threads:[~2005-04-14  1:39 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-04-14  1:39 anton at samba dot org [this message]
2005-04-14 14:13 ` [Bug target/21017] " pinskia at gcc dot gnu dot org
2005-04-14 16:26 ` pinskia at gcc dot gnu dot org
2005-04-14 19:41 ` pinskia at gcc dot gnu dot org
2005-09-06  0:28 ` amodra at bigpond dot net dot au
2005-09-06  0:37 ` amodra at bigpond dot net dot au
2005-09-06  1:36 ` amodra at bigpond dot net dot au

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=20050414013914.21017.anton@samba.org \
    --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).