From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from ozlabs.org (bilbo.ozlabs.org [203.11.71.1]) (using TLSv1.2 with cipher ADH-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 40c4sp3NMdzF2Tl for ; Thu, 3 May 2018 16:26:22 +1000 (AEST) Date: Thu, 3 May 2018 15:31:17 +1000 From: Paul Mackerras To: wei.guo.simon@gmail.com Cc: kvm-ppc@vger.kernel.org, kvm@vger.kernel.org, linuxppc-dev@lists.ozlabs.org Subject: Re: [PATCH 00/11] KVM: PPC: reconstruct mmio emulation with analyse_instr() Message-ID: <20180503053117.GA6795@fergus.ozlabs.ibm.com> References: <1524657284-16706-1-git-send-email-wei.guo.simon@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii In-Reply-To: <1524657284-16706-1-git-send-email-wei.guo.simon@gmail.com> List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , On Wed, Apr 25, 2018 at 07:54:33PM +0800, wei.guo.simon@gmail.com wrote: > From: Simon Guo > > We already have analyse_instr() which analyzes instructions for the instruction > type, size, addtional flags, etc. What kvmppc_emulate_loadstore() did is somehow > duplicated and it will be good to utilize analyse_instr() to reconstruct the > code. The advantage is that the code logic will be shared and more clean to be > maintained. > > This patch series reconstructs kvmppc_emulate_loadstore() for various load/store > instructions. > > The testcase locates at: > https://github.com/justdoitqd/publicFiles/blob/master/test_mmio.c > > - Tested at both PR/HV KVM. > - Also tested with little endian host & big endian guest. > > Tested instruction list: > lbz lbzu lbzx ld ldbrx > ldu ldx lfd lfdu lfdx > lfiwax lfiwzx lfs lfsu lfsx > lha lhau lhax lhbrx lhz > lhzu lhzx lvx lwax lwbrx > lwz lwzu lwzx lxsdx lxsiwax > lxsiwzx lxsspx lxvd2x lxvdsx lxvw4x > stb stbu stbx std stdbrx > stdu stdx stfd stfdu stfdx > stfiwx stfs stfsx sth sthbrx > sthu sthx stvx stw stwbrx > stwu stwx stxsdx stxsiwx stxsspx > stxvd2x stxvw4x Thanks for doing this. It's nice to see that this makes the code 260 lines smaller. I have some comments on the individual patches, which I will give in replies to those patches. Paul.