From patchwork Fri Mar 12 14:58:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Richard Henderson X-Patchwork-Id: 48368 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 A834CB7CE2 for ; Wed, 24 Mar 2010 09:39:08 +1100 (EST) Received: from localhost ([127.0.0.1]:44929 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuCka-0007Sy-Pi for incoming@patchwork.ozlabs.org; Tue, 23 Mar 2010 18:39:04 -0400 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NuCjy-0007Sb-MN for qemu-devel@nongnu.org; Tue, 23 Mar 2010 18:38:26 -0400 Received: from [140.186.70.92] (port=53831 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NuCjw-0007SH-Jb for qemu-devel@nongnu.org; Tue, 23 Mar 2010 18:38:25 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1NuCjv-0003Lq-7I for qemu-devel@nongnu.org; Tue, 23 Mar 2010 18:38:24 -0400 Received: from are.twiddle.net ([75.149.56.221]:45776) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1NuCjv-0003LD-12 for qemu-devel@nongnu.org; Tue, 23 Mar 2010 18:38:23 -0400 Received: by are.twiddle.net (Postfix, from userid 5000) id D2E7D992; Tue, 23 Mar 2010 15:38:20 -0700 (PDT) Message-Id: In-Reply-To: References: From: Richard Henderson Date: Fri, 12 Mar 2010 15:58:08 +0100 To: qemu-devel@nongnu.org X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: aurelien@aurel32.net Subject: [Qemu-devel] [PATCH 1/2] tcg-hppa: Compute is_write in cpu_signal_handler. 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 --- cpu-exec.c | 38 +++++++++++++++++++++++++++++++------- 1 files changed, 31 insertions(+), 7 deletions(-) diff --git a/cpu-exec.c b/cpu-exec.c index bcfcda2..14204f4 100644 --- a/cpu-exec.c +++ b/cpu-exec.c @@ -1193,15 +1193,39 @@ int cpu_signal_handler(int host_signum, void *pinfo, { struct siginfo *info = pinfo; struct ucontext *uc = puc; - unsigned long pc; - int is_write; + unsigned long pc = uc->uc_mcontext.sc_iaoq[0]; + uint32_t insn = *(uint32_t *)pc; + int is_write = 0; + + /* XXX: need kernel patch to get write flag faster. */ + switch (insn >> 26) { + case 0x1a: /* STW */ + case 0x19: /* STH */ + case 0x18: /* STB */ + case 0x1b: /* STWM */ + is_write = 1; + break; + + case 0x09: /* CSTWX, FSTWX, FSTWS */ + case 0x0b: /* CSTDX, FSTDX, FSTDS */ + /* Distinguish from coprocessor load ... */ + is_write = (insn >> 9) & 1; + break; + + case 0x03: + switch ((insn >> 6) & 15) { + case 0xa: /* STWS */ + case 0x9: /* STHS */ + case 0x8: /* STBS */ + case 0xe: /* STWAS */ + case 0xc: /* STBYS */ + is_write = 1; + } + break; + } - pc = uc->uc_mcontext.sc_iaoq[0]; - /* FIXME: compute is_write */ - is_write = 0; return handle_cpu_signal(pc, (unsigned long)info->si_addr, - is_write, - &uc->uc_sigmask, puc); + is_write, &uc->uc_sigmask, puc); } #else