qemu/tests/tcg/mips/mips32-dsp/mthlip.c
Petar Jovanovic e62a214cd4 target-mips: fix incorrect test for MTHLIP
The pos field in the DSPControl register is not correctly initialized.
Per documentation, the result of MTHLIP is unpredictable if the value of the
pos field before the execution is greater than 32.

Signed-off-by: Petar Jovanovic <petarj@mips.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
2013-01-31 23:42:04 +01:00

59 lines
1.2 KiB
C

#include<stdio.h>
#include<assert.h>
int main()
{
int rs, ach, acl, dsp;
int result, resulth, resultl;
dsp = 0x07;
ach = 0x05;
acl = 0xB4CB;
rs = 0x00FFBBAA;
resulth = 0xB4CB;
resultl = 0x00FFBBAA;
result = 0x27;
__asm
("wrdsp %0, 0x01\n\t"
"mthi %1, $ac1\n\t"
"mtlo %2, $ac1\n\t"
"mthlip %3, $ac1\n\t"
"mfhi %1, $ac1\n\t"
"mflo %2, $ac1\n\t"
"rddsp %0\n\t"
: "+r"(dsp), "+r"(ach), "+r"(acl)
: "r"(rs)
);
dsp = dsp & 0x3F;
assert(dsp == result);
assert(ach == resulth);
assert(acl == resultl);
dsp = 0x1f;
ach = 0x05;
acl = 0xB4CB;
rs = 0x00FFBBAA;
resulth = 0xB4CB;
resultl = 0x00FFBBAA;
result = 0x3f;
__asm
("wrdsp %0, 0x01\n\t"
"mthi %1, $ac1\n\t"
"mtlo %2, $ac1\n\t"
"mthlip %3, $ac1\n\t"
"mfhi %1, $ac1\n\t"
"mflo %2, $ac1\n\t"
"rddsp %0\n\t"
: "+r"(dsp), "+r"(ach), "+r"(acl)
: "r"(rs)
);
dsp = dsp & 0x3F;
assert(dsp == result);
assert(ach == resulth);
assert(acl == resultl);
return 0;
}