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, aneesh.kumar@linux.vnet.ibm.com,
benh@kernel.crashing.org
Subject: Re: [Qemu-devel] [PATCH v2 0/8] POWER9 TCG enablements - part2
Date: Fri, 29 Jul 2016 14:35:40 +1000 [thread overview]
Message-ID: <20160729043540.GL2588@voom.fritz.box> (raw)
In-Reply-To: <1469729658-4832-1-git-send-email-nikunj@linux.vnet.ibm.com>
[-- Attachment #1: Type: text/plain, Size: 2696 bytes --]
On Thu, Jul 28, 2016 at 11:44:10PM +0530, Nikunj A Dadhania wrote:
> This series contains 11 new instructions for POWER9 described in ISA3.0.
>
> Patches:
> 01-02: Changes following instructions:
> divd[u][o][.]: Divide Doubleword Signed/Unsigned
> divw[u][o][.]: Divide Word Signed/Unsigned
> 03: dtstsfi[q] : DFP Test Significance Immediate [Quad]
> 04: vabsdub : Vector Absolute Difference Unsigned Byte
> vabsduh : Vector Absolute Difference Unsigned Halfword
> vabsduw : Vector Absolute Difference Unsigned Word
> 05: vcmpnezb[.] : Vector Compare Not Equal or Zero Byte
> vcmpnezh[.] : Vector Compare Not Equal or Zero Halfword
> vcmpnezw[.] : Vector Compare Not Equal or Zero Word
> 06: vslv : Vector Shift Left Variable
> 07: vsrv : Vector Shift Right Variable
> 08: extswsli : Extend Sign Word & Shift Left Immediate
>
> Both part1 and part2 pushed here:
> https://github.com/nikunjad/qemu/tree/p9-tcg
Applied to ppc-for-2.8, thanks.
>
> Changelog:
> v1:
> * vabsu*: drop abs() and do explicit operation
> * vcmpnez*: introduce etype to avoid widening/truncating
> * extswsli: drop the condition check
>
> v0:
> * Introduce helpers for ISA300 ops
> * vabsdu*: drop etype from implementation
> * vcmpnez*: collapse the switch case
> * vsrv: use reverse traversal to get rid of temporary array
> * Include divd/w in this series, as part1 mostly is pushed.
>
> Nikunj A Dadhania (3):
> target-ppc: implement branch-less divw[o][.]
> target-ppc: implement branch-less divd[o][.]
> target-ppc: add extswsli[.] instruction
>
> Sandipan Das (2):
> target-ppc: add dtstsfi[q] instructions
> target-ppc: add vabsdu[b,h,w] instructions
>
> Swapnil Bokade (1):
> target-ppc: add vcmpnez[b,h,w][.] instructions
>
> Vivek Andrew Sha (2):
> target-ppc: add vslv instruction
> target-ppc: add vsrv instruction
>
> target-ppc/dfp_helper.c | 35 ++++++++++++
> target-ppc/helper.h | 13 +++++
> target-ppc/int_helper.c | 91 +++++++++++++++++++++++++++++
> target-ppc/translate.c | 124 +++++++++++++++++++++++++---------------
> target-ppc/translate/dfp-impl.c | 20 +++++++
> target-ppc/translate/dfp-ops.c | 14 +++++
> target-ppc/translate/vmx-impl.c | 14 +++++
> target-ppc/translate/vmx-ops.c | 20 ++++++-
> 8 files changed, 281 insertions(+), 50 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-07-29 4:52 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-28 18:14 [Qemu-devel] [PATCH v2 0/8] POWER9 TCG enablements - part2 Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 1/8] target-ppc: implement branch-less divw[o][.] Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 2/8] target-ppc: implement branch-less divd[o][.] Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 3/8] target-ppc: add dtstsfi[q] instructions Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 4/8] target-ppc: add vabsdu[b, h, w] instructions Nikunj A Dadhania
2016-07-29 1:01 ` Richard Henderson
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 5/8] target-ppc: add vcmpnez[b, h, w][.] instructions Nikunj A Dadhania
2016-07-29 1:02 ` Richard Henderson
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 6/8] target-ppc: add vslv instruction Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 7/8] target-ppc: add vsrv instruction Nikunj A Dadhania
2016-07-28 18:14 ` [Qemu-devel] [PATCH v2 8/8] target-ppc: add extswsli[.] instruction Nikunj A Dadhania
2016-07-29 4:35 ` 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=20160729043540.GL2588@voom.fritz.box \
--to=david@gibson.dropbear.id.au \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=benh@kernel.crashing.org \
--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).