qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 0/9] tcg patch queue
@ 2025-10-19 18:28 Richard Henderson
  2025-10-19 18:28 ` [PULL 1/9] gitlab: Stop cross-testing for 32-bit MIPS hosts Richard Henderson
                   ` (9 more replies)
  0 siblings, 10 replies; 13+ messages in thread
From: Richard Henderson @ 2025-10-19 18:28 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 18f6f30b0089b470f3e737637a86dfb81ebd6eae:

  Merge tag 'pull-request-2025-10-16' of https://gitlab.com/thuth/qemu into staging (2025-10-16 12:27:12 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 5c1ec5a1ee0958068a532ac1e06cc6cee0c75ba3:

  tcg/ppc: Remove support for 32-bit hosts (2025-10-19 11:24:34 -0700)

----------------------------------------------------------------
tcg: Remove support for 32-bit mips/ppc hosts

----------------------------------------------------------------
Philippe Mathieu-Daudé (7):
      gitlab: Stop cross-testing for 32-bit MIPS hosts
      buildsys: Remove support for 32-bit MIPS hosts
      kvm/mips: Remove support for 32-bit hosts
      tcg/mips: Remove support for O32 and N32 ABIs
      tcg/mips: Remove support for 32-bit hosts
      buildsys: Remove support for 32-bit PPC hosts
      tcg/ppc: Remove support for 32-bit hosts

Richard Henderson (2):
      tcg/mips: Remove ALIAS_PADD, ALIAS_PADDI
      tcg/ppc: Remove dead cases from tcg_target_op_def

 include/qemu/timer.h                     |  13 +-
 tcg/mips/tcg-target-has.h                |   2 -
 tcg/mips/tcg-target-reg-bits.h           |   8 +-
 tcg/ppc/tcg-target-has.h                 |   5 +-
 tcg/ppc/tcg-target-reg-bits.h            |   8 +-
 disas/disas-host.c                       |   4 +-
 util/cacheflush.c                        |   4 +-
 .gitlab-ci.d/container-cross.yml         |   6 -
 .gitlab-ci.d/crossbuilds.yml             |  14 --
 common-user/host/mips/safe-syscall.inc.S |  35 ---
 configure                                |  26 +-
 docs/about/deprecated.rst                |  13 +-
 docs/about/removed-features.rst          |   6 +
 meson.build                              |   2 -
 tcg/mips/tcg-target.c.inc                | 331 ++++----------------------
 tcg/ppc/tcg-target.c.inc                 | 391 ++++++-------------------------
 16 files changed, 154 insertions(+), 714 deletions(-)


