public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/106895] New: powerpc64 strange extended inline asm behaviour with register pairs
@ 2022-09-09 11:25 npiggin at gmail dot com
  2022-09-09 11:35 ` [Bug c/106895] " rguenth at gcc dot gnu.org
                   ` (13 more replies)
  0 siblings, 14 replies; 15+ messages in thread
From: npiggin at gmail dot com @ 2022-09-09 11:25 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 106895
           Summary: powerpc64 strange extended inline asm behaviour with
                    register pairs
           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
                CC: segher at gcc dot gnu.org
  Target Milestone: ---
            Target: powerpc64le-linux-gnu

This is Debian 12.2.0-1 build.

powerpc64 instructions operating on 128 bits use "even/odd pair" of adjacent
GPRs, where the lower numbered register specifies the pair and it must be an
even number. This code compiled with -O2:

void set128(__int128 val, __int128 *mem)
{
#if WORKAROUND
        asm("");
#endif
        asm("stq %1,%0" : "=m"(*mem) : "r"(val));
}

Results in an invalid even/odd pair:

        stq 3,0(5)
        blr

If compiled with -DWORKAROUND it results in a valid pair:

        mr 10,3
        mr 11,4
        stq 10,0(5)
        blr

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

end of thread, other threads:[~2023-07-09  5:06 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-09 11:25 [Bug c/106895] New: powerpc64 strange extended inline asm behaviour with register pairs npiggin at gmail dot com
2022-09-09 11:35 ` [Bug c/106895] " rguenth at gcc dot gnu.org
2022-09-09 11:56 ` [Bug target/106895] " bergner at gcc dot gnu.org
2022-09-13 15:34 ` segher at gcc dot gnu.org
2023-06-15 10:26 ` npiggin at gmail dot com
2023-06-15 12:59 ` pinskia at gcc dot gnu.org
2023-07-03  4:30 ` [Bug target/106895] powerpc64 unable to specify even/odd register pairs in extended inline asm segher at gcc dot gnu.org
2023-07-03 15:45 ` bergner at gcc dot gnu.org
2023-07-03 16:55 ` schwab@linux-m68k.org
2023-07-04 16:18 ` segher at gcc dot gnu.org
2023-07-06 11:17 ` npiggin at gmail dot com
2023-07-06 13:46 ` segher at gcc dot gnu.org
2023-07-07  0:00 ` npiggin at gmail dot com
2023-07-07 19:31 ` segher at gcc dot gnu.org
2023-07-09  5:06 ` 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).