public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
@ 2022-05-18 14:07 Kewen.Lin
  2022-06-06  8:53 ` PING^1 " Kewen.Lin
  2022-06-23 19:06 ` Segher Boessenkool
  0 siblings, 2 replies; 11+ messages in thread
From: Kewen.Lin @ 2022-05-18 14:07 UTC (permalink / raw)
  To: GCC Patches
  Cc: Segher Boessenkool, David Edelsohn, Peter Bergner, will schmidt

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);
+}

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

* PING^1 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-05-18 14:07 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353] Kewen.Lin
@ 2022-06-06  8:53 ` Kewen.Lin
  2022-06-23  2:02   ` PING^2 " Kewen.Lin
  2022-06-23 19:06 ` Segher Boessenkool
  1 sibling, 1 reply; 11+ messages in thread
From: Kewen.Lin @ 2022-06-06  8:53 UTC (permalink / raw)
  To: GCC Patches; +Cc: Peter Bergner, David Edelsohn, Segher Boessenkool

Hi,

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

BR,
Kewen

on 2022/5/18 22:07, Kewen.Lin via Gcc-patches wrote:
> 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);
> +}


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

* PING^2 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-06-06  8:53 ` PING^1 " Kewen.Lin
@ 2022-06-23  2:02   ` Kewen.Lin
  0 siblings, 0 replies; 11+ messages in thread
From: Kewen.Lin @ 2022-06-23  2:02 UTC (permalink / raw)
  To: GCC Patches; +Cc: Peter Bergner, Segher Boessenkool, David Edelsohn

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);
>> +}
> 

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-05-18 14:07 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353] Kewen.Lin
  2022-06-06  8:53 ` PING^1 " Kewen.Lin
@ 2022-06-23 19:06 ` Segher Boessenkool
  2022-06-24  1:03   ` Kewen.Lin
  1 sibling, 1 reply; 11+ messages in thread
From: Segher Boessenkool @ 2022-06-23 19:06 UTC (permalink / raw)
  To: Kewen.Lin; +Cc: GCC Patches, David Edelsohn, Peter Bergner, will schmidt

Hi!

On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
> 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.

First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
that -- this confusion is what presumably caused the problem here, so it
would be good to root it out :-)

