From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33800) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKsmF-0002F6-4D for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:05:16 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WKsm6-0001sB-2c for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:05:08 -0500 Received: from mail-qa0-x235.google.com ([2607:f8b0:400d:c00::235]:51264) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WKsm5-0001pX-VA for qemu-devel@nongnu.org; Tue, 04 Mar 2014 12:05:02 -0500 Received: by mail-qa0-f53.google.com with SMTP id w8so3757044qac.12 for ; Tue, 04 Mar 2014 09:05:01 -0800 (PST) Sender: Richard Henderson From: Richard Henderson Date: Tue, 4 Mar 2014 09:04:10 -0800 Message-Id: <1393952650-16802-11-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 10/10] tcg-aarch64: Remove nop from qemu_st slow path List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Claudio Fontana Commit 023261ef851b22a04f6c5d76da870051031757a6 failed to remove a nop that's no longer required. Signed-off-by: Richard Henderson --- tcg/aarch64/tcg-target.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tcg/aarch64/tcg-target.c b/tcg/aarch64/tcg-target.c index d75d685..f43eb67 100644 --- a/tcg/aarch64/tcg-target.c +++ b/tcg/aarch64/tcg-target.c @@ -764,11 +764,6 @@ static inline void tcg_out_subi(TCGContext *s, TCGType ext, tcg_out32(s, base | aimm | (rn << 5) | rd); } -static inline void tcg_out_nop(TCGContext *s) -{ - tcg_out32(s, 0xd503201f); -} - #ifdef CONFIG_SOFTMMU /* helper signature: helper_ret_ld_mmu(CPUState *env, target_ulong addr, * int mmu_idx, uintptr_t ra) @@ -822,8 +817,6 @@ static void tcg_out_qemu_st_slow_path(TCGContext *s, TCGLabelQemuLdst *lb) tcg_out_movi(s, TCG_TYPE_I64, TCG_REG_TMP, (intptr_t)qemu_st_helpers[lb->opc & 3]); tcg_out_callr(s, TCG_REG_TMP); - - tcg_out_nop(s); tcg_out_goto(s, (tcg_target_long)lb->raddr); } -- 1.8.5.3