public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/17959] New: -mpowerpc64 can cause worse code than without it
@ 2004-10-12 23:01 pinskia at gcc dot gnu dot org
  2004-10-12 23:03 ` [Bug target/17959] " pinskia at gcc dot gnu dot org
  2004-11-28  8:27 ` amodra at bigpond dot net dot au
  0 siblings, 2 replies; 3+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-10-12 23:01 UTC (permalink / raw)
  To: gcc-bugs

unsigned long long div16(unsigned long long n) { return n / 16; }

Without -mpowerpc64:
_div16:
        slwi r0,r3,28
        srwi r4,r4,4
        or r4,r0,r4
        srwi r3,r3,4
        blr

With:
_div16:
        li r0,0
        rldimi r0,r3,32,0
        rldimi r0,r4,0,32
        srdi r4,r0,4
        srdi r3,r0,36
        blr

-- 
           Summary: -mpowerpc64 can cause worse code than without it
           Product: gcc
           Version: 4.0.0
            Status: UNCONFIRMED
          Keywords: missed-optimization
          Severity: enhancement
          Priority: P2
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: pinskia at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
GCC target triplet: powerpc-darwin


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


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

end of thread, other threads:[~2004-11-28  8:27 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-12 23:01 [Bug target/17959] New: -mpowerpc64 can cause worse code than without it pinskia at gcc dot gnu dot org
2004-10-12 23:03 ` [Bug target/17959] " pinskia at gcc dot gnu dot org
2004-11-28  8:27 ` amodra at bigpond dot net dot au

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).