qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/12] tcg patch queue
@ 2023-05-02 11:20 Richard Henderson
  2023-05-02 11:20 ` [PULL 01/12] softmmu: Tidy dirtylimit_dirty_ring_full_time Richard Henderson
                   ` (11 more replies)
  0 siblings, 12 replies; 20+ messages in thread
From: Richard Henderson @ 2023-05-02 11:20 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit 7c18f2d663521f1b31b821a13358ce38075eaf7d:

  Merge tag 'for-upstream' of https://gitlab.com/bonzini/qemu into staging (2023-04-29 23:07:17 +0100)

are available in the Git repository at:

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

for you to fetch changes up to bdc7fba1c5a29ae218b45353daac9308fe1aae82:

  tcg: Introduce tcg_out_movext2 (2023-05-02 12:15:41 +0100)

----------------------------------------------------------------
Misc tcg-related patch queue.

----------------------------------------------------------------
Dickon Hood (1):
      qemu/bitops.h: Limit rotate amounts

Kiran Ostrolenk (1):
      qemu/host-utils.h: Add clz and ctz functions for lower-bit integers

Nazar Kazakov (2):
      tcg: Add tcg_gen_gvec_andcs
      tcg: Add tcg_gen_gvec_rotrs

Richard Henderson (7):
      softmmu: Tidy dirtylimit_dirty_ring_full_time
      qemu/int128: Re-shuffle Int128Alias members
      migration/xbzrle: Use __attribute__((target)) for avx512
      accel/tcg: Add cpu_ld*_code_mmu
      tcg/loongarch64: Conditionalize tcg_out_exts_i32_i64
      tcg/mips: Conditionalize tcg_out_exts_i32_i64
      tcg: Introduce tcg_out_movext2

Weiwei Li (1):
      accel/tcg: Uncache the host address for instruction fetch when tlb size < 1

 meson.build                      |  5 +--
 accel/tcg/tcg-runtime.h          |  1 +
 include/exec/cpu_ldst.h          |  9 ++++++
 include/qemu/bitops.h            | 24 +++++++++-----
 include/qemu/host-utils.h        | 54 +++++++++++++++++++++++++++++++
 include/qemu/int128.h            |  4 +--
 include/tcg/tcg-op-gvec.h        |  4 +++
 accel/tcg/cputlb.c               | 53 ++++++++++++++++++++++++++++++
 accel/tcg/tcg-runtime-gvec.c     | 11 +++++++
 accel/tcg/user-exec.c            | 58 +++++++++++++++++++++++++++++++++
 migration/xbzrle.c               |  9 +++---
 softmmu/dirtylimit.c             | 15 ++++++---
 tcg/tcg-op-gvec.c                | 28 ++++++++++++++++
 tcg/tcg.c                        | 69 +++++++++++++++++++++++++++++++++++++---
 tcg/arm/tcg-target.c.inc         | 44 +++++++++++--------------
 tcg/i386/tcg-target.c.inc        | 19 +++++------
 tcg/loongarch64/tcg-target.c.inc |  4 ++-
 tcg/mips/tcg-target.c.inc        |  4 ++-
 18 files changed, 347 insertions(+), 68 deletions(-)


^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PATCH 00/12] tcg patch queue
@ 2024-07-23  3:34 Richard Henderson
  2024-07-23 14:59 ` [PULL " Richard Henderson
  0 siblings, 1 reply; 20+ messages in thread
From: Richard Henderson @ 2024-07-23  3:34 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit a7ddb48bd1363c8bcdf42776d320289c42191f01:

  Merge tag 'pull-aspeed-20240721' of https://github.com/legoater/qemu into staging (2024-07-22 07:52:05 +1000)

are available in the Git repository at:

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

for you to fetch changes up to 3f57638a7eae5b56f65224c680654a2aaaa09379:

  target/riscv: Simplify probing in vext_ldff (2024-07-23 10:57:42 +1000)

----------------------------------------------------------------
accel/tcg: Export set/clear_helper_retaddr
target/arm: Use set_helper_retaddr for dc_zva, sve and sme
target/ppc: Tidy dcbz helpers
target/ppc: Use set_helper_retaddr for dcbz
target/s390x: Use set_helper_retaddr in mem_helper.c

----------------------------------------------------------------
BALATON Zoltan (1):
      target/ppc/mem_helper.c: Remove a conditional from dcbz_common()

Richard Henderson (11):
      accel/tcg: Move {set,clear}_helper_retaddr to cpu_ldst.h
      target/arm: Use set/clear_helper_retaddr in helper-a64.c
      target/arm: Use set/clear_helper_retaddr in SVE and SME helpers
      target/ppc: Hoist dcbz_size out of dcbz_common
      target/ppc: Split out helper_dbczl for 970
      target/ppc: Merge helper_{dcbz,dcbzep}
      target/ppc: Improve helper_dcbz for user-only
      target/s390x: Use user_or_likely in do_access_memset
      target/s390x: Use user_or_likely in access_memmove
      target/s390x: Use set/clear_helper_retaddr in mem_helper.c
      target/riscv: Simplify probing in vext_ldff

 accel/tcg/user-retaddr.h      |  28 ------------
 include/exec/cpu_ldst.h       |  34 ++++++++++++++
 target/ppc/helper.h           |   6 ++-
 accel/tcg/cpu-exec.c          |   3 --
 accel/tcg/user-exec.c         |   1 -
 target/arm/tcg/helper-a64.c   |  14 +++++-
 target/arm/tcg/sme_helper.c   |  16 +++++++
 target/arm/tcg/sve_helper.c   |  42 +++++++++++++----
 target/ppc/mem_helper.c       |  52 ++++++++++++---------
 target/ppc/translate.c        |  24 ++++++----
 target/riscv/vector_helper.c  |  31 +++++++------
 target/s390x/tcg/mem_helper.c | 103 ++++++++++++++++++++++++++----------------
 12 files changed, 224 insertions(+), 130 deletions(-)
 delete mode 100644 accel/tcg/user-retaddr.h


^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PULL 00/12] tcg patch queue
@ 2020-06-02 17:01 Richard Henderson
  2020-06-02 19:16 ` Peter Maydell
  0 siblings, 1 reply; 20+ messages in thread
