public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: Joseph Myers <joseph@codesourcery.com>
To: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: <libc-alpha@sourceware.org>
Subject: Re: [PATCH 02/25] arm: Implement memchr ifunc selection in C
Date: Tue, 31 Oct 2017 18:18:00 -0000	[thread overview]
Message-ID: <alpine.DEB.2.20.1710311818290.4581@digraph.polyomino.org.uk> (raw)
In-Reply-To: <1509044813-9951-3-git-send-email-adhemerval.zanella@linaro.org>

On Thu, 26 Oct 2017, Adhemerval Zanella wrote:

> This patch refactor ARM memchr ifunc selector to a C implementation.
> No functional change is expected, including ifunc resolution rules.
> 
> It also reorganize the ifunc options code:
> 
>   1. The memchr_impl.S is renamed to memchr_neon.S and multiple
>      compilation options (which route to armv6t2/memchr one) is
>      removed.  The code to build if __ARM_NEON__ is defined is
>      also simplified.
> 
>   2. A memchr_noneon is added (which as build along previous ifunc
>      resolution) and includes the armv6t2 direct.
> 
>   3. Same as 2. for loader object.
> 
> Alongside the aforementioned changes, it also some cleanus:
> 
>   - Internal memchr definition (__GI_memcpy) is now a hidden
>     symbol.
>   - No need to create hidden definition for the ifunc variants.
> 
> Checked on armv7-linux-gnueabihf and with a build for arm-linux-gnueabi,
> arm-linux-gnueabihf with and without multiarch support and with both
> GCC 7.1 and GCC mainline.

OK.

-- 
Joseph S. Myers
joseph@codesourcery.com

  reply	other threads:[~2017-10-31 18:18 UTC|newest]

Thread overview: 52+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-26 19:07 [PATCH 00/25] Refactor IFUNC " Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 10/25] sparc: refactor sparc64 nearbyint{f} selector to C Adhemerval Zanella
2017-11-29 13:40   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 22/25] sparc: refactor sparc32 " Adhemerval Zanella
2017-11-30 20:33   ` Adhemerval Zanella
2017-10-26 19:07 ` [PATCH 18/25] sparc: refactor sparc32 copysign " 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 11/25] sparc: refactor sparc64 lrint{f} " Adhemerval Zanella
2017-11-29 13:41   ` 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 19/25] sparc: refactor sparc32 fabs{f} selector to C 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 15/25] sparc: refactor sparc64 __mpn_addmul_1 selector to C Adhemerval Zanella
2017-11-30 13:09   ` 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 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-10-26 19:07 ` [PATCH 14/25] sparc: refactor sparc64 __mpn_sub_n " 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 02/25] arm: Implement memchr ifunc selection in C Adhemerval Zanella
2017-10-31 18:18   ` Joseph Myers [this message]
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 07/25] sparc: refactor sparc64 isnan{f} " 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 13/25] sparc: refactor sparc64 __mpn_mul_1 " 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 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 24/25] sparc: Remove ununsed ifunc assembly macros Adhemerval Zanella
2017-12-01 14:49   ` Adhemerval Zanella
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 23/25] sparc: refactor cpu_relax to C 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=alpine.DEB.2.20.1710311818290.4581@digraph.polyomino.org.uk \
    --to=joseph@codesourcery.com \
    --cc=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).