4877866ee4
Multiplication of Q15 fractional halfword vectors was incorrect in the previous implementation of mipsdsp_rndq15_mul_q15_q15. It failed to take element signs into account. This change fixes it, and it adds a test case for it. The change also removes unnecessary cast in the function mipsdsp_mul_q15_q15_overflowflag21(). Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com> Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
43 lines
800 B
C
43 lines
800 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int rd, rs, rt, dsp;
|
|
int result, resultdsp;
|
|
|
|
rs = 0x80001234;
|
|
rt = 0x80004321;
|
|
result = 0x7FFF098C;
|
|
resultdsp = 1;
|
|
|
|
__asm
|
|
("wrdsp $0\n\t"
|
|
"mulq_rs.ph %0, %2, %3\n\t"
|
|
"rddsp %1\n\t"
|
|
: "=r"(rd), "=r"(dsp)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
dsp = (dsp >> 21) & 0x01;
|
|
assert(rd == result);
|
|
assert(dsp == resultdsp);
|
|
|
|
rs = 0x80011234;
|
|
rt = 0x80024321;
|
|
result = 0x7FFD098C;
|
|
resultdsp = 0;
|
|
|
|
__asm
|
|
("wrdsp $0\n\t"
|
|
"mulq_rs.ph %0, %2, %3\n\t"
|
|
"rddsp %1\n\t"
|
|
: "=r"(rd), "=r"(dsp)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
dsp = (dsp >> 21) & 0x01;
|
|
assert(rd == result);
|
|
assert(dsp == resultdsp);
|
|
|
|
return 0;
|
|
}
|