From: Richard Henderson @ 2020-06-02 17:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell


I have not been able to prod reviews of all of the rotate patches
in 4 weeks, but let's not let that block ARM work forever.


r~


The following changes since commit cccdd8c7971896c339d59c9c5d4647d4ffd9568a:

  Merge remote-tracking branch 'remotes/ehabkost/tags/machine-next-pull-request' into staging (2020-06-02 10:25:55 +0100)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/pull-tcg-20200602

for you to fetch changes up to 71b04329c4f7d5824a289ca5225e1883a278cf3b:

  accel/tcg: Provide a NetBSD specific aarch64 cpu_signal_handler (2020-06-02 08:42:37 -0700)

----------------------------------------------------------------
Vector rotate support
Signal handling support for NetBSD arm/aarch64

----------------------------------------------------------------
Nick Hudson (2):
      accel/tcg: Adjust cpu_signal_handler for NetBSD/arm
      accel/tcg: Provide a NetBSD specific aarch64 cpu_signal_handler

Richard Henderson (10):
      tcg: Implement gvec support for rotate by immediate
      tcg: Implement gvec support for rotate by vector
      tcg: Remove expansion to shift by vector from do_shifts
      tcg: Implement gvec support for rotate by scalar
      tcg/i386: Implement INDEX_op_rotl{i,s,v}_vec
      tcg/aarch64: Implement INDEX_op_rotl{i,v}_vec
      tcg/ppc: Implement INDEX_op_rot[lr]v_vec
      target/ppc: Use tcg_gen_gvec_rotlv
      target/s390x: Use tcg_gen_gvec_rotl{i,s,v}
      tcg: Improve move ops in liveness_pass_2

 accel/tcg/tcg-runtime.h             |  15 +++
 include/tcg/tcg-op-gvec.h           |  12 ++
 include/tcg/tcg-op.h                |   5 +
 include/tcg/tcg-opc.h               |   4 +
 include/tcg/tcg.h                   |   3 +
 target/ppc/helper.h                 |   4 -
 target/s390x/helper.h               |   4 -
 tcg/aarch64/tcg-target.h            |   3 +
 tcg/aarch64/tcg-target.opc.h        |   1 +
 tcg/i386/tcg-target.h               |   3 +
 tcg/ppc/tcg-target.h                |   3 +
 tcg/ppc/tcg-target.opc.h            |   1 -
 accel/tcg/tcg-runtime-gvec.c        | 144 ++++++++++++++++++++++++
 accel/tcg/user-exec.c               |  43 +++++++-
 target/ppc/int_helper.c             |  17 ---
 target/ppc/translate/vmx-impl.inc.c |   8 +-
 target/s390x/translate_vx.inc.c     |  66 ++---------
 target/s390x/vec_int_helper.c       |  31 ------
 tcg/aarch64/tcg-target.inc.c        |  53 ++++++++-
 tcg/i386/tcg-target.inc.c           | 116 +++++++++++++++++---
 tcg/ppc/tcg-target.inc.c            |  23 +++-
 tcg/tcg-op-gvec.c                   | 212 ++++++++++++++++++++++++++++++++++++
 tcg/tcg-op-vec.c                    |  62 +++++++----
 tcg/tcg.c                           |  85 +++++++++++----
 target/s390x/insn-data.def          |   4 +-
 tcg/README                          |   7 +-
 26 files changed, 736 insertions(+), 193 deletions(-)


^ permalink raw reply	[flat|nested] 20+ messages in thread
* [PULL 00/12] tcg patch queue
@ 2019-10-25 14:21 Richard Henderson
  2019-10-25 16:12 ` Peter Maydell
  2019-10-26 11:04 ` no-reply
  0 siblings, 2 replies; 20+ messages in thread
