qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aleksandar Rikalo <arikalo@wavecomp.com>
To: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "philmd@redhat.com" <philmd@redhat.com>,
	Aleksandar Markovic <amarkovic@wavecomp.com>
Subject: Re: [Qemu-devel] [EXTERNAL][PATCH v8 37/37] target/mips: tests/tcg: Fix target configurations for MSA tests
Date: Mon, 19 Aug 2019 14:50:09 +0000	[thread overview]
Message-ID: <DM5PR22MB1658C7F1422C144592878E38D2A80@DM5PR22MB1658.namprd22.prod.outlook.com> (raw)
In-Reply-To: <1566216496-17375-38-git-send-email-aleksandar.markovic@rt-rk.com>

> From: Aleksandar Markovic <aleksandar.markovic@rt-rk.com>
> Sent: Monday, August 19, 2019 2:08 PM
> To: qemu-devel@nongnu.org <qemu-devel@nongnu.org>
> Cc: philmd@redhat.com <philmd@redhat.com>; Aleksandar Markovic <amarkovic@wavecomp.com>; Aleksandar Rikalo <arikalo@wavecomp.com>
> Subject: [EXTERNAL][PATCH v8 37/37] target/mips: tests/tcg: Fix target configurations for MSA tests
>
> From: Aleksandar Markovic <amarkovic@wavecomp.com>
>
> At this moment, the only MIPS CPUs that are emulated in QEMU and
> support MSA extension are R5600 (mips32r5), and I6400/I6500 (mips64r6).
> Therefore, mips32r5 and mips64r6 are the only ISAs that could support
> MSA in QEMU. This means mips32r6 currently do not make much sense, and
> mips32r5 support for MSA tests is needed, which is done by this patch.
>
> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
> ---
>  .../mips/user/ase/msa/test_msa_compile_32r5eb.sh   | 917 +++++++++++++++++++++
>  .../mips/user/ase/msa/test_msa_compile_32r5el.sh   | 917 +++++++++++++++++++++
>  .../mips/user/ase/msa/test_msa_compile_32r6eb.sh   | 643 ---------------
>  .../mips/user/ase/msa/test_msa_compile_32r6el.sh   | 643 ---------------
>  tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh | 371 +++++++++
>  tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh | 371 +++++++++
>  tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh | 371 ---------
>  tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh | 371 ---------
>  8 files changed, 2576 insertions(+), 2028 deletions(-)
>  create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
>  create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
>  delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
>  delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
>  create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
>  create mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
>  delete mode 100644 tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
>  delete mode 100755 tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh
>
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
> new file mode 100755
> index 0000000..940cabe
> --- /dev/null
> +++ b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5eb.sh
> @@ -0,0 +1,917 @@
> +
> +#
> +# Bit Count
> +# ---------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_d_32r5eb
> +
> +#
> +# Bit move
> +# --------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bmnz_v.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bmnz_v_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bmz_v.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bmz_v_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bsel_v.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bsel_v_32r5eb
> +
> +#
> +# Bit Set
> +# -------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_d_32r5eb
> +
> +#
> +# Fixed Multiply
> +# --------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_madd_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_madd_q_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddr_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddr_q_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msub_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msub_q_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubr_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubr_q_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mul_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mul_q_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulr_q_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulr_q_w_32r5eb
> +
> +#
> +# Float Max Min
> +# -------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_a_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_a_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_a_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_a_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_d_32r5eb
> +
> +#
> +# Int Add
> +# -------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_d_32r5eb
> +
> +#
> +# Int Average
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_d_32r5eb
> +
> +#
> +# Int Compare
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_b.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_h.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_w.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_d.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_d_32r5eb
> +
> +#
> +# Int Divide
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_d_32r5eb
> +
> +#
> +# Int Dot Product
> +# ---------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_d.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_d.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_d.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_h.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_w.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_d.c       \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_d_32r5eb
> +
> +#
> +# Int Max Min
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_d_32r5eb
> +
> +#
> +# Int Modulo
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_d_32r5eb
> +
> +#
> +# Int Multiply
> +# ------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_d_32r5eb
> +
> +#
> +# Int Subtract
> +# ------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_b.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_h.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_w.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_d.c        \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_b.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_h.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_w.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_d.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_b.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_h.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_w.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_d.c      \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_d_32r5eb
> +
> +#
> +# Interleave
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_d_32r5eb
> +
> +#
> +# Logic
> +# -----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_and_v.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_and_v_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_nor_v.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nor_v_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_or_v.c            \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_or_v_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_xor_v.c           \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_xor_v_32r5eb
> +
> +#
> +# Move
> +# ----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            move/test_msa_move_v.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_move_v_32r5eb
> +
> +#
> +# Pack
> +# ----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_d_32r5eb
> +
> +#
> +# Shift
> +# -----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_b.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_h.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_w.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_d.c          \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_d_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_b.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_b_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_h.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_h_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_w.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_w_32r5eb
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_d.c         \
> +-EB -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_d_32r5eb
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
> new file mode 100755
> index 0000000..048b30b
> --- /dev/null
> +++ b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r5el.sh
> @@ -0,0 +1,917 @@
> +
> +#
> +# Bit Count
> +# ---------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nloc_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nloc_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_nlzc_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nlzc_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc       bit-count/test_msa_pcnt_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pcnt_d_32r5el
> +
> +#
> +# Bit move
> +# --------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsl_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsl_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_binsr_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_binsr_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bmnz_v.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bmnz_v_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bmz_v.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bmz_v_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-move/test_msa_bsel_v.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bsel_v_32r5el
> +
> +#
> +# Bit Set
> +# -------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bclr_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bclr_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bneg_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bneg_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         bit-set/test_msa_bset_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_bset_d_32r5el
> +
> +#
> +# Fixed Multiply
> +# --------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_madd_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_madd_q_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddr_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddr_q_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msub_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msub_q_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubr_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubr_q_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mul_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mul_q_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulr_q_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulr_q_w_32r5el
> +
> +#
> +# Float Max Min
> +# -------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_a_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_a_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmax_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmax_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_a_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_a_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc   float-max-min/test_msa_fmin_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_fmin_d_32r5el
> +
> +#
> +# Int Add
> +# -------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_add_a_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_add_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_a_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_adds_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_adds_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_addv_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_addv_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc         int-add/test_msa_hadd_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hadd_u_d_32r5el
> +
> +#
> +# Int Average
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_ave_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ave_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-average/test_msa_aver_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_aver_u_d_32r5el
> +
> +#
> +# Int Compare
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_b.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_h.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_w.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_ceq_d.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ceq_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_cle_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_cle_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-compare/test_msa_clt_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_clt_u_d_32r5el
> +
> +#
> +# Int Divide
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-divide/test_msa_div_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_div_u_d_32r5el
> +
> +#
> +# Int Dot Product
> +# ---------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dotp_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dotp_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_d.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_d.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpadd_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_d.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_h.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_w.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_d.c       \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_dpsub_u_d_32r5el
> +
> +#
> +# Int Max Min
> +# -----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_a_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_max_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_max_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_a_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_a_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc     int-max-min/test_msa_min_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_min_u_d_32r5el
> +
> +#
> +# Int Modulo
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_s_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      int-modulo/test_msa_mod_u_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mod_u_d_32r5el
> +
> +#
> +# Int Multiply
> +# ------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_maddv_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_maddv_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_msubv_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_msubv_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-multiply/test_msa_mulv_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_mulv_d_32r5el
> +
> +#
> +# Int Subtract
> +# ------------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_asub_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_asub_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_hsub_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_hsub_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_s_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_b.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_h.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_w.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subs_u_d.c        \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subs_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_b.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_h.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_w.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsus_u_d.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsus_u_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_b.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_h.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_w.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_d.c      \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subsuu_s_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc    int-subtract/test_msa_subv_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_subv_d_32r5el
> +
> +#
> +# Interleave
> +# ----------
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvev_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvev_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvod_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvod_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvl_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvl_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc      interleave/test_msa_ilvr_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_ilvr_d_32r5el
> +
> +#
> +# Logic
> +# -----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_and_v.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_and_v_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_nor_v.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_nor_v_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_or_v.c            \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_or_v_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc           logic/test_msa_xor_v.c           \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_xor_v_32r5el
> +
> +#
> +# Move
> +# ----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            move/test_msa_move_v.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_move_v_32r5el
> +
> +#
> +# Pack
> +# ----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckev_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckev_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_pckod_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_pckod_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            pack/test_msa_vshf_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_vshf_d_32r5el
> +
> +#
> +# Shift
> +# -----
> +#
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sll_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sll_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_sra_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_sra_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srar_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srar_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_b.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_h.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_w.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srl_d.c          \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srl_d_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_b.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_b_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_h.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_h_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_w.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_w_32r5el
> +/opt/mti/bin/mips-mti-linux-gnu-gcc            shift/test_msa_srlr_d.c         \
> +-EL -static -mabi=32 -march=mips32r5 -mmsa -mno-odd-spreg -mfp64 -mnan=2008 -o \
> +      /tmp/test_msa_srlr_d_32r5el
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
> deleted file mode 100755
> index 2519213..0000000
> --- a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
> +++ /dev/null
> @@ -1,643 +0,0 @@
> -
> -#
> -# Bit Count
> -# ---------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_d_32r6eb
> -
> -#
> -# Bit move
> -# --------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bmnz_v.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bmnz_v_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bmz_v.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bmz_v_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bsel_v.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bsel_v_32r6eb
> -
> -#
> -# Bit Set
> -# -------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_d_32r6eb
> -
> -#
> -# Fixed Multiply
> -# --------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_madd_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_madd_q_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddr_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddr_q_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msub_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msub_q_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubr_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubr_q_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mul_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mul_q_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulr_q_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulr_q_w_32r6eb
> -
> -#
> -# Float Max Min
> -# -------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_a_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_a_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_a_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_a_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_d_32r6eb
> -
> -#
> -# Int Add
> -# -------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_d_32r6eb
> -
> -#
> -# Int Average
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_d_32r6eb
> -
> -#
> -# Int Compare
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_b.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_h.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_w.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_d.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_d_32r6eb
> -
> -#
> -# Int Divide
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_d_32r6eb
> -
> -#
> -# Int Dot Product
> -# ---------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_d.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_d.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_d.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_h.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_w.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_d.c       \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_d_32r6eb
> -
> -#
> -# Int Max Min
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_d_32r6eb
> -
> -#
> -# Int Modulo
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_d_32r6eb
> -
> -#
> -# Int Multiply
> -# ------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_d_32r6eb
> -
> -#
> -# Int Subtract
> -# ------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_b.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_h.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_w.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_d.c        \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_b.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_h.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_w.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_d.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_b.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_h.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_w.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_d.c      \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_d_32r6eb
> -
> -#
> -# Interleave
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_d_32r6eb
> -
> -#
> -# Logic
> -# -----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_and_v.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_and_v_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_nor_v.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nor_v_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_or_v.c            \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_or_v_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_xor_v.c           \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_xor_v_32r6eb
> -
> -#
> -# Move
> -# ----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            move/test_msa_move_v.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_move_v_32r6eb
> -
> -#
> -# Pack
> -# ----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_d_32r6eb
> -
> -#
> -# Shift
> -# -----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_b.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_h.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_w.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_d.c          \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_d_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_b.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_b_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_h.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_h_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_w.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_w_32r6eb
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_d.c         \
> --EB -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_d_32r6eb
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh b/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
> deleted file mode 100755
> index 1e10ff7..0000000
> --- a/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
> +++ /dev/null
> @@ -1,643 +0,0 @@
> -
> -#
> -# Bit Count
> -# ---------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nloc_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nloc_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_nlzc_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nlzc_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc       bit-count/test_msa_pcnt_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pcnt_d_32r6el
> -
> -#
> -# Bit move
> -# --------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsl_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsl_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_binsr_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_binsr_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bmnz_v.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bmnz_v_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bmz_v.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bmz_v_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-move/test_msa_bsel_v.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_bsel_v_32r6el
> -
> -#
> -# Bit Set
> -# -------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bclr_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bclr_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bneg_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bneg_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         bit-set/test_msa_bset_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_bset_d_32r6el
> -
> -#
> -# Fixed Multiply
> -# --------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_madd_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_madd_q_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_madd_q_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddr_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_maddr_q_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddr_q_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msub_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msub_q_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msub_q_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubr_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_msubr_q_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubr_q_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mul_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mul_q_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mul_q_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulr_q_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc  fixed-multiply/test_msa_mulr_q_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulr_q_w_32r6el
> -
> -#
> -# Float Max Min
> -# -------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_a_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_a_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmax_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmax_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_a_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_a_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc   float-max-min/test_msa_fmin_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_fmin_d_32r6el
> -
> -#
> -# Int Add
> -# -------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_add_a_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_add_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_a_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_adds_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_adds_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_addv_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_addv_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc         int-add/test_msa_hadd_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hadd_u_d_32r6el
> -
> -#
> -# Int Average
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_ave_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ave_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-average/test_msa_aver_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_aver_u_d_32r6el
> -
> -#
> -# Int Compare
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_b.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_h.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_w.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_ceq_d.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ceq_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_cle_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_cle_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-compare/test_msa_clt_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_clt_u_d_32r6el
> -
> -#
> -# Int Divide
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-divide/test_msa_div_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_div_u_d_32r6el
> -
> -#
> -# Int Dot Product
> -# ---------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dotp_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dotp_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_s_d.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpadd_u_d.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpadd_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_s_d.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_h.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_w.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc int-dot-product/test_msa_dpsub_u_d.c       \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_dpsub_u_d_32r6el
> -
> -#
> -# Int Max Min
> -# -----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_a_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_max_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_max_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_a_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_a_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc     int-max-min/test_msa_min_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_min_u_d_32r6el
> -
> -#
> -# Int Modulo
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_s_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      int-modulo/test_msa_mod_u_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mod_u_d_32r6el
> -
> -#
> -# Int Multiply
> -# ------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_maddv_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_maddv_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_msubv_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_msubv_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-multiply/test_msa_mulv_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_mulv_d_32r6el
> -
> -#
> -# Int Subtract
> -# ------------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_asub_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_asub_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_hsub_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_hsub_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_s_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_b.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_h.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_w.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subs_u_d.c        \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subs_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_b.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_h.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_w.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsus_u_d.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsus_u_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_b.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_h.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_w.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subsuu_s_d.c      \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subsuu_s_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc    int-subtract/test_msa_subv_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_subv_d_32r6el
> -
> -#
> -# Interleave
> -# ----------
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvev_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvev_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvod_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvod_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvl_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvl_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc      interleave/test_msa_ilvr_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_ilvr_d_32r6el
> -
> -#
> -# Logic
> -# -----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_and_v.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_and_v_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_nor_v.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_nor_v_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_or_v.c            \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_or_v_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc           logic/test_msa_xor_v.c           \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_xor_v_32r6el
> -
> -#
> -# Move
> -# ----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            move/test_msa_move_v.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_move_v_32r6el
> -
> -#
> -# Pack
> -# ----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckev_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckev_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_pckod_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_pckod_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            pack/test_msa_vshf_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o  /tmp/test_msa_vshf_d_32r6el
> -
> -#
> -# Shift
> -# -----
> -#
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sll_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sll_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_sra_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_sra_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srar_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srar_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_b.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_h.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_w.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srl_d.c          \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srl_d_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_b.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_b_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_h.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_h_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_w.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_w_32r6el
> -/opt/img/bin/mips-img-linux-gnu-gcc            shift/test_msa_srlr_d.c         \
> --EL -static -mabi=32 -march=mips32r6 -mmsa -o   /tmp/test_msa_srlr_d_32r6el
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh b/tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
> new file mode 100755
> index 0000000..32dbf31
> --- /dev/null
> +++ b/tests/tcg/mips/user/ase/msa/test_msa_run_32r5eb.sh
> @@ -0,0 +1,371 @@
> +PATH_TO_QEMU="../../../../../../mips-linux-user/qemu-mips"
> +
> +
> +#
> +# Bit Count
> +# ---------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_d_32r5eb
> +
> +#
> +# Bit move
> +# --------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bmnz_v_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bmz_v_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bsel_v_32r5eb
> +
> +#
> +# Bit Set
> +# -------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_d_32r5eb
> +
> +#
> +# Fixed Multiply
> +# --------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_madd_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_madd_q_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddr_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddr_q_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msub_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msub_q_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubr_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubr_q_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mul_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mul_q_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulr_q_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulr_q_w_32r5eb
> +
> +#
> +# Float Max Min
> +# -------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_d_32r5eb
> +
> +#
> +# Int Add
> +# -------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_d_32r5eb
> +
> +#
> +# Int Average
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_d_32r5eb
> +
> +#
> +# Int Compare
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_d_32r5eb
> +
> +#
> +# Int Divide
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_d_32r5eb
> +
> +#
> +# Int Dot Product
> +# ---------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_d_32r5eb
> +
> +#
> +# Int Max Min
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_d_32r5eb
> +
> +#
> +# Int Modulo
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_d_32r5eb
> +
> +#
> +# Int Multiply
> +# ------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_d_32r5eb
> +
> +#
> +# Int Subtract
> +# ------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_d_32r5eb
> +
> +#
> +# Interleave
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_d_32r5eb
> +
> +#
> +# Logic
> +# -----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_and_v_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nor_v_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_or_v_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_xor_v_32r5eb
> +
> +#
> +# Move
> +# ----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_move_v_32r5eb
> +
> +#
> +# Pack
> +# ----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_d_32r5eb
> +
> +#
> +# Shift
> +# -----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_d_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_b_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_h_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_w_32r5eb
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_d_32r5eb
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh b/tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
> new file mode 100755
> index 0000000..a2e6092
> --- /dev/null
> +++ b/tests/tcg/mips/user/ase/msa/test_msa_run_32r5el.sh
> @@ -0,0 +1,371 @@
> +PATH_TO_QEMU="../../../../../../mipsel-linux-user/qemu-mipsel"
> +
> +
> +#
> +# Bit Count
> +# ---------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nloc_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nlzc_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pcnt_d_32r5el
> +
> +#
> +# Bit move
> +# --------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsl_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_binsr_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bmnz_v_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bmz_v_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bsel_v_32r5el
> +
> +#
> +# Bit Set
> +# -------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bclr_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bneg_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_bset_d_32r5el
> +
> +#
> +# Fixed Multiply
> +# --------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_madd_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_madd_q_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddr_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddr_q_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msub_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msub_q_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubr_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubr_q_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mul_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mul_q_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulr_q_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulr_q_w_32r5el
> +
> +#
> +# Float Max Min
> +# -------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmax_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_fmin_d_32r5el
> +
> +#
> +# Int Add
> +# -------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_add_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_adds_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_addv_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hadd_u_d_32r5el
> +
> +#
> +# Int Average
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ave_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_aver_u_d_32r5el
> +
> +#
> +# Int Compare
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ceq_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_cle_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_clt_u_d_32r5el
> +
> +#
> +# Int Divide
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_div_u_d_32r5el
> +
> +#
> +# Int Dot Product
> +# ---------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dotp_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpadd_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_dpsub_u_d_32r5el
> +
> +#
> +# Int Max Min
> +# -----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_max_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_a_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_min_u_d_32r5el
> +
> +#
> +# Int Modulo
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mod_u_d_32r5el
> +
> +#
> +# Int Multiply
> +# ------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_maddv_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_msubv_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_mulv_d_32r5el
> +
> +#
> +# Int Subtract
> +# ------------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_asub_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_hsub_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subs_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsus_u_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subsuu_s_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_subv_d_32r5el
> +
> +#
> +# Interleave
> +# ----------
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvev_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvod_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvl_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_ilvr_d_32r5el
> +
> +#
> +# Logic
> +# -----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_and_v_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_nor_v_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_or_v_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_xor_v_32r5el
> +
> +#
> +# Move
> +# ----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_move_v_32r5el
> +
> +#
> +# Pack
> +# ----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckev_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_pckod_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_vshf_d_32r5el
> +
> +#
> +# Shift
> +# -----
> +#
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sll_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_sra_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srar_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srl_d_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_b_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_h_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_w_32r5el
> +$PATH_TO_QEMU -cpu P5600  /tmp/test_msa_srlr_d_32r5el
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh b/tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
> deleted file mode 100644
> index 6c95e45..0000000
> --- a/tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
> +++ /dev/null
> @@ -1,371 +0,0 @@
> -PATH_TO_QEMU="../../../../../../mips64-linux-user/qemu-mips64"
> -
> -
> -#
> -# Bit Count
> -# ---------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_d_32r6eb
> -
> -#
> -# Bit move
> -# --------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bmnz_v_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bmz_v_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bsel_v_32r6eb
> -
> -#
> -# Bit Set
> -# -------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_d_32r6eb
> -
> -#
> -# Fixed Multiply
> -# --------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_madd_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_madd_q_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddr_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddr_q_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msub_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msub_q_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubr_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubr_q_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mul_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mul_q_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulr_q_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulr_q_w_32r6eb
> -
> -#
> -# Float Max Min
> -# -------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_d_32r6eb
> -
> -#
> -# Int Add
> -# -------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_d_32r6eb
> -
> -#
> -# Int Average
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_d_32r6eb
> -
> -#
> -# Int Compare
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_d_32r6eb
> -
> -#
> -# Int Divide
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_d_32r6eb
> -
> -#
> -# Int Dot Product
> -# ---------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_d_32r6eb
> -
> -#
> -# Int Max Min
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_d_32r6eb
> -
> -#
> -# Int Modulo
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_d_32r6eb
> -
> -#
> -# Int Multiply
> -# ------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_d_32r6eb
> -
> -#
> -# Int Subtract
> -# ------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_d_32r6eb
> -
> -#
> -# Interleave
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_d_32r6eb
> -
> -#
> -# Logic
> -# -----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_and_v_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nor_v_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_or_v_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_xor_v_32r6eb
> -
> -#
> -# Move
> -# ----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_move_v_32r6eb
> -
> -#
> -# Pack
> -# ----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_d_32r6eb
> -
> -#
> -# Shift
> -# -----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_d_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_b_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_h_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_w_32r6eb
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_d_32r6eb
> diff --git a/tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh b/tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh
> deleted file mode 100755
> index d4945da..0000000
> --- a/tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh
> +++ /dev/null
> @@ -1,371 +0,0 @@
> -PATH_TO_QEMU="../../../../../../mips64el-linux-user/qemu-mips64el"
> -
> -
> -#
> -# Bit Count
> -# ---------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nloc_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nlzc_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pcnt_d_32r6el
> -
> -#
> -# Bit move
> -# --------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsl_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_binsr_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bmnz_v_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bmz_v_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bsel_v_32r6el
> -
> -#
> -# Bit Set
> -# -------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bclr_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bneg_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_bset_d_32r6el
> -
> -#
> -# Fixed Multiply
> -# --------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_madd_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_madd_q_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddr_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddr_q_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msub_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msub_q_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubr_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubr_q_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mul_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mul_q_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulr_q_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulr_q_w_32r6el
> -
> -#
> -# Float Max Min
> -# -------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmax_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_fmin_d_32r6el
> -
> -#
> -# Int Add
> -# -------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_add_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_adds_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_addv_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hadd_u_d_32r6el
> -
> -#
> -# Int Average
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ave_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_aver_u_d_32r6el
> -
> -#
> -# Int Compare
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ceq_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_cle_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_clt_u_d_32r6el
> -
> -#
> -# Int Divide
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_div_u_d_32r6el
> -
> -#
> -# Int Dot Product
> -# ---------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dotp_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpadd_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_dpsub_u_d_32r6el
> -
> -#
> -# Int Max Min
> -# -----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_max_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_a_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_min_u_d_32r6el
> -
> -#
> -# Int Modulo
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mod_u_d_32r6el
> -
> -#
> -# Int Multiply
> -# ------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_maddv_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_msubv_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_mulv_d_32r6el
> -
> -#
> -# Int Subtract
> -# ------------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_asub_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_hsub_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subs_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsus_u_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subsuu_s_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_subv_d_32r6el
> -
> -#
> -# Interleave
> -# ----------
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvev_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvod_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvl_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_ilvr_d_32r6el
> -
> -#
> -# Logic
> -# -----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_and_v_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_nor_v_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_or_v_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_xor_v_32r6el
> -
> -#
> -# Move
> -# ----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_move_v_32r6el
> -
> -#
> -# Pack
> -# ----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckev_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_pckod_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_vshf_d_32r6el
> -
> -#
> -# Shift
> -# -----
> -#
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sll_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_sra_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srar_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srl_d_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_b_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_h_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_w_32r6el
> -$PATH_TO_QEMU -cpu I6400  /tmp/test_msa_srlr_d_32r6el
> --
> 2.7.4

