qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/42] tcg patch queue
@ 2023-05-05 21:24 Richard Henderson
  2023-05-05 21:24 ` [PULL 01/42] softfloat: Fix the incorrect computation in float32_exp2 Richard Henderson
                   ` (42 more replies)
  0 siblings, 43 replies; 49+ messages in thread
From: Richard Henderson @ 2023-05-05 21:24 UTC (permalink / raw)
  To: qemu-devel

The following changes since commit a9fe9e191b4305b88c356a1ed9ac3baf89eb18aa:

  Merge tag 'pull-riscv-to-apply-20230505-1' of https://github.com/alistair23/qemu into staging (2023-05-05 09:25:13 +0100)

are available in the Git repository at:

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

for you to fetch changes up to 35a0bd63b458f30389b6bc6b7471c1665fe7b9d8:

  tcg: Widen helper_*_st[bw]_mmu val arguments (2023-05-05 17:21:03 +0100)

----------------------------------------------------------------
softfloat: Fix the incorrect computation in float32_exp2
tcg: Remove compatability helpers for qemu ld/st
target/alpha: Remove TARGET_ALIGNED_ONLY
target/hppa: Remove TARGET_ALIGNED_ONLY
target/sparc: Remove TARGET_ALIGNED_ONLY
tcg: Cleanups preparing to unify calls to qemu_ld/st helpers

----------------------------------------------------------------
Richard Henderson (41):
      target/avr: Finish conversion to tcg_gen_qemu_{ld,st}_*
      target/cris: Finish conversion to tcg_gen_qemu_{ld,st}_*
      target/Hexagon: Finish conversion to tcg_gen_qemu_{ld, st}_*
      target/m68k: Finish conversion to tcg_gen_qemu_{ld,st}_*
      target/mips: Finish conversion to tcg_gen_qemu_{ld,st}_*
      target/s390x: Finish conversion to tcg_gen_qemu_{ld, st}_*
      target/sparc: Finish conversion to tcg_gen_qemu_{ld, st}_*
      target/xtensa: Finish conversion to tcg_gen_qemu_{ld, st}_*
      tcg: Remove compatability helpers for qemu ld/st
      target/alpha: Use MO_ALIGN for system UNALIGN()
      target/alpha: Use MO_ALIGN where required
      target/alpha: Remove TARGET_ALIGNED_ONLY
      target/hppa: Use MO_ALIGN for system UNALIGN()
      target/hppa: Remove TARGET_ALIGNED_ONLY
      target/sparc: Use MO_ALIGN where required
      target/sparc: Use cpu_ld*_code_mmu
      target/sparc: Remove TARGET_ALIGNED_ONLY
      tcg/i386: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/i386: Generalize multi-part load overlap test
      tcg/i386: Introduce HostAddress
      tcg/i386: Drop r0+r1 local variables from tcg_out_tlb_load
      tcg/i386: Introduce tcg_out_testi
      tcg/aarch64: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/aarch64: Introduce HostAddress
      tcg/arm: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/arm: Introduce HostAddress
      tcg/loongarch64: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/loongarch64: Introduce HostAddress
      tcg/mips: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/ppc: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/ppc: Introduce HostAddress
      tcg/riscv: Require TCG_TARGET_REG_BITS == 64
      tcg/riscv: Rationalize args to tcg_out_qemu_{ld,st}
      tcg/s390x: Pass TCGType to tcg_out_qemu_{ld,st}
      tcg/s390x: Introduce HostAddress
      tcg/sparc64: Drop is_64 test from tcg_out_qemu_ld data return
      tcg/sparc64: Pass TCGType to tcg_out_qemu_{ld,st}
      tcg: Move TCGLabelQemuLdst to tcg.c
      tcg: Replace REG_P with arg_loc_reg_p
      tcg: Introduce arg_slot_stk_ofs
      tcg: Widen helper_*_st[bw]_mmu val arguments

