From mboxrd@z Thu Jan 1 00:00:00 1970 From: =?iso-8859-1?Q?M=E5ns_Rullg=E5rd?= Subject: Re: [PATCH 5/5] ARM: asm/div64.h: adjust to generic codde Date: Thu, 19 Nov 2015 16:44:25 +0000 Message-ID: References: <1446503610-6942-1-git-send-email-nicolas.pitre@linaro.org> <1446503610-6942-6-git-send-email-nicolas.pitre@linaro.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: QUOTED-PRINTABLE Return-path: Received: from unicorn.mansr.com ([81.2.72.234]:50918 "EHLO unicorn.mansr.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1758744AbbKSQo1 convert rfc822-to-8bit (ORCPT ); Thu, 19 Nov 2015 11:44:27 -0500 In-Reply-To: (Nicolas Pitre's message of "Thu, 19 Nov 2015 11:42:45 -0500 (EST)") Sender: linux-arch-owner@vger.kernel.org List-ID: To: Nicolas Pitre Cc: Alexey Brodkin , Arnd Bergmann , rmk+kernel@arm.linux.org.uk, linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org Nicolas Pitre writes: > On Thu, 19 Nov 2015, M=E5ns Rullg=E5rd wrote: > >> Nicolas Pitre writes: >>=20 >> > +static inline uint64_t __arch_xprod_64(uint64_t m, uint64_t n, bo= ol bias) >> > +{ >> > + unsigned long long res; >> > + unsigned int tmp =3D 0; >> > + >> > + if (!bias) { >> > + asm ( "umull %Q0, %R0, %Q1, %Q2\n\t" >> > + "mov %Q0, #0" >> > + : "=3D&r" (res) >> > + : "r" (m), "r" (n) >> > + : "cc"); >> > + } else if (!(m & ((1ULL << 63) | (1ULL << 31)))) { >> > + res =3D m; >> > + asm ( "umlal %Q0, %R0, %Q1, %Q2\n\t" >> > + "mov %Q0, #0" >> > + : "+&r" (res) >> > + : "r" (m), "r" (n) >> > + : "cc"); >> > + } else { >> > + asm ( "umull %Q0, %R0, %Q2, %Q3\n\t" >> > + "cmn %Q0, %Q2\n\t" >> > + "adcs %R0, %R0, %R2\n\t" >> > + "adc %Q0, %1, #0" >> > + : "=3D&r" (res), "+&r" (tmp) >> > + : "r" (m), "r" (n) >>=20 >> Why is tmp using a +r constraint here? The register is not written,= so >> using an input-only operand could/should result in better code. Tha= t is >> also what the old code did. > > No, it is worse. gcc allocates two registers because, somehow, it=20 > doesn't think that the first one still holds zero after the first usa= ge. =20 > This way usage of only one temporary register is forced throughout,=20 > producing better code. Makes sense. Thanks for explaining. --=20 M=E5ns Rullg=E5rd mans@mansr.com