qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/7] Misc target/mips fixes and improvements
@ 2019-02-18 15:31 Aleksandar Markovic
  2019-02-18 15:31 ` [Qemu-devel] [PATCH 1/7] hw/misc: mips_itu: Fix 32/64 bit issue in a line involving shift operator Aleksandar Markovic
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: Aleksandar Markovic @ 2019-02-18 15:31 UTC (permalink / raw)
  To: qemu-devel; +Cc: aurelien, amarkovic, peter.maydell, arikalo

From: Aleksandar Markovic <amarkovic@wavecomp.com>

A collection of misc target/mips fixes and improvements for
February 2019.

Aleksandar Markovic (7):
  hw/misc: mips_itu: Fix 32/64 bit issue in a line involving shift
    operator
  tests/tcg: target/mips: Correct path to headers in some test source
    files
  tests/tcg: target/mips: Change directory name 'bit-counting' to
    'bit-count'
  tests/tcg: target/mips: Add wrappers for MSA integer compare
    instructions
  tests/tcg: target/mips: Add tests for MSA integer compare instructions
  disas: nanoMIPS: Correct comments to handlers of some DSP instructions
  disas: nanoMIPS: Fix a function misnomer

 disas/nanomips.cpp                                 | 224 +++++++++++----------
 disas/nanomips.h                                   |   2 +-
 hw/misc/mips_itu.c                                 |   2 +-
 tests/tcg/mips/include/wrappers_msa.h              |  25 +++
 .../{bit-counting => bit-count}/test_msa_nloc_b.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nloc_d.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nloc_h.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nloc_w.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nlzc_b.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nlzc_d.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nlzc_h.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_nlzc_w.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_pcnt_b.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_pcnt_d.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_pcnt_h.c  |   6 +-
 .../{bit-counting => bit-count}/test_msa_pcnt_w.c  |   6 +-
 .../mips/user/ase/msa/int-compare/test_msa_ceq_b.c | 153 ++++++++++++++
 .../mips/user/ase/msa/int-compare/test_msa_ceq_d.c | 153 ++++++++++++++
 .../mips/user/ase/msa/int-compare/test_msa_ceq_h.c | 153 ++++++++++++++
 .../mips/user/ase/msa/int-compare/test_msa_ceq_w.c | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_s_b.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_s_d.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_s_h.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_s_w.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_u_b.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_u_d.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_u_h.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_cle_u_w.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_s_b.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_s_d.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_s_h.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_s_w.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_u_b.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_u_d.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_u_h.c    | 153 ++++++++++++++
 .../user/ase/msa/int-compare/test_msa_clt_u_w.c    | 153 ++++++++++++++
 36 files changed, 3238 insertions(+), 147 deletions(-)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nloc_b.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nloc_d.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nloc_h.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nloc_w.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nlzc_b.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nlzc_d.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nlzc_h.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_nlzc_w.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_pcnt_b.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_pcnt_d.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_pcnt_h.c (98%)
 rename tests/tcg/mips/user/ase/msa/{bit-counting => bit-count}/test_msa_pcnt_w.c (98%)
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_w.c

-- 
2.7.4

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

end of thread, other threads:[~2019-02-19 14:35 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-18 15:31 [Qemu-devel] [PATCH 0/7] Misc target/mips fixes and improvements Aleksandar Markovic
2019-02-18 15:31 ` [Qemu-devel] [PATCH 1/7] hw/misc: mips_itu: Fix 32/64 bit issue in a line involving shift operator Aleksandar Markovic
2019-02-18 21:43   ` Philippe Mathieu-Daudé
2019-02-18 15:31 ` [Qemu-devel] [PATCH 2/7] tests/tcg: target/mips: Correct path to headers in some test source files Aleksandar Markovic
2019-02-19 13:37   ` Aleksandar Rikalo
2019-02-18 15:31 ` [Qemu-devel] [PATCH 3/7] tests/tcg: target/mips: Change directory name 'bit-counting' to 'bit-count' Aleksandar Markovic
2019-02-18 21:44   ` Philippe Mathieu-Daudé
2019-02-18 15:31 ` [Qemu-devel] [PATCH 4/7] tests/tcg: target/mips: Add wrappers for MSA integer compare instructions Aleksandar Markovic
2019-02-19 14:35   ` Aleksandar Rikalo
2019-02-18 15:31 ` [Qemu-devel] [PATCH 5/7] tests/tcg: target/mips: Add tests " Aleksandar Markovic
2019-02-18 15:31 ` [Qemu-devel] [PATCH 6/7] disas: nanoMIPS: Correct comments to handlers of some DSP instructions Aleksandar Markovic
2019-02-18 15:31 ` [Qemu-devel] [PATCH 7/7] disas: nanoMIPS: Fix a function misnomer Aleksandar Markovic

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