> +  /* Opaque modes are only expected to be available when MMA is supported,

Why do people expect that?  It is completely wrong.  The name "opaque"
itself already says this is not just for MMA, but perhaps more
importantly, it is a basic VSX insn, doesn't touch any MMA resources,
and is useful in other contexts as well.

So this needs some bigger surgery.


Segher

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-06-23 19:06 ` Segher Boessenkool
@ 2022-06-24  1:03   ` Kewen.Lin
  2022-06-24 16:49     ` Segher Boessenkool
  0 siblings, 1 reply; 11+ messages in thread
From: Kewen.Lin @ 2022-06-24  1:03 UTC (permalink / raw)
  To: Segher Boessenkool, Peter Bergner
  Cc: GCC Patches, David Edelsohn, will schmidt

Hi Segher,

Thanks for the comments.

on 2022/6/24 03:06, Segher Boessenkool wrote:
> Hi!
> 
> On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
>> 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.
> 
> First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
> that -- this confusion is what presumably caused the problem here, so it
> would be good to root it out :-)
> 

I guess the "it" in "don't call it call" is for "MMA built-in function"?
It comes from the current code:

;   mma      Needs special handling for MMA
;   quad     MMA instruction using a register quad as an input operand
;   pair     MMA instruction using a register pair as an input operand

  v256 __builtin_vsx_lxvp (unsigned long, const v256 *);
    LXVP nothing {mma}

  void __builtin_vsx_stxvp (v256, unsigned long, const v256 *);
    STXVP nothing {mma,pair}

...

>> +  /* Opaque modes are only expected to be available when MMA is supported,
> 
> Why do people expect that?  It is completely wrong.  The name "opaque"
> itself already says this is not just for MMA, but perhaps more
> importantly, it is a basic VSX insn, doesn't touch any MMA resources,
> and is useful in other contexts as well.
> 

... The above statements are also based on current code, for now, the
related things like built-in functions, mov optab, hard_regno_ok etc.
for these two modes are guarded by TARGET_MMA.

I think I get your points here, you want to separate these opaque
modes from MMA since the underlying lxvp/stxvp are not MMA specific,
so those related things (bifs, mov optabs etc.) are not necessarily
guarded under MMA.

> So this needs some bigger surgery.

Yes, Peter may have more comments on this.

BR,
Kewen

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-06-24  1:03   ` Kewen.Lin
@ 2022-06-24 16:49     ` Segher Boessenkool
  2022-06-27  2:47       ` Kewen.Lin
  0 siblings, 1 reply; 11+ messages in thread
From: Segher Boessenkool @ 2022-06-24 16:49 UTC (permalink / raw)
  To: Kewen.Lin; +Cc: Peter Bergner, GCC Patches, David Edelsohn, will schmidt

Hi!

On Fri, Jun 24, 2022 at 09:03:59AM +0800, Kewen.Lin wrote:
> on 2022/6/24 03:06, Segher Boessenkool wrote:
> > On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
> >> 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.
> > 
> > First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
> > that -- this confusion is what presumably caused the problem here, so it
> > would be good to root it out :-)
> 
> I guess the "it" in "don't call it call" is for "MMA built-in function"?
> It comes from the current code:

Your proposed commit message says "MMA built-in function".  It is not
an MMA builtin, or rather, it should not be.

> >> +  /* Opaque modes are only expected to be available when MMA is supported,
> > 
> > Why do people expect that?  It is completely wrong.  The name "opaque"
> > itself already says this is not just for MMA, but perhaps more
> > importantly, it is a basic VSX insn, doesn't touch any MMA resources,
> > and is useful in other contexts as well.
> 
> ... The above statements are also based on current code, for now, the
> related things like built-in functions, mov optab, hard_regno_ok etc.
> for these two modes are guarded by TARGET_MMA.

Opaque modes are a generic thing, not an rs6000 thing.  It is important
not to conflate completely different things that just happened to
coincide some months ago (but not anymore right now even!)

> I think I get your points here, you want to separate these opaque
> modes from MMA since the underlying lxvp/stxvp are not MMA specific,
> so those related things (bifs, mov optabs etc.) are not necessarily
> guarded under MMA.

Yup.  This can take some time of course, but in the mean time we should
stop pretending the status quo is correct.

> > So this needs some bigger surgery.
> 
> Yes, Peter may have more comments on this.

Yes.  Can you do a patch that just fixes this PR103353, without adding
more misleading comments?  :-)


Segher

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  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 21:30         ` [PATCH v3] " Segher Boessenkool
  0 siblings, 2 replies; 11+ messages in thread
From: Kewen.Lin @ 2022-06-27  2:47 UTC (permalink / raw)
  To: Segher Boessenkool
  Cc: Peter Bergner, GCC Patches, David Edelsohn, will schmidt

[-- Attachment #1: Type: text/plain, Size: 2500 bytes --]

Hi Segher!

on 2022/6/25 00:49, Segher Boessenkool wrote:
> Hi!
> 
> On Fri, Jun 24, 2022 at 09:03:59AM +0800, Kewen.Lin wrote:
>> on 2022/6/24 03:06, Segher Boessenkool wrote:
>>> On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
>>>> 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.
>>>
>>> First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
>>> that -- this confusion is what presumably caused the problem here, so it
>>> would be good to root it out :-)
>>
>> I guess the "it" in "don't call it call" is for "MMA built-in function"?
>> It comes from the current code:
> 
> Your proposed commit message says "MMA built-in function".  It is not
> an MMA builtin, or rather, it should not be.
> 
>>>> +  /* Opaque modes are only expected to be available when MMA is supported,
>>>
>>> Why do people expect that?  It is completely wrong.  The name "opaque"
>>> itself already says this is not just for MMA, but perhaps more
>>> importantly, it is a basic VSX insn, doesn't touch any MMA resources,
>>> and is useful in other contexts as well.
>>
>> ... The above statements are also based on current code, for now, the
>> related things like built-in functions, mov optab, hard_regno_ok etc.
>> for these two modes are guarded by TARGET_MMA.
> 
> Opaque modes are a generic thing, not an rs6000 thing.  It is important
> not to conflate completely different things that just happened to
> coincide some months ago (but not anymore right now even!)
> 
>> I think I get your points here, you want to separate these opaque
>> modes from MMA since the underlying lxvp/stxvp are not MMA specific,
>> so those related things (bifs, mov optabs etc.) are not necessarily
>> guarded under MMA.
> 
> Yup.  This can take some time of course, but in the mean time we should
> stop pretending the status quo is correct.
> 
>>> So this needs some bigger surgery.
>>
>> Yes, Peter may have more comments on this.
> 
> Yes.  Can you do a patch that just fixes this PR103353, without adding
> more misleading comments?  :-)
> 

Many thanks for all the further explanation above!  The attached patch
updated the misleading comments as you pointed out and suggested, could
you help to have another look?

BR,
Kewen

[-- Attachment #2: 0001-rs6000-Adjust-mov-optabs-for-opaque-modes-PR103353.patch --]
[-- Type: text/plain, Size: 4134 bytes --]

From ee49cd14b69aaa373b0aca71c4560944a0b43fbc Mon Sep 17 00:00:00 2001
From: "Kewen.Lin" <linkw@gcc.gnu.org>
Date: Mon, 27 Jun 2022 10:42:37 +0800
Subject: [PATCH] rs6000: Adjust mov optabs for opaque modes [PR103353]

As PR103353 shows, we may want to continue to expand built-in
function __builtin_vsx_lxvp, 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 during
expanding phase if compiler has already seen errors.

	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                    | 35 +++++++++++++++++----
 gcc/testsuite/gcc.target/powerpc/pr103353.c | 22 +++++++++++++
 2 files changed, 51 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 a183b6a168a..a9cf59d68b5 100644
--- a/gcc/config/rs6000/mma.md
+++ b/gcc/config/rs6000/mma.md
@@ -268,10 +268,23 @@ (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;
+  }
+  /* PR103353 shows we may want to continue to expand the __builtin_vsx_lxvp
+     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.  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 +313,20 @@ (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;
+  }
+  /* PR103353 shows we may want to continue to expand the __builtin_vsx_lxvp
+     built-in function, even if we have already emitted error messages about
+     some missing required conditions.  So do the same handlings for XOmode
+     as OOmode here.  */
+  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);
+}
-- 
2.32.0


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

