From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48643) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2k4f-0005iL-Ql for qemu-devel@nongnu.org; Mon, 13 Jan 2014 11:09:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W2k4a-0000sH-9Y for qemu-devel@nongnu.org; Mon, 13 Jan 2014 11:09:13 -0500 Received: from mail-qc0-x235.google.com ([2607:f8b0:400d:c01::235]:63945) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W2k4a-0000sD-4u for qemu-devel@nongnu.org; Mon, 13 Jan 2014 11:09:08 -0500 Received: by mail-qc0-f181.google.com with SMTP id e9so6337116qcy.26 for ; Mon, 13 Jan 2014 08:09:07 -0800 (PST) Sender: Richard Henderson Message-ID: <52D40F9E.60205@twiddle.net> Date: Mon, 13 Jan 2014 08:09:02 -0800 From: Richard Henderson MIME-Version: 1.0 References: <1389622396-32282-1-git-send-email-peter.maydell@linaro.org> <1389622396-32282-4-git-send-email-peter.maydell@linaro.org> In-Reply-To: <1389622396-32282-4-git-send-email-peter.maydell@linaro.org> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v2 03/10] target-arm: A64: Add decode skeleton for SIMD data processing 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 , =?UTF-8?B?QWxleCBCZW5uw6ll?= , kvmarm@lists.cs.columbia.edu, Christoffer Dall On 01/13/2014 06:13 AM, Peter Maydell wrote: > From: Alex Bennée > > Add decode skeleton and function placeholders for all the SIMD data > processing instructions. Due to the complexity of this part of the > table the normal extract and switch approach gets very messy very > quickly, so we use a simple data-driven pattern-and-mask approach. > > Signed-off-by: Alex Bennée > Signed-off-by: Peter Maydell > Reviewed-by: Richard Henderson > --- > v1->v2: > * made data_proc_simd table const > * fixed errors in insn diagram comments > * fixed coding style for fn pointer call > --- > target-arm/translate-a64.c | 306 ++++++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 305 insertions(+), 1 deletion(-) Reviewed-by: Richard Henderson r~