From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33725) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKsm3-00023w-Rb for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:05:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKslv-0001mg-ST for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:04:59 -0500 Received: from mail-qc0-x22a.google.com ([2607:f8b0:400d:c01::22a]:58357) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKslv-0001mc-OP for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:04:51 -0500 Received: by mail-qc0-f170.google.com with SMTP id e9so1286671qcy.1 for ; Tue, 04 Mar 2014 09:04:51 -0800 (PST) Sender: Richard Henderson From: Richard Henderson Date: Tue, 4 Mar 2014 09:04:05 -0800 Message-Id: <1393952650-16802-6-git-send-email-rth@twiddle.net> In-Reply-To: <1393952650-16802-1-git-send-email-rth@twiddle.net> References: <1393952650-16802-1-git-send-email-rth@twiddle.net> Subject: [Qemu-devel] [PATCH 05/10] tcg-aarch64: Don't handle mov/movi in tcg_out_op List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Claudio Fontana 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 e3f55de..8f68450 100644 --- a/tcg/aarch64/tcg-target.c +++ b/tcg/aarch64/tcg-target.c @@ -1157,18 +1157,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); @@ -1332,8 +1320,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(); } } -- 1.8.5.3