Skip to content

Commit

Permalink
softfloat: Specialize udiv_qrnnd for x86_64
Browse files Browse the repository at this point in the history
The ISA has a 128/64-bit division instruction.

Tested-by: Emilio G. Cota <cota@braap.org>
Tested-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
  • Loading branch information
rth7680 committed Oct 5, 2018
1 parent 5dfbc9e commit b299e88
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions include/fpu/softfloat-macros.h
Expand Up @@ -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;
Expand Down Expand Up @@ -676,6 +681,7 @@ static inline uint64_t udiv_qrnnd(uint64_t *r, uint64_t n1,

*r = r0;
return (q1 << 32) | q0;
#endif
}

/*----------------------------------------------------------------------------
Expand Down

0 comments on commit b299e88

Please sign in to comment.