This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c/21017] New: ppc 64bit target not using rlwinm


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]