Skip to content

Commit 64d9565

Browse files
committedJan 10, 2019
Do not use std::ldexp() in fix32 conversions.
It seems that this call is not necessarily inlined so it can be a performance issue.
1 parent 2f27f6c commit 64d9565

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed
 

‎fix32.h

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// ZEPTO-8 — Fantasy console emulator
33
//
4-
// Copyright © 2016—2017 Sam Hocevar <sam@hocevar.net>
4+
// Copyright © 2016—2019 Sam Hocevar <sam@hocevar.net>
55
//
66
// This program is free software. It comes without any warranty, to
77
// the extent permitted by applicable law. You can redistribute it
@@ -25,12 +25,12 @@ struct fix32
2525

2626
/* Convert from/to double */
2727
inline fix32(double d)
28-
: m_bits((int32_t)std::round(std::ldexp(d, 16)))
28+
: m_bits((int32_t)std::round(d * 65536.0))
2929
{}
3030

3131
inline operator double() const
3232
{
33-
return std::ldexp((double)m_bits, -16);
33+
return (double)m_bits * (1.0 / 65536.0);
3434
}
3535

3636
/* Conversions up to int16_t are allowed */
@@ -66,6 +66,8 @@ struct fix32
6666
inline operator int64_t() const { return m_bits >> 16; }
6767
inline operator uint64_t() const { return m_bits >> 16; }
6868

69+
/* Additional casts for long and unsigned long on architectures where
70+
* these are not the same types as their cstdint equivalents. */
6971
template<typename T,
7072
typename std::enable_if<(std::is_same<T, long>::value ||
7173
std::is_same<T, unsigned long>::value) &&

0 commit comments

Comments
 (0)
Please sign in to comment.