public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Kewen.Lin" <linkw@linux.ibm.com>
To: GCC Patches <gcc-patches@gcc.gnu.org>
Cc: Peter Bergner <bergner@linux.ibm.com>,
	Segher Boessenkool <segher@kernel.crashing.org>,
	David Edelsohn <dje.gcc@gmail.com>
Subject: PING^2 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
Date: Thu, 23 Jun 2022 10:02:49 +0800	[thread overview]
Message-ID: <98505e00-5e91-a533-1f8e-ac1412939923@linux.ibm.com> (raw)
In-Reply-To: <ed4e3085-b796-5cb9-dd20-30720a565c2a@linux.ibm.com>

Hi,

Gentle ping https://gcc.gnu.org/pipermail/gcc-patches/2022-May/595209.html

BR,
Kewen

>> Hi,
>>
>> As PR103353 shows, we may want to continue to expand a MMA built-in
>> function like a normal function, even if we have already emitted
>> error messages about some missing required conditions.  As shown in
>> that PR, without one explicit mov optab on OOmode provided, it would
>> call emit_move_insn recursively.
>>
>> So this patch is to allow the mov pattern to be generated when we are
>> expanding to RTL and have seen errors even without MMA supported, it's
>> expected that the generated pattern would not cause further ICEs as the
>> compilation would stop soon after expanding.
>>
>> Bootstrapped and regtested on powerpc64-linux-gnu P8 and
>> powerpc64le-linux-gnu P9 and P10.
>>
>> v3: Update test case with dg-excess-errors.
>>
>> v2: Polish some comments and add one test case as Will and Peter suggested.
>>     https://gcc.gnu.org/pipermail/gcc-patches/2022-April/592916.html
>>
>> v1: https://gcc.gnu.org/pipermail/gcc-patches/2022-March/591150.html
>>
>> Is it ok for trunk?
>>
>> BR,
>> Kewen
>> -----
>> 	PR target/103353
>>
>> gcc/ChangeLog:
>>
>> 	* config/rs6000/mma.md (define_expand movoo): Move TARGET_MMA condition
>> 	check to preparation statements and add handlings for !TARGET_MMA.
>> 	(define_expand movxo): Likewise.
>>
>> gcc/testsuite/ChangeLog:
>>
>> 	* gcc.target/powerpc/pr103353.c: New test.
>> ---
>>  gcc/config/rs6000/mma.md                    | 42 ++++++++++++++++++---
>>  gcc/testsuite/gcc.target/powerpc/pr103353.c | 22 +++++++++++
>>  2 files changed, 58 insertions(+), 6 deletions(-)
>>  create mode 100644 gcc/testsuite/gcc.target/powerpc/pr103353.c
>>
>> diff --git a/gcc/config/rs6000/mma.md b/gcc/config/rs6000/mma.md
>> index 907c9d6d516..746a77a0957 100644
>> --- a/gcc/config/rs6000/mma.md
>> +++ b/gcc/config/rs6000/mma.md
>> @@ -268,10 +268,25 @@ (define_int_attr avvi4i4i4	[(UNSPEC_MMA_PMXVI8GER4PP	"pmxvi8ger4pp")
>>  (define_expand "movoo"
>>    [(set (match_operand:OO 0 "nonimmediate_operand")
>>  	(match_operand:OO 1 "input_operand"))]
>> -  "TARGET_MMA"
>> +  ""
>>  {
>> -  rs6000_emit_move (operands[0], operands[1], OOmode);
>> -  DONE;
>> +  if (TARGET_MMA) {
>> +    rs6000_emit_move (operands[0], operands[1], OOmode);
>> +    DONE;
>> +  }
>> +  /* Opaque modes are only expected to be available when MMA is supported,
>> +     but PR103353 shows we may want to continue to expand a MMA built-in
>> +     function, even if we have already emitted error messages about some
>> +     missing required conditions.  As shown in that PR, without one
>> +     explicit mov optab on OOmode provided, it would call emit_move_insn
>> +     recursively.  So we allow this pattern to be generated when we are
>> +     expanding to RTL and have seen errors, even though there is no MMA
>> +     support.  It would not cause further ICEs as the compilation would
>> +     stop soon after expanding.  */
>> +  else if (currently_expanding_to_rtl && seen_error ())
>> +    ;
>> +  else
>> +    gcc_unreachable ();
>>  })
>>
>>  (define_insn_and_split "*movoo"
>> @@ -300,10 +315,25 @@ (define_insn_and_split "*movoo"
>>  (define_expand "movxo"
>>    [(set (match_operand:XO 0 "nonimmediate_operand")
>>  	(match_operand:XO 1 "input_operand"))]
>> -  "TARGET_MMA"
>> +  ""
>>  {
>> -  rs6000_emit_move (operands[0], operands[1], XOmode);
>> -  DONE;
>> +  if (TARGET_MMA) {
>> +    rs6000_emit_move (operands[0], operands[1], XOmode);
>> +    DONE;
>> +  }
>> +  /* Opaque modes are only expected to be available when MMA is supported,
>> +     but PR103353 shows we may want to continue to expand a MMA built-in
>> +     function, even if we have already emitted error messages about some
>> +     missing required conditions.  As shown in that PR, without one
>> +     explicit mov optab on XOmode provided, it would call emit_move_insn
>> +     recursively.  So we allow this pattern to be generated when we are
>> +     expanding to RTL and have seen errors, even though there is no MMA
>> +     support.  It would not cause further ICEs as the compilation would
>> +     stop soon after expanding.  */
>> +  else if (currently_expanding_to_rtl && seen_error ())
>> +    ;
>> +  else
>> +    gcc_unreachable ();
>>  })
>>
>>  (define_insn_and_split "*movxo"
>> diff --git a/gcc/testsuite/gcc.target/powerpc/pr103353.c b/gcc/testsuite/gcc.target/powerpc/pr103353.c
>> new file mode 100644
>> index 00000000000..5d519fb1b7b
>> --- /dev/null
>> +++ b/gcc/testsuite/gcc.target/powerpc/pr103353.c
>> @@ -0,0 +1,22 @@
>> +/* { dg-require-effective-target powerpc_altivec_ok } */
>> +/* If the default cpu type is power10 or later, MMA is enabled by default.
>> +   To keep the test point available all the time, this case specifies
>> +   -mdejagnu-cpu=power6 to make it be tested without MMA.  */
>> +/* { dg-options "-maltivec -mdejagnu-cpu=power6" } */
>> +
>> +/* Verify there is no ICE and don't check the error messages on MMA
>> +   requirement since they could be fragile and are not test points
>> +   of this case.  */
>> +/* { dg-excess-errors "pr103353" } */
>> +
>> +void
>> +foo (__vector_pair *dst, double *x)
>> +{
>> +  dst[0] = __builtin_vsx_lxvp (0, (__vector_pair *)(void *)x);
>> +}
>> +
>> +void
>> +bar (__vector_pair *src, double *x)
>> +{
>> +  __builtin_vsx_stxvp (src[0], 0, (__vector_pair *)(void *)x);
>> +}
> 

  reply	other threads:[~2022-06-23  2:02 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-18 14:07 Kewen.Lin
2022-06-06  8:53 ` PING^1 " Kewen.Lin
2022-06-23  2:02   ` Kewen.Lin [this message]
2022-06-23 19:06 ` Segher Boessenkool
2022-06-24  1:03   ` Kewen.Lin
2022-06-24 16:49     ` Segher Boessenkool
2022-06-27  2:47       ` Kewen.Lin
2022-07-28  8:49         ` PING^1 [PATCH v4] " Kewen.Lin
2022-08-15  8:07           ` PING^2 " Kewen.Lin
2022-08-15 21:30         ` [PATCH v3] " Segher Boessenkool
2022-08-16  5:53           ` Kewen.Lin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=98505e00-5e91-a533-1f8e-ac1412939923@linux.ibm.com \
    --to=linkw@linux.ibm.com \
    --cc=bergner@linux.ibm.com \
    --cc=dje.gcc@gmail.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=segher@kernel.crashing.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).