From patchwork Sat Sep 14 21:54:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 274957 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 82BDD2C014C for ; Sun, 15 Sep 2013 07:57:38 +1000 (EST) Received: from localhost ([::1]:54676 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKxqS-0004S0-IM for incoming@patchwork.ozlabs.org; Sat, 14 Sep 2013 17:57:36 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34485) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKxo3-00014d-6t for qemu-devel@nongnu.org; Sat, 14 Sep 2013 17:55:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VKxnw-0003lZ-9U for qemu-devel@nongnu.org; Sat, 14 Sep 2013 17:55:07 -0400 Received: from mail-pd0-x236.google.com ([2607:f8b0:400e:c02::236]:45590) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VKxnw-0003kv-1J for qemu-devel@nongnu.org; Sat, 14 Sep 2013 17:55:00 -0400 Received: by mail-pd0-f182.google.com with SMTP id r10so2626214pdi.41 for ; Sat, 14 Sep 2013 14:54:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:date:message-id:in-reply-to:references; bh=2IP9A3i3oMbQ268efIR/MYOdHT1mTpyJ1t4h6I1m13A=; b=A+sJJ/7H0cYXgDnNvrCgIG9G2Lvd0TDeBdZ7Jbgc35AvUJ6L0HqiwsFPDdETp0XEjp a5DnYQKRMPh0Br8uD1bvIlQ4hnPcEjkgmUCWpTUQk5FmDhm84x9NGW6VLIzBRIorvF5U Tx4xhOGL9Txx9oxZRKMul0XQZyGyITu5vyCn9uSWRfptuJTMQm9ucCn7lXCWfxUzV9tH WQK4DkjKaKxF5fBiCYcIUENggji5O9YryopQcqdHrdN0borH7d7W9Vz/3jIhsYcKCcMl 7lWl+cbD7INb2K71yPd5c3x0rIsNgM1udS3sBzFC6P8LiLCbLoEdPZjga1zJfbIhttQ6 G3Ew== X-Received: by 10.68.236.168 with SMTP id uv8mr20871850pbc.124.1379195699076; Sat, 14 Sep 2013 14:54:59 -0700 (PDT) Received: from pebble.twiddle.net (50-194-63-110-static.hfc.comcastbusiness.net. [50.194.63.110]) by mx.google.com with ESMTPSA id gg10sm20458962pbc.46.1969.12.31.16.00.00 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Sat, 14 Sep 2013 14:54:58 -0700 (PDT) From: Richard Henderson To: qemu-devel@nongnu.org Date: Sat, 14 Sep 2013 14:54:20 -0700 Message-Id: <1379195690-6509-4-git-send-email-rth@twiddle.net> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1379195690-6509-1-git-send-email-rth@twiddle.net> References: <1379195690-6509-1-git-send-email-rth@twiddle.net> X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c02::236 Cc: peter.maydell@linaro.org, claudio.fontana@gmail.com Subject: [Qemu-devel] [PATCH v4 03/33] tcg-aarch64: Don't handle mov/movi in tcg_out_op X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Signed-off-by: Richard Henderson --- tcg/aarch64/tcg-target.c | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) diff --git a/tcg/aarch64/tcg-target.c b/tcg/aarch64/tcg-target.c index 983a74a..8f19b50 100644 --- a/tcg/aarch64/tcg-target.c +++ b/tcg/aarch64/tcg-target.c @@ -1172,18 +1172,6 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, args[0], args[1], args[2]); break; - case INDEX_op_mov_i64: - case INDEX_op_mov_i32: - tcg_out_movr(s, ext, args[0], args[1]); - break; - - case INDEX_op_movi_i64: - tcg_out_movi(s, TCG_TYPE_I64, args[0], args[1]); - break; - case INDEX_op_movi_i32: - tcg_out_movi(s, TCG_TYPE_I32, args[0], args[1]); - break; - case INDEX_op_add_i64: case INDEX_op_add_i32: tcg_out_arith(s, ARITH_ADD, ext, args[0], args[1], args[2], 0); @@ -1347,8 +1335,14 @@ static void tcg_out_op(TCGContext *s, TCGOpcode opc, tcg_out_movr(s, 0, args[0], args[1]); break; + case INDEX_op_mov_i64: + case INDEX_op_mov_i32: + case INDEX_op_movi_i64: + case INDEX_op_movi_i32: + /* Always implemented with tcg_out_mov/i, never with tcg_out_op. */ default: - tcg_abort(); /* opcode not implemented */ + /* Opcode not implemented. */ + tcg_abort(); } }