From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/14673 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Rich Felker Newsgroups: gmane.linux.lib.musl.general Subject: Re: [PATCH 2/2] Add big-endian support to ARM assembler memcpy Date: Fri, 13 Sep 2019 14:59:10 -0400 Message-ID: <20190913185910.GK9017@brightrain.aerifal.cx> References: <20190913184432.29753-1-armccurdy@gmail.com> <20190913184432.29753-2-armccurdy@gmail.com> Reply-To: musl@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="34736"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Mutt/1.5.21 (2010-09-15) To: musl@lists.openwall.com Original-X-From: musl-return-14689-gllmg-musl=m.gmane.org@lists.openwall.com Fri Sep 13 20:59:25 2019 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.89) (envelope-from ) id 1i8qmz-0008ue-Jm for gllmg-musl@m.gmane.org; Fri, 13 Sep 2019 20:59:25 +0200 Original-Received: (qmail 9820 invoked by uid 550); 13 Sep 2019 18:59:23 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 9800 invoked from network); 13 Sep 2019 18:59:23 -0000 Content-Disposition: inline In-Reply-To: <20190913184432.29753-2-armccurdy@gmail.com> Original-Sender: Rich Felker Xref: news.gmane.org gmane.linux.lib.musl.general:14673 Archived-At: On Fri, Sep 13, 2019 at 11:44:32AM -0700, Andre McCurdy wrote: > Allow the existing ARM assembler memcpy implementation to be used for > both big and little endian targets. Nice. I don't want to merge this just before release, but as long as it looks ok I should be able to review and merge it afterward. Note that I'd really like to replace this giant file with C using inline asm just for the inner block copies and C for all the flow control, but I don't mind merging this first as long as it's correct. Rich