]> Git Repo - qemu.git/commitdiff
softfloat: Specialize udiv_qrnnd for x86_64
authorRichard Henderson <[email protected]>
Wed, 3 Oct 2018 16:32:09 +0000 (11:32 -0500)
committerRichard Henderson <[email protected]>
Fri, 5 Oct 2018 17:57:41 +0000 (12:57 -0500)
The ISA has a 128/64-bit division instruction.

Tested-by: Emilio G. Cota <[email protected]>
Tested-by: Alex Bennée <[email protected]>
Reviewed-by: Alex Bennée <[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
include/fpu/softfloat-macros.h

index a1d99c730d3fd218d4386ee2af0afdf2e018eb36..39eb08b4f18fce64a6c893e1bf454ce9e3d16006 100644 (file)
@@ -637,6 +637,11 @@ static inline uint64_t estimateDiv128To64(uint64_t a0, uint64_t a1, uint64_t b)
 static inline uint64_t udiv_qrnnd(uint64_t *r, uint64_t n1,
                                   uint64_t n0, uint64_t d)
 {
+#if defined(__x86_64__)
+    uint64_t q;
+    asm("divq %4" : "=a"(q), "=d"(*r) : "0"(n0), "1"(n1), "rm"(d));
+    return q;
+#else
     uint64_t d0, d1, q0, q1, r1, r0, m;
 
     d0 = (uint32_t)d;
@@ -676,6 +681,7 @@ static inline uint64_t udiv_qrnnd(uint64_t *r, uint64_t n1,
 
     *r = r0;
     return (q1 << 32) | q0;
+#endif
 }
 
 /*----------------------------------------------------------------------------
This page took 0.027059 seconds and 4 git commands to generate.