d70080c4e3
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
49 lines
975 B
C
49 lines
975 B
C
#include"io.h"
|
|
|
|
int main(void)
|
|
{
|
|
long long rd, rs, rt;
|
|
long long dsp;
|
|
long long result;
|
|
|
|
rs = 0x11777066;
|
|
rt = 0x55AA70FF;
|
|
result = 0x0F;
|
|
__asm
|
|
("cmpgdu.le.qb %0, %2, %3\n\t"
|
|
"rddsp %1\n\t"
|
|
: "=r"(rd), "=r"(dsp)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
dsp = (dsp >> 24) & 0x0F;
|
|
if (rd != result) {
|
|
printf("cmpgdu.le.qb error\n");
|
|
return -1;
|
|
}
|
|
if (dsp != result) {
|
|
printf("cmpgdu.le.qb error\n");
|
|
return -1;
|
|
}
|
|
|
|
rs = 0x11777066;
|
|
rt = 0x11707066;
|
|
result = 0x0B;
|
|
__asm
|
|
("cmpgdu.le.qb %0, %2, %3\n\t"
|
|
"rddsp %1\n\t"
|
|
: "=r"(rd), "=r"(dsp)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
dsp = (dsp >> 24) & 0x0F;
|
|
if (rd != result) {
|
|
printf("cmpgdu.le.qb error\n");
|
|
return -1;
|
|
}
|
|
if (dsp != result) {
|
|
printf("cmpgdu.le.qb error\n");
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|