[PULL v2 00/33] tcg patch queue

Richard Henderson posted 33 patches 2 years, 10 months ago
Only 1 patches received!
There is a newer version of this series
configure                                          |    3 +
accel/tcg/atomic_template.h                        |   24 +-
accel/tcg/plugin-helpers.h                         |    5 +-
include/exec/helper-head.h                         |   37 +-
include/exec/helper-tcg.h                          |   34 +-
include/qemu/plugin.h                              |    1 -
include/tcg/tcg-cond.h                             |  101 ++
include/tcg/tcg-opc.h                              |    4 +-
include/tcg/tcg.h                                  |   71 +-
target/hppa/helper.h                               |    3 -
target/i386/ops_sse_header.h                       |    3 -
target/m68k/helper.h                               |    1 -
target/ppc/helper.h                                |    3 -
tcg/tcg-internal.h                                 |   22 +
tcg/tci/tcg-target-con-set.h                       |    1 +
tcg/tci/tcg-target.h                               |   68 +-
accel/tcg/cputlb.c                                 |   95 +-
accel/tcg/plugin-gen.c                             |   20 +-
accel/tcg/user-exec.c                              |    8 +-
plugins/core.c                                     |   30 +-
tcg/optimize.c                                     |    3 +-
tcg/tcg.c                                          |  299 +++--
tcg/tci.c                                          | 1203 ++++++++++----------
util/oslib-win32.c                                 |    6 +-
tcg/sparc/tcg-target.c.inc                         |   16 +-
tcg/tci/tcg-target.c.inc                           |  550 ++++-----
tcg/meson.build                                    |    8 +-
tcg/tci/README                                     |   20 +-
tests/docker/dockerfiles/alpine.docker             |    1 +
tests/docker/dockerfiles/centos8.docker            |    1 +
tests/docker/dockerfiles/debian10.docker           |    1 +
tests/docker/dockerfiles/fedora-i386-cross.docker  |    1 +
tests/docker/dockerfiles/fedora-win32-cross.docker |    1 +
tests/docker/dockerfiles/fedora-win64-cross.docker |    1 +
tests/docker/dockerfiles/fedora.docker             |    1 +
tests/docker/dockerfiles/ubuntu.docker             |    1 +
tests/docker/dockerfiles/ubuntu1804.docker         |    1 +
tests/docker/dockerfiles/ubuntu2004.docker         |    1 +
tests/tcg/Makefile.target                          |    6 +-
39 files changed, 1453 insertions(+), 1202 deletions(-)
create mode 100644 include/tcg/tcg-cond.h
[PULL v2 00/33] tcg patch queue
Posted by Richard Henderson 2 years, 10 months ago
The following changes since commit 3ccf6cd0e3e1dfd663814640b3b18b55715d7a75:

  Merge remote-tracking branch 'remotes/kraxel/tags/audio-20210617-pull-request' into staging (2021-06-18 09:54:42 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 1c9638667b7068539dc5783c9428d588b14162ea:

  util/oslib-win32: Fix fatal assertion in qemu_try_memalign (2021-06-19 14:51:51 -0700)

----------------------------------------------------------------
TCI cleanup and re-encoding
Fixes for #367 and #390.
Move TCGCond to tcg/tcg-cond.h.
Fix for win32 qemu_try_memalign.

----------------------------------------------------------------
Alessandro Di Federico (1):
      tcg: expose TCGCond manipulation routines

Richard Henderson (31):
      tcg: Combine dh_is_64bit and dh_is_signed to dh_typecode
      tcg: Add tcg_call_flags
      accel/tcg/plugin-gen: Drop inline markers
      plugins: Drop tcg_flags from struct qemu_plugin_dyn_cb
      accel/tcg: Add tcg call flags to plugins helpers
      tcg: Store the TCGHelperInfo in the TCGOp for call
      tcg: Add tcg_call_func
      tcg: Build ffi data structures for helpers
      tcg/tci: Improve tcg_target_call_clobber_regs
      tcg/tci: Move call-return regs to end of tcg_target_reg_alloc_order
      tcg/tci: Use ffi for calls
      tcg/tci: Reserve r13 for a temporary
      tcg/tci: Emit setcond before brcond
      tcg/tci: Remove tci_write_reg
      tcg/tci: Change encoding to uint32_t units
      tcg/tci: Implement goto_ptr
      tcg/tci: Implement movcond
      tcg/tci: Implement andc, orc, eqv, nand, nor
      tcg/tci: Implement extract, sextract
      tcg/tci: Implement clz, ctz, ctpop
      tcg/tci: Implement mulu2, muls2
      tcg/tci: Implement add2, sub2
      tcg/tci: Split out tci_qemu_ld, tci_qemu_st
      Revert "tcg/tci: Use exec/cpu_ldst.h interfaces"
      tcg/tci: Remove the qemu_ld/st_type macros
      tcg/tci: Use {set,clear}_helper_retaddr
      tests/tcg: Increase timeout for TCI
      accel/tcg: Probe the proper permissions for atomic ops
      tcg/sparc: Fix temp_allocate_frame vs sparc stack bias
      tcg: Allocate sufficient storage in temp_allocate_frame
      tcg: Restart when exhausting the stack frame

Stefan Weil (1):
      util/oslib-win32: Fix fatal assertion in qemu_try_memalign

 configure                                          |    3 +
 accel/tcg/atomic_template.h                        |   24 +-
 accel/tcg/plugin-helpers.h                         |    5 +-
 include/exec/helper-head.h                         |   37 +-
 include/exec/helper-tcg.h                          |   34 +-
 include/qemu/plugin.h                              |    1 -
 include/tcg/tcg-cond.h                             |  101 ++
 include/tcg/tcg-opc.h                              |    4 +-
 include/tcg/tcg.h                                  |   71 +-
 target/hppa/helper.h                               |    3 -
 target/i386/ops_sse_header.h                       |    3 -
 target/m68k/helper.h                               |    1 -
 target/ppc/helper.h                                |    3 -
 tcg/tcg-internal.h                                 |   22 +
 tcg/tci/tcg-target-con-set.h                       |    1 +
 tcg/tci/tcg-target.h                               |   68 +-
 accel/tcg/cputlb.c                                 |   95 +-
 accel/tcg/plugin-gen.c                             |   20 +-
 accel/tcg/user-exec.c                              |    8 +-
 plugins/core.c                                     |   30 +-
 tcg/optimize.c                                     |    3 +-
 tcg/tcg.c                                          |  299 +++--
 tcg/tci.c                                          | 1203 ++++++++++----------
 util/oslib-win32.c                                 |    6 +-
 tcg/sparc/tcg-target.c.inc                         |   16 +-
 tcg/tci/tcg-target.c.inc                           |  550 ++++-----
 tcg/meson.build                                    |    8 +-
 tcg/tci/README                                     |   20 +-
 tests/docker/dockerfiles/alpine.docker             |    1 +
 tests/docker/dockerfiles/centos8.docker            |    1 +
 tests/docker/dockerfiles/debian10.docker           |    1 +
 tests/docker/dockerfiles/fedora-i386-cross.docker  |    1 +
 tests/docker/dockerfiles/fedora-win32-cross.docker |    1 +
 tests/docker/dockerfiles/fedora-win64-cross.docker |    1 +
 tests/docker/dockerfiles/fedora.docker             |    1 +
 tests/docker/dockerfiles/ubuntu.docker             |    1 +
 tests/docker/dockerfiles/ubuntu1804.docker         |    1 +
 tests/docker/dockerfiles/ubuntu2004.docker         |    1 +
 tests/tcg/Makefile.target                          |    6 +-
 39 files changed, 1453 insertions(+), 1202 deletions(-)
 create mode 100644 include/tcg/tcg-cond.h

Re: [PULL v2 00/33] tcg patch queue
Posted by Peter Maydell 2 years, 10 months ago
On Sun, 20 Jun 2021 at 05:26, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 3ccf6cd0e3e1dfd663814640b3b18b55715d7a75:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/audio-20210617-pull-request' into staging (2021-06-18 09:54:42 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20210619-2
>
> for you to fetch changes up to 1c9638667b7068539dc5783c9428d588b14162ea:
>
>   util/oslib-win32: Fix fatal assertion in qemu_try_memalign (2021-06-19 14:51:51 -0700)
>
> ----------------------------------------------------------------
> TCI cleanup and re-encoding
> Fixes for #367 and #390.
> Move TCGCond to tcg/tcg-cond.h.
> Fix for win32 qemu_try_memalign.
>


Applied, thanks.

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

-- PMM