Reviewed-by: Aleksandar Rikalo <arikalo@wavecomp.com>


      reply	other threads:[~2019-08-19 15:25 UTC|newest]

Thread overview: 55+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-19 12:07 [Qemu-devel] [PATCH v8 00/37] target/mips: Misc patches for 4.2 Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 01/37] target/mips: Add support for DSPRAM Aleksandar Markovic
2019-08-29 11:27   ` Philippe Mathieu-Daudé
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 02/37] target/mips: Amend CP0 WatchHi register implementation Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 03/37] target/mips: Amend CP0 MemoryMapID " Aleksandar Markovic
2019-08-19 14:39   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 04/37] target/mips: Add support for emulation of GINVT instruction Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 05/37] target/mips: Add support for emulation of CRC32 group of instructions Aleksandar Markovic
2019-10-22  9:16   ` Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 06/37] target/mips: Style improvements in cp0_timer.c Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 07/37] target/mips: Style improvements in cpu.c Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 08/37] target/mips: Style improvements in internal.h Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 09/37] target/mips: Style improvements in machine.c Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 10/37] target/mips: Style improvements in helper.c Aleksandar Markovic
2019-08-19 13:33   ` Thomas Huth
2019-08-19 13:56     ` [Qemu-devel] [EXTERNAL]Re: " Aleksandar Markovic
2019-08-19 14:40   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 11/37] target/mips: Style improvements in translate.c Aleksandar Markovic
2019-08-19 14:41   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 12/37] target/mips: Style improvements in cps.c Aleksandar Markovic
2019-08-19 14:44   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 13/37] target/mips: Style improvements in mips_fulong2e.c Aleksandar Markovic
2019-08-19 14:45   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 14/37] target/mips: Style improvements in mips_int.c Aleksandar Markovic
2019-08-19 14:46   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 15/37] target/mips: Style improvements in mips_malta.c Aleksandar Markovic
2019-08-19 14:47   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-12-06 17:46     ` [PATCH " Philippe Mathieu-Daudé
2019-12-06 19:45       ` [Qemu-devel] " Aleksandar Markovic
2019-12-07  6:20         ` Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 16/37] target/mips: Style improvements in mips_mipssim.c Aleksandar Markovic
2019-08-19 14:48   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 17/37] target/mips: Clean up handling of CP0 register 0 Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 18/37] target/mips: Clean up handling of CP0 register 1 Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 19/37] target/mips: Clean up handling of CP0 register 2 Aleksandar Markovic
2019-08-19 12:07 ` [Qemu-devel] [PATCH v8 20/37] target/mips: Clean up handling of CP0 register 5 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 21/37] target/mips: Clean up handling of CP0 register 6 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 22/37] target/mips: Clean up handling of CP0 register 7 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 23/37] target/mips: Clean up handling of CP0 register 8 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 24/37] target/mips: Clean up handling of CP0 register 10 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 25/37] target/mips: Clean up handling of CP0 register 11 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 26/37] target/mips: Clean up handling of CP0 register 12 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 27/37] target/mips: Clean up handling of CP0 register 15 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 28/37] target/mips: Clean up handling of CP0 register 16 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 29/37] target/mips: Clean up handling of CP0 register 17 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 30/37] target/mips: Clean up handling of CP0 register 20 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 31/37] target/mips: Clean up handling of CP0 register 23 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 32/37] target/mips: Clean up handling of CP0 register 24 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 33/37] target/mips: Clean up handling of CP0 register 26 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 34/37] target/mips: Clean up handling of CP0 register 30 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 35/37] target/mips: Clean up handling of CP0 register 31 Aleksandar Markovic
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 36/37] target/mips: tests/tcg: Add optional printing of more detailed failure info Aleksandar Markovic
2019-08-19 14:49   ` [Qemu-devel] [EXTERNAL][PATCH " Aleksandar Rikalo
2019-08-19 12:08 ` [Qemu-devel] [PATCH v8 37/37] target/mips: tests/tcg: Fix target configurations for MSA tests Aleksandar Markovic
2019-08-19 14:50   ` Aleksandar Rikalo [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=DM5PR22MB1658C7F1422C144592878E38D2A80@DM5PR22MB1658.namprd22.prod.outlook.com \
    --to=arikalo@wavecomp.com \
    --cc=aleksandar.markovic@rt-rk.com \
    --cc=amarkovic@wavecomp.com \
    --cc=philmd@redhat.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).