From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57604) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6NMJ-0006QB-3E for qemu-devel@nongnu.org; Thu, 23 Jan 2014 11:42:31 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6NME-0007Di-0a for qemu-devel@nongnu.org; Thu, 23 Jan 2014 11:42:27 -0500 Received: from mail-ig0-x22f.google.com ([2607:f8b0:4001:c05::22f]:44193) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6NMD-0007DY-Qb for qemu-devel@nongnu.org; Thu, 23 Jan 2014 11:42:21 -0500 Received: by mail-ig0-f175.google.com with SMTP id uq10so31335igb.2 for ; Thu, 23 Jan 2014 08:42:19 -0800 (PST) Sender: Richard Henderson Message-ID: <52E14666.2040204@twiddle.net> Date: Thu, 23 Jan 2014 08:42:14 -0800 From: Richard Henderson MIME-Version: 1.0 References: <1390490939-17011-1-git-send-email-peter.maydell@linaro.org> <1390490939-17011-2-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1390490939-17011-2-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 1/8] target-arm: A64: Add SIMD three-different multiply accumulate insns List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel@nongnu.org Cc: patches@linaro.org, Michael Matz , Alexander Graf , Claudio Fontana , Dirk Mueller , Will Newton , Laurent Desnogues , =?ISO-8859-1?Q?Alex_Benn=E9e?= , kvmarm@lists.cs.columbia.edu, Christoffer Dall On 01/23/2014 07:28 AM, Peter Maydell wrote: > Add support for the multiply-accumulate instructions from the > SIMD three-different instructions group (C3.6.15): > * skeleton decode of unallocated encodings and split of > the group into its three sub-parts > * framework for handling the 64x64->128 widening subpart > * implementation of the multiply-accumulate instructions > SMLAL, SMLAL2, UMLAL, UMLAL2, SMLSL, SMLSL2, UMLSL, UMLSL2, > UMULL, UMULL2, SMULL, SMULL2 > > Signed-off-by: Peter Maydell > --- > target-arm/translate-a64.c | 233 ++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 232 insertions(+), 1 deletion(-) Reviewed-by: Richard Henderson r~