beb3faaa00
Five tests files for DSP instructions had wrong expected values in the tests. This change fixes this, and this has been cross-checked by running the same test binaries on Malta 74K board. Signed-off-by: Petar Jovanovic <petar.jovanovic@imgtec.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
46 lines
984 B
C
46 lines
984 B
C
#include<stdio.h>
|
|
#include<assert.h>
|
|
|
|
int main()
|
|
{
|
|
int rs, rt;
|
|
int ach = 5, acl = 5;
|
|
int resulth, resultl;
|
|
|
|
rs = 0xBC0123AD;
|
|
rt = 0x01643721;
|
|
resulth = 0x00000004;
|
|
resultl = 0xF15F94A3;
|
|
__asm
|
|
("mthi %0, $ac1\n\t"
|
|
"mtlo %1, $ac1\n\t"
|
|
"dpsq_s.w.ph $ac1, %2, %3\n\t"
|
|
"mfhi %0, $ac1\n\t"
|
|
"mflo %1, $ac1\n\t"
|
|
: "+r"(ach), "+r"(acl)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
assert(ach == resulth);
|
|
assert(acl == resultl);
|
|
|
|
ach = 0x1424EF1F;
|
|
acl = 0x1035219A;
|
|
rs = 0x800083AD;
|
|
rt = 0x80003721;
|
|
resulth = 0x1424EF1E;
|
|
resultl = 0xC5C0D901;
|
|
__asm
|
|
("mthi %0, $ac1\n\t"
|
|
"mtlo %1, $ac1\n\t"
|
|
"dpsq_s.w.ph $ac1, %2, %3\n\t"
|
|
"mfhi %0, $ac1\n\t"
|
|
"mflo %1, $ac1\n\t"
|
|
: "+r"(ach), "+r"(acl)
|
|
: "r"(rs), "r"(rt)
|
|
);
|
|
assert(ach == resulth);
|
|
assert(acl == resultl);
|
|
|
|
return 0;
|
|
}
|