diff options
author | Petar Jovanovic <petar.jovanovic@imgtec.com> | 2013-05-08 13:17:40 +0200 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2013-05-08 18:46:38 +0200 |
commit | c0f5f9ce86ddca0a7d7ca60012059a5a18aa9c07 (patch) | |
tree | cef6856b1ab0a712df749604b1a1dc862564f549 /tests/tcg | |
parent | 639eadb9a32775e1c70bbf37d347972ca41128d1 (diff) | |
download | qemu-c0f5f9ce86ddca0a7d7ca60012059a5a18aa9c07.zip qemu-c0f5f9ce86ddca0a7d7ca60012059a5a18aa9c07.tar.gz qemu-c0f5f9ce86ddca0a7d7ca60012059a5a18aa9c07.tar.bz2 |
target-mips: fix incorrect behaviour for INSV
Corner case for INSV instruction when size=32 has not been correctly
implemented. The mask for size should be one bit wider, and preparing the
filter variable should be aware of this case too.
The test for INSV has been extended to include the case that triggers the
bug.
Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
Diffstat (limited to 'tests/tcg')
-rw-r--r-- | tests/tcg/mips/mips32-dsp/insv.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/tcg/mips/mips32-dsp/insv.c b/tests/tcg/mips/mips32-dsp/insv.c index 243b007..9d67469 100644 --- a/tests/tcg/mips/mips32-dsp/insv.c +++ b/tests/tcg/mips/mips32-dsp/insv.c @@ -19,5 +19,18 @@ int main() ); assert(rt == result); + dsp = 0x1000; + rt = 0xF0F0F0F0; + rs = 0xA5A5A5A5; + result = 0xA5A5A5A5; + + __asm + ("wrdsp %2\n\t" + "insv %0, %1\n\t" + : "+r"(rt) + : "r"(rs), "r"(dsp) + ); + assert(rt == result); + return 0; } |