qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Subject: [PULL 00/27] tcg/s390x patch queue
Date: Fri,  6 Jan 2023 23:50:51 -0800	[thread overview]
Message-ID: <20230107075118.1814503-1-richard.henderson@linaro.org> (raw)

The following changes since commit aaa90fede5d10e2a3c3fc7f2df608128d2cba761:

  Merge tag 'pull-tcg-20230105' of https://gitlab.com/rth7680/qemu into staging (2023-01-06 15:40:37 +0000)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20230106

for you to fetch changes up to 90497e03ca7432153c5db4a06019265486541d44:

  tcg/s390x: Avoid the constant pool in tcg_out_movi (2023-01-06 23:07:10 +0000)

----------------------------------------------------------------
tcg/s390x improvements:
 - drop support for pre-z196 cpus (eol before 2019)
 - add support for misc-instruction-extensions-3
 - misc cleanups

----------------------------------------------------------------
Richard Henderson (27):
      tcg/s390x: Use register pair allocation for div and mulu2
      tcg/s390x: Remove TCG_REG_TB
      tcg/s390x: Always set TCG_TARGET_HAS_direct_jump
      tcg/s390x: Remove USE_LONG_BRANCHES
      tcg/s390x: Check for long-displacement facility at startup
      tcg/s390x: Check for extended-immediate facility at startup
      tcg/s390x: Check for general-instruction-extension facility at startup
      tcg/s390x: Check for load-on-condition facility at startup
      tcg/s390x: Remove FAST_BCR_SER facility check
      tcg/s390x: Remove DISTINCT_OPERANDS facility check
      tcg/s390x: Use LARL+AGHI for odd addresses
      tcg/s390x: Distinguish RRF-a and RRF-c formats
      tcg/s390x: Distinguish RIE formats
      tcg/s390x: Support MIE2 multiply single instructions
      tcg/s390x: Support MIE2 MGRK instruction
      tcg/s390x: Issue XILF directly for xor_i32
      tcg/s390x: Tighten constraints for or_i64 and xor_i64
      tcg/s390x: Tighten constraints for and_i64
      tcg/s390x: Support MIE3 logical operations
      tcg/s390x: Create tgen_cmp2 to simplify movcond
      tcg/s390x: Generalize movcond implementation
      tcg/s390x: Support SELGR instruction in movcond
      tcg/s390x: Use tgen_movcond_int in tgen_clz
      tcg/s390x: Implement ctpop operation
      tcg/s390x: Tighten constraints for 64-bit compare
      tcg/s390x: Cleanup tcg_out_movi
      tcg/s390x: Avoid the constant pool in tcg_out_movi

 tcg/s390x/tcg-target-con-set.h |   18 +-
 tcg/s390x/tcg-target-con-str.h |   11 +-
 tcg/s390x/tcg-target.h         |   54 +-
 tcg/s390x/tcg-target.c.inc     | 1251 ++++++++++++++++++++--------------------
 4 files changed, 668 insertions(+), 666 deletions(-)


             reply	other threads:[~2023-01-07  7:53 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-07  7:50 Richard Henderson [this message]
2023-01-07  7:50 ` [PULL 01/27] tcg/s390x: Use register pair allocation for div and mulu2 Richard Henderson
2023-01-07  7:50 ` [PULL 02/27] tcg/s390x: Remove TCG_REG_TB Richard Henderson
2023-01-07  7:50 ` [PULL 03/27] tcg/s390x: Always set TCG_TARGET_HAS_direct_jump Richard Henderson
2023-01-07  7:50 ` [PULL 04/27] tcg/s390x: Remove USE_LONG_BRANCHES Richard Henderson
2023-01-07  7:50 ` [PULL 05/27] tcg/s390x: Check for long-displacement facility at startup Richard Henderson
2023-01-07  7:50 ` [PULL 06/27] tcg/s390x: Check for extended-immediate " Richard Henderson
2023-01-07  7:50 ` [PULL 07/27] tcg/s390x: Check for general-instruction-extension " Richard Henderson
2023-01-07  7:50 ` [PULL 08/27] tcg/s390x: Check for load-on-condition " Richard Henderson
2023-01-07  7:51 ` [PULL 09/27] tcg/s390x: Remove FAST_BCR_SER facility check Richard Henderson
2023-01-07  7:51 ` [PULL 10/27] tcg/s390x: Remove DISTINCT_OPERANDS " Richard Henderson
2023-01-07  7:51 ` [PULL 11/27] tcg/s390x: Use LARL+AGHI for odd addresses Richard Henderson
2023-01-07  7:51 ` [PULL 12/27] tcg/s390x: Distinguish RRF-a and RRF-c formats Richard Henderson
2023-01-07  7:51 ` [PULL 13/27] tcg/s390x: Distinguish RIE formats Richard Henderson
2023-01-07  7:51 ` [PULL 14/27] tcg/s390x: Support MIE2 multiply single instructions Richard Henderson
2023-01-07  7:51 ` [PULL 15/27] tcg/s390x: Support MIE2 MGRK instruction Richard Henderson
2023-01-07  7:51 ` [PULL 16/27] tcg/s390x: Issue XILF directly for xor_i32 Richard Henderson
2023-01-07  7:51 ` [PULL 17/27] tcg/s390x: Tighten constraints for or_i64 and xor_i64 Richard Henderson
2023-01-07  7:51 ` [PULL 18/27] tcg/s390x: Tighten constraints for and_i64 Richard Henderson
2023-01-07  7:51 ` [PULL 19/27] tcg/s390x: Support MIE3 logical operations Richard Henderson
2023-01-07  7:51 ` [PULL 20/27] tcg/s390x: Create tgen_cmp2 to simplify movcond Richard Henderson
2023-01-07  7:51 ` [PULL 21/27] tcg/s390x: Generalize movcond implementation Richard Henderson
2023-01-07  7:51 ` [PULL 22/27] tcg/s390x: Support SELGR instruction in movcond Richard Henderson
2023-01-07  7:51 ` [PULL 23/27] tcg/s390x: Use tgen_movcond_int in tgen_clz Richard Henderson
2023-01-07  7:51 ` [PULL 24/27] tcg/s390x: Implement ctpop operation Richard Henderson
2023-01-07  7:51 ` [PULL 25/27] tcg/s390x: Tighten constraints for 64-bit compare Richard Henderson
2023-01-07  7:51 ` [PULL 26/27] tcg/s390x: Cleanup tcg_out_movi Richard Henderson
2023-01-07  7:51 ` [PULL 27/27] tcg/s390x: Avoid the constant pool in tcg_out_movi Richard Henderson
2023-01-08 14:27 ` [PULL 00/27] tcg/s390x patch queue Peter Maydell

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=20230107075118.1814503-1-richard.henderson@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=qemu-devel@nongnu.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).