Shivaprasad G Bhat (1):
      softfloat: Fix the incorrect computation in float32_exp2

 configs/targets/alpha-linux-user.mak        |   1 -
 configs/targets/alpha-softmmu.mak           |   1 -
 configs/targets/hppa-linux-user.mak         |   1 -
 configs/targets/hppa-softmmu.mak            |   1 -
 configs/targets/sparc-linux-user.mak        |   1 -
 configs/targets/sparc-softmmu.mak           |   1 -
 configs/targets/sparc32plus-linux-user.mak  |   1 -
 configs/targets/sparc64-linux-user.mak      |   1 -
 configs/targets/sparc64-softmmu.mak         |   1 -
 include/tcg/tcg-ldst.h                      |  10 +-
 include/tcg/tcg-op.h                        |  55 -----
 target/hexagon/macros.h                     |  14 +-
 tcg/riscv/tcg-target-con-set.h              |   8 -
 tcg/riscv/tcg-target.h                      |  22 +-
 tcg/tcg-internal.h                          |   4 -
 accel/tcg/cputlb.c                          |   6 +-
 fpu/softfloat.c                             |   2 +-
 target/alpha/translate.c                    |  38 +--
 target/avr/translate.c                      |  16 +-
 target/hexagon/genptr.c                     |   8 +-
 target/hexagon/idef-parser/parser-helpers.c |  28 +--
 target/hexagon/translate.c                  |  32 +--
 target/hppa/translate.c                     |   2 +-
 target/m68k/translate.c                     |  76 ++----
 target/mips/tcg/translate.c                 |   8 +-
 target/s390x/tcg/translate.c                | 152 ++++++------
 target/sparc/ldst_helper.c                  |  10 +-
 target/sparc/translate.c                    |  85 ++++---
 target/xtensa/translate.c                   |   4 +-
 tcg/tcg.c                                   |  58 +++--
 target/cris/translate_v10.c.inc             |  18 +-
 target/mips/tcg/nanomips_translate.c.inc    |   2 +-
 tcg/aarch64/tcg-target.c.inc                | 108 ++++++---
 tcg/arm/tcg-target.c.inc                    | 357 +++++++++++++---------------
 tcg/i386/tcg-target.c.inc                   | 345 ++++++++++++++-------------
 tcg/loongarch64/tcg-target.c.inc            | 135 +++++------
 tcg/mips/tcg-target.c.inc                   | 186 ++++++++-------
 tcg/ppc/tcg-target.c.inc                    | 192 ++++++++-------
 tcg/riscv/tcg-target.c.inc                  | 268 ++++++---------------
 tcg/s390x/tcg-target.c.inc                  | 131 +++++-----
 tcg/sparc64/tcg-target.c.inc                |   8 +-
 tcg/tcg-ldst.c.inc                          |  14 --
 42 files changed, 1120 insertions(+), 1291 deletions(-)


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

