From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28819 invoked by alias); 25 May 2017 21:12:25 -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 28802 invoked by uid 89); 25 May 2017 21:12:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.6 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy=sk:ramana X-HELO: mail-ua0-f170.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=HZ/wiTP8S9LYGTEXWcrQz+zUPJZOItJ4diqrW1DAmb8=; b=nUKHfGqHgOCmJ9/aqC0/vQ1mE8nPpWMf+H+9Ys+g6X/V9xpbvV6pZir/pzlcVgZL6M wM7O/QVFGf5WPX9LRsF/bf+cG09lq46wvgPZksfSTrgkAeZwHNKF2SfY2mVs46ceeQbX /7ab0l4o47IWw5RifaRtkd1KJFYATEC8BGjd2X1R3BCuYetb/0XWxXXwV2E65U9ULI7q VypSMF8t8uxMNBV/WljxGph+7LMvJF5m5GzvQehY37uDTNZ9s0buj/9hsoc2BA5rLIAQ uAFjOhOYFprrPcgYAHtyWq0UfhaB5bnZmWu3h1qj3JZFLh8ioK6bliekUzClzx9JMQtW vMog== X-Gm-Message-State: AODbwcCNBhBG9qwFQeBAPv22KfpCIZwftJhBPTi9vgUIp2oQHm8iOVzN 4i1dFRoVSIQ7P3HpUT4HSO1IZ2rHZXeF X-Received: by 10.176.6.98 with SMTP id f89mr5558431uaf.22.1495746746410; Thu, 25 May 2017 14:12:26 -0700 (PDT) MIME-Version: 1.0 In-Reply-To: References: <1493663254.29498.11.camel@cavium.com> <5909E2C5.7090603@arm.com> <1494366305.9224.26.camel@cavium.com> <74006e0a-fb4a-dc36-bc29-77303cef3cfb@gotplt.org> <5925BD04.7000902@arm.com> <0950612b-cff4-2256-6f81-3bacf30ce7e9@gotplt.org> <135198a3-ad77-5117-9c13-b4456268e74a@gotplt.org> From: Florian Weimer Date: Thu, 25 May 2017 21:12:00 -0000 Message-ID: Subject: Re: Ping: [Patch] aarch64: Thunderx specific memcpy and memmove To: Ramana Radhakrishnan Cc: Siddhesh Poyarekar , Wilco Dijkstra , Andrew Pinski , Szabolcs Nagy , "Ellcey, Steve" , libc-alpha , nd Content-Type: text/plain; charset="UTF-8" X-SW-Source: 2017-05/txt/msg00779.txt.bz2 On Thu, May 25, 2017 at 11:04 PM, Ramana Radhakrishnan wrote: > The difference in the ARM world compared to the x86 world is the number > of micro-architectures that target the same architectural baseline. > Pushing in a memcpy > for every single micro-architecture out there will make the library a > maintenance nightmare ! In this case, you should reconsider putting the string functions into the vDSO. This will push the implementation to the kernel, but it does more than just shifting the work: the kernel has more direct means to provide hardware capabilities, and it also can use just-in-time code generation (which we want to avoid in glibc). Thanks, Florian