qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/38] sparc + linux-user patch queue
@ 2024-06-05 17:22 Richard Henderson
  2024-06-05 17:22 ` [PULL 01/38] linux-user: Add ioctl for BLKBSZSET Richard Henderson
                   ` (38 more replies)
  0 siblings, 39 replies; 40+ messages in thread
From: Richard Henderson @ 2024-06-05 17:22 UTC (permalink / raw)
  To: qemu-devel


The following changes since commit d16cab541ab9217977e2a39abf3d79f914146741:

  Merge tag 'hw-misc-accel-20240604' of https://github.com/philmd/qemu into staging (2024-06-04 14:53:05 -0500)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-sp-20240605

for you to fetch changes up to b12b72274320ce3ee516d963efd48766163cb240:

  target/sparc: Enable VIS4 feature bit (2024-06-05 09:11:17 -0700)

----------------------------------------------------------------
target/sparc: Implement FMAF, IMA, VIS3 and VIS4 extensions
linux-user: Add ioctl for BLKBSZSET

----------------------------------------------------------------
Michael Vogt (1):
      linux-user: Add ioctl for BLKBSZSET

Richard Henderson (37):
      target/sparc: Fix ARRAY8
      target/sparc: Rewrite gen_edge
      target/sparc: Fix do_dc
      target/sparc: Fix helper_fmul8ulx16
      target/sparc: Perform DFPREG/QFPREG in decodetree
      target/sparc: Remove gen_dest_fpr_D
      target/sparc: Remove cpu_fpr[]
      target/sparc: Use gvec for VIS1 parallel add/sub
      target/sparc: Implement FMAf extension
      target/sparc: Add feature bits for VIS 3
      target/sparc: Implement ADDXC, ADDXCcc
      target/sparc: Implement CMASK instructions
      target/sparc: Implement FCHKSM16
      target/sparc: Implement FHADD, FHSUB, FNHADD, FNADD, FNMUL
      target/sparc: Implement FLCMP
      target/sparc: Implement FMEAN16
      target/sparc: Implement FPADD64, FPSUB64
      target/sparc: Implement FPADDS, FPSUBS
      target/sparc: Implement FPCMPEQ8, FPCMPNE8, FPCMPULE8, FPCMPUGT8
      target/sparc: Implement FSLL, FSRL, FSRA, FSLAS
      target/sparc: Implement LDXEFSR
      target/sparc: Implement LZCNT
      target/sparc: Implement MOVsTOw, MOVdTOx, MOVwTOs, MOVxTOd
      target/sparc: Implement PDISTN
      target/sparc: Implement UMULXHI
      target/sparc: Implement XMULX
      target/sparc: Enable VIS3 feature bit
      target/sparc: Implement IMA extension
      target/sparc: Add feature bit for VIS4
      target/sparc: Implement FALIGNDATAi
      target/sparc: Implement 8-bit FPADD, FPADDS, and FPADDUS
      target/sparc: Implement VIS4 comparisons
      target/sparc: Implement FPMIN, FPMAX
      target/sparc: Implement SUBXC, SUBXCcc
      target/sparc: Implement MWAIT
      target/sparc: Implement monitor ASIs
      target/sparc: Enable VIS4 feature bit

 linux-user/ioctls.h            |   1 +
 target/sparc/asi.h             |   4 +
 target/sparc/helper.h          |  27 +-
 target/sparc/cpu-feature.h.inc |   4 +
 target/sparc/insns.decode      | 338 +++++++++++----
 linux-user/elfload.c           |   3 +
 target/sparc/cpu.c             |  12 +
 target/sparc/fop_helper.c      | 136 ++++++
 target/sparc/ldst_helper.c     |   4 +
 target/sparc/translate.c       | 942 +++++++++++++++++++++++++++++++++--------
 target/sparc/vis_helper.c      | 392 ++++++++++++++---
 fpu/softfloat-specialize.c.inc |  31 ++
 12 files changed, 1563 insertions(+), 331 deletions(-)


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

