forked from aquynh/iVM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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 <[email protected]> Signed-off-by: Aurelien Jarno <[email protected]> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7073 c046a42c-6fe2-441c-8c8c-71466251a162
- Loading branch information
aurel32
committed
Apr 10, 2009
1 parent
68238a9
commit ecbb5ea
Showing
3 changed files
with
40 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} |