d70080c4e3
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
47 lines
782 B
C
47 lines
782 B
C
#include "io.h"
|
|
|
|
int main(void)
|
|
{
|
|
long long rs, rt, dspreg, dspresult;
|
|
|
|
rs = 0x123456789ABCDEF0;
|
|
rt = 0x123456789ABCDEFF;
|
|
dspresult = 0x01;
|
|
|
|
__asm
|
|
("cmp.lt.pw %1, %2\n\t"
|
|
"rddsp %0\n\t"
|
|
: "=r"(dspreg)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
|
|
dspreg = ((dspreg >> 24) & 0x03);
|
|
|
|
if (dspreg != dspresult) {
|
|
printf("cmp.lt.pw error\n");
|
|
|
|
return -1;
|
|
}
|
|
|
|
rs = 0x123456779ABCDEFf;
|
|
rt = 0x123456789ABCDEFF;
|
|
dspresult = 0x02;
|
|
|
|
__asm
|
|
("cmp.lt.pw %1, %2\n\t"
|
|
"rddsp %0\n\t"
|
|
: "=r"(dspreg)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
|
|
dspreg = ((dspreg >> 24) & 0x03);
|
|
|
|
if (dspreg != dspresult) {
|
|
printf("cmp.lt.pw error\n");
|
|
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|