From patchwork Thu Feb 24 11:54:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Aurelien Jarno X-Patchwork-Id: 84390 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9BA46B70CE for ; Thu, 24 Feb 2011 22:55:45 +1100 (EST) Received: from localhost ([127.0.0.1]:41218 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PsZnE-0000CW-Di for incoming@patchwork.ozlabs.org; Thu, 24 Feb 2011 06:55:36 -0500 Received: from [140.186.70.92] (port=35073 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PsZmi-0000CP-Dj for qemu-devel@nongnu.org; Thu, 24 Feb 2011 06:55:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PsZmh-0001M3-F2 for qemu-devel@nongnu.org; Thu, 24 Feb 2011 06:55:04 -0500 Received: from hall.aurel32.net ([88.191.126.93]:54699) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PsZmh-0001L3-79 for qemu-devel@nongnu.org; Thu, 24 Feb 2011 06:55:03 -0500 Received: from [2001:470:d4ed:0:5e26:aff:fe2b:6f5b] (helo=volta.aurel32.net) by hall.aurel32.net with esmtpsa (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1PsZme-0002M6-Jj; Thu, 24 Feb 2011 12:55:00 +0100 Received: from aurel32 by volta.aurel32.net with local (Exim 4.72) (envelope-from ) id 1PsZm7-0002ed-4v; Thu, 24 Feb 2011 12:54:27 +0100 From: Aurelien Jarno To: qemu-devel@nongnu.org Date: Thu, 24 Feb 2011 12:54:17 +0100 Message-Id: <1298548457-10157-1-git-send-email-aurelien@aurel32.net> X-Mailer: git-send-email 1.7.2.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 88.191.126.93 Cc: Paolo Bonzini , Aurelien Jarno Subject: [Qemu-devel] [PATCH] target-sh4: move intr_at_halt out of cpu_halted() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org All targets except SH4 have the same cpu_halted() routine, and it has only one caller. It is therefore a good candidate for inlining. The difference is the handling of the intr_at_halt, which is necessary to ignore SR.BL when sleeping. Move intr_at_halt handling out of it, by setting this variable while executing the sleep instruction, and clearing it when the CPU has been woken-up by an interrupt, whatever the state of SR.BL. Cc: Paolo Bonzini Signed-off-by: Aurelien Jarno --- target-sh4/exec.h | 1 - target-sh4/helper.c | 2 +- target-sh4/op_helper.c | 1 + 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/target-sh4/exec.h b/target-sh4/exec.h index 2999c02..61bc121 100644 --- a/target-sh4/exec.h +++ b/target-sh4/exec.h @@ -37,7 +37,6 @@ static inline int cpu_halted(CPUState *env) { return 0; if (cpu_has_work(env)) { env->halted = 0; - env->intr_at_halt = 1; return 0; } return EXCP_HALTED; diff --git a/target-sh4/helper.c b/target-sh4/helper.c index b9fcba6..1f0d15b 100644 --- a/target-sh4/helper.c +++ b/target-sh4/helper.c @@ -93,8 +93,8 @@ void do_interrupt(CPUState * env) if (do_irq && !env->intr_at_halt) { return; /* masked */ } - env->intr_at_halt = 0; } + env->intr_at_halt = 0; if (do_irq) { irq_vector = sh_intc_get_pending_vector(env->intc_handle, diff --git a/target-sh4/op_helper.c b/target-sh4/op_helper.c index 30f9842..2cd7fed 100644 --- a/target-sh4/op_helper.c +++ b/target-sh4/op_helper.c @@ -119,6 +119,7 @@ void helper_debug(void) void helper_sleep(uint32_t next_pc) { env->halted = 1; + env->intr_at_halt = 1; env->exception_index = EXCP_HLT; env->pc = next_pc; cpu_loop_exit();