public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/108018] New: Wide immediate sequences not scheduled for POWER10 fusion
@ 2022-12-08  6:40 npiggin at gmail dot com
  0 siblings, 0 replies; only message in thread
From: npiggin at gmail dot com @ 2022-12-08  6:40 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 108018
           Summary: Wide immediate sequences not scheduled for POWER10
                    fusion
           Product: gcc
           Version: 12.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
          Assignee: unassigned at gcc dot gnu.org
          Reporter: npiggin at gmail dot com
  Target Milestone: ---

POWER10 has "wideimmediate" fusion sequences that include addi rx,ra,si ; addis
rx,rx,SI and addis rx,ra,si ; addi rx,rx,SI

--- test.c ---
static int foo, bar;

unsigned long test(void)
{
        return (unsigned long)&foo + (unsigned long)&bar;
}
---

This test case when compiled with -O2 -mcpu=power10 -mno-pcrel results in

        addis 2,12,.TOC.-.LCF0@ha
        addi 2,2,.TOC.-.LCF0@l
        addis 3,2,.LANCHOR0@toc@ha
        addis 9,2,.LANCHOR0+4@toc@ha
        addi 3,3,.LANCHOR0@toc@l
        addi 9,9,.LANCHOR0+4@toc@l
        add 3,3,9
        blr

The TOC pointer generation is scheduled properly because it is the global entry
prologue, but the variable address generation is scheduled to favour
dependencies rather than the static fusion sequences that P10 has, which should
be preferable.

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-12-08  6:40 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-08  6:40 [Bug c/108018] New: Wide immediate sequences not scheduled for POWER10 fusion npiggin at gmail dot com

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