public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug rtl-optimization/100378] New: [Regression 9/10/11/12] arm64: lsl + asr used instead of sxth
@ 2021-05-01 19:30 luc.vanoostenryck at gmail dot com
  2021-05-02  2:17 ` [Bug target/100378] [9/10/11/12 Regression] " pinskia at gcc dot gnu.org
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: luc.vanoostenryck at gmail dot com @ 2021-05-01 19:30 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100378

            Bug ID: 100378
           Summary: [Regression 9/10/11/12] arm64: lsl + asr used instead
                    of sxth
           Product: gcc
           Version: 12.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: rtl-optimization
          Assignee: unassigned at gcc dot gnu.org
          Reporter: luc.vanoostenryck at gmail dot com
  Target Milestone: ---

Created attachment 50727
  --> https://gcc.gnu.org/bugzilla/attachment.cgi?id=50727&action=edit
testcase

On arm64, when compiling with optimization, for example with -O2,
the following code:

    struct sh {
        short a;
        short b;
        short y[2];
    };
    int fooh(struct sh s) { return s.a; }

produces the following assembly code since GCC9.x:
    fooh:
        lsl     x0, x0, 16
        asr     w0, w0, 16
        ret

but with GCC8.x and before it produces the shorter:
    fooh(sh):
        sxth    w0, w0
        ret


See https://gcc.godbolt.org/z/YrW7E3cro

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

end of thread, other threads:[~2023-07-07 10:39 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-01 19:30 [Bug rtl-optimization/100378] New: [Regression 9/10/11/12] arm64: lsl + asr used instead of sxth luc.vanoostenryck at gmail dot com
2021-05-02  2:17 ` [Bug target/100378] [9/10/11/12 Regression] " pinskia at gcc dot gnu.org
2021-05-02  2:32 ` pinskia at gcc dot gnu.org
2021-05-03  8:02 ` rguenth at gcc dot gnu.org
2021-06-01  8:20 ` rguenth at gcc dot gnu.org
2022-01-20 13:56 ` rguenth at gcc dot gnu.org
2022-05-27  9:45 ` [Bug target/100378] [10/11/12/13 " rguenth at gcc dot gnu.org
2022-06-28 10:44 ` jakub at gcc dot gnu.org
2023-07-07 10:39 ` [Bug target/100378] [11/12/13/14 " rguenth at gcc dot gnu.org

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