qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v5 00/24] target/m68k: fpu improvements
@ 2025-05-07 21:12 Richard Henderson
  2025-05-07 21:12 ` [PATCH v5 01/24] target/m68k: Add FPSR exception bit defines Richard Henderson
                   ` (24 more replies)
  0 siblings, 25 replies; 29+ messages in thread
From: Richard Henderson @ 2025-05-07 21:12 UTC (permalink / raw)
  To: qemu-devel; +Cc: laurent

v3: https://lore.kernel.org/qemu-devel/20240909172823.649837-1-richard.henderson@linaro.org/
v4: https://lore.kernel.org/qemu-devel/20250224171444.440135-1-richard.henderson@linaro.org/

Changes for v5:
  - Rebase from February.  :-/
  - Use ldl_be_p in m68k_fpu_gdb_set_reg (phil).

Patches needing review:
  03-target-m68k-Keep-FPSR-up-to-date.patch
  05-target-m68k-Update-FPSR-for-FMOVECR.patch
  09-target-m68k-Use-OS_UNSIZED-in-LEA-PEA-JMP.patch
  10-target-m68k-Move-pre-dec-post-inc-to-gen_lea_mode.patch
  11-target-m68k-Split-gen_ea_mode-for-load-store.patch
  21-target-m68k-Implement-packed-decimal-real-loads-a.patch


r~


Richard Henderson (24):
  target/m68k: Add FPSR exception bit defines
  target/m68k: Restore fp rounding mode on vm load
  target/m68k: Keep FPSR up-to-date
  target/m68k: Update FPSR.EXC
  target/m68k: Update FPSR for FMOVECR
  target/m68k: Introduce M68K_FEATURE_FPU_PACKED_DECIMAL
  target/m68k: Merge gen_ea into SRC_EA and DEST_EA
  target/m68k: Use g_assert_not_reached in gen_lea_mode and gen_ea_mode
  target/m68k: Use OS_UNSIZED in LEA, PEA, JMP
  target/m68k: Move pre-dec/post-inc to gen_lea_mode
  target/m68k: Split gen_ea_mode for load/store
  target/m68k: Remove env argument to gen_lea_indexed
  target/m68k: Remove env argument to gen_lea_mode
  target/m68k: Remove env argument to gen_load_mode
  target/m68k: Remove env argument to gen_store_mode
  target/m68k: Remove env argument to gen_ea_mode_fp
  target/m68k: Split gen_ea_mode_fp for load/store
  target/m68k: Move gen_addr_fault into gen_{load,store}_mode_fp
  target/m68k: Merge gen_load_fp, gen_load_mode_fp
  target/m68k: Merge gen_store_fp, gen_store_mode_fp
  target/m68k: Implement packed decimal real loads and stores
  tests/tcg/m68k: Add packed decimal tests
  target/m68k: Make vmstate variables static
  target/m68k: Implement FPIAR

 target/m68k/cpu.h                |   27 +-
 target/m68k/helper.h             |    5 +-
 target/m68k/cpu.c                |   38 +-
 target/m68k/fpu_helper.c         |  330 +-
 target/m68k/gen-floatx80-pow10.c |   33 +
 target/m68k/helper.c             |   18 +-
 target/m68k/translate.c          |  789 +++--
 tests/tcg/m68k/packeddecimal-1.c |   41 +
 tests/tcg/m68k/packeddecimal-2.c |   46 +
 target/m68k/floatx80-pow10.c.inc | 4935 ++++++++++++++++++++++++++++++
 tests/tcg/m68k/Makefile.target   |    4 +-
 11 files changed, 5746 insertions(+), 520 deletions(-)
 create mode 100644 target/m68k/gen-floatx80-pow10.c
 create mode 100644 tests/tcg/m68k/packeddecimal-1.c
 create mode 100644 tests/tcg/m68k/packeddecimal-2.c
 create mode 100644 target/m68k/floatx80-pow10.c.inc

