mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
target-mips: fix multiplication in mipsdsp_rndq15_mul_q15_q15
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>
This commit is contained in:
parent
200a06397f
commit
4877866ee4
2 changed files with 20 additions and 3 deletions
|
@ -12,7 +12,24 @@ int main()
|
|||
resultdsp = 1;
|
||||
|
||||
__asm
|
||||
("mulq_rs.ph %0, %2, %3\n\t"
|
||||
("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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue