qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: David Gibson <david@gibson.dropbear.id.au>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Cc: qemu-devel@nongnu.org, qemu-ppc@nongnu.org, richard.henderson@linaro.org
Subject: Re: [Qemu-devel] [PATCH 00/17] target/ppc: convert instructions to use TCG vector operations
Date: Mon, 18 Feb 2019 11:16:06 +1100	[thread overview]
Message-ID: <20190218001606.GA3093@umbus.fritz.box> (raw)
In-Reply-To: <20190215100058.20015-1-mark.cave-ayland@ilande.co.uk>

[-- Attachment #1: Type: text/plain, Size: 2540 bytes --]

On Fri, Feb 15, 2019 at 10:00:41AM +0000, Mark Cave-Ayland wrote:
> Now that all the pre-requisite patches and bugfixes have been merged, here is
> the remainder of Richard's "tcg, target/ppc vector improvements" patchset that
> converts various PPC VMX/VSX instructions over to use TCG vector operations.
> 
> Compared to the original posted patchset I've made a few minor changes:
>   - A fix to the boffs calculation for little-endian hosts in patch 4
>     (already reported and fixed on-list)
>   - A formatting fix to patch 8 to keep checkpatch happy
>   - Added David's A-B tags from the original series
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>

Applied to ppc-for-4.0, thanks.

> 
> 
> Mark Cave-Ayland (2):
>   target/ppc: convert VMX logical instructions to use vector operations
>   target/ppc: convert vaddu[b,h,w,d] and vsubu[b,h,w,d] over to use
>     vector operations
> 
> Richard Henderson (15):
>   target/ppc: convert vspltis[bhw] to use vector operations
>   target/ppc: convert vsplt[bhw] to use vector operations
>   target/ppc: convert VSX logical operations to vector operations
>   target/ppc: convert xxspltib to vector operations
>   target/ppc: convert xxspltw to vector operations
>   target/ppc: convert xxsel to vector operations
>   target/ppc: Pass integer to helper_mtvscr
>   target/ppc: Use helper_mtvscr for reset and gdb
>   target/ppc: Remove vscr_nj and vscr_sat
>   target/ppc: Add helper_mfvscr
>   target/ppc: Use mtvscr/mfvscr for vmstate
>   target/ppc: Add set_vscr_sat
>   target/ppc: Split out VSCR_SAT to a vector field
>   target/ppc: convert vadd*s and vsub*s to vector operations
>   target/ppc: convert vmin* and vmax* to vector operations
> 
>  target/ppc/arch_dump.c              |   3 +-
>  target/ppc/cpu.h                    |   6 +-
>  target/ppc/helper.h                 |  57 ++------
>  target/ppc/int_helper.c             | 129 +++++-------------
>  target/ppc/machine.c                |  44 ++++++-
>  target/ppc/translate.c              |   1 +
>  target/ppc/translate/vmx-impl.inc.c | 251 +++++++++++++++++++-----------------
>  target/ppc/translate/vsx-impl.inc.c | 147 +++++++++------------
>  target/ppc/translate_init.inc.c     |   7 +-
>  9 files changed, 290 insertions(+), 355 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: 833 bytes --]

      parent reply	other threads:[~2019-02-18  0:23 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-15 10:00 [Qemu-devel] [PATCH 00/17] target/ppc: convert instructions to use TCG vector operations Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 01/17] target/ppc: convert VMX logical instructions to use " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 02/17] target/ppc: convert vaddu[b, h, w, d] and vsubu[b, h, w, d] over " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 03/17] target/ppc: convert vspltis[bhw] " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 04/17] target/ppc: convert vsplt[bhw] " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 05/17] target/ppc: convert VSX logical operations to " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 06/17] target/ppc: convert xxspltib " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 07/17] target/ppc: convert xxspltw " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 08/17] target/ppc: convert xxsel " Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 09/17] target/ppc: Pass integer to helper_mtvscr Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 10/17] target/ppc: Use helper_mtvscr for reset and gdb Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 11/17] target/ppc: Remove vscr_nj and vscr_sat Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 12/17] target/ppc: Add helper_mfvscr Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 13/17] target/ppc: Use mtvscr/mfvscr for vmstate Mark Cave-Ayland
2019-02-15 11:14   ` [Qemu-devel] [Qemu-ppc] " BALATON Zoltan
2019-02-15 10:00 ` [Qemu-devel] [PATCH 14/17] target/ppc: Add set_vscr_sat Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 15/17] target/ppc: Split out VSCR_SAT to a vector field Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 16/17] target/ppc: convert vadd*s and vsub*s to vector operations Mark Cave-Ayland
2019-02-15 10:00 ` [Qemu-devel] [PATCH 17/17] target/ppc: convert vmin* and vmax* " Mark Cave-Ayland
2019-02-18  0:16 ` 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=20190218001606.GA3093@umbus.fritz.box \
    --to=david@gibson.dropbear.id.au \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    --cc=richard.henderson@linaro.org \
    /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).