^ permalink raw reply	[flat|nested] 13+ messages in thread
* [PULL 0/9] tcg patch queue
@ 2021-09-12 15:58 Richard Henderson
  2021-09-13  9:57 ` Peter Maydell
  0 siblings, 1 reply; 13+ messages in thread
From: Richard Henderson @ 2021-09-12 15:58 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

Note that I've extended the expiration date of my gpg key
and have uploaded it to keyserver.ubuntu.com.


r~


The following changes since commit 99c44988d5ba1866a411450c877ed818b1b70081:

  Merge remote-tracking branch 'remotes/bsdimp/tags/pull-bsd-user-20210910' into staging (2021-09-11 14:00:39 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 267a3ec3e2a8fb3e06a9d46d09fcfc57dfefd118:

  tcg/arm: Fix tcg_out_vec_op function signature (2021-09-12 05:07:36 -0700)

----------------------------------------------------------------
Fix translation race condition for user-only.
Fix tcg/i386 encoding for VPSLLVQ, VPSRLVQ.
Fix tcg/arm tcg_out_vec_op signature.
Fix tcg/ppc (32bit) build with clang.
Remove dupluate TCG_KICK_PERIOD definition.
Remove unused tcg_global_reg_new.
Use __builtin_bswap*.

----------------------------------------------------------------
Bin Meng (1):
      tcg: Remove tcg_global_reg_new defines

Ilya Leoshkevich (2):
      accel/tcg: Add DisasContextBase argument to translator_ld*
      accel/tcg: Clear PAGE_WRITE before translation

Jose R. Ziviani (1):
      tcg/arm: Fix tcg_out_vec_op function signature

Luc Michel (1):
      accel/tcg: remove redundant TCG_KICK_PERIOD define

Richard Henderson (4):
      tcg/i386: Split P_VEXW from P_REXW
      include/qemu: Use builtins for bswap
      tcg/ppc: Replace TCG_TARGET_CALL_DARWIN with _CALL_DARWIN
      tcg/ppc: Ensure _CALL_SYSV is set for 32-bit ELF

 meson.build                               |  6 ----
 include/exec/translate-all.h              |  1 +
 include/exec/translator.h                 | 44 +++++++++++++----------
 include/qemu/bswap.h                      | 53 ++-------------------------
 include/tcg/tcg-op.h                      |  2 --
 target/arm/arm_ldst.h                     | 12 +++----
 accel/tcg/tcg-accel-ops-rr.c              |  2 --
 accel/tcg/translate-all.c                 | 59 ++++++++++++++++++-------------
 accel/tcg/translator.c                    | 39 ++++++++++++++++++++
 target/alpha/translate.c                  |  2 +-
 target/arm/translate-a64.c                |  2 +-
 target/arm/translate.c                    |  9 ++---
 target/hexagon/translate.c                |  3 +-
 target/hppa/translate.c                   |  5 +--
 target/i386/tcg/translate.c               | 10 +++---
 target/m68k/translate.c                   |  2 +-
 target/mips/tcg/translate.c               |  8 ++---
 target/openrisc/translate.c               |  2 +-
 target/ppc/translate.c                    |  5 +--
 target/riscv/translate.c                  |  5 +--
 target/s390x/tcg/translate.c              | 16 +++++----
 target/sh4/translate.c                    |  4 +--
 target/sparc/translate.c                  |  2 +-
 target/xtensa/translate.c                 |  5 +--
 target/mips/tcg/micromips_translate.c.inc |  2 +-
 target/mips/tcg/mips16e_translate.c.inc   |  4 +--
 target/mips/tcg/nanomips_translate.c.inc  |  4 +--
 tcg/arm/tcg-target.c.inc                  |  3 +-
 tcg/i386/tcg-target.c.inc                 | 13 +++----
 tcg/ppc/tcg-target.c.inc                  | 25 ++++++++++---
 30 files changed, 185 insertions(+), 164 deletions(-)


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

end of thread, other threads:[~2025-10-19 19:36 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-19 18:28 [PULL 0/9] tcg patch queue Richard Henderson
2025-10-19 18:28 ` [PULL 1/9] gitlab: Stop cross-testing for 32-bit MIPS hosts Richard Henderson
2025-10-19 18:28 ` [PULL 2/9] buildsys: Remove support " Richard Henderson
2025-10-19 18:28 ` [PULL 3/9] kvm/mips: Remove support for 32-bit hosts Richard Henderson
2025-10-19 18:28 ` [PULL 4/9] tcg/mips: Remove support for O32 and N32 ABIs Richard Henderson
2025-10-19 18:28 ` [PULL 5/9] tcg/mips: Remove support for 32-bit hosts Richard Henderson
2025-10-19 18:28 ` [PULL 6/9] tcg/mips: Remove ALIAS_PADD, ALIAS_PADDI Richard Henderson
2025-10-19 18:28 ` [PULL 7/9] buildsys: Remove support for 32-bit PPC hosts Richard Henderson
2025-10-19 18:28 ` [PULL 8/9] tcg/ppc: Remove dead cases from tcg_target_op_def Richard Henderson
2025-10-19 18:28 ` [PULL 9/9] tcg/ppc: Remove support for 32-bit hosts Richard Henderson
2025-10-19 19:35 ` [PULL 0/9] tcg patch queue Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2021-09-12 15:58 Richard Henderson
2021-09-13  9:57 ` Peter Maydell

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