Skip to content

Commit

Permalink
qemu-common.h: optimise muldiv64 if int128 is available
Browse files Browse the repository at this point in the history
Let compiler do the job to optimise the function.

Signed-off-by: Frediano Ziglio <frediano.ziglio@huawei.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Frediano Ziglio <freddy77@gmail.com>
  • Loading branch information
freddy77 authored and bonzini committed Jan 14, 2015
1 parent bee8188 commit e1660dc
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/qemu-common.h
Expand Up @@ -370,6 +370,12 @@ static inline uint8_t from_bcd(uint8_t val)
}

/* compute with 96 bit intermediate result: (a*b)/c */
#ifdef CONFIG_INT128
static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
{
return (__int128_t)a * b / c;
}
#else
static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
{
union {
Expand All @@ -392,6 +398,7 @@ static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
return res.ll;
}
#endif

/* Round number down to multiple */
#define QEMU_ALIGN_DOWN(n, m) ((n) / (m) * (m))
Expand Down

0 comments on commit e1660dc

Please sign in to comment.