public inbox for gcc-help@gcc.gnu.org
 help / color / mirror / Atom feed
From: Richard Sandiford <richard.sandiford@arm.com>
To: William Tambe via Gcc-help <gcc-help@gcc.gnu.org>
Cc: William Tambe <tambewilliam@gmail.com>
Subject: Re: help removing unnecessary zero-extension
Date: Thu, 22 Sep 2022 14:17:03 +0100	[thread overview]
Message-ID: <mptpmfn1rcg.fsf@arm.com> (raw)
In-Reply-To: <CAF8i9mMcSaKEHWyCAB8r1PJFD4r9QiPB5uPoo9tvRmGL1geTEQ@mail.gmail.com> (William Tambe via Gcc-help's message of "Wed, 21 Sep 2022 16:57:39 -0500")

William Tambe via Gcc-help <gcc-help@gcc.gnu.org> writes:
> Given following program:
>
>     unsigned char var;
>     int main() {
>         return var;
>     }
>
> And compiled using:
> pu32-elf-gcc -O3 -c -save-temps test.c
>
> Unnecessary zero-extension gets generated after a memory byte load
> which already zero-extend.
>
> LOAD_EXTEND_OP has been defined as follow:
> #define LOAD_EXTEND_OP(M) ZERO_EXTEND
>
> Find complete port at:
> https://github.com/fontamsoc/gcc/commit/45840063
> And machine description at:
> https://github.com/fontamsoc/gcc/blob/45840063/gcc/config/pu32/pu32.md
>
> Any idea what else can be tried to prevent the unnecessary zero-extension ?

(Thanks for sharing the links.  Unfortunately I can't look at unsubmitted
code for copyright reasons, so the below is just a guess.)

If you define LOAD_EXTEND_OP, it's still better to have a define_insn
that can zero_extend a memory source operand to a wider register
destination operand.  Ideally there should be one instruction that
handles both registers and memory -- rather than than two separate
instructions -- since that helps the register allocator to produce
better results.

E.g. the aarch64 pattern for this operation is:

(define_insn "*zero_extend<SHORT:mode><GPI:mode>2_aarch64"
  [(set (match_operand:GPI 0 "register_operand" "=r,r,w,r")
        (zero_extend:GPI (match_operand:SHORT 1 "nonimmediate_operand" "r,m,m,w")))]
  ""
  "@
   and\t%<GPI:w>0, %<GPI:w>1, <SHORT:short_mask>
   ldr<SHORT:size>\t%w0, %1
   ldr\t%<SHORT:size>0, %1
   umov\t%w0, %1.<SHORT:size>[0]"
  [(set_attr "type" "logic_imm,load_4,f_loads,neon_to_gp")
   (set_attr "arch" "*,*,fp,fp")]
)

which is quite complicated, but it's the first two alternatives
that matter here.

Thanks,
Richard

      reply	other threads:[~2022-09-22 13:17 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-09-21 21:57 William Tambe
2022-09-22 13:17 ` Richard Sandiford [this message]

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=mptpmfn1rcg.fsf@arm.com \
    --to=richard.sandiford@arm.com \
    --cc=gcc-help@gcc.gnu.org \
    --cc=tambewilliam@gmail.com \
    /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).