* PING^1 [PATCH v4] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-06-27  2:47       ` Kewen.Lin
@ 2022-07-28  8:49         ` Kewen.Lin
  2022-08-15  8:07           ` PING^2 " Kewen.Lin
  2022-08-15 21:30         ` [PATCH v3] " Segher Boessenkool
  1 sibling, 1 reply; 11+ messages in thread
From: Kewen.Lin @ 2022-07-28  8:49 UTC (permalink / raw)
  To: GCC Patches; +Cc: Peter Bergner, David Edelsohn, Segher Boessenkool

Hi,

Gentle ping https://gcc.gnu.org/pipermail/gcc-patches/2022-June/597286.html

BR,
Kewen

on 2022/6/27 10:47, Kewen.Lin via Gcc-patches wrote:
> Hi Segher!
> 
> on 2022/6/25 00:49, Segher Boessenkool wrote:
>> Hi!
>>
>> On Fri, Jun 24, 2022 at 09:03:59AM +0800, Kewen.Lin wrote:
>>> on 2022/6/24 03:06, Segher Boessenkool wrote:
>>>> On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
>>>>> 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.
>>>>
>>>> First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
>>>> that -- this confusion is what presumably caused the problem here, so it
>>>> would be good to root it out :-)
>>>
>>> I guess the "it" in "don't call it call" is for "MMA built-in function"?
>>> It comes from the current code:
>>
>> Your proposed commit message says "MMA built-in function".  It is not
>> an MMA builtin, or rather, it should not be.
>>
>>>>> +  /* Opaque modes are only expected to be available when MMA is supported,
>>>>
>>>> Why do people expect that?  It is completely wrong.  The name "opaque"
>>>> itself already says this is not just for MMA, but perhaps more
>>>> importantly, it is a basic VSX insn, doesn't touch any MMA resources,
>>>> and is useful in other contexts as well.
>>>
>>> ... The above statements are also based on current code, for now, the
>>> related things like built-in functions, mov optab, hard_regno_ok etc.
>>> for these two modes are guarded by TARGET_MMA.
>>
>> Opaque modes are a generic thing, not an rs6000 thing.  It is important
>> not to conflate completely different things that just happened to
>> coincide some months ago (but not anymore right now even!)
>>
>>> I think I get your points here, you want to separate these opaque
>>> modes from MMA since the underlying lxvp/stxvp are not MMA specific,
>>> so those related things (bifs, mov optabs etc.) are not necessarily
>>> guarded under MMA.
>>
>> Yup.  This can take some time of course, but in the mean time we should
>> stop pretending the status quo is correct.
>>
>>>> So this needs some bigger surgery.
>>>
>>> Yes, Peter may have more comments on this.
>>
>> Yes.  Can you do a patch that just fixes this PR103353, without adding
>> more misleading comments?  :-)
>>
> 
> Many thanks for all the further explanation above!  The attached patch
> updated the misleading comments as you pointed out and suggested, could
> you help to have another look?
> 
> BR,
> Kewen

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

* PING^2 [PATCH v4] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-07-28  8:49         ` PING^1 [PATCH v4] " Kewen.Lin
@ 2022-08-15  8:07           ` Kewen.Lin
  0 siblings, 0 replies; 11+ messages in thread
From: Kewen.Lin @ 2022-08-15  8:07 UTC (permalink / raw)
  To: GCC Patches; +Cc: Peter Bergner, Segher Boessenkool, David Edelsohn

Hi,

Gentle ping https://gcc.gnu.org/pipermail/gcc-patches/2022-June/597286.html

BR,
Kewen

> 
> on 2022/6/27 10:47, Kewen.Lin via Gcc-patches wrote:
>> Hi Segher!
>>
>> on 2022/6/25 00:49, Segher Boessenkool wrote:
>>> Hi!
>>>
>>> On Fri, Jun 24, 2022 at 09:03:59AM +0800, Kewen.Lin wrote:
>>>> on 2022/6/24 03:06, Segher Boessenkool wrote:
>>>>> On Wed, May 18, 2022 at 10:07:48PM +0800, Kewen.Lin wrote:
>>>>>> 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.
>>>>>
>>>>> First off: lxvp is a VSX insn, not an MMA insn.  So please don't call it
>>>>> that -- this confusion is what presumably caused the problem here, so it
>>>>> would be good to root it out :-)
>>>>
>>>> I guess the "it" in "don't call it call" is for "MMA built-in function"?
>>>> It comes from the current code:
>>>
>>> Your proposed commit message says "MMA built-in function".  It is not
>>> an MMA builtin, or rather, it should not be.
>>>
>>>>>> +  /* Opaque modes are only expected to be available when MMA is supported,
>>>>>
>>>>> Why do people expect that?  It is completely wrong.  The name "opaque"
>>>>> itself already says this is not just for MMA, but perhaps more
>>>>> importantly, it is a basic VSX insn, doesn't touch any MMA resources,
>>>>> and is useful in other contexts as well.
>>>>
>>>> ... The above statements are also based on current code, for now, the
>>>> related things like built-in functions, mov optab, hard_regno_ok etc.
>>>> for these two modes are guarded by TARGET_MMA.
>>>
>>> Opaque modes are a generic thing, not an rs6000 thing.  It is important
>>> not to conflate completely different things that just happened to
>>> coincide some months ago (but not anymore right now even!)
>>>
>>>> I think I get your points here, you want to separate these opaque
>>>> modes from MMA since the underlying lxvp/stxvp are not MMA specific,
>>>> so those related things (bifs, mov optabs etc.) are not necessarily
>>>> guarded under MMA.
>>>
>>> Yup.  This can take some time of course, but in the mean time we should
>>> stop pretending the status quo is correct.
>>>
>>>>> So this needs some bigger surgery.
>>>>
>>>> Yes, Peter may have more comments on this.
>>>
>>> Yes.  Can you do a patch that just fixes this PR103353, without adding
>>> more misleading comments?  :-)
>>>
>>
>> Many thanks for all the further explanation above!  The attached patch
>> updated the misleading comments as you pointed out and suggested, could
>> you help to have another look?
>>
>> BR,
>> Kewen

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-06-27  2:47       ` Kewen.Lin
  2022-07-28  8:49         ` PING^1 [PATCH v4] " Kewen.Lin
@ 2022-08-15 21:30         ` Segher Boessenkool
  2022-08-16  5:53           ` Kewen.Lin
  1 sibling, 1 reply; 11+ messages in thread
From: Segher Boessenkool @ 2022-08-15 21:30 UTC (permalink / raw)
  To: Kewen.Lin; +Cc: Peter Bergner, GCC Patches, David Edelsohn, will schmidt

Hi!

On Mon, Jun 27, 2022 at 10:47:26AM +0800, Kewen.Lin wrote:
> on 2022/6/25 00:49, Segher Boessenkool wrote:
> Many thanks for all the further explanation above!  The attached patch
> updated the misleading comments as you pointed out and suggested, could
> you help to have another look?

Please do not send proposed patches in the middle of a mail thread.  It
is harder to track things than needed this way, and it makes it hard to
apply your patches as well (for test builds, say).

> Subject: [PATCH] rs6000: Adjust mov optabs for opaque modes [PR103353]
> 
> As PR103353 shows, we may want to continue to expand built-in
> function __builtin_vsx_lxvp, 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.

> -  rs6000_emit_move (operands[0], operands[1], OOmode);
> -  DONE;
> +  if (TARGET_MMA) {
> +    rs6000_emit_move (operands[0], operands[1], OOmode);
> +    DONE;
> +  }

  if (TARGET_MMA)
    {
      rs6000_emit_move (operands[0], operands[1], OOmode);
      DONE;
    }

> +  /* PR103353 shows we may want to continue to expand the __builtin_vsx_lxvp
> +     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.  It would not cause further ICEs
> +     as the compilation would stop soon after expanding.  */
> +  else if (currently_expanding_to_rtl && seen_error ())
> +    ;

