public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Adhemerval Zanella <adhemerval.zanella@linaro.org>
To: libc-alpha@sourceware.org
Subject: Re: [PATCH 23/25] sparc: refactor cpu_relax to C
Date: Thu, 30 Nov 2017 20:33:00 -0000	[thread overview]
Message-ID: <7b6a405f-015a-3736-6572-a661e191a0cf@linaro.org> (raw)
In-Reply-To: <1509044813-9951-24-git-send-email-adhemerval.zanella@linaro.org>

If no one opposes it, I will commit it shortly. 

On 26/10/2017 17:06, Adhemerval Zanella wrote:
> 	* sysdeps/sparc/sparc64/cpu_relax.c: New file.
> 	* sysdeps/sparc/sparc32/sparcv9/cpu_relax.c: Likewise.
> 	* sysdeps/sparc/sparc64/cpu_relax.S: Remove file.
> 	* sysdeps/sparc/sparc32/sparcv9/cpu_relax.S: Likewise.
> 
> Signed-off-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
> ---
>  ChangeLog                                 |  5 +++
>  sysdeps/sparc/sparc32/sparcv9/cpu_relax.S |  1 -
>  sysdeps/sparc/sparc32/sparcv9/cpu_relax.c |  1 +
>  sysdeps/sparc/sparc64/cpu_relax.S         | 67 -------------------------------
>  sysdeps/sparc/sparc64/cpu_relax.c         | 38 ++++++++++++++++++
>  5 files changed, 44 insertions(+), 68 deletions(-)
>  delete mode 100644 sysdeps/sparc/sparc32/sparcv9/cpu_relax.S
>  create mode 100644 sysdeps/sparc/sparc32/sparcv9/cpu_relax.c
>  delete mode 100644 sysdeps/sparc/sparc64/cpu_relax.S
>  create mode 100644 sysdeps/sparc/sparc64/cpu_relax.c
> 
> diff --git a/sysdeps/sparc/sparc32/sparcv9/cpu_relax.S b/sysdeps/sparc/sparc32/sparcv9/cpu_relax.S
> deleted file mode 100644
> index 41a5e72..0000000
> --- a/sysdeps/sparc/sparc32/sparcv9/cpu_relax.S
> +++ /dev/null
> @@ -1 +0,0 @@
> -#include <sysdeps/sparc/sparc64/cpu_relax.S>
> diff --git a/sysdeps/sparc/sparc32/sparcv9/cpu_relax.c b/sysdeps/sparc/sparc32/sparcv9/cpu_relax.c
> new file mode 100644
> index 0000000..1670cf6
> --- /dev/null
> +++ b/sysdeps/sparc/sparc32/sparcv9/cpu_relax.c
> @@ -0,0 +1 @@
> +#include <sysdeps/sparc/sparc64/cpu_relax.c>
> diff --git a/sysdeps/sparc/sparc64/cpu_relax.S b/sysdeps/sparc/sparc64/cpu_relax.S
> deleted file mode 100644
> index 5271164..0000000
> --- a/sysdeps/sparc/sparc64/cpu_relax.S
> +++ /dev/null
> @@ -1,67 +0,0 @@
> -/* CPU strand yielding for busy loops.
> -   Copyright (C) 2012-2017 Free Software Foundation, Inc.
> -   Contributed by David S. Miller (davem@davemloft.net)
> -   This file is part of the GNU C Library.
> -
> -   The GNU C Library is free software; you can redistribute it and/or
> -   modify it under the terms of the GNU Lesser General Public
> -   License as published by the Free Software Foundation; either
> -   version 2.1 of the License, or (at your option) any later version.
> -
> -   The GNU C Library is distributed in the hope that it will be useful,
> -   but WITHOUT ANY WARRANTY; without even the implied warranty of
> -   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> -   Lesser General Public License for more details.
> -
> -   You should have received a copy of the GNU Lesser General Public
> -   License along with the GNU C Library; if not, see
> -   <http://www.gnu.org/licenses/>.  */
> -
> -#include <sysdep.h>
> -
> -	.text
> -__cpu_relax_generic:
> -	rd	%ccr, %g0
> -	rd	%ccr, %g0
> -	rd	%ccr, %g0
> -	retl
> -	 nop
> -	.size	__cpu_relax_generic,.-__cpu_relax_generic
> -
> -__cpu_relax_pause:
> -	wr	%g0, 128, %asr27
> -	retl
> -	 nop
> -	.size	__cpu_relax_pause,.-__cpu_relax_pause
> -
> -ENTRY(__cpu_relax)
> -	.type	__cpu_relax, @gnu_indirect_function
> -# ifdef SHARED
> -	SETUP_PIC_REG_LEAF(o3, o5)
> -# endif
> -	set	HWCAP_SPARC_PAUSE, %o1
> -	andcc	%o0, %o1, %g0
> -	be	1f
> -	 nop
> -# ifdef SHARED
> -	sethi	%gdop_hix22(__cpu_relax_pause), %o1
> -	xor	%o1, %gdop_lox10(__cpu_relax_pause), %o1
> -# else
> -	set	__cpu_relax_pause, %o1
> -# endif
> -	ba	10f
> -	 nop
> -1:
> -# ifdef SHARED
> -	sethi	%gdop_hix22(__cpu_relax_generic), %o1
> -	xor	%o1, %gdop_lox10(__cpu_relax_generic), %o1
> -# else
> -	set	__cpu_relax_generic, %o1
> -# endif
> -10:
> -# ifdef SHARED
> -	add	%o3, %o1, %o1
> -# endif
> -	retl
> -	 mov	%o1, %o0
> -END(__cpu_relax)
> diff --git a/sysdeps/sparc/sparc64/cpu_relax.c b/sysdeps/sparc/sparc64/cpu_relax.c
> new file mode 100644
> index 0000000..388e76c
> --- /dev/null
> +++ b/sysdeps/sparc/sparc64/cpu_relax.c
> @@ -0,0 +1,38 @@
> +/* CPU strand yielding for busy loops.  Linux/sparc64 version.
> +   Copyright (C) 2017 Free Software Foundation, Inc.
> +   This file is part of the GNU C Library.
> +
> +   The GNU C Library is free software; you can redistribute it and/or
> +   modify it under the terms of the GNU Lesser General Public
> +   License as published by the Free Software Foundation; either
> +   version 2.1 of the License, or (at your option) any later version.
> +
> +   The GNU C Library is distributed in the hope that it will be useful,
> +   but WITHOUT ANY WARRANTY; without even the implied warranty of
> +   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
> +   Lesser General Public License for more details.
> +
> +   You should have received a copy of the GNU Lesser General Public
> +   License along with the GNU C Library; if not, see
> +   <http://www.gnu.org/licenses/>.  */
> +
> +#include <sparc-ifunc.h>
> +
> +static void
> +__cpu_relax_generic (void)
> +{
> +  asm volatile ("rd %ccr, %g0;"
> +		"rd %ccr, %g0;"
> +		"rd %ccr, %g0");
> +}
> +
> +static void
> +__cpu_relax_pause (void)
> +{
> +  asm volatile ("wr %g0, 128, %asr27;");
> +}
> +
> +sparc_libc_ifunc (__cpu_relax,
> +		  hwcap & HWCAP_SPARC_PAUSE
> +		  ? __cpu_relax_pause
> +		  : __cpu_relax_generic)
> 

  reply	other threads:[~2017-11-30 20:33 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-26 19:07 [PATCH 00/25] Refactor IFUNC selection in C Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 14/25] sparc: refactor sparc64 __mpn_sub_n selector to C Adhemerval Zanella