-- 
2.43.0



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

end of thread, other threads:[~2025-05-11 17:21 UTC | newest]

Thread overview: 29+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-05-07 21:12 [PATCH v5 00/24] target/m68k: fpu improvements Richard Henderson
2025-05-07 21:12 ` [PATCH v5 01/24] target/m68k: Add FPSR exception bit defines Richard Henderson
2025-05-07 21:12 ` [PATCH v5 02/24] target/m68k: Restore fp rounding mode on vm load Richard Henderson
2025-05-07 21:12 ` [PATCH v5 03/24] target/m68k: Keep FPSR up-to-date Richard Henderson
2025-05-07 21:12 ` [PATCH v5 04/24] target/m68k: Update FPSR.EXC Richard Henderson
2025-05-07 21:12 ` [PATCH v5 05/24] target/m68k: Update FPSR for FMOVECR Richard Henderson
2025-05-07 21:12 ` [PATCH v5 06/24] target/m68k: Introduce M68K_FEATURE_FPU_PACKED_DECIMAL Richard Henderson
2025-05-07 21:12 ` [PATCH v5 07/24] target/m68k: Merge gen_ea into SRC_EA and DEST_EA Richard Henderson
2025-05-07 21:12 ` [PATCH v5 08/24] target/m68k: Use g_assert_not_reached in gen_lea_mode and gen_ea_mode Richard Henderson
2025-05-07 21:12 ` [PATCH v5 09/24] target/m68k: Use OS_UNSIZED in LEA, PEA, JMP Richard Henderson
2025-05-07 21:12 ` [PATCH v5 10/24] target/m68k: Move pre-dec/post-inc to gen_lea_mode Richard Henderson
2025-05-07 21:12 ` [PATCH v5 11/24] target/m68k: Split gen_ea_mode for load/store Richard Henderson
2025-05-07 21:12 ` [PATCH v5 12/24] target/m68k: Remove env argument to gen_lea_indexed Richard Henderson
2025-05-07 21:12 ` [PATCH v5 13/24] target/m68k: Remove env argument to gen_lea_mode Richard Henderson
2025-05-07 21:12 ` [PATCH v5 14/24] target/m68k: Remove env argument to gen_load_mode Richard Henderson
2025-05-07 21:12 ` [PATCH v5 15/24] target/m68k: Remove env argument to gen_store_mode Richard Henderson
2025-05-07 21:12 ` [PATCH v5 16/24] target/m68k: Remove env argument to gen_ea_mode_fp Richard Henderson
2025-05-07 21:12 ` [PATCH v5 17/24] target/m68k: Split gen_ea_mode_fp for load/store Richard Henderson
2025-05-07 21:12 ` [PATCH v5 18/24] target/m68k: Move gen_addr_fault into gen_{load, store}_mode_fp Richard Henderson
2025-05-07 21:12 ` [PATCH v5 19/24] target/m68k: Merge gen_load_fp, gen_load_mode_fp Richard Henderson
2025-05-07 21:12 ` [PATCH v5 20/24] target/m68k: Merge gen_store_fp, gen_store_mode_fp Richard Henderson
2025-05-07 21:12 ` [PATCH v5 21/24] target/m68k: Implement packed decimal real loads and stores Richard Henderson
2025-05-10 16:36   ` Andreas Schwab
2025-05-11 17:20     ` Richard Henderson
2025-05-07 21:12 ` [PATCH v5 22/24] tests/tcg/m68k: Add packed decimal tests Richard Henderson
2025-05-07 21:12 ` [PATCH v5 23/24] target/m68k: Make vmstate variables static Richard Henderson
2025-05-07 21:12 ` [PATCH v5 24/24] target/m68k: Implement FPIAR Richard Henderson
2025-05-07 21:28 ` [PATCH v5 00/24] target/m68k: fpu improvements Helge Deller
2025-05-08 21:39   ` 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).