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 rtl-optimization/40327]  New: Use less instructions to add some constants to register
Date: Wed, 03 Jun 2009 07:39:00 -0000	[thread overview]
Message-ID: <bug-40327-17659@http.gcc.gnu.org/bugzilla/> (raw)

Compiling this simple function in thumb mode:

int add_const(int x)
{
 return x+400;
}

I got:

       mov     r1, #200
       lsl     r3, r1, #1
       add     r0, r0, r3

A better code sequence should be:

    add r0, r0, 200
    add r0, r0, 200

In order to apply this optimization, the constant should be less than 2 times
of the largest immediate value in the target ISA. So this optimization should
also useful to other architecture with limited immediate operand range.

It can also be applied to sub instruction.


-- 
           Summary: Use less instructions to add some constants to register
           Product: gcc
           Version: 4.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: carrot at google dot com
 GCC build triplet: i686-linux
  GCC host triplet: i686-linux
GCC target triplet: arm-eabi


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


             reply	other threads:[~2009-06-03  7:39 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-06-03  7:39 carrot at google dot com [this message]
2009-06-03 10:36 ` [Bug target/40327] " steven at gcc dot gnu dot org
2009-06-03 10:58 ` steven at gcc dot gnu dot org
2009-06-09 22:06 ` rearnsha at gcc dot gnu dot org
2009-06-13 12:49 ` rearnsha at gcc dot gnu dot org
2009-06-13 13:04 ` rearnsha at gcc dot gnu dot org
2009-06-13 23:45 ` steven at gcc dot gnu dot 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-40327-17659@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).