From: Aleksandar Markovic <[email protected]>
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
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
target/mips/msa_helper.c | 260 +++++++----
target/mips/translate.c | 497 +++++++++++++--------
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, 3262 insertions(+), 1213 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