[PULL v2 00/13] tcg-next patch queue

Richard Henderson posted 13 patches 1 year, 6 months ago
Only 5 patches received!
meson.build                                 |   4 +-
accel/tcg/internal.h                        |   4 +-
include/exec/exec-all.h                     |  24 ++-
target/i386/helper.h                        |   5 -
tcg/{sparc => sparc64}/tcg-target-con-set.h |  16 +-
tcg/{sparc => sparc64}/tcg-target-con-str.h |   3 -
tcg/{sparc => sparc64}/tcg-target.h         |  11 --
accel/tcg/cpu-exec-common.c                 |   2 +-
accel/tcg/cpu-exec.c                        |   8 +-
accel/tcg/tb-maint.c                        |   4 +-
accel/tcg/translate-all.c                   | 107 ++++++-----
cpu.c                                       |  10 +-
target/alpha/helper.c                       |   2 +-
target/alpha/mem_helper.c                   |   2 +-
target/arm/op_helper.c                      |   2 +-
target/arm/tlb_helper.c                     |   8 +-
target/cris/helper.c                        |   2 +-
target/i386/helper.c                        |  25 ++-
target/i386/tcg/cc_helper.c                 |  41 -----
target/i386/tcg/sysemu/svm_helper.c         |   2 +-
target/i386/tcg/translate.c                 |  30 ++-
target/m68k/op_helper.c                     |   4 +-
target/microblaze/helper.c                  |   2 +-
target/nios2/op_helper.c                    |   2 +-
target/openrisc/sys_helper.c                |  17 +-
target/ppc/excp_helper.c                    |   2 +-
target/s390x/tcg/excp_helper.c              |   2 +-
target/tricore/op_helper.c                  |   2 +-
target/xtensa/helper.c                      |   6 +-
tcg/tcg.c                                   |  81 +-------
tests/tcg/multiarch/munmap-pthread.c        |  79 ++++++++
tcg/{sparc => sparc64}/tcg-target.c.inc     | 275 ++++++++--------------------
MAINTAINERS                                 |   2 +-
tests/tcg/multiarch/Makefile.target         |   3 +
34 files changed, 339 insertions(+), 450 deletions(-)
rename tcg/{sparc => sparc64}/tcg-target-con-set.h (69%)
rename tcg/{sparc => sparc64}/tcg-target-con-str.h (77%)
rename tcg/{sparc => sparc64}/tcg-target.h (95%)
create mode 100644 tests/tcg/multiarch/munmap-pthread.c
rename tcg/{sparc => sparc64}/tcg-target.c.inc (91%)
[PULL v2 00/13] tcg-next patch queue
Posted by Richard Henderson 1 year, 6 months ago
For v2, adjust patch 6 for --disable-tcg and
include the fix for the cpu initialization race.


r~


The following changes since commit 5107fd3effb1cfec3b96d9e819f1605048640e31:

  net/vhost-vdpa.c: Fix clang compilation failure (2022-10-31 13:01:31 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 83d92559cdf0ce842e52e5bbf230f7f62a6206aa:

  tests/tcg/multiarch: Add munmap-pthread.c (2022-11-01 08:31:41 +1100)

----------------------------------------------------------------
Remove sparc32plus support from tcg/sparc.
target/i386: Use cpu_unwind_state_data for tpr access.
target/i386: Expand eflags updates inline
Complete cpu initialization before registration

----------------------------------------------------------------
Icenowy Zheng (1):
      tcg/tci: fix logic error when registering helpers via FFI

Ilya Leoshkevich (1):
      tests/tcg/multiarch: Add munmap-pthread.c

Richard Henderson (11):
      tcg/sparc: Remove support for sparc32plus
      tcg/sparc64: Rename from tcg/sparc
      tcg/sparc64: Remove sparc32plus constraints
      accel/tcg: Introduce cpu_unwind_state_data
      target/i386: Use cpu_unwind_state_data for tpr access
      target/openrisc: Always exit after mtspr npc
      target/openrisc: Use cpu_unwind_state_data for mfspr
      accel/tcg: Remove will_exit argument from cpu_restore_state
      accel/tcg: Remove reset_icount argument from cpu_restore_state_from_tb
      target/i386: Expand eflags updates inline
      accel/tcg: Complete cpu initialization before registration

 meson.build                                 |   4 +-
 accel/tcg/internal.h                        |   4 +-
 include/exec/exec-all.h                     |  24 ++-
 target/i386/helper.h                        |   5 -
 tcg/{sparc => sparc64}/tcg-target-con-set.h |  16 +-
 tcg/{sparc => sparc64}/tcg-target-con-str.h |   3 -
 tcg/{sparc => sparc64}/tcg-target.h         |  11 --
 accel/tcg/cpu-exec-common.c                 |   2 +-
 accel/tcg/cpu-exec.c                        |   8 +-
 accel/tcg/tb-maint.c                        |   4 +-
 accel/tcg/translate-all.c                   | 107 ++++++-----
 cpu.c                                       |  10 +-
 target/alpha/helper.c                       |   2 +-
 target/alpha/mem_helper.c                   |   2 +-
 target/arm/op_helper.c                      |   2 +-
 target/arm/tlb_helper.c                     |   8 +-
 target/cris/helper.c                        |   2 +-
 target/i386/helper.c                        |  25 ++-
 target/i386/tcg/cc_helper.c                 |  41 -----
 target/i386/tcg/sysemu/svm_helper.c         |   2 +-
 target/i386/tcg/translate.c                 |  30 ++-
 target/m68k/op_helper.c                     |   4 +-
 target/microblaze/helper.c                  |   2 +-
 target/nios2/op_helper.c                    |   2 +-
 target/openrisc/sys_helper.c                |  17 +-
 target/ppc/excp_helper.c                    |   2 +-
 target/s390x/tcg/excp_helper.c              |   2 +-
 target/tricore/op_helper.c                  |   2 +-
 target/xtensa/helper.c                      |   6 +-
 tcg/tcg.c                                   |  81 +-------
 tests/tcg/multiarch/munmap-pthread.c        |  79 ++++++++
 tcg/{sparc => sparc64}/tcg-target.c.inc     | 275 ++++++++--------------------
 MAINTAINERS                                 |   2 +-
 tests/tcg/multiarch/Makefile.target         |   3 +
 34 files changed, 339 insertions(+), 450 deletions(-)
 rename tcg/{sparc => sparc64}/tcg-target-con-set.h (69%)
 rename tcg/{sparc => sparc64}/tcg-target-con-str.h (77%)
 rename tcg/{sparc => sparc64}/tcg-target.h (95%)
 create mode 100644 tests/tcg/multiarch/munmap-pthread.c
 rename tcg/{sparc => sparc64}/tcg-target.c.inc (91%)
Re: [PULL v2 00/13] tcg-next patch queue
Posted by Stefan Hajnoczi 1 year, 5 months ago
Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/7.2 for any user-visible changes.