From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:33251) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gxGUT-0003rM-9B for qemu-devel@nongnu.org; Fri, 22 Feb 2019 14:28:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gxGUP-0001TJ-Jg for qemu-devel@nongnu.org; Fri, 22 Feb 2019 14:28:07 -0500 Received: from mx2.rt-rk.com ([89.216.37.149]:53042 helo=mail.rt-rk.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gxGUL-0008Ss-9A for qemu-devel@nongnu.org; Fri, 22 Feb 2019 14:28:03 -0500 From: Aleksandar Markovic Date: Fri, 22 Feb 2019 20:26:10 +0100 Message-Id: <1550863578-30859-1-git-send-email-aleksandar.markovic@rt-rk.com> Subject: [Qemu-devel] [PATCH v3 0/8] Misc target/mips fixes and improvements List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aurelien@aurel32.net, amarkovic@wavecomp.com, arikalo@wavecomp.com From: Aleksandar Markovic A collection of misc target/mips fixes and improvements for February 2019. v2->v3: - added a patches on documenting Boston board - added two patches on testing integer max/min MSA instructions - removed four patches that had been accepted - amended patch on DSP-related comments v1->v2: - added two patches on updating end user documentation - minor updates to commit messages Aleksandar Markovic (8): 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 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 disas/nanomips.cpp | 381 +++++++++++---------- disas/nanomips.h | 2 +- qemu-doc.texi | 46 ++- 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 +++++++++ 48 files changed, 6995 insertions(+), 196 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