From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1816) id 5F099396D805; Tue, 6 Dec 2022 10:26:00 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 5F099396D805 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1670322360; bh=NZZgG5pFX9lbgfdNQLHnMltQFK7shQn7G6/je9FFXSc=; h=From:To:Subject:Date:From; b=AxNUGWAfYGftxepIA/4Q3fyQ6vIZYejsKyXwGXXIL/ntQd7aiRPni1VCWEdr/lRuP 2ko7rUq57nWjMvv4hsxd8/OwJ8ro52T2zVjyNr4/8bdF4nc8EA7888sfdHfykajQvH 7dpHtqXO/Uk8/4+lpFMutPu/GhdQBh43d05G4RY4= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Kyrylo Tkachov To: gcc-cvs@gcc.gnu.org Subject: [gcc r12-8961] aarch64: Specify that FEAT_MOPS sequences clobber CC X-Act-Checkin: gcc X-Git-Author: Kyrylo Tkachov X-Git-Refname: refs/heads/releases/gcc-12 X-Git-Oldrev: fa9abddf947a684dab36e09be8fb8a5fe00825d2 X-Git-Newrev: d61d6c91b023adf22908c9071e4a6dffa317de2a Message-Id: <20221206102600.5F099396D805@sourceware.org> Date: Tue, 6 Dec 2022 10:26:00 +0000 (GMT) List-Id: https://gcc.gnu.org/g:d61d6c91b023adf22908c9071e4a6dffa317de2a commit r12-8961-gd61d6c91b023adf22908c9071e4a6dffa317de2a Author: Kyrylo Tkachov Date: Wed Nov 30 17:38:16 2022 +0000 aarch64: Specify that FEAT_MOPS sequences clobber CC According to the architecture pseudocode the FEAT_MOPS sequences overwrite the NZCV flags as par of their operation, so GCC needs to model that in the relevant RTL patterns. For the testcase: void g(); void foo (int a, size_t N, char *__restrict__ in, char *__restrict__ out) { if (a != 3) __builtin_memcpy (out, in, N); if (a > 3) g (); } we will currently generate: foo: cmp w0, 3 bne .L6 .L1: ret .L6: cpyfp [x3]!, [x2]!, x1! cpyfm [x3]!, [x2]!, x1! cpyfe [x3]!, [x2]!, x1! ble .L1 // Flags reused after CPYF* sequence b g This is wrong as the result of cmp needs to be recalculated after the MOPS sequence. With this patch we'll insert a "cmp w0, 3" before the ble, similar to what clang does. Bootstrapped and tested on aarch64-none-linux-gnu. Pushing to trunk and to the GCC 12 branch after some baking time. gcc/ChangeLog: * config/aarch64/aarch64.md (aarch64_cpymemdi): Specify clobber of CC reg. (*aarch64_cpymemdi): Likewise. (aarch64_movmemdi): Likewise. (aarch64_setmemdi): Likewise. (*aarch64_setmemdi): Likewise. gcc/testsuite/ChangeLog: * gcc.target/aarch64/mops_5.c: New test. * gcc.target/aarch64/mops_6.c: Likewise. * gcc.target/aarch64/mops_7.c: Likewise. (cherry picked from commit cbdffae5745327b0e5eb887afc512daf34b049b1) Diff: --- gcc/config/aarch64/aarch64.md | 5 +++++ gcc/testsuite/gcc.target/aarch64/mops_5.c | 17 +++++++++++++++++ gcc/testsuite/gcc.target/aarch64/mops_6.c | 17 +++++++++++++++++ gcc/testsuite/gcc.target/aarch64/mops_7.c | 16 ++++++++++++++++ 4 files changed, 55 insertions(+) diff --git a/gcc/config/aarch64/aarch64.md b/gcc/config/aarch64/aarch64.md index 34b8059b45b..7a04f45cacc 100644 --- a/gcc/config/aarch64/aarch64.md +++ b/gcc/config/aarch64/aarch64.md @@ -1586,6 +1586,7 @@ [(set (match_operand 2) (const_int 0)) (clobber (match_dup 3)) (clobber (match_dup 4)) + (clobber (reg:CC CC_REGNUM)) (set (match_operand 0) (unspec:BLK [(match_operand 1) (match_dup 2)] UNSPEC_CPYMEM))])] "TARGET_MOPS" @@ -1599,6 +1600,7 @@ [(set (match_operand:DI 2 "register_operand" "+&r") (const_int 0)) (clobber (match_operand:DI 0 "register_operand" "+&r")) (clobber (match_operand:DI 1 "register_operand" "+&r")) + (clobber (reg:CC CC_REGNUM)) (set (mem:BLK (match_dup 0)) (unspec:BLK [(mem:BLK (match_dup 1)) (match_dup 2)] UNSPEC_CPYMEM))] "TARGET_MOPS" @@ -1629,6 +1631,7 @@ (set (match_operand:DI 2 "register_operand" "+&r") (const_int 0)) (clobber (match_operand:DI 0 "register_operand" "+&r")) (clobber (match_operand:DI 1 "register_operand" "+&r")) + (clobber (reg:CC CC_REGNUM)) (set (mem:BLK (match_dup 0)) (unspec:BLK [(mem:BLK (match_dup 1)) (match_dup 2)] UNSPEC_MOVMEM))])] "TARGET_MOPS" @@ -1674,6 +1677,7 @@ [(parallel [(set (match_operand 2) (const_int 0)) (clobber (match_dup 3)) + (clobber (reg:CC CC_REGNUM)) (set (match_operand 0) (unspec:BLK [(match_operand 1) (match_dup 2)] UNSPEC_SETMEM))])] @@ -1686,6 +1690,7 @@ (define_insn "*aarch64_setmemdi" [(set (match_operand:DI 2 "register_operand" "+&r") (const_int 0)) (clobber (match_operand:DI 0 "register_operand" "+&r")) + (clobber (reg:CC CC_REGNUM)) (set (mem:BLK (match_dup 0)) (unspec:BLK [(match_operand:QI 1 "aarch64_reg_or_zero" "rZ") (match_dup 2)] UNSPEC_SETMEM))] diff --git a/gcc/testsuite/gcc.target/aarch64/mops_5.c b/gcc/testsuite/gcc.target/aarch64/mops_5.c new file mode 100644 index 00000000000..8a2626786eb --- /dev/null +++ b/gcc/testsuite/gcc.target/aarch64/mops_5.c @@ -0,0 +1,17 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -march=armv8.6-a+mops" } */ + +#include + +void g(); +void foo (int a, size_t N, char *__restrict__ in, + char *__restrict__ out) +{ + if (a != 3) + __builtin_memcpy (out, in, N); + if (a > 3) + g (); +} + +/* { dg-final { scan-assembler-times {cmp\tw0, *} 2 } } */ + diff --git a/gcc/testsuite/gcc.target/aarch64/mops_6.c b/gcc/testsuite/gcc.target/aarch64/mops_6.c new file mode 100644 index 00000000000..c6c9a548351 --- /dev/null +++ b/gcc/testsuite/gcc.target/aarch64/mops_6.c @@ -0,0 +1,17 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -march=armv8.6-a+mops" } */ + +#include + +void g(); +void foo (int a, size_t N, char *__restrict__ in, + char *__restrict__ out) +{ + if (a != 3) + __builtin_memmove (out, in, N); + if (a > 3) + g (); +} + +/* { dg-final { scan-assembler-times {cmp\tw0, *} 2 } } */ + diff --git a/gcc/testsuite/gcc.target/aarch64/mops_7.c b/gcc/testsuite/gcc.target/aarch64/mops_7.c new file mode 100644 index 00000000000..79720ca164c --- /dev/null +++ b/gcc/testsuite/gcc.target/aarch64/mops_7.c @@ -0,0 +1,16 @@ +/* { dg-do compile } */ +/* { dg-options "-O2 -march=armv8.6-a+mops" } */ + +#include + +void g(); +void foo (int a, size_t N, char *__restrict__ out) +{ + if (a != 3) + __builtin_memset (out, 0, N); + if (a > 3) + g (); +} + +/* { dg-final { scan-assembler-times {cmp\tw0, *} 2 } } */ +