From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=40441 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Phdto-00075a-Kj for qemu-devel@nongnu.org; Tue, 25 Jan 2011 03:05:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Phdtm-0002XT-QS for qemu-devel@nongnu.org; Tue, 25 Jan 2011 03:05:11 -0500 Received: from hall.aurel32.net ([88.191.126.93]:47402) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Phdtm-0002XM-IV for qemu-devel@nongnu.org; Tue, 25 Jan 2011 03:05:10 -0500 Date: Tue, 25 Jan 2011 09:05:10 +0100 From: Aurelien Jarno Subject: Re: [Qemu-devel] [PATCH] target-sh4: update PTEH upon MMU exception Message-ID: <20110125080510.GD23331@hall.aurel32.net> References: <1295931077-29499-1-git-send-email-gnurou@gmail.com> <1295931077-29499-2-git-send-email-gnurou@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <1295931077-29499-2-git-send-email-gnurou@gmail.com> Sender: Aurelien Jarno List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexandre Courbot Cc: qemu-devel@nongnu.org On Tue, Jan 25, 2011 at 01:51:17PM +0900, Alexandre Courbot wrote: > Update the PTEH register to contain the VPN at which an MMU > exception occured as specified by the SH4 reference. > --- > target-sh4/helper.c | 3 +++ > 1 files changed, 3 insertions(+), 0 deletions(-) > > diff --git a/target-sh4/helper.c b/target-sh4/helper.c > index 2d76f22..c34d2f5 100644 > --- a/target-sh4/helper.c > +++ b/target-sh4/helper.c > @@ -453,6 +453,9 @@ int cpu_sh4_handle_mmu_fault(CPUState * env, target_ulong address, int rw, > > if (ret != MMU_OK) { > env->tea = address; > + if (ret != MMU_DTLB_MULTIPLE && ret != MMU_ITLB_MULTIPLE) > + env->pteh = (env->pteh & PTEH_ASID_MASK) | > + (address & PTEH_VPN_MASK); The code in itself is correct, however you should follow CODING_STYLE and write the if the following way: if () { } > switch (ret) { > case MMU_ITLB_MISS: > case MMU_DTLB_MISS_READ: > -- > 1.7.3.5 > > > -- Aurelien Jarno GPG: 1024D/F1BCDB73 aurelien@aurel32.net http://www.aurel32.net