end of thread, other threads:[~2025-02-24  9:25 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-05 21:24 [PULL 00/42] tcg patch queue Richard Henderson
2023-05-05 21:24 ` [PULL 01/42] softfloat: Fix the incorrect computation in float32_exp2 Richard Henderson
2023-05-05 21:24 ` [PULL 02/42] target/avr: Finish conversion to tcg_gen_qemu_{ld,st}_* Richard Henderson
2023-05-05 21:24 ` [PULL 03/42] target/cris: Finish conversion to tcg_gen_qemu_{ld, st}_* Richard Henderson
2023-05-05 21:24 ` [PULL 04/42] target/Hexagon: " Richard Henderson
2023-05-05 21:24 ` [PULL 05/42] target/m68k: " Richard Henderson
2023-05-08 11:44   ` Laurent Vivier
2023-05-08 13:11     ` Richard Henderson
2023-05-05 21:24 ` [PULL 06/42] target/mips: " Richard Henderson
2023-05-05 21:24 ` [PULL 07/42] target/s390x: " Richard Henderson
2023-05-05 21:24 ` [PULL 08/42] target/sparc: " Richard Henderson
2023-05-05 21:24 ` [PULL 09/42] target/xtensa: " Richard Henderson
2023-05-05 21:24 ` [PULL 10/42] tcg: Remove compatability helpers for qemu ld/st Richard Henderson
2023-05-05 21:24 ` [PULL 11/42] target/alpha: Use MO_ALIGN for system UNALIGN() Richard Henderson
2023-05-05 21:24 ` [PULL 12/42] target/alpha: Use MO_ALIGN where required Richard Henderson
2023-05-05 21:24 ` [PULL 13/42] target/alpha: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-05 21:24 ` [PULL 14/42] target/hppa: Use MO_ALIGN for system UNALIGN() Richard Henderson
2023-05-05 21:24 ` [PULL 15/42] target/hppa: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-05 21:24 ` [PULL 16/42] target/sparc: Use MO_ALIGN where required Richard Henderson
2023-05-05 21:24 ` [PULL 17/42] target/sparc: Use cpu_ld*_code_mmu Richard Henderson
2023-05-05 21:24 ` [PULL 18/42] target/sparc: Remove TARGET_ALIGNED_ONLY Richard Henderson
2023-05-05 21:24 ` [PULL 19/42] tcg/i386: Rationalize args to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 20/42] tcg/i386: Generalize multi-part load overlap test Richard Henderson
2023-05-05 21:24 ` [PULL 21/42] tcg/i386: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 22/42] tcg/i386: Drop r0+r1 local variables from tcg_out_tlb_load Richard Henderson
2023-05-05 21:24 ` [PULL 23/42] tcg/i386: Introduce tcg_out_testi Richard Henderson
2023-05-05 21:24 ` [PULL 24/42] tcg/aarch64: Rationalize args to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 25/42] tcg/aarch64: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 26/42] tcg/arm: Rationalize args to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 27/42] tcg/arm: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 28/42] tcg/loongarch64: Rationalize args to tcg_out_qemu_{ld, st} Richard Henderson
2023-05-05 21:24 ` [PULL 29/42] tcg/loongarch64: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 30/42] tcg/mips: Rationalize args to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 31/42] tcg/ppc: " Richard Henderson
2023-05-05 21:24 ` [PULL 32/42] tcg/ppc: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 33/42] tcg/riscv: Require TCG_TARGET_REG_BITS == 64 Richard Henderson
2025-02-20 23:27   ` Philippe Mathieu-Daudé
2025-02-22 18:17     ` Richard Henderson
2025-02-24  9:24       ` Philippe Mathieu-Daudé
2023-05-05 21:24 ` [PULL 34/42] tcg/riscv: Rationalize args to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 35/42] tcg/s390x: Pass TCGType " Richard Henderson
2023-05-05 21:24 ` [PULL 36/42] tcg/s390x: Introduce HostAddress Richard Henderson
2023-05-05 21:24 ` [PULL 37/42] tcg/sparc64: Drop is_64 test from tcg_out_qemu_ld data return Richard Henderson
2023-05-05 21:24 ` [PULL 38/42] tcg/sparc64: Pass TCGType to tcg_out_qemu_{ld,st} Richard Henderson
2023-05-05 21:24 ` [PULL 39/42] tcg: Move TCGLabelQemuLdst to tcg.c Richard Henderson
2023-05-05 21:24 ` [PULL 40/42] tcg: Replace REG_P with arg_loc_reg_p Richard Henderson
2023-05-05 21:24 ` [PULL 41/42] tcg: Introduce arg_slot_stk_ofs Richard Henderson
2023-05-05 21:24 ` [PULL 42/42] tcg: Widen helper_*_st[bw]_mmu val arguments Richard Henderson
2023-05-06  7:11 ` [PULL 00/42] tcg patch queue Richard Henderson

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