From: Richard Henderson @ 2019-10-25 14:21 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell

The following changes since commit bad76ac319556dab2497429d473b49a237672e1c:

  Merge remote-tracking branch 'remotes/vivier2/tags/trivial-branch-pull-request' into staging (2019-10-25 14:17:08 +0100)

are available in the Git repository at:

  https://github.com/rth7680/qemu.git tags/pull-tcg-20191025

for you to fetch changes up to 0ed1bfb046b740b70eed2cf3581e01768703b185:

  translate-all: Remove tb_alloc (2019-10-25 10:15:25 -0400)

----------------------------------------------------------------
Improvements for TARGET_PAGE_BITS_VARY
Fix for TCI ld16u_i64.
Fix for segv on icount execute from i/o memory.
Two misc cleanups.

----------------------------------------------------------------
Alex Bennée (1):
      cputlb: ensure _cmmu helper functions follow the naming standard

Clement Deschamps (1):
      translate-all: fix uninitialized tb->orig_tb

Richard Henderson (8):
      exec: Split out variable page size support to exec-vary.c
      configure: Detect compiler support for __attribute__((alias))
      exec: Use const alias for TARGET_PAGE_BITS_VARY
      exec: Restrict TARGET_PAGE_BITS_VARY assert to CONFIG_DEBUG_TCG
      exec: Promote TARGET_PAGE_MASK to target_long
      exec: Cache TARGET_PAGE_MASK for TARGET_PAGE_BITS_VARY
      cputlb: Fix tlb_vaddr_to_host
      translate-all: Remove tb_alloc

Stefan Weil (1):
      tci: Add implementation for INDEX_op_ld16u_i64

Wei Yang (1):
      cpu: use ROUND_UP() to define xxx_PAGE_ALIGN

 Makefile.target                  |   2 +-
 include/exec/cpu-all.h           |  33 +++++++++----
 include/exec/cpu_ldst_template.h |   4 +-
 include/qemu-common.h            |   6 +++
 tcg/tcg.h                        |  20 +++++---
 accel/tcg/cputlb.c               |  26 ++++++++--
 accel/tcg/translate-all.c        |  21 ++------
 exec-vary.c                      | 102 +++++++++++++++++++++++++++++++++++++++
 exec.c                           |  34 -------------
 target/cris/translate_v10.inc.c  |   3 +-
 tcg/tci.c                        |  15 ++++++
 configure                        |  19 ++++++++
 12 files changed, 208 insertions(+), 77 deletions(-)
 create mode 100644 exec-vary.c


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

end of thread, other threads:[~2024-07-23 15:00 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-02 11:20 [PULL 00/12] tcg patch queue Richard Henderson
2023-05-02 11:20 ` [PULL 01/12] softmmu: Tidy dirtylimit_dirty_ring_full_time Richard Henderson
2023-05-02 11:20 ` [PULL 02/12] accel/tcg: Uncache the host address for instruction fetch when tlb size < 1 Richard Henderson
2023-05-02 11:20 ` [PULL 03/12] qemu/bitops.h: Limit rotate amounts Richard Henderson
2023-05-02 11:20 ` [PULL 04/12] qemu/host-utils.h: Add clz and ctz functions for lower-bit integers Richard Henderson
2023-05-02 11:20 ` [PULL 05/12] tcg: Add tcg_gen_gvec_andcs Richard Henderson
2023-05-02 11:20 ` [PULL 06/12] tcg: Add tcg_gen_gvec_rotrs Richard Henderson
2023-05-02 11:20 ` [PULL 07/12] qemu/int128: Re-shuffle Int128Alias members Richard Henderson
2023-05-02 11:20 ` [PULL 08/12] migration/xbzrle: Use __attribute__((target)) for avx512 Richard Henderson
2023-05-02 11:20 ` [PULL 09/12] accel/tcg: Add cpu_ld*_code_mmu Richard Henderson
2023-05-02 11:20 ` [PULL 10/12] tcg/loongarch64: Conditionalize tcg_out_exts_i32_i64 Richard Henderson
2023-05-02 11:20 ` [PULL 11/12] tcg/mips: " Richard Henderson
2023-05-02 11:20 ` [PULL 12/12] tcg: Introduce tcg_out_movext2 Richard Henderson
  -- strict thread matches above, loose matches on Subject: below --
2024-07-23  3:34 [PATCH 00/12] tcg patch queue Richard Henderson
2024-07-23 14:59 ` [PULL " Richard Henderson
2020-06-02 17:01 Richard Henderson
2020-06-02 19:16 ` Peter Maydell
2019-10-25 14:21 Richard Henderson
2019-10-25 16:12 ` Peter Maydell
2019-10-25 20:48   ` Richard Henderson
2019-10-26 11:04 ` no-reply

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