The comment goes inside this "else if" branch.  Maybe make it a braced
block if the semicolon looks out of place without it.

Removing the TARGET_MMA requirement is the correct thing to do no matter
what: this is not an MMA insn at all after all, and neither is it only
useful if MMA is enabled, etc.

Is the later "unreachable" ever useful?  If not, you could just fall
through after that "if (TARGET_MMA)" thing.  Worst that will happen you
get an OO move in the insn stream that we will error on later :-)

The patch is okay for trunk with the indentation fixed.  Thanks!


Segher

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

* Re: [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353]
  2022-08-15 21:30         ` [PATCH v3] " Segher Boessenkool
@ 2022-08-16  5:53           ` Kewen.Lin
  0 siblings, 0 replies; 11+ messages in thread
From: Kewen.Lin @ 2022-08-16  5:53 UTC (permalink / raw)
  To: Segher Boessenkool
  Cc: Peter Bergner, GCC Patches, David Edelsohn, will schmidt

Hi Segher,

Thanks for the review!

on 2022/8/16 05:30, Segher Boessenkool wrote:
> Hi!
> 
> On Mon, Jun 27, 2022 at 10:47:26AM +0800, Kewen.Lin wrote:
>> on 2022/6/25 00:49, Segher Boessenkool wrote:
>> Many thanks for all the further explanation above!  The attached patch
>> updated the misleading comments as you pointed out and suggested, could
>> you help to have another look?
> 
> Please do not send proposed patches in the middle of a mail thread.  It
> is harder to track things than needed this way, and it makes it hard to
> apply your patches as well (for test builds, say).
> 

