d70080c4e3
Add MIPS ASE DSP testcases. Signed-off-by: Jia Liu <proljc@gmail.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
33 lines
496 B
C
33 lines
496 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int rs, rt;
|
|
int result;
|
|
|
|
rs = 0x12345678;
|
|
rt = 0x87654321;
|
|
result = 0x43215678;
|
|
|
|
__asm
|
|
("precr_sra.ph.w %0, %1, 0x00\n\t"
|
|
: "+r"(rt)
|
|
: "r"(rs)
|
|
);
|
|
assert(result == rt);
|
|
|
|
rs = 0x12345678;
|
|
rt = 0x87654321;
|
|
result = 0xFFFF0000;
|
|
|
|
__asm
|
|
("precr_sra.ph.w %0, %1, 0x1F\n\t"
|
|
: "+r"(rt)
|
|
: "r"(rs)
|
|
);
|
|
assert(result == rt);
|
|
|
|
return 0;
|
|
}
|