qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Thomas Huth <thuth@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-s390x@nongnu.org
Subject: Re: [PULL 00/15] s390x patches
Date: Wed, 4 May 2022 15:43:55 -0500	[thread overview]
Message-ID: <410068b2-1618-a370-a8ad-1f14bf677705@linaro.org> (raw)
In-Reply-To: <20220504110521.343519-1-thuth@redhat.com>

On 5/4/22 06:05, Thomas Huth wrote:
> The following changes since commit 2e3408b3cc7de4e87a9adafc8c19bfce3abec947:
> 
>    Merge tag 'misc-pull-request' of gitlab.com:marcandre.lureau/qemu into staging (2022-05-03 09:13:17 -0700)
> 
> are available in the Git repository at:
> 
>    https://gitlab.com/thuth/qemu.git tags/pull-request-2022-05-04
> 
> for you to fetch changes up to 0c5c4d5b3c1cb594e808dd4120cc56ee28fa31dd:
> 
>    tests/tcg/s390x: Use a different PCRel32 notation in branch-relative-long.c (2022-05-04 08:47:19 +0200)
> 
> ----------------------------------------------------------------
> * Silence the warning about the msa5 feature when using the "max" CPU on s390x
> * Implement the s390x Vector-Enhancements Facility 2
> * Remove the old libopcode-based s390 disassembler
> * Fix branch-relative-long test compilation with Clang

Applied, thanks.  Please update https://wiki.qemu.org/ChangeLog/7.1 as appropriate.


r~


> 
> ----------------------------------------------------------------
> David Hildenbrand (2):
>        s390x/cpu_models: drop "msa5" from the TCG "max" model
>        s390x/cpu_models: make "max" match the unmodified "qemu" CPU model under TCG
> 
> David Miller (9):
>        target/s390x: vxeh2: vector convert short/32b
>        target/s390x: vxeh2: vector string search
>        target/s390x: vxeh2: Update for changes to vector shifts
>        target/s390x: vxeh2: vector shift double by bit
>        target/s390x: vxeh2: vector {load, store} elements reversed
>        target/s390x: vxeh2: vector {load, store} byte reversed elements
>        target/s390x: vxeh2: vector {load, store} byte reversed element
>        target/s390x: add S390_FEAT_VECTOR_ENH2 to qemu CPU model
>        tests/tcg/s390x: Tests for Vector Enhancements Facility 2
> 
> Ilya Leoshkevich (1):
>        tests/tcg/s390x: Use a different PCRel32 notation in branch-relative-long.c
> 
> Richard Henderson (2):
>        target/s390x: Fix writeback to v1 in helper_vstl
>        tcg: Implement tcg_gen_{h,w}swap_{i32,i64}
> 
> Thomas Huth (1):
>        disas: Remove old libopcode s390 disassembler
> 
>   include/disas/dis-asm.h                |    1 -
>   include/tcg/tcg-op.h                   |    6 +
>   target/s390x/helper.h                  |   13 +
>   tests/tcg/s390x/vx.h                   |   19 +
>   disas.c                                |    1 -
>   disas/s390.c                           | 1892 --------------------------------
>   hw/s390x/s390-virtio-ccw.c             |    3 +
>   target/s390x/cpu.c                     |    1 -
>   target/s390x/cpu_models.c              |   26 +-
>   target/s390x/gen-features.c            |   14 +-
>   target/s390x/tcg/translate.c           |    3 +-
>   target/s390x/tcg/vec_fpu_helper.c      |   31 +
>   target/s390x/tcg/vec_helper.c          |    2 -
>   target/s390x/tcg/vec_int_helper.c      |   55 +
>   target/s390x/tcg/vec_string_helper.c   |   99 ++
>   tcg/tcg-op.c                           |   30 +
>   tests/tcg/s390x/branch-relative-long.c |    4 +-
>   tests/tcg/s390x/vxeh2_vcvt.c           |   88 ++
>   tests/tcg/s390x/vxeh2_vlstr.c          |  139 +++
>   tests/tcg/s390x/vxeh2_vs.c             |   93 ++
>   target/s390x/tcg/translate_vx.c.inc    |  461 +++++++-
>   MAINTAINERS                            |    2 -
>   disas/meson.build                      |    1 -
>   target/s390x/tcg/insn-data.def         |   40 +-
>   tests/tcg/s390x/Makefile.target        |    8 +
>   25 files changed, 1053 insertions(+), 1979 deletions(-)
>   create mode 100644 tests/tcg/s390x/vx.h
>   delete mode 100644 disas/s390.c
>   create mode 100644 tests/tcg/s390x/vxeh2_vcvt.c
>   create mode 100644 tests/tcg/s390x/vxeh2_vlstr.c
>   create mode 100644 tests/tcg/s390x/vxeh2_vs.c
> 



      parent reply	other threads:[~2022-05-04 20:45 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-04 11:05 [PULL 00/15] s390x patches Thomas Huth
2022-05-04 11:05 ` [PULL 01/15] target/s390x: Fix writeback to v1 in helper_vstl Thomas Huth
2022-05-04 11:05 ` [PULL 02/15] s390x/cpu_models: drop "msa5" from the TCG "max" model Thomas Huth
2022-05-04 11:05 ` [PULL 03/15] s390x/cpu_models: make "max" match the unmodified "qemu" CPU model under TCG Thomas Huth
2022-05-04 11:05 ` [PULL 04/15] tcg: Implement tcg_gen_{h,w}swap_{i32,i64} Thomas Huth
2022-05-04 11:05 ` [PULL 05/15] target/s390x: vxeh2: vector convert short/32b Thomas Huth
2022-05-04 11:05 ` [PULL 06/15] target/s390x: vxeh2: vector string search Thomas Huth
2022-05-13 15:54   ` Peter Maydell
2022-05-13 16:16     ` Richard Henderson
2022-05-13 16:21       ` Peter Maydell
2022-05-04 11:05 ` [PULL 07/15] target/s390x: vxeh2: Update for changes to vector shifts Thomas Huth
2022-05-04 11:05 ` [PULL 08/15] target/s390x: vxeh2: vector shift double by bit Thomas Huth
2022-05-04 11:05 ` [PULL 09/15] target/s390x: vxeh2: vector {load, store} elements reversed Thomas Huth
2022-05-04 11:05 ` [PULL 10/15] target/s390x: vxeh2: vector {load, store} byte reversed elements Thomas Huth
2022-05-04 11:05 ` [PULL 11/15] target/s390x: vxeh2: vector {load, store} byte reversed element Thomas Huth
2022-05-04 11:05 ` [PULL 12/15] target/s390x: add S390_FEAT_VECTOR_ENH2 to qemu CPU model Thomas Huth
2022-05-04 11:05 ` [PULL 13/15] tests/tcg/s390x: Tests for Vector Enhancements Facility 2 Thomas Huth
2022-05-04 11:05 ` [PULL 14/15] disas: Remove old libopcode s390 disassembler Thomas Huth
2022-05-04 11:05 ` [PULL 15/15] tests/tcg/s390x: Use a different PCRel32 notation in branch-relative-long.c Thomas Huth
2022-05-04 20:43 ` Richard Henderson [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=410068b2-1618-a370-a8ad-1f14bf677705@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=thuth@redhat.com \
    /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).