Got it!

>> Subject: [PATCH] rs6000: Adjust mov optabs for opaque modes [PR103353]
>>
>> As PR103353 shows, we may want to continue to expand built-in
>> function __builtin_vsx_lxvp, 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.
> 
>> -  rs6000_emit_move (operands[0], operands[1], OOmode);
>> -  DONE;
>> +  if (TARGET_MMA) {
>> +    rs6000_emit_move (operands[0], operands[1], OOmode);
>> +    DONE;
>> +  }
> 
>   if (TARGET_MMA)
>     {
>       rs6000_emit_move (operands[0], operands[1], OOmode);
>       DONE;
>     }
> 

Good catch, done!

>> +  /* PR103353 shows we may want to continue to expand the __builtin_vsx_lxvp
>> +     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.  It would not cause further ICEs
>> +     as the compilation would stop soon after expanding.  */
>> +  else if (currently_expanding_to_rtl && seen_error ())
>> +    ;
> 
> The comment goes inside this "else if" branch.  Maybe make it a braced
> block if the semicolon looks out of place without it.
> 

Done.

> Removing the TARGET_MMA requirement is the correct thing to do no matter
> what: this is not an MMA insn at all after all, and neither is it only
> useful if MMA is enabled, etc.

Yeah, it needs one subsequent patch as we agree on.

> 
> Is the later "unreachable" ever useful?  If not, you could just fall
> through after that "if (TARGET_MMA)" thing.  Worst that will happen you
> get an OO move in the insn stream that we will error on later :-)

Yeah, I agree that "just FAIL" works for this issue, but for now without
the valid condition in the context we only expect this expansion to just
perform for bif further expansion (knowing it's taken as bad), the
"unreachable" is meant to punt the other unexpected cases.  :)

> 
> The patch is okay for trunk with the indentation fixed.  Thanks!
> 

Indentation and comments problems addressed, committed in r13-2062.

Thanks again!

BR,
Kewen

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

end of thread, other threads:[~2022-08-16  5:53 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-18 14:07 [PATCH v3] rs6000: Adjust mov optabs for opaque modes [PR103353] Kewen.Lin
2022-06-06  8:53 ` PING^1 " Kewen.Lin
2022-06-23  2:02   ` PING^2 " Kewen.Lin
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

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