2017-11-30 13:09   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 08/25] sparc: refactor sparc64 isinf{f} " Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 05/25] sparc: Assume VIS3 support Adhemerval Zanella
2017-11-28 17:51   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 20/25] sparc: refactor sparc32 llrint{f} selector to C Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 02/25] arm: Implement memchr ifunc selection in C Adhemerval Zanella
2017-10-31 18:18   ` Joseph Myers
2017-10-26 19:07 ` [PATCH 13/25] sparc: refactor sparc64 __mpn_mul_1 selector to C Adhemerval Zanella
2017-11-30 13:09   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 04/25] sparc: Implement memset/bzero ifunc selection in C Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 07/25] sparc: refactor sparc64 isnan{f} selector to C Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 09/25] sparc: refactor sparc64 finite{f} " Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 12/25] sparc: refactor sparc64 rint{f} " Adhemerval Zanella
2017-11-29 13:41   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 24/25] sparc: Remove ununsed ifunc assembly macros Adhemerval Zanella
2017-12-01 14:49   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 23/25] sparc: refactor cpu_relax to C Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella [this message]
2017-10-26 19:07 ` [PATCH 25/25] x32: Remove unused getcpu implementation Adhemerval Zanella
2017-12-01 14:49   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 17/25] sparc: refactor sparc64 __mpn_add_n selector to C Adhemerval Zanella
2017-11-30 13:09   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 22/25] sparc: refactor sparc32 nearbyint{f} " Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 10/25] sparc: refactor sparc64 " Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 19/25] sparc: refactor sparc32 fabs{f} " Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 03/25] sparc: Implement memcpy/mempcpy ifunc selection in C Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 18/25] sparc: refactor sparc32 copysign selector to C Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-12-01 17:13     ` Joseph Myers
2017-12-01 17:48       ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 01/25] arm: Implement memcpy ifunc selection in C Adhemerval Zanella
2017-10-31 18:16   ` Joseph Myers
2017-10-26 19:07 ` [PATCH 11/25] sparc: refactor sparc64 lrint{f} selector to C Adhemerval Zanella
2017-11-29 13:41   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 06/25] sparc: refactor sparc64 signbit{f} " Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 15/25] sparc: refactor sparc64 __mpn_addmul_1 " Adhemerval Zanella
2017-11-30 13:09   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 16/25] sparc: refactor sparc64 __mpn_submul_1 " Adhemerval Zanella
2017-11-30 13:09   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 21/25] sparc: refactor sparc32 rint{f} " Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-11-24 18:54 ` [PATCH 00/25] Refactor IFUNC selection in C Adhemerval Zanella

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=7b6a405f-015a-3736-6572-a661e191a0cf@linaro.org \
    --to=adhemerval.zanella@linaro.org \
    --cc=libc-alpha@sourceware.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).