qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Aurelien Jarno <aurelien@aurel32.net>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [7073] target-alpha: overflow condition for sublv and subqv
Date: Fri, 10 Apr 2009 21:27:15 +0000	[thread overview]
Message-ID: <E1LsOFn-0005u7-Pe@cvs.savannah.gnu.org> (raw)

Revision: 7073
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=7073
Author:   aurel32
Date:     2009-04-10 21:27:15 +0000 (Fri, 10 Apr 2009)
Log Message:
-----------
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>

Modified Paths:
--------------
    trunk/target-alpha/op_helper.c
    trunk/tests/alpha/Makefile

Added Paths:
-----------
    trunk/tests/alpha/test-ovf.c

Modified: trunk/target-alpha/op_helper.c
===================================================================
--- trunk/target-alpha/op_helper.c	2009-04-10 21:26:55 UTC (rev 7072)
+++ trunk/target-alpha/op_helper.c	2009-04-10 21:27:15 UTC (rev 7073)
@@ -158,22 +158,22 @@
 
 uint64_t helper_subqv (uint64_t op1, uint64_t op2)
 {
-    uint64_t tmp = op1;
-    op1 -= op2;
-    if (unlikely(((~tmp) ^ op1 ^ (-1ULL)) & ((~tmp) ^ op2) & (1ULL << 63))) {
+    uint64_t res;
+    res = op1 - op2;
+    if (unlikely((op1 ^ op2) & (res ^ op1) & (1ULL << 63))) {
         helper_excp(EXCP_ARITH, EXCP_ARITH_OVERFLOW);
     }
-    return op1;
+    return res;
 }
 
 uint64_t helper_sublv (uint64_t op1, uint64_t op2)
 {
-    uint64_t tmp = op1;
-    op1 = (uint32_t)(op1 - op2);
-    if (unlikely(((~tmp) ^ op1 ^ (-1UL)) & ((~tmp) ^ op2) & (1UL << 31))) {
+    uint32_t res;
+    res = op1 - op2;
+    if (unlikely((op1 ^ op2) & (res ^ op1) & (1UL << 31))) {
         helper_excp(EXCP_ARITH, EXCP_ARITH_OVERFLOW);
     }
-    return op1;
+    return res;
 }
 
 uint64_t helper_mullv (uint64_t op1, uint64_t op2)

Modified: trunk/tests/alpha/Makefile
===================================================================
--- trunk/tests/alpha/Makefile	2009-04-10 21:26:55 UTC (rev 7072)
+++ trunk/tests/alpha/Makefile	2009-04-10 21:27:15 UTC (rev 7073)
@@ -23,6 +23,9 @@
 test-cmov: test-cmov.o crt.o
 	$(LINK)
 
+test-ovf: test-ovf.o crt.o
+	$(LINK)
+
 check: $(TESTS)
 	for f in $(TESTS); do $(SIM) $$f || exit 1; done
 

Added: trunk/tests/alpha/test-ovf.c
===================================================================
--- trunk/tests/alpha/test-ovf.c	                        (rev 0)
+++ trunk/tests/alpha/test-ovf.c	2009-04-10 21:27:15 UTC (rev 7073)
@@ -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;
+}

                 reply	other threads:[~2009-04-10 21:27 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=E1LsOFn-0005u7-Pe@cvs.savannah.gnu.org \
    --to=aurelien@aurel32.net \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).