From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:37871) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8C6k-0004cm-Pt for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:05:59 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W8C6f-0005qd-Ua for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:05:54 -0500 Received: from mail-qc0-x22c.google.com ([2607:f8b0:400d:c01::22c]:57513) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W8C6f-0005qT-Hx for qemu-devel@nongnu.org; Tue, 28 Jan 2014 12:05:49 -0500 Received: by mail-qc0-f172.google.com with SMTP id c9so969161qcz.3 for ; Tue, 28 Jan 2014 09:05:48 -0800 (PST) Sender: Richard Henderson Message-ID: <52E7E354.30205@twiddle.net> Date: Tue, 28 Jan 2014 09:05:24 -0800 From: Richard Henderson MIME-Version: 1.0 References: <1390764312-21789-1-git-send-email-peter.maydell@linaro.org> <1390764312-21789-10-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1390764312-21789-10-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 09/21] target-arm: A64: Implement SIMD 3-reg-same shift and saturate insns List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell , qemu-devel@nongnu.org Cc: Peter Crosthwaite , 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/26/2014 11:25 AM, Peter Maydell wrote: > Implement the SIMD 3-reg-same instructions SQADD, UQADD, > SQSUB, UQSUB, SSHL, USHL, SQSHl, UQSHL, SRSHL, URSHL, > SQRSHL, UQRSHL; these are all simple calls to existing > Neon helpers. We also enable SSHL, USHL, SRSHL and URSHL > for the 3-reg-same-scalar category (but not the others > because they can have non-size-64 operands and the > scalar_3reg_same function doesn't support that yet.) > > Signed-off-by: Peter Maydell > --- > target-arm/translate-a64.c | 134 +++++++++++++++++++++++++++++++++++++-------- > 1 file changed, 112 insertions(+), 22 deletions(-) Reviewed-by: Richard Henderson r~