v1: https://lore.kernel.org/qemu-devel/20230408024314.3357414-1-richard.hender...@linaro.org/
There are several changes to the load/store helpers coming, and making sure that those changes are properly reflected across all of the backends was harrowing. I have gone back and restarted by hoisting the code out of the backends and into tcg.c. We already have all of the parameters for the host function call abi for "normal" helpers, we simply need to apply that to the load/store slow path. The major change for v2 is to rely on init_call_layout and TCGHelperInfo for the helper_{ld,st}*_mmu family of functions. While v1 worked ok for the current 32 and 64-bit helpers, it quickly fell over when I tried to extend it to the 128-bit helpers in my outstanding atomicity patch set. Some of the patches are large, but take heart: the diffstat is only +83. :-) r~ Richard Henderson (54): tcg: Replace if + tcg_abort with tcg_debug_assert tcg: Replace tcg_abort with g_assert_not_reached tcg: Split out tcg_out_ext8s tcg: Split out tcg_out_ext8u tcg: Split out tcg_out_ext16s tcg: Split out tcg_out_ext16u tcg: Split out tcg_out_ext32s tcg: Split out tcg_out_ext32u tcg: Split out tcg_out_exts_i32_i64 tcg/loongarch64: Conditionalize tcg_out_exts_i32_i64 tcg/mips: Conditionalize tcg_out_exts_i32_i64 tcg/riscv: Conditionalize tcg_out_exts_i32_i64 tcg: Split out tcg_out_extu_i32_i64 tcg/i386: Conditionalize tcg_out_extu_i32_i64 tcg: Split out tcg_out_extrl_i64_i32 tcg: Introduce tcg_out_movext tcg: Introduce tcg_out_xchg tcg: Introduce tcg_out_movext2 tcg: Clear TCGLabelQemuLdst on allocation tcg/i386: Rationalize args to tcg_out_qemu_{ld,st} tcg/aarch64: Rationalize args to tcg_out_qemu_{ld,st} tcg/arm: Rationalize args to tcg_out_qemu_{ld,st} tcg/mips: Rationalize args to tcg_out_qemu_{ld,st} tcg/loongarch64: Rationalize args to tcg_out_qemu_{ld,st} tcg/ppc: Rationalize args to tcg_out_qemu_{ld,st} tcg/s390x: Pass TCGType to tcg_out_qemu_{ld,st} tcg/riscv: Require TCG_TARGET_REG_BITS == 64 tcg/riscv: Rationalize args to tcg_out_qemu_{ld,st} 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 tcg: Add routines for calling slow-path helpers tcg/i386: Convert tcg_out_qemu_ld_slow_path tcg/i386: Convert tcg_out_qemu_st_slow_path tcg/aarch64: Convert tcg_out_qemu_{ld,st}_slow_path tcg/arm: Convert tcg_out_qemu_{ld,st}_slow_path tcg/loongarch64: Convert tcg_out_qemu_{ld,st}_slow_path tcg/mips: Convert tcg_out_qemu_{ld,st}_slow_path tcg/ppc: Convert tcg_out_qemu_{ld,st}_slow_path tcg/riscv: Convert tcg_out_qemu_{ld,st}_slow_path tcg/s390x: Convert tcg_out_qemu_{ld,st}_slow_path tcg/loongarch64: Simplify constraints on qemu_ld/st tcg/mips: Remove MO_BSWAP handling tcg/mips: Reorg tcg_out_tlb_load tcg/mips: Simplify constraints on qemu_ld/st tcg/ppc: Reorg tcg_out_tlb_read tcg/ppc: Adjust constraints on qemu_ld/st tcg/ppc: Remove unused constraints A, B, C, D tcg/riscv: Simplify constraints on qemu_ld/st tcg/s390x: Use ALGFR in constructing host address for qemu_ld/st tcg/s390x: Simplify constraints on qemu_ld/st include/tcg/tcg-ldst.h | 10 +- include/tcg/tcg.h | 6 - tcg/loongarch64/tcg-target-con-set.h | 2 - tcg/loongarch64/tcg-target-con-str.h | 1 - tcg/mips/tcg-target-con-set.h | 13 +- tcg/mips/tcg-target-con-str.h | 2 - tcg/mips/tcg-target.h | 4 +- tcg/ppc/tcg-target-con-set.h | 11 +- tcg/ppc/tcg-target-con-str.h | 6 - tcg/riscv/tcg-target-con-set.h | 8 - tcg/riscv/tcg-target-con-str.h | 1 - tcg/riscv/tcg-target.h | 22 +- tcg/s390x/tcg-target-con-set.h | 2 - tcg/s390x/tcg-target-con-str.h | 1 - tcg/tcg-internal.h | 4 - accel/tcg/cputlb.c | 6 +- target/i386/tcg/translate.c | 20 +- target/s390x/tcg/translate.c | 4 +- tcg/optimize.c | 10 +- tcg/tcg.c | 707 +++++++++++++++++++++++- tcg/aarch64/tcg-target.c.inc | 184 ++++--- tcg/arm/tcg-target.c.inc | 342 +++++------- tcg/i386/tcg-target.c.inc | 359 +++++------- tcg/loongarch64/tcg-target.c.inc | 271 ++++----- tcg/mips/tcg-target.c.inc | 783 +++++++++------------------ tcg/ppc/tcg-target.c.inc | 465 ++++++++-------- tcg/riscv/tcg-target.c.inc | 372 +++++-------- tcg/s390x/tcg-target.c.inc | 249 ++++----- tcg/sparc64/tcg-target.c.inc | 125 +++-- tcg/tcg-ldst.c.inc | 15 +- tcg/tci/tcg-target.c.inc | 116 +++- 31 files changed, 2102 insertions(+), 2019 deletions(-) -- 2.34.1