end of thread, other threads:[~2024-06-05 18:50 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-05 17:22 [PULL 00/38] sparc + linux-user patch queue Richard Henderson
2024-06-05 17:22 ` [PULL 01/38] linux-user: Add ioctl for BLKBSZSET Richard Henderson
2024-06-05 17:22 ` [PULL 02/38] target/sparc: Fix ARRAY8 Richard Henderson
2024-06-05 17:22 ` [PULL 03/38] target/sparc: Rewrite gen_edge Richard Henderson
2024-06-05 17:22 ` [PULL 04/38] target/sparc: Fix do_dc Richard Henderson
2024-06-05 17:22 ` [PULL 05/38] target/sparc: Fix helper_fmul8ulx16 Richard Henderson
2024-06-05 17:22 ` [PULL 06/38] target/sparc: Perform DFPREG/QFPREG in decodetree Richard Henderson
2024-06-05 17:22 ` [PULL 07/38] target/sparc: Remove gen_dest_fpr_D Richard Henderson
2024-06-05 17:22 ` [PULL 08/38] target/sparc: Remove cpu_fpr[] Richard Henderson
2024-06-05 17:22 ` [PULL 09/38] target/sparc: Use gvec for VIS1 parallel add/sub Richard Henderson
2024-06-05 17:22 ` [PULL 10/38] target/sparc: Implement FMAf extension Richard Henderson
2024-06-05 17:22 ` [PULL 11/38] target/sparc: Add feature bits for VIS 3 Richard Henderson
2024-06-05 17:22 ` [PULL 12/38] target/sparc: Implement ADDXC, ADDXCcc Richard Henderson
2024-06-05 17:22 ` [PULL 13/38] target/sparc: Implement CMASK instructions Richard Henderson
2024-06-05 17:22 ` [PULL 14/38] target/sparc: Implement FCHKSM16 Richard Henderson
2024-06-05 17:22 ` [PULL 15/38] target/sparc: Implement FHADD, FHSUB, FNHADD, FNADD, FNMUL Richard Henderson
2024-06-05 17:22 ` [PULL 16/38] target/sparc: Implement FLCMP Richard Henderson
2024-06-05 17:22 ` [PULL 17/38] target/sparc: Implement FMEAN16 Richard Henderson
2024-06-05 17:22 ` [PULL 18/38] target/sparc: Implement FPADD64, FPSUB64 Richard Henderson
2024-06-05 17:22 ` [PULL 19/38] target/sparc: Implement FPADDS, FPSUBS Richard Henderson
2024-06-05 17:22 ` [PULL 20/38] target/sparc: Implement FPCMPEQ8, FPCMPNE8, FPCMPULE8, FPCMPUGT8 Richard Henderson
2024-06-05 17:22 ` [PULL 21/38] target/sparc: Implement FSLL, FSRL, FSRA, FSLAS Richard Henderson
2024-06-05 17:22 ` [PULL 22/38] target/sparc: Implement LDXEFSR Richard Henderson
2024-06-05 17:22 ` [PULL 23/38] target/sparc: Implement LZCNT Richard Henderson
2024-06-05 17:22 ` [PULL 24/38] target/sparc: Implement MOVsTOw, MOVdTOx, MOVwTOs, MOVxTOd Richard Henderson
2024-06-05 17:22 ` [PULL 25/38] target/sparc: Implement PDISTN Richard Henderson
2024-06-05 17:22 ` [PULL 26/38] target/sparc: Implement UMULXHI Richard Henderson
2024-06-05 17:22 ` [PULL 27/38] target/sparc: Implement XMULX Richard Henderson
2024-06-05 17:22 ` [PULL 28/38] target/sparc: Enable VIS3 feature bit Richard Henderson
2024-06-05 17:22 ` [PULL 29/38] target/sparc: Implement IMA extension Richard Henderson
2024-06-05 17:22 ` [PULL 30/38] target/sparc: Add feature bit for VIS4 Richard Henderson
2024-06-05 17:22 ` [PULL 31/38] target/sparc: Implement FALIGNDATAi Richard Henderson
2024-06-05 17:22 ` [PULL 32/38] target/sparc: Implement 8-bit FPADD, FPADDS, and FPADDUS Richard Henderson
2024-06-05 17:22 ` [PULL 33/38] target/sparc: Implement VIS4 comparisons Richard Henderson
2024-06-05 17:22 ` [PULL 34/38] target/sparc: Implement FPMIN, FPMAX Richard Henderson
2024-06-05 17:22 ` [PULL 35/38] target/sparc: Implement SUBXC, SUBXCcc Richard Henderson
2024-06-05 17:22 ` [PULL 36/38] target/sparc: Implement MWAIT Richard Henderson
2024-06-05 17:22 ` [PULL 37/38] target/sparc: Implement monitor ASIs Richard Henderson
2024-06-05 17:22 ` [PULL 38/38] target/sparc: Enable VIS4 feature bit Richard Henderson
2024-06-05 18:49 ` [PULL 00/38] sparc + linux-user 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).