• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..18-Apr-2025-

bit-count/18-Apr-2025-

bit-move/18-Apr-2025-

bit-set/18-Apr-2025-

fixed-multiply/18-Apr-2025-

float-max-min/18-Apr-2025-

int-add/18-Apr-2025-

int-average/18-Apr-2025-

int-compare/18-Apr-2025-

int-divide/18-Apr-2025-

int-dot-product/18-Apr-2025-

int-max-min/18-Apr-2025-

int-modulo/18-Apr-2025-

int-multiply/18-Apr-2025-

int-subtract/18-Apr-2025-

interleave/18-Apr-2025-

logic/18-Apr-2025-

move/18-Apr-2025-

pack/18-Apr-2025-

shift/18-Apr-2025-

README A D18-Apr-2025674 2114

test_msa_compile_32r5eb.sh A D18-Apr-202553.3 KiB918822

test_msa_compile_32r5el.sh A D18-Apr-202553.3 KiB918822

test_msa_compile_64r6eb.sh A D18-Apr-202542.6 KiB644548

test_msa_compile_64r6el.sh A D18-Apr-202542.6 KiB644548

test_msa_run_32r5eb.sh A D18-Apr-202515.3 KiB372275

test_msa_run_32r5el.sh A D18-Apr-202515.3 KiB372275

test_msa_run_64r6eb.sh A D18-Apr-202515.3 KiB372275

test_msa_run_64r6el.sh A D18-Apr-202515.3 KiB372275

README

1The tests in subdirectories of this directory are supposed to be compiled for
2mips64el MSA-enabled CPU (I6400, I6500), using an appropriate MIPS toolchain.
3For example:
4
5/opt/img/bin/mips-img-linux-gnu-gcc <source file>                  \
6-EL -static -mabi=64 -march=mips64r6 -mmsa  -o <executable file>
7
8They are to be executed using QEMU user mode, using command line:
9
10mips64el-linux-user/qemu-mips64el -cpu I6400 <executable file>
11
12Helper scripts test_msa_compile.sh and test_msa_run.sh are also
13provided. This is an example of compilation and execution of all
14MSA tests:
15
16cd <QEMU root directory>
17cd tests/tcg/mips/user/ase/msa
18
19./test_msa_compile.sh
20./test_msa_run.sh
21