mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
target-mips: Add ASE DSP testcases
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
This commit is contained in:
parent
af13ae03f8
commit
d70080c4e3
487 changed files with 19151 additions and 0 deletions
59
tests/tcg/mips/mips64-dsp/addwc.c
Normal file
59
tests/tcg/mips/mips64-dsp/addwc.c
Normal file
|
@ -0,0 +1,59 @@
|
|||
#include "io.h"
|
||||
|
||||
int main(void)
|
||||
{
|
||||
long long rd, rs, rt;
|
||||
long long dspi, dspo;
|
||||
long long result;
|
||||
|
||||
rs = 0x10FF01FF;
|
||||
rt = 0x10010001;
|
||||
dspi = 0x00002000;
|
||||
result = 0x21000201;
|
||||
__asm
|
||||
("wrdsp %3\n"
|
||||
"addwc %0, %1, %2\n\t"
|
||||
: "=r"(rd)
|
||||
: "r"(rs), "r"(rt), "r"(dspi)
|
||||
);
|
||||
if (rd != result) {
|
||||
printf("1 addwc wrong\n");
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
rs = 0xFFFF1111;
|
||||
rt = 0x00020001;
|
||||
dspi = 0x00;
|
||||
result = 0x00011112;
|
||||
__asm
|
||||
("wrdsp %3\n"
|
||||
"addwc %0, %1, %2\n\t"
|
||||
: "=r"(rd)
|
||||
: "r"(rs), "r"(rt), "r"(dspi)
|
||||
);
|
||||
if (rd != result) {
|
||||
printf("2 addwc wrong\n");
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
rs = 0x8FFF1111;
|
||||
rt = 0x80020001;
|
||||
dspi = 0x00;
|
||||
result = 0x10011112;
|
||||
__asm
|
||||
("wrdsp %4\n"
|
||||
"addwc %0, %2, %3\n\t"
|
||||
"rddsp %1\n\t"
|
||||
: "=r"(rd), "=r"(dspo)
|
||||
: "r"(rs), "r"(rt), "r"(dspi)
|
||||
);
|
||||
if ((rd != result) || (((dspo >> 20) & 0x01) != 1)) {
|
||||
printf("3 addwc wrong\n");
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue