aboutsummaryrefslogtreecommitdiff
path: root/qemu-common.h
diff options
context:
space:
mode:
authormalc <av1474@comtv.ru>2010-10-30 01:41:01 +0400
committermalc <av1474@comtv.ru>2010-10-30 01:41:01 +0400
commit338b922edd88440ef555f08d6924609915c6f00c (patch)
tree8775069b5c6f2ede5529e53b4ad1df76ff130ef4 /qemu-common.h
parent174b2877b0f6a607f994f7a5b9b9a36caaff5d75 (diff)
Mov muldiv64 to qemu-common.h (Thus unbreaking gus)
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'qemu-common.h')
-rw-r--r--qemu-common.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/qemu-common.h b/qemu-common.h
index 2fbc27f9f0..d31f3661d2 100644
--- a/qemu-common.h
+++ b/qemu-common.h
@@ -309,6 +309,30 @@ static inline uint8_t from_bcd(uint8_t val)
return ((val >> 4) * 10) + (val & 0x0f);
}
+/* compute with 96 bit intermediate result: (a*b)/c */
+static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
+{
+ union {
+ uint64_t ll;
+ struct {
+#ifdef HOST_WORDS_BIGENDIAN
+ uint32_t high, low;
+#else
+ uint32_t low, high;
+#endif
+ } l;
+ } u, res;
+ uint64_t rl, rh;
+
+ u.ll = a;
+ rl = (uint64_t)u.l.low * (uint64_t)b;
+ rh = (uint64_t)u.l.high * (uint64_t)b;
+ rh += (rl >> 32);
+ res.l.high = rh / c;
+ res.l.low = (((rh % c) << 32) + (rl & 0xffffffff)) / c;
+ return res.ll;
+}
+
#include "module.h"
#endif