public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: chenglulu <chenglulu@loongson.cn>
To: Xi Ruoyao <xry111@xry111.site>, gcc-patches@gcc.gnu.org
Cc: i@xen0n.name, xuchenghua@loongson.cn
Subject: Re: [PATCH] LoongArch: Handle vectorized copysign (x, -1) expansion efficiently
Date: Fri, 17 Nov 2023 16:45:03 +0800	[thread overview]
Message-ID: <dd9f13b9-a67c-8d48-bb8e-821a48a8349f@loongson.cn> (raw)
In-Reply-To: <20231113200840.339229-1-xry111@xry111.site>

LGTM.

Thanks.

在 2023/11/14 上午4:07, Xi Ruoyao 写道:
> With LSX or LASX, copysign (x[i], -1) (or any negative constant) can be
> vectorized using [x]vbitseti.{w/d} instructions to directly set the
> signbits.
>
> Inspired by Tamar Christina's "AArch64: Handle copysign (x, -1) expansion
> efficiently" (r14-5289).
>
> gcc/ChangeLog:
>
> 	* config/loongarch/lsx.md (copysign<mode>3): Allow operand[2] to
> 	be an reg_or_vector_same_val_operand.  If it's a const vector
> 	with same negative elements, expand the copysign with a bitset
> 	instruction.  Otherwise, force it into an register.
> 	* config/loongarch/lasx.md (copysign<mode>3): Likewise.
>
> gcc/testsuite/ChangeLog:
>
> 	* g++.target/loongarch/vect-copysign-negconst.C: New test.
> 	* g++.target/loongarch/vect-copysign-negconst-run.C: New test.
> ---
>
> Bootstrapped and regtested on loongarch64-linux-gnu.  Ok for trunk?
>
>   gcc/config/loongarch/lasx.md                  | 22 ++++++++-
>   gcc/config/loongarch/lsx.md                   | 22 ++++++++-
>   .../loongarch/vect-copysign-negconst-run.C    | 47 +++++++++++++++++++
>   .../loongarch/vect-copysign-negconst.C        | 27 +++++++++++
>   4 files changed, 116 insertions(+), 2 deletions(-)
>   create mode 100644 gcc/testsuite/g++.target/loongarch/vect-copysign-negconst-run.C
>   create mode 100644 gcc/testsuite/g++.target/loongarch/vect-copysign-negconst.C
>
> diff --git a/gcc/config/loongarch/lasx.md b/gcc/config/loongarch/lasx.md
> index f0f2dd08dd8..2e11f061202 100644
> --- a/gcc/config/loongarch/lasx.md
> +++ b/gcc/config/loongarch/lasx.md
> @@ -3136,11 +3136,31 @@ (define_expand "copysign<mode>3"
>   	  (match_operand:FLASX 1 "register_operand")))
>      (set (match_dup 5)
>   	(and:FLASX (match_dup 3)
> -		   (match_operand:FLASX 2 "register_operand")))
> +		   (match_operand:FLASX 2 "reg_or_vector_same_val_operand")))
>      (set (match_operand:FLASX 0 "register_operand")
>   	(ior:FLASX (match_dup 4) (match_dup 5)))]
>     "ISA_HAS_LASX"
>   {
> +  /* copysign (x, -1) should instead be expanded as setting the sign
> +     bit.  */
> +  if (!REG_P (operands[2]))
> +    {
> +      rtx op2_elt = unwrap_const_vec_duplicate (operands[2]);
> +      if (GET_CODE (op2_elt) == CONST_DOUBLE
> +	  && real_isneg (CONST_DOUBLE_REAL_VALUE (op2_elt)))
> +	{
> +	  rtx n = GEN_INT (8 * GET_MODE_SIZE (<UNITMODE>mode) - 1);
> +	  operands[0] = lowpart_subreg (<VIMODE256>mode, operands[0],
> +					<MODE>mode);
> +	  operands[1] = lowpart_subreg (<VIMODE256>mode, operands[1],
> +					<MODE>mode);
> +	  emit_insn (gen_lasx_xvbitseti_<lasxfmt> (operands[0],
> +						   operands[1], n));
> +	  DONE;
> +	}
> +    }
> +
> +  operands[2] = force_reg (<MODE>mode, operands[2]);
>     operands[3] = loongarch_build_signbit_mask (<MODE>mode, 1, 0);
>   
>     operands[4] = gen_reg_rtx (<MODE>mode);
> diff --git a/gcc/config/loongarch/lsx.md b/gcc/config/loongarch/lsx.md
> index 55c7d79a030..8ea41c85b01 100644
> --- a/gcc/config/loongarch/lsx.md
> +++ b/gcc/config/loongarch/lsx.md
> @@ -2873,11 +2873,31 @@ (define_expand "copysign<mode>3"
>   	  (match_operand:FLSX 1 "register_operand")))
>      (set (match_dup 5)
>   	(and:FLSX (match_dup 3)
> -		  (match_operand:FLSX 2 "register_operand")))
> +		  (match_operand:FLSX 2 "reg_or_vector_same_val_operand")))
>      (set (match_operand:FLSX 0 "register_operand")
>   	(ior:FLSX (match_dup 4) (match_dup 5)))]
>     "ISA_HAS_LSX"
>   {
> +  /* copysign (x, -1) should instead be expanded as setting the sign
> +     bit.  */
> +  if (!REG_P (operands[2]))
> +    {
> +      rtx op2_elt = unwrap_const_vec_duplicate (operands[2]);
> +      if (GET_CODE (op2_elt) == CONST_DOUBLE
> +	  && real_isneg (CONST_DOUBLE_REAL_VALUE (op2_elt)))
> +	{
> +	  rtx n = GEN_INT (8 * GET_MODE_SIZE (<UNITMODE>mode) - 1);
> +	  operands[0] = lowpart_subreg (<VIMODE>mode, operands[0],
> +					<MODE>mode);
> +	  operands[1] = lowpart_subreg (<VIMODE>mode, operands[1],
> +					<MODE>mode);
> +	  emit_insn (gen_lsx_vbitseti_<lsxfmt> (operands[0], operands[1],
> +						n));
> +	  DONE;
> +	}
> +    }
> +
> +  operands[2] = force_reg (<MODE>mode, operands[2]);
>     operands[3] = loongarch_build_signbit_mask (<MODE>mode, 1, 0);
>   
>     operands[4] = gen_reg_rtx (<MODE>mode);
> diff --git a/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst-run.C b/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst-run.C
> new file mode 100644
> index 00000000000..d2d5d15c933
> --- /dev/null
> +++ b/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst-run.C
> @@ -0,0 +1,47 @@
> +/* { dg-do run } */
> +/* { dg-options "-O2 -march=loongarch64 -mlasx -mno-strict-align" } */
> +/* { dg-require-effective-target loongarch_asx_hw } */
> +
> +#include "vect-copysign-negconst.C"
> +
> +double d[] = {1.2, -3.4, -5.6, 7.8};
> +float f[] = {1.2, -3.4, -5.6, 7.8, -9.0, -11.4, 51.4, 1919.810};
> +
> +double _abs(double x) { return __builtin_fabs (x); }
> +float _abs(float x) { return __builtin_fabsf (x); }
> +
> +template <class T>
> +void
> +check (T *arr, T *orig, int len)
> +{
> +  for (int i = 0; i < len; i++)
> +    {
> +      if (arr[i] > 0)
> +	__builtin_trap ();
> +      if (_abs (arr[i]) != _abs (orig[i]))
> +	__builtin_trap ();
> +    }
> +}
> +
> +int
> +main()
> +{
> +  double test_d[4];
> +  float test_f[8];
> +
> +  __builtin_memcpy (test_d, d, sizeof (test_d));
> +  force_negative<2> (test_d);
> +  check (test_d, d, 2);
> +
> +  __builtin_memcpy (test_d, d, sizeof (test_d));
> +  force_negative<4> (test_d);
> +  check (test_d, d, 4);
> +
> +  __builtin_memcpy (test_f, f, sizeof (test_f));
> +  force_negative<4> (test_f);
> +  check (test_f, f, 4);
> +
> +  __builtin_memcpy (test_f, f, sizeof (test_f));
> +  force_negative<8> (test_f);
> +  check (test_f, f, 8);
> +}
> diff --git a/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst.C b/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst.C
> new file mode 100644
> index 00000000000..5e8820d2bca
> --- /dev/null
> +++ b/gcc/testsuite/g++.target/loongarch/vect-copysign-negconst.C
> @@ -0,0 +1,27 @@
> +/* { dg-do compile } */
> +/* { dg-options "-O2 -march=loongarch64 -mlasx -mno-strict-align" } */
> +/* { dg-final { scan-assembler "\txvbitseti.*63" } } */
> +/* { dg-final { scan-assembler "\txvbitseti.*31" } } */
> +/* { dg-final { scan-assembler "\tvbitseti.*63" } } */
> +/* { dg-final { scan-assembler "\tvbitseti.*31" } } */
> +
> +template <int N>
> +__attribute__ ((noipa)) void
> +force_negative (float *arr)
> +{
> +  for (int i = 0; i < N; i++)
> +    arr[i] = __builtin_copysignf (arr[i], -2);
> +}
> +
> +template <int N>
> +__attribute__ ((noipa)) void
> +force_negative (double *arr)
> +{
> +  for (int i = 0; i < N; i++)
> +    arr[i] = __builtin_copysign (arr[i], -3);
> +}
> +
> +template void force_negative<4>(float *);
> +template void force_negative<8>(float *);
> +template void force_negative<2>(double *);
> +template void force_negative<4>(double *);


      reply	other threads:[~2023-11-17  8:45 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-13 20:07 Xi Ruoyao
2023-11-17  8:45 ` chenglulu [this message]

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=dd9f13b9-a67c-8d48-bb8e-821a48a8349f@loongson.cn \
    --to=chenglulu@loongson.cn \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=i@xen0n.name \
    --cc=xry111@xry111.site \
    --cc=xuchenghua@loongson.cn \
    /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).