mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
target-alpha: overflow condition for sublv and subqv
The conditions to detect overflow in sub operations was wrong. This patch is necessary to boot Tru64. Signed-off-by: Tristan Gingold <gingold@adacore.com> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7073 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
68238a9e90
commit
ecbb5ea104
3 changed files with 40 additions and 8 deletions
29
tests/alpha/test-ovf.c
Normal file
29
tests/alpha/test-ovf.c
Normal file
|
@ -0,0 +1,29 @@
|
|||
static long test_subqv (long a, long b)
|
||||
{
|
||||
long res;
|
||||
|
||||
asm ("subq/v %1,%2,%0"
|
||||
: "=r" (res) : "r" (a), "r" (b));
|
||||
return res;
|
||||
}
|
||||
static struct {
|
||||
long (*func)(long, long);
|
||||
long a;
|
||||
long b;
|
||||
long r;
|
||||
} vectors[] =
|
||||
{
|
||||
{test_subqv, 0, 0x7d54000, 0xfffffffff82ac000L}
|
||||
};
|
||||
|
||||
int main (void)
|
||||
{
|
||||
int i;
|
||||
|
||||
for (i = 0; i < sizeof (vectors)/sizeof(vectors[0]); i++)
|
||||
if ((*vectors[i].func)(vectors[i].a, vectors[i].b) != vectors[i].r) {
|
||||
write(1, "Failed\n", 7);
|
||||
}
|
||||
write(1, "OK\n", 3);
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue