]> Git Repo - qemu.git/commitdiff
qemu-common.h: optimise muldiv64 if int128 is available
authorFrediano Ziglio <[email protected]>
Fri, 9 Jan 2015 11:25:20 +0000 (11:25 +0000)
committerPaolo Bonzini <[email protected]>
Wed, 14 Jan 2015 09:38:57 +0000 (10:38 +0100)
Let compiler do the job to optimise the function.

Signed-off-by: Frediano Ziglio <[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
Signed-off-by: Frediano Ziglio <[email protected]>
include/qemu-common.h

index f8622141a80b44bc9e00609d63b529d67addc0b4..644b46dcddf3137f54a4e3a283b6a5462b57d470 100644 (file)
@@ -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 {
@@ -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))
This page took 0.02553 seconds and 4 git commands to generate.