public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
From: "carrot at google dot com" <gcc-bugzilla@gcc.gnu.org>
To: gcc-bugs@gcc.gnu.org
Subject: [Bug target/51797] New: Arm backend missed the mls related optimization
Date: Mon, 09 Jan 2012 08:45:00 -0000	[thread overview]
Message-ID: <bug-51797-4@http.gcc.gnu.org/bugzilla/> (raw)

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

             Bug #: 51797
           Summary: Arm backend missed the mls related optimization
    Classification: Unclassified
           Product: gcc
           Version: 4.7.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned@gcc.gnu.org
        ReportedBy: carrot@google.com
            Target: arm-linux-androideabi


compile the following code with options -march=armv7-a -mthumb -Os


int t0i(int a, int b)
{
  return a - 368 * b;
}

GCC 4.7 generates:

t0i:
    ldr    r3, .L2
    mla    r0, r3, r1, r0
    bx    lr
.L3:
    .align    2
.L2:
    .word    -368


When compiled with -O3, gcc generates:

t0i:
    movw    r3, #65168
    movt    r3, 65535
    mla    r0, r3, r1, r0
    bx    lr


But an optimized result should be:

t0i:
     movw r3, 368
     mls  r0, r3, r1, r0
     bx   lr

It is faster and smaller than either of Os/O3 result.


             reply	other threads:[~2012-01-09  8:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-01-09  8:45 carrot at google dot com [this message]
2012-01-11 12:03 ` [Bug target/51797] " ramana 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-51797-4@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).