qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/29] tcg patch queue
@ 2023-10-18 22:25 Richard Henderson
  2023-10-18 22:25 ` [PULL 01/29] tcg/ppc: Untabify tcg-target.c.inc Richard Henderson
                   ` (28 more replies)
  0 siblings, 29 replies; 33+ messages in thread
From: Richard Henderson @ 2023-10-18 22:25 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit ec6f9f135d5e5596ab0258da2ddd048f1fd8c359:

  Merge tag 'migration-20231017-pull-request' of https://gitlab.com/juan.quintela/qemu into staging (2023-10-17 10:06:21 -0400)

are available in the Git repository at:

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

for you to fetch changes up to b540757b7f711eaf069f530916005cf8cfe7c00f:

  target/i386: Use i128 for 128 and 256-bit loads and stores (2023-10-18 12:33:08 -0700)

----------------------------------------------------------------
tcg: Drop unused tcg_temp_free define
tcg: Introduce tcg_use_softmmu
tcg: Optimize past conditional branches
tcg: Use constant zero when expanding with divu2
tcg/ppc: Enable direct branching tcg_out_goto_tb with TCG_REG_TB
tcg/ppc: Use ADDPCIS for power9
tcg/ppc: Use prefixed instructions for power10
tcg/ppc: Disable TCG_REG_TB for Power9/Power10

----------------------------------------------------------------
Jordan Niethe (1):
      tcg/ppc: Enable direct branching tcg_out_goto_tb with TCG_REG_TB

Mike Frysinger (1):
      tcg: drop unused tcg_temp_free define

Richard Henderson (27):
      tcg/ppc: Untabify tcg-target.c.inc
      tcg/ppc: Reinterpret tb-relative to TB+4
      tcg/ppc: Use ADDPCIS in tcg_out_tb_start
      tcg/ppc: Use ADDPCIS in tcg_out_movi_int
      tcg/ppc: Use ADDPCIS for the constant pool
      tcg/ppc: Use ADDPCIS in tcg_out_goto_tb
      tcg/ppc: Use PADDI in tcg_out_movi
      tcg/ppc: Use prefixed instructions in tcg_out_mem_long
      tcg/ppc: Use PLD in tcg_out_movi for constant pool
      tcg/ppc: Use prefixed instructions in tcg_out_dupi_vec
      tcg/ppc: Use PLD in tcg_out_goto_tb
      tcg/ppc: Disable TCG_REG_TB for Power9/Power10
      tcg: Introduce tcg_use_softmmu
      tcg: Provide guest_base fallback for system mode
      tcg/arm: Use tcg_use_softmmu
      tcg/aarch64: Use tcg_use_softmmu
      tcg/i386: Use tcg_use_softmmu
      tcg/loongarch64: Use tcg_use_softmmu
      tcg/mips: Use tcg_use_softmmu
      tcg/ppc: Use tcg_use_softmmu
      tcg/riscv: Do not reserve TCG_GUEST_BASE_REG for guest_base zero
      tcg/riscv: Use tcg_use_softmmu
      tcg/s390x: Use tcg_use_softmmu
      tcg: Use constant zero when expanding with divu2
      tcg: Optimize past conditional branches
      tcg: Add tcg_gen_{ld,st}_i128
      target/i386: Use i128 for 128 and 256-bit loads and stores

 include/tcg/tcg-op-common.h      |   3 +
 include/tcg/tcg-op.h             |   2 -
 include/tcg/tcg.h                |   8 +-
 target/i386/tcg/translate.c      |  63 ++---
 tcg/optimize.c                   |   8 +-
 tcg/tcg-op-ldst.c                |  14 +-
 tcg/tcg-op.c                     |  38 ++-
 tcg/tcg.c                        |  13 +-
 tcg/aarch64/tcg-target.c.inc     | 177 ++++++------
 tcg/arm/tcg-target.c.inc         | 203 +++++++-------
 tcg/i386/tcg-target.c.inc        | 184 +++++++------
 tcg/loongarch64/tcg-target.c.inc | 126 +++++----
 tcg/mips/tcg-target.c.inc        | 231 ++++++++--------
 tcg/ppc/tcg-target.c.inc         | 561 ++++++++++++++++++++++++++-------------
 tcg/riscv/tcg-target.c.inc       | 189 ++++++-------
 tcg/s390x/tcg-target.c.inc       | 161 ++++++-----
 16 files changed, 1093 insertions(+), 888 deletions(-)


