From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 114808 invoked by alias); 10 Apr 2017 18:17:52 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 114796 invoked by uid 89); 10 Apr 2017 18:17:51 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-qt0-f177.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-transfer-encoding; bh=L20t76komwP9CstNfT4jrotwu0lhVv7Cxlm6tB5jcQw=; b=ZYxagBl5YLbjwIGha5rX0/Y1rvbvfQNogoERtdNcw1Io/MUrkPD+U0/2cRDEorlS/q JflAnbPuusoe1/Jpjcf3c6zJ7xQ8ipP1Ndx2gSOVVtLCot5WlYEMoROFMUsIL3Z3QyqG id/g/BVJOJCjkhoOn0Hn22V8NHxhlNifSrFFrzpY/GDX9i3G3KDordVqL7f408z1mk+k D+KpYFRlf5KctBukDIzztRS3fxT+SmIh9VBRvPfPEMlwS86nfXWyDVJEVJwrmrCyK4yE qJELoN4z3nNEl01IajT1AsmD4VyUg7bomvbXZsgjiUY/8iIeMalRUDaqqxQ6vB0quIBf zJxA== X-Gm-Message-State: AFeK/H11Slo6h1LXeqKJY5Dqj9+Jmgc2IdMJndh6B6G0UFYZuMwXQfy8c6Ye3FUHhmFF3rsK X-Received: by 10.200.43.85 with SMTP id 21mr52544565qtv.81.1491848269657; Mon, 10 Apr 2017 11:17:49 -0700 (PDT) Subject: Re: [PATCH 0/9] powerpc: cleanup IFUNC implementations. To: libc-alpha@sourceware.org References: From: Adhemerval Zanella Message-ID: <70645650-db1c-bdc4-5086-d209662fdbdc@linaro.org> Date: Mon, 10 Apr 2017 18:17:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2017-04/txt/msg00176.txt.bz2 On 03/04/2017 18:19, Wainer dos Santos Moschetta wrote: > Almost all IFUNC string implementations in powerpc define one > or more of the ENTRY, EALIGN, END, and END_GEN_TB macros. But > these are already defined in sysdeps/powerpc/powerpc64/sysdep.h, > making them redundant. > > The following set of patch cleans up the IFUNC implementations > for powerpc in order to remove unneeded macro definitions. > > Tested on ppc64le with and without --disable-multi-arch flag. > > Wainer dos Santos Moschetta (9): > powerpc: refactor stpcpy, stpncpy, strcpy, and strncpy IFUNC. > powerpc: refactor strcasecmp, strcmp, and strncmp IFUNC. > powerpc: refactory strnlen and strlen IFUNC. > powerpc: refactor strchr, strchrnul, and strrchr IFUNC. > powerpc: refactor strcasestr and strstr IFUNC. > powerpc: refactor memset IFUNC. > powerpc: refactor memchr, memrchr, and rawmemchr IFUNC. > powerpc: refactor memcpy and mempcpy IFUNC. > powerpc: refactor memcmp and memmove IFUNC. Thanks for the cleanup, the changes seems straightforward enough.