From patchwork Mon Dec 10 02:22:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: liguang X-Patchwork-Id: 204810 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id DF2972C026A for ; Mon, 10 Dec 2012 13:25:31 +1100 (EST) Received: from localhost ([::1]:50691 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tht3i-0007y8-1y for incoming@patchwork.ozlabs.org; Sun, 09 Dec 2012 21:25:30 -0500 Received: from eggs.gnu.org ([208.118.235.92]:38235) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tht3J-0007B4-UU for qemu-devel@nongnu.org; Sun, 09 Dec 2012 21:25:07 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tht3I-000616-Rl for qemu-devel@nongnu.org; Sun, 09 Dec 2012 21:25:05 -0500 Received: from [222.73.24.84] (port=62960 helo=song.cn.fujitsu.com) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tht3I-0005r7-Hx for qemu-devel@nongnu.org; Sun, 09 Dec 2012 21:25:04 -0500 X-IronPort-AV: E=Sophos;i="4.84,249,1355068800"; d="scan'208";a="6362479" Received: from unknown (HELO tang.cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 10 Dec 2012 10:23:09 +0800 Received: from fnstmail02.fnst.cn.fujitsu.com (tang.cn.fujitsu.com [127.0.0.1]) by tang.cn.fujitsu.com (8.14.3/8.13.1) with ESMTP id qBA2PVhu019130; Mon, 10 Dec 2012 10:25:31 +0800 Received: from liguang.fnst.cn.fujitsu.com ([10.167.225.128]) by fnstmail02.fnst.cn.fujitsu.com (Lotus Domino Release 8.5.3) with ESMTP id 2012121010241327-317651 ; Mon, 10 Dec 2012 10:24:13 +0800 From: liguang To: ehabkost@redhat.com, imammedo@redhat.com, afaerber@suse.de, qemu-devel@nongnu.org Date: Mon, 10 Dec 2012 10:22:23 +0800 Message-Id: <1355106144-30846-2-git-send-email-lig.fnst@cn.fujitsu.com> X-Mailer: git-send-email 1.7.2.5 In-Reply-To: <1355106144-30846-1-git-send-email-lig.fnst@cn.fujitsu.com> References: <1355106144-30846-1-git-send-email-lig.fnst@cn.fujitsu.com> X-MIMETrack: Itemize by SMTP Server on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/12/10 10:24:13, Serialize by Router on mailserver/fnst(Release 8.5.3|September 15, 2011) at 2012/12/10 10:24:13, Serialize complete at 2012/12/10 10:24:13 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 222.73.24.84 Cc: liguang Subject: [Qemu-devel] [PATCH v4 2/3] target-i386:define hw_{global, local}breakpoint_enabled function 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: liguang --- target-i386/cpu.h | 15 +++++++++++++-- 1 files changed, 13 insertions(+), 2 deletions(-) diff --git a/target-i386/cpu.h b/target-i386/cpu.h index 29245d1..c69f81f 100644 --- a/target-i386/cpu.h +++ b/target-i386/cpu.h @@ -996,9 +996,20 @@ int cpu_x86_handle_mmu_fault(CPUX86State *env, target_ulong addr, #define cpu_handle_mmu_fault cpu_x86_handle_mmu_fault void cpu_x86_set_a20(CPUX86State *env, int a20_state); -static inline int hw_breakpoint_enabled(unsigned long dr7, int index) +static inline bool hw_local_breakpoint_enabled(unsigned long dr7, int index) { - return (dr7 >> (index * 2)) & 3; + return ((dr7 >> (index * 2)) & 1); +} + +static inline bool hw_global_breakpoint_enabled(unsigned long dr7, int index) +{ + return ((dr7 >> (index * 2)) & 2); +} + +static inline bool hw_breakpoint_enabled(unsigned long dr7, int index) +{ + return (hw_global_breakpoint_enabled(dr7, index) || + hw_local_breakpoint_enabled(dr7, index)); } static inline int hw_breakpoint_type(unsigned long dr7, int index)