All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/8] MIPS queue for February 27th, 2019
@ 2019-02-27 14:00 Aleksandar Markovic
  2019-02-27 14:00 ` [Qemu-devel] [PULL 1/8] tests/tcg: target/mips: Add tests for MSA integer compare instructions Aleksandar Markovic
                   ` (8 more replies)
  0 siblings, 9 replies; 12+ messages in thread
From: Aleksandar Markovic @ 2019-02-27 14:00 UTC (permalink / raw)
  To: qemu-devel; +Cc: peter.maydell, amarkovic

From: Aleksandar Markovic <amarkovic@wavecomp.com>

  Merge remote-tracking branch 'remotes/berrange/tags/authz-core-pull-request' into staging (2019-02-26 17:59:41 +0000)

are available in the git repository at:

  https://github.com/AMarkovic/qemu tags/mips-queue-feb-27-2019

for you to fetch changes up to 37b9aae2e6e005e6df206a0b4804972460806166:

  target/mips: Preparing for adding MMI instructions (2019-02-27 14:26:14 +0100)

----------------------------------------------------------------

MIPS queue for February 27th, 2019

  - addition of two sets of new MSA ASE TCG tests
  - preparation for adding MMI instructions in translate.c
  - fixing a function misnomer in nanoMIPS disassembler
  - MIPS end user documentation updates

NOTES:

  - there are two checkpatch.pl's warnings on "updating MAINTAINERS"
    that can be ignored
  - all patches contain "message-id" now

----------------------------------------------------------------

Aleksandar Markovic (7):
  tests/tcg: target/mips: Add tests for MSA integer compare instructions
  disas: nanoMIPS: Fix a function misnomer
  qemu-doc: Move section on MIPS' mipssim pseudo board
  qemu-doc: Add section on MIPS' Fulong 2E board
  qemu-doc: Add section on MIPS' Boston board
  tests/tcg: target/mips: Add wrappers for MSA integer max/min
    instructions
  tests/tcg: target/mips: Add tests for MSA integer max/min instructions

Mateja Marjanovic (1):
  target/mips: Preparing for adding MMI instructions

 disas/nanomips.cpp                                 |  96 ++++++-------
 disas/nanomips.h                                   |   2 +-
 qemu-doc.texi                                      |  46 +++++--
 target/mips/translate.c                            |  43 +++++-
 tests/tcg/mips/include/wrappers_msa.h              |  30 ++++
 .../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 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_a_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_a_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_a_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_a_w.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_s_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_s_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_s_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_s_w.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_u_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_u_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_u_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_max_u_w.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_a_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_a_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_a_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_a_w.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_s_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_s_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_s_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_s_w.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_u_b.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_u_d.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_u_h.c    | 153 +++++++++++++++++++++
 .../user/ase/msa/int-max-min/test_msa_min_u_w.c    | 153 +++++++++++++++++++++
 49 files changed, 6886 insertions(+), 63 deletions(-)
 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
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_w.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_b.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_d.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_h.c
 create mode 100644 tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_w.c

-- 
2.7.4

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

end of thread, other threads:[~2020-12-12 10:05 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-27 14:00 [Qemu-devel] [PULL 0/8] MIPS queue for February 27th, 2019 Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 1/8] tests/tcg: target/mips: Add tests for MSA integer compare instructions Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 2/8] disas: nanoMIPS: Fix a function misnomer Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 3/8] qemu-doc: Move section on MIPS' mipssim pseudo board Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 4/8] qemu-doc: Add section on MIPS' Fulong 2E board Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 5/8] qemu-doc: Add section on MIPS' Boston board Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 6/8] tests/tcg: target/mips: Add wrappers for MSA integer max/min instructions Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 7/8] tests/tcg: target/mips: Add tests " Aleksandar Markovic
2019-02-27 14:00 ` [Qemu-devel] [PULL 8/8] target/mips: Preparing for adding MMI instructions Aleksandar Markovic
2020-11-13  9:39   ` Philippe Mathieu-Daudé
2020-12-12 10:04     ` Fredrik Noring
2019-02-28 16:11 ` [Qemu-devel] [PULL 0/8] MIPS queue for February 27th, 2019 Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.