[PATCH] Avoid ICE in single-bit logical RMWs on m68k-uclinux [PR108640]
commita834414794d80f21550dd0591e260fc833f49eb9
authorMikael Pettersson <mikpelinux@gmail.com>
Fri, 19 Jan 2024 23:05:34 +0000 (19 16:05 -0700)
committerJeff Law <jlaw@ventanamicro.com>
Fri, 19 Jan 2024 23:05:34 +0000 (19 16:05 -0700)
tree69fd8cd69b8991b9b64303343d2556e92f5f5599
parent07b392550f37bd9bb146dcef3d110111fb3ad114
[PATCH] Avoid ICE in single-bit logical RMWs on m68k-uclinux [PR108640]

When generating RMW logical operations on m68k, the backend
recognizes single-bit operations and rewrites them as bit
instructions on operands adjusted to address the intended byte.
When offsetting the addresses the backend keeps the modes as
SImode, even though the actual access will be in QImode.

The uclinux target defines M68K_OFFSETS_MUST_BE_WITHIN_SECTIONS_P
which adds a check that the adjusted operand is within the bounds
of the original object.  Since the address has been offset it is
not, and the compiler ICEs.

The bug is that the modes of the adjusted operands should have been
narrowed to QImode, which is that this patch does.  Nearby code
which narrows to HImode gets that right.

Bootstrapped and regression tested on m68k-linux-gnu.

Ok for master? (Note: I don't have commit rights.)

gcc/

PR target/108640
* config/m68k/m68k.cc (output_andsi3): Use QImode for
address adjusted for 1-byte RMW access.
(output_iorsi3): Likewise.
(output_xorsi3): Likewise.

gcc/testsuite/

PR target/108640
* gcc.target/m68k/pr108640.c: New test.
gcc/config/m68k/m68k.cc
gcc/testsuite/gcc.target/m68k/pr108640.c [new file with mode: 0644]