reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 1 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 2 | * Copyright 2006 The Android Open Source Project |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 3 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 4 | * Use of this source code is governed by a BSD-style license that can be |
| 5 | * found in the LICENSE file. |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef SkFloatingPoint_DEFINED |
| 9 | #define SkFloatingPoint_DEFINED |
| 10 | |
Mike Reed | 35ee0e0 | 2017-08-06 22:29:57 -0400 | [diff] [blame] | 11 | #include "../private/SkFloatBits.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 12 | #include "SkTypes.h" |
Mike Klein | e9f78b4 | 2016-11-22 08:57:45 -0500 | [diff] [blame] | 13 | #include "SkSafe_math.h" |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 14 | #include <float.h> |
bungeman@google.com | d3fbd34 | 2014-04-15 15:52:07 +0000 | [diff] [blame] | 15 | |
mtklein | e18fa44 | 2016-06-09 13:40:56 -0700 | [diff] [blame] | 16 | #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE1 |
| 17 | #include <xmmintrin.h> |
| 18 | #elif defined(SK_ARM_HAS_NEON) |
| 19 | #include <arm_neon.h> |
| 20 | #endif |
| 21 | |
bungeman@google.com | d3fbd34 | 2014-04-15 15:52:07 +0000 | [diff] [blame] | 22 | // For _POSIX_VERSION |
| 23 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) |
| 24 | #include <unistd.h> |
| 25 | #endif |
| 26 | |
bungeman@google.com | 0567f22 | 2012-07-25 17:00:47 +0000 | [diff] [blame] | 27 | // C++98 cmath std::pow seems to be the earliest portable way to get float pow. |
| 28 | // However, on Linux including cmath undefines isfinite. |
| 29 | // http://gcc.gnu.org/bugzilla/show_bug.cgi?id=14608 |
reed@android.com | 9c97045 | 2009-04-03 14:26:10 +0000 | [diff] [blame] | 30 | static inline float sk_float_pow(float base, float exp) { |
bungeman@google.com | 0567f22 | 2012-07-25 17:00:47 +0000 | [diff] [blame] | 31 | return powf(base, exp); |
reed@android.com | 9c97045 | 2009-04-03 14:26:10 +0000 | [diff] [blame] | 32 | } |
| 33 | |
bungeman | 028205b | 2015-07-29 12:34:25 -0700 | [diff] [blame] | 34 | #define sk_float_sqrt(x) sqrtf(x) |
| 35 | #define sk_float_sin(x) sinf(x) |
| 36 | #define sk_float_cos(x) cosf(x) |
| 37 | #define sk_float_tan(x) tanf(x) |
| 38 | #define sk_float_floor(x) floorf(x) |
| 39 | #define sk_float_ceil(x) ceilf(x) |
bungeman | dd67e3d | 2016-03-10 13:39:30 -0800 | [diff] [blame] | 40 | #define sk_float_trunc(x) truncf(x) |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 41 | #ifdef SK_BUILD_FOR_MAC |
bungeman | 028205b | 2015-07-29 12:34:25 -0700 | [diff] [blame] | 42 | # define sk_float_acos(x) static_cast<float>(acos(x)) |
| 43 | # define sk_float_asin(x) static_cast<float>(asin(x)) |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 44 | #else |
bungeman | 028205b | 2015-07-29 12:34:25 -0700 | [diff] [blame] | 45 | # define sk_float_acos(x) acosf(x) |
| 46 | # define sk_float_asin(x) asinf(x) |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 47 | #endif |
bungeman | 028205b | 2015-07-29 12:34:25 -0700 | [diff] [blame] | 48 | #define sk_float_atan2(y,x) atan2f(y,x) |
| 49 | #define sk_float_abs(x) fabsf(x) |
bungeman | d7dc76f | 2016-03-10 11:14:40 -0800 | [diff] [blame] | 50 | #define sk_float_copysign(x, y) copysignf(x, y) |
bungeman | 028205b | 2015-07-29 12:34:25 -0700 | [diff] [blame] | 51 | #define sk_float_mod(x,y) fmodf(x,y) |
| 52 | #define sk_float_exp(x) expf(x) |
| 53 | #define sk_float_log(x) logf(x) |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 54 | |
mtklein | 1831f99 | 2015-06-09 11:47:01 -0700 | [diff] [blame] | 55 | #define sk_float_round(x) sk_float_floor((x) + 0.5f) |
| 56 | |
reed | 7729e56 | 2015-01-16 08:35:09 -0800 | [diff] [blame] | 57 | // can't find log2f on android, but maybe that just a tool bug? |
| 58 | #ifdef SK_BUILD_FOR_ANDROID |
| 59 | static inline float sk_float_log2(float x) { |
| 60 | const double inv_ln_2 = 1.44269504088896; |
| 61 | return (float)(log(x) * inv_ln_2); |
| 62 | } |
| 63 | #else |
| 64 | #define sk_float_log2(x) log2f(x) |
| 65 | #endif |
| 66 | |
reed@google.com | 61873a5 | 2011-12-05 21:47:25 +0000 | [diff] [blame] | 67 | #ifdef SK_BUILD_FOR_WIN |
| 68 | #define sk_float_isfinite(x) _finite(x) |
reed@google.com | 5ae777d | 2011-12-06 20:18:05 +0000 | [diff] [blame] | 69 | #define sk_float_isnan(x) _isnan(x) |
| 70 | static inline int sk_float_isinf(float x) { |
Mike Reed | 35ee0e0 | 2017-08-06 22:29:57 -0400 | [diff] [blame] | 71 | return x && (x + x == x); |
reed@google.com | 5ae777d | 2011-12-06 20:18:05 +0000 | [diff] [blame] | 72 | } |
reed@google.com | 61873a5 | 2011-12-05 21:47:25 +0000 | [diff] [blame] | 73 | #else |
| 74 | #define sk_float_isfinite(x) isfinite(x) |
reed@google.com | 5ae777d | 2011-12-06 20:18:05 +0000 | [diff] [blame] | 75 | #define sk_float_isnan(x) isnan(x) |
| 76 | #define sk_float_isinf(x) isinf(x) |
reed@google.com | 61873a5 | 2011-12-05 21:47:25 +0000 | [diff] [blame] | 77 | #endif |
| 78 | |
caryclark@google.com | 3b97af5 | 2013-04-23 11:56:44 +0000 | [diff] [blame] | 79 | #define sk_double_isnan(a) sk_float_isnan(a) |
| 80 | |
Mike Reed | 828f1d5 | 2017-08-09 11:06:53 -0400 | [diff] [blame^] | 81 | #define SK_MaxS32FitsInFloat 2147483520 |
| 82 | #define SK_MinS32FitsInFloat -SK_MaxS32FitsInFloat |
| 83 | |
| 84 | /** |
| 85 | * Return the closest int for the given float. Returns SK_MaxS32FitsInFloat for NaN. |
| 86 | */ |
| 87 | static inline int sk_float_saturate2int(float x) { |
| 88 | x = SkTMin<float>(x, SK_MaxS32FitsInFloat); |
| 89 | x = SkTMax<float>(x, SK_MinS32FitsInFloat); |
| 90 | return (int)x; |
| 91 | } |
| 92 | |
| 93 | #define sk_float_floor2int(x) sk_float_saturate2int(sk_float_floor(x)) |
| 94 | #define sk_float_round2int(x) sk_float_saturate2int(sk_float_floor((x) + 0.5f)) |
| 95 | #define sk_float_ceil2int(x) sk_float_saturate2int(sk_float_ceil(x)) |
| 96 | |
| 97 | #define sk_float_floor2int_no_saturate(x) (int)sk_float_floor(x) |
| 98 | #define sk_float_round2int_no_saturate(x) (int)sk_float_floor((x) + 0.5f) |
| 99 | #define sk_float_ceil2int_no_saturate(x) (int)sk_float_ceil(x) |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 100 | |
reed | 39393e3 | 2014-10-21 12:33:21 -0700 | [diff] [blame] | 101 | #define sk_double_floor(x) floor(x) |
| 102 | #define sk_double_round(x) floor((x) + 0.5) |
| 103 | #define sk_double_ceil(x) ceil(x) |
| 104 | #define sk_double_floor2int(x) (int)floor(x) |
| 105 | #define sk_double_round2int(x) (int)floor((x) + 0.5f) |
| 106 | #define sk_double_ceil2int(x) (int)ceil(x) |
| 107 | |
mtklein | 3ff2cc8 | 2016-08-10 08:31:42 -0700 | [diff] [blame] | 108 | static const uint32_t kIEEENotANumber = 0x7fffffff; |
| 109 | #define SK_FloatNaN (*SkTCast<const float*>(&kIEEENotANumber)) |
| 110 | #define SK_FloatInfinity (+(float)INFINITY) |
| 111 | #define SK_FloatNegativeInfinity (-(float)INFINITY) |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 112 | |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 113 | static inline float sk_float_rsqrt_portable(float x) { |
| 114 | // Get initial estimate. |
Mike Klein | 1e114f1 | 2016-09-29 11:15:15 -0400 | [diff] [blame] | 115 | int i; |
| 116 | memcpy(&i, &x, 4); |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 117 | i = 0x5F1FFFF9 - (i>>1); |
Mike Klein | 1e114f1 | 2016-09-29 11:15:15 -0400 | [diff] [blame] | 118 | float estimate; |
| 119 | memcpy(&estimate, &i, 4); |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 120 | |
| 121 | // One step of Newton's method to refine. |
| 122 | const float estimate_sq = estimate*estimate; |
| 123 | estimate *= 0.703952253f*(2.38924456f-x*estimate_sq); |
| 124 | return estimate; |
| 125 | } |
mtklein | 490b615 | 2015-07-31 11:50:27 -0700 | [diff] [blame] | 126 | |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 127 | // Fast, approximate inverse square root. |
| 128 | // Compare to name-brand "1.0f / sk_float_sqrt(x)". Should be around 10x faster on SSE, 2x on NEON. |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 129 | static inline float sk_float_rsqrt(float x) { |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 130 | // We want all this inlined, so we'll inline SIMD and just take the hit when we don't know we've got |
| 131 | // it at compile time. This is going to be too fast to productively hide behind a function pointer. |
| 132 | // |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 133 | // We do one step of Newton's method to refine the estimates in the NEON and portable paths. No |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 134 | // refinement is faster, but very innacurate. Two steps is more accurate, but slower than 1/sqrt. |
jvanverth | 29c6979 | 2015-07-23 11:14:29 -0700 | [diff] [blame] | 135 | // |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 136 | // Optimized constants in the portable path courtesy of http://rrrola.wz.cz/inv_sqrt.html |
mtklein | b9c47f9 | 2015-07-23 08:37:02 -0700 | [diff] [blame] | 137 | #if SK_CPU_SSE_LEVEL >= SK_CPU_SSE_LEVEL_SSE1 |
| 138 | return _mm_cvtss_f32(_mm_rsqrt_ss(_mm_set_ss(x))); |
djsollen | 21769c5 | 2014-08-01 05:32:32 -0700 | [diff] [blame] | 139 | #elif defined(SK_ARM_HAS_NEON) |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 140 | // Get initial estimate. |
| 141 | const float32x2_t xx = vdup_n_f32(x); // Clever readers will note we're doing everything 2x. |
| 142 | float32x2_t estimate = vrsqrte_f32(xx); |
| 143 | |
| 144 | // One step of Newton's method to refine. |
| 145 | const float32x2_t estimate_sq = vmul_f32(estimate, estimate); |
| 146 | estimate = vmul_f32(estimate, vrsqrts_f32(xx, estimate_sq)); |
| 147 | return vget_lane_f32(estimate, 0); // 1 will work fine too; the answer's in both places. |
| 148 | #else |
mtklein | a766ca8 | 2016-01-26 07:40:30 -0800 | [diff] [blame] | 149 | return sk_float_rsqrt_portable(x); |
commit-bot@chromium.org | 11e5b97 | 2013-11-08 20:14:16 +0000 | [diff] [blame] | 150 | #endif |
| 151 | } |
| 152 | |
joshualitt | 922c8b1 | 2015-08-07 09:55:23 -0700 | [diff] [blame] | 153 | // This is the number of significant digits we can print in a string such that when we read that |
| 154 | // string back we get the floating point number we expect. The minimum value C requires is 6, but |
| 155 | // most compilers support 9 |
| 156 | #ifdef FLT_DECIMAL_DIG |
| 157 | #define SK_FLT_DECIMAL_DIG FLT_DECIMAL_DIG |
| 158 | #else |
| 159 | #define SK_FLT_DECIMAL_DIG 9 |
| 160 | #endif |
| 161 | |
reed@android.com | 8a1c16f | 2008-12-17 15:59:43 +0000 | [diff] [blame] | 162 | #endif |