qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/7] target/mips: Mips improvements for 4.1
@ 2019-07-01 11:04 Aleksandar Markovic
  2019-07-01 11:04 ` [Qemu-devel] [PATCH 1/7] tcg/tests: target/mips: Amend MSA fixed point multiply tests Aleksandar Markovic
                   ` (7 more replies)
  0 siblings, 8 replies; 10+ messages in thread
From: Aleksandar Markovic @ 2019-07-01 11:04 UTC (permalink / raw)
  To: qemu-devel, arikalo; +Cc: amarkovic

From: Aleksandar Markovic <amarkovic@wavecomp.com>

A collection of misc MIPS improvements that would be nice to be
integrated into 4.1.

Aleksandar Markovic (7):
  tcg/tests: target/mips: Amend MSA fixed point multiply tests
  tcg/tests: target/mips: Amend MSA integer multiply tests
  target/mips: Correct comments in msa_helper.c
  target/mips: Correct comments in translate.c
  tcg/tests: target/mips: Correct MSA test compilation and execution
    order
  target/mips: Unroll loops for MSA float max/min instructions
  target/mips: Correct helper for MSA FCLASS.<W|D> instructions

 target/mips/msa_helper.c                           | 244 ++++++++++-----
 target/mips/translate.c                            | 347 +++++++++++++--------
 tests/tcg/mips/include/wrappers_msa.h              |  16 +
 .../ase/msa/fixed-multiply/test_msa_madd_q_h.c     | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_madd_q_w.c     | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_maddr_q_h.c    | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_maddr_q_w.c    | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_msub_q_h.c     | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_msub_q_w.c     | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_msubr_q_h.c    | 216 +++++++++++++
 .../ase/msa/fixed-multiply/test_msa_msubr_q_w.c    | 216 +++++++++++++
 .../user/ase/msa/int-multiply/test_msa_maddv_b.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_maddv_d.c   | 214 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_maddv_h.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_maddv_w.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_msubv_b.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_msubv_d.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_msubv_h.c   | 224 ++++++-------
 .../user/ase/msa/int-multiply/test_msa_msubv_w.c   | 224 ++++++-------
 .../mips/user/ase/msa/test_msa_compile_32r6eb.sh   |  32 +-
 .../mips/user/ase/msa/test_msa_compile_32r6el.sh   |  32 +-
 .../mips/user/ase/msa/test_msa_compile_64r6eb.sh   |  32 +-
 .../mips/user/ase/msa/test_msa_compile_64r6el.sh   |  32 +-
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh |  16 +-
 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh |  16 +-
 tests/tcg/mips/user/ase/msa/test_msa_run_64r6eb.sh |  16 +-
 tests/tcg/mips/user/ase/msa/test_msa_run_64r6el.sh |  16 +-
 27 files changed, 3165 insertions(+), 1144 deletions(-)
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_madd_q_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_madd_q_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_maddr_q_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_maddr_q_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msub_q_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msub_q_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msubr_q_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_msubr_q_w.c

-- 
2.7.4



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

end of thread, other threads:[~2019-07-01 11:36 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-01 11:04 [Qemu-devel] [PATCH 0/7] target/mips: Mips improvements for 4.1 Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 1/7] tcg/tests: target/mips: Amend MSA fixed point multiply tests Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 2/7] tcg/tests: target/mips: Amend MSA integer " Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 3/7] target/mips: Correct comments in msa_helper.c Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 4/7] target/mips: Correct comments in translate.c Aleksandar Markovic
2019-07-01 11:28   ` Philippe Mathieu-Daudé
2019-07-01 11:04 ` [Qemu-devel] [PATCH 5/7] tcg/tests: target/mips: Correct MSA test compilation and execution order Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 6/7] target/mips: Unroll loops for MSA float max/min instructions Aleksandar Markovic
2019-07-01 11:04 ` [Qemu-devel] [PATCH 7/7] target/mips: Correct helper for MSA FCLASS.<W|D> instructions Aleksandar Markovic
2019-07-01 11:21 ` [Qemu-devel] [PATCH 0/7] target/mips: Mips improvements for 4.1 Aleksandar Rikalo

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