From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org
Subject: [Qemu-devel] [PULL 7/8] softfloat: Specialize udiv_qrnnd for s390x
Date: Fri, 5 Oct 2018 13:02:00 -0500 [thread overview]
Message-ID: <20181005180201.11387-8-richard.henderson@linaro.org> (raw)
In-Reply-To: <20181005180201.11387-1-richard.henderson@linaro.org>
The ISA has a 128/64-bit division instruction.
Reviewed-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
include/fpu/softfloat-macros.h | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/include/fpu/softfloat-macros.h b/include/fpu/softfloat-macros.h
index 39eb08b4f1..eafc68932b 100644
--- a/include/fpu/softfloat-macros.h
+++ b/include/fpu/softfloat-macros.h
@@ -641,6 +641,12 @@ static inline uint64_t udiv_qrnnd(uint64_t *r, uint64_t n1,
uint64_t q;
asm("divq %4" : "=a"(q), "=d"(*r) : "0"(n0), "1"(n1), "rm"(d));
return q;
+#elif defined(__s390x__)
+ /* Need to use a TImode type to get an even register pair for DLGR. */
+ unsigned __int128 n = (unsigned __int128)n1 << 64 | n0;
+ asm("dlgr %0, %1" : "+r"(n) : "r"(d));
+ *r = n >> 64;
+ return n;
#else
uint64_t d0, d1, q0, q1, r1, r0, m;
--
2.17.1
next prev parent reply other threads:[~2018-10-05 18:02 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-05 18:01 [Qemu-devel] [PULL 0/8] softfloat queue Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 1/8] softfloat: remove float64_trunc_to_int Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 2/8] gitmodules: add berkeley's softfloat + testfloat version 3 Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 3/8] tests/fp/fp-test: add floating point tests Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 4/8] softfloat: Replace countLeadingZeros32/64 with clz32/64 Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 5/8] softfloat: Fix division Richard Henderson
2018-10-05 18:01 ` [Qemu-devel] [PULL 6/8] softfloat: Specialize udiv_qrnnd for x86_64 Richard Henderson
2018-10-05 18:02 ` Richard Henderson [this message]
2018-10-05 18:02 ` [Qemu-devel] [PULL 8/8] softfloat: Specialize udiv_qrnnd for ppc64 Richard Henderson
2018-10-31 18:46 ` Laurent Vivier
2018-11-01 17:01 ` Laurent Vivier
2018-10-08 13:47 ` [Qemu-devel] [PULL 0/8] softfloat queue Peter Maydell
2018-10-08 19:17 ` Eric Blake
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=20181005180201.11387-8-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=peter.maydell@linaro.org \
--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).