From: David Gibson <david@gibson.dropbear.id.au>
To: Nikunj A Dadhania <nikunj@linux.vnet.ibm.com>
Cc: qemu-ppc@nongnu.org, rth@twiddle.net, qemu-devel@nongnu.org,
bharata@linux.vnet.ibm.com
Subject: Re: [Qemu-devel] [PATCH v1 ppc-for-2.9 00/10] POWER9 TCG enablements - part8
Date: Thu, 24 Nov 2016 11:56:48 +1100 [thread overview]
Message-ID: <20161124005648.GJ17795@umbus.fritz.box> (raw)
In-Reply-To: <1479901039-7113-1-git-send-email-nikunj@linux.vnet.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 3307 bytes --]
On Wed, Nov 23, 2016 at 05:07:09PM +0530, Nikunj A Dadhania wrote:
> This series contains 18 new instructions for POWER9 ISA3.0
> Vector Extract Left/Right Indexed
> VSX Scalar Compare Exponents
> VSX Scalar Compare Quad-Precision
> Load/Store VSX Vector
> Load/Store VSX Scalar
>
> Changelog:
> v0:
> * Change dq/ds-form decoding for primary opcode 0x3D
> * Rename CR Field defines, as at every place it was
> using bit shifts.
> * Use symbolic constants in xscmp*
> * Fix bug in exception handling for QNaN
> * Define EXTRACT128 within CONFIG_INT128
I've applied patches 1..8 to ppc-for-2.9. Patches 9 & 10 can still do
with some improvement, I think.
>
> Patches
> =======
> 01-03: Consolidation/Fixes
> 04:
> xscmpexpdp: VSX Scalar Compare Exponents Double-Precision
> xscmpexpqp: VSX Scalar Compare Exponents Quad-Precision
> 05:
> xscmpoqp: VSX Scalar Compare Ordered Quad-Precision
> xscmpuqp: VSX Scalar Compare Unordered Quad-Precision
> 06:
> lxsd: Load VSX Scalar Dword
> lxssp: Load VSX Scalar Single Precision
> 07:
> stxsd: Store VSX Scalar Dword
> stxssp: Store VSX Scalar Single Precision
> 08:
> lxv: Load VSX Vector
> lxvx: Load VSX Vector Indexed
> stxv: Store VSX Vector
> stxvx: Store VSX Vector Indexed
> 09:
> vextublx: Vector Extract Unsigned Byte Left
> vextuhlx: Vector Extract Unsigned Halfword Left
> vextuwlx: Vector Extract Unsigned Word Left
> 10:
> vextubrx: Vector Extract Unsigned Byte Right-Indexed
> vextuhrx: Vector Extract Unsigned Halfword Right-Indexed
> vextuwrx: Vector Extract Unsigned Word Right-Indexed
>
> Avinesh Kumar (1):
> target-ppc: add vextu[bhw]lx instructions
>
> Bharata B Rao (4):
> target-ppc: Consolidate instruction decode helpers
> target-ppc: Fix xscmpodp and xscmpudp instructions
> target-ppc: Add xscmpexp[dp,qp] instructions
> target-ppc: Add xscmpoqp and xscmpuqp instructions
>
> Hariharan T.S (1):
> target-ppc: add vextu[bhw]rx instructions
>
> Nikunj A Dadhania (4):
> target-ppc: rename CRF_* defines as CRF_*_BIT
> target-ppc: implement lxsd and lxssp instructions
> target-ppc: implement stxsd and stxssp
> target-ppc: implement lxv/lxvx and stxv/stxvx
>
> target-ppc/cpu.h | 21 ++--
> target-ppc/fpu_helper.c | 169 ++++++++++++++++++++++----
> target-ppc/helper.h | 10 ++
> target-ppc/int_helper.c | 155 +++++++++++++++++++++---
> target-ppc/internal.h | 152 ++++++++++++++++++++++++
> target-ppc/translate.c | 230 +++++++++++-------------------------
> target-ppc/translate/fp-ops.inc.c | 2 -
> target-ppc/translate/vmx-impl.inc.c | 23 ++++
> target-ppc/translate/vmx-ops.inc.c | 8 +-
> target-ppc/translate/vsx-impl.inc.c | 96 +++++++++++++++
> target-ppc/translate/vsx-ops.inc.c | 10 ++
> 11 files changed, 666 insertions(+), 210 deletions(-)
>
--
David Gibson | I'll have my music baroque, and my code
david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
prev parent reply other threads:[~2016-11-24 1:28 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-23 11:37 [Qemu-devel] [PATCH v1 ppc-for-2.9 00/10] POWER9 TCG enablements - part8 Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 01/10] target-ppc: Consolidate instruction decode helpers Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 02/10] target-ppc: rename CRF_* defines as CRF_*_BIT Nikunj A Dadhania
2016-11-24 0:23 ` David Gibson
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 03/10] target-ppc: Fix xscmpodp and xscmpudp instructions Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 04/10] target-ppc: Add xscmpexp[dp, qp] instructions Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 05/10] target-ppc: Add xscmpoqp and xscmpuqp instructions Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 06/10] target-ppc: implement lxsd and lxssp instructions Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 07/10] target-ppc: implement stxsd and stxssp Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 08/10] target-ppc: implement lxv/lxvx and stxv/stxvx Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 09/10] target-ppc: add vextu[bhw]lx instructions Nikunj A Dadhania
2016-11-24 1:02 ` David Gibson
2016-11-24 5:53 ` Nikunj A Dadhania
2016-11-24 8:14 ` Richard Henderson
2016-11-24 8:22 ` Nikunj A Dadhania
2016-11-23 11:37 ` [Qemu-devel] [PATCH v1 10/10] target-ppc: add vextu[bhw]rx instructions Nikunj A Dadhania
2016-11-24 0:56 ` David Gibson [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161124005648.GJ17795@umbus.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=bharata@linux.vnet.ibm.com \
--cc=nikunj@linux.vnet.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=rth@twiddle.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).