From: Aleksandar Markovic <amarko...@wavecomp.com> The following changes since commit d247c8e7f4fc856abf799c37ca9818514ddb08b7:
Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20190701' into staging (2019-07-02 11:48:39 +0100) are available in the git repository at: https://github.com/AMarkovic/qemu tags/mips-queue-jul-02-2019 for you to fetch changes up to 698c5752c4e618dc17b4c78dfa566896c7bce5ef: target/mips: Correct helper for MSA FCLASS.<W|D> instructions (2019-07-02 14:20:42 +0200) ---------------------------------------------------------------- MIPS queue for July 2nd, 2019 Note: - a checkpatch warning on updating MAINTAINERS should be ignored Highlights: - introduced limited Kconfig support for MIPS machines - updated "machine-none" tests - cleaned up translate.c and msa_helper.c - minor MSA emulation improvements - updated MSA tests ---------------------------------------------------------------- Aleksandar Markovic (7): tcg/tests: target/mips: Amend MSA fixed point multiply tests tcg/tests: target/mips: Amend MSA integer multiply tests tcg/tests: target/mips: Correct MSA test compilation and execution order target/mips: Correct comments in translate.c target/mips: Correct comments in msa_helper.c target/mips: Unroll loops for MSA float max/min instructions target/mips: Correct helper for MSA FCLASS.<W|D> instructions Philippe Mathieu-Daudé (5): tests/machine-none: Test recent MIPS cpus hw/mips: Explicit the semi-hosting feature is always required hw/mips: Express dependencies of the MIPSsim machine with Kconfig hw/mips: Express dependencies of the Jazz machine with Kconfig hw/mips: Express dependencies of the r4k platform with Kconfig default-configs/mips-softmmu-common.mak | 7 +- default-configs/mips64-softmmu.mak | 5 - default-configs/mips64el-softmmu.mak | 5 - hw/mips/Kconfig | 30 ++ target/mips/msa_helper.c | 260 +++++++---- target/mips/translate.c | 497 +++++++++++++-------- tests/machine-none-test.c | 4 +- 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 +- 32 files changed, 3297 insertions(+), 1229 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