^ permalink raw reply	[flat|nested] 33+ messages in thread
* [PULL 00/29] tcg patch queue
@ 2025-06-30 15:28 Richard Henderson
  2025-07-01 11:22 ` Stefan Hajnoczi
  0 siblings, 1 reply; 33+ messages in thread
From: Richard Henderson @ 2025-06-30 15:28 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit aec6836c73403cffa56b9a4c5556451ee16071fe:

  Merge tag 'pull-vfio-20250626' of https://github.com/legoater/qemu into staging (2025-06-26 10:25:01 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 0d0fc3f4658937fb81fcc16a89738e83bd8d4795:

  tcg: Fix constant propagation in tcg_reg_alloc_dup (2025-06-30 07:42:56 -0600)

----------------------------------------------------------------
tcg/optimize: Build and use one's mask in logical operations
tcg/optimize: Use fold_and in do_constant_folding_cond[12]
tcg/optimize: Fold and to extract during optimize
tcg/optimize: Simplify some fold constant checks
tcg/riscv: Fix typo in tgen_extract
tcg: Fix constant propagation in tcg_reg_alloc_dup

----------------------------------------------------------------
Richard Henderson (29):
      tcg/optimize: Introduce arg_const_val
      tcg/optimize: Add one's mask to TempOptInfo
      tcg/optimize: Introduce fold_masks_zosa
      tcg/optimize: Build and use o_bits in fold_and
      tcg/optimize: Build and use o_bits in fold_andc
      tcg/optimize: Build and use z_bits and o_bits in fold_eqv
      tcg/optimize: Build and use z_bits and o_bits in fold_nand
      tcg/optimize: Build and use z_bits and o_bits in fold_nor
      tcg/optimize: Build and use z_bits and o_bits in fold_not
      tcg/optimize: Build and use one and affected bits in fold_or
      tcg/optimize: Build and use zero, one and affected bits in fold_orc
      tcg/optimize: Build and use o_bits in fold_xor
      tcg/optimize: Build and use o_bits in fold_bswap
      tcg/optimize: Build and use o_bits in fold_deposit
      tcg/optimize: Build and use o_bits in fold_extract
      tcg/optimize: Build and use z_bits and o_bits in fold_extract2
      tcg/optimize: Build and use o_bits in fold_exts
      tcg/optimize: Build and use o_bits in fold_extu
      tcg/optimize: Build and use o_bits in fold_movcond
      tcg/optimize: Build and use o_bits in fold_sextract
      tcg/optimize: Build and use o_bits in fold_shift
      tcg/optimize: Use fold_and in do_constant_folding_cond[12]
      tcg/optimize: Fold and to extract during optimize
      tcg/optimize: Simplify fold_and constant checks
      tcg/optimize: Simplify fold_andc constant checks
      tcg/optimize: Simplify fold_orc constant checks
      tcg/optimize: Simplify fold_eqv constant checks
      tcg/riscv: Fix typo in tgen_extract
      tcg: Fix constant propagation in tcg_reg_alloc_dup

 tcg/optimize.c             | 456 +++++++++++++++++++++++++++------------------
 tcg/tcg.c                  |   2 +-
 tcg/riscv/tcg-target.c.inc |   2 +-
 3 files changed, 276 insertions(+), 184 deletions(-)


^ permalink raw reply	[flat|nested] 33+ messages in thread

end of thread, other threads:[~2025-07-02  7:36 UTC | newest]

Thread overview: 33+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-18 22:25 [PULL 00/29] tcg patch queue Richard Henderson
2023-10-18 22:25 ` [PULL 01/29] tcg/ppc: Untabify tcg-target.c.inc Richard Henderson
2023-10-18 22:25 ` [PULL 02/29] tcg/ppc: Enable direct branching tcg_out_goto_tb with TCG_REG_TB Richard Henderson
2023-10-18 22:25 ` [PULL 03/29] tcg/ppc: Reinterpret tb-relative to TB+4 Richard Henderson
2023-10-18 22:25 ` [PULL 04/29] tcg/ppc: Use ADDPCIS in tcg_out_tb_start Richard Henderson
2023-10-18 22:25 ` [PULL 05/29] tcg/ppc: Use ADDPCIS in tcg_out_movi_int Richard Henderson
2023-10-18 22:25 ` [PULL 06/29] tcg/ppc: Use ADDPCIS for the constant pool Richard Henderson
2023-10-18 22:25 ` [PULL 07/29] tcg/ppc: Use ADDPCIS in tcg_out_goto_tb Richard Henderson
2023-10-18 22:25 ` [PULL 08/29] tcg/ppc: Use PADDI in tcg_out_movi Richard Henderson
2023-10-18 22:25 ` [PULL 09/29] tcg/ppc: Use prefixed instructions in tcg_out_mem_long Richard Henderson
2023-10-18 22:25 ` [PULL 10/29] tcg/ppc: Use PLD in tcg_out_movi for constant pool Richard Henderson
2023-10-18 22:25 ` [PULL 11/29] tcg/ppc: Use prefixed instructions in tcg_out_dupi_vec Richard Henderson
2023-10-18 22:25 ` [PULL 12/29] tcg/ppc: Use PLD in tcg_out_goto_tb Richard Henderson
2023-10-18 22:25 ` [PULL 13/29] tcg/ppc: Disable TCG_REG_TB for Power9/Power10 Richard Henderson
2023-10-18 22:25 ` [PULL 14/29] tcg: Introduce tcg_use_softmmu Richard Henderson
2023-10-18 22:25 ` [PULL 15/29] tcg: Provide guest_base fallback for system mode Richard Henderson
2023-10-19 16:37   ` Stefan Hajnoczi
2023-10-18 22:25 ` [PULL 16/29] tcg/arm: Use tcg_use_softmmu Richard Henderson
2023-10-18 22:25 ` [PULL 17/29] tcg/aarch64: " Richard Henderson
2023-10-18 22:25 ` [PULL 18/29] tcg/i386: " Richard Henderson
2023-10-18 22:25 ` [PULL 19/29] tcg/loongarch64: " Richard Henderson
2023-10-18 22:25 ` [PULL 20/29] tcg/mips: " Richard Henderson
2023-10-18 22:25 ` [PULL 21/29] tcg/ppc: " Richard Henderson
2023-10-18 22:25 ` [PULL 22/29] tcg/riscv: Do not reserve TCG_GUEST_BASE_REG for guest_base zero Richard Henderson
2023-10-18 22:25 ` [PULL 23/29] tcg/riscv: Use tcg_use_softmmu Richard Henderson
2023-10-18 22:25 ` [PULL 24/29] tcg/s390x: " Richard Henderson
2023-10-18 22:25 ` [PULL 25/29] tcg: drop unused tcg_temp_free define Richard Henderson
2023-10-18 22:25 ` [PULL 26/29] tcg: Use constant zero when expanding with divu2 Richard Henderson
2023-10-18 22:25 ` [PULL 27/29] tcg: Optimize past conditional branches Richard Henderson
2023-10-18 22:25 ` [PULL 28/29] tcg: Add tcg_gen_{ld,st}_i128 Richard Henderson
2023-10-18 22:25 ` [PULL 29/29] target/i386: Use i128 for 128 and 256-bit loads and stores Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2025-06-30 15:28 [PULL 00/29] tcg patch queue Richard Henderson
2025-07-01 11:22 ` Stefan Hajnoczi

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).