yeptris 0.6.17.1-powerpc64le-linux → 0.6.18.1-powerpc64le-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/yeptris.rb +1 -1
- data/libyeptris.so +0 -0
- data/vendor/libyeptris/CMakeLists.txt +1 -1
- data/vendor/libyeptris/src/yeptris/emit/float/floatint.h +46 -18
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9862df1f0e915266821b6203af43ca1a155a52087b1440d13b9cf3a60686df4
|
|
4
|
+
data.tar.gz: 38f82776605059d138065f7716dfb9ea49c67e1cea744095f8d3d4bcfe4b661b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 34ec5fc275de3c89442e0865db12fb7171afd1005ca724ce01e990e7e0d9eee043fdfea92bdbb7cf2fb1954c53e3c1baf096580ddfc36807a07c69dd44eeff02
|
|
7
|
+
data.tar.gz: e905916fbcf703e8190327b00e0c3d909c8dd022cef1c9c35143797af564e5ab8c14cca81afe765f063971b55871d54807af13a421439d61679c920ea8c6d096
|
data/lib/yeptris.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Yeptris
|
|
4
4
|
# The gem's version lives in the parent namespace's file — the last
|
|
5
5
|
# internal require (yeptris/version) retired with it.
|
|
6
|
-
VERSION = "0.6.
|
|
6
|
+
VERSION = "0.6.18.1".freeze
|
|
7
7
|
# The error hierarchy lives in THIS file (the parent namespace's
|
|
8
8
|
# own file): nested constants do not trigger a parent-constant
|
|
9
9
|
# autoload, and the law forbids internal requires — defining the
|
data/libyeptris.so
CHANGED
|
Binary file
|
|
@@ -23,10 +23,13 @@
|
|
|
23
23
|
|
|
24
24
|
#include "emit/float/api.h"
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
/* YEP_FLOAT_FORCE_LIMBS: test hook — exercises the portable lo/hi
|
|
27
|
+
* tier on hosts that also have __int128 (the limbs math is otherwise
|
|
28
|
+
* only compiled on 32-bit targets). */
|
|
29
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
27
30
|
typedef unsigned __int128 yep_u128;
|
|
28
31
|
#define YEP_MUL64(a, b) ((yep_u128)(uint64_t)(a) * (uint64_t)(b))
|
|
29
|
-
#elif defined(_MSC_VER)
|
|
32
|
+
#elif defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64))
|
|
30
33
|
#include <intrin.h>
|
|
31
34
|
/* MSVC has no __int128: the lo/hi pair behind the SAME helper surface
|
|
32
35
|
* (print.c's interval loop rides only these — no operator arithmetic
|
|
@@ -35,10 +38,17 @@ typedef struct {
|
|
|
35
38
|
uint64_t lo, hi;
|
|
36
39
|
} yep_u128;
|
|
37
40
|
#define YEP_MUL64(a, b) yep_u128_mul64(a, b)
|
|
41
|
+
#else
|
|
42
|
+
/* Any compiler without __int128 (32-bit GCC/Clang, MSVC x86-32): the
|
|
43
|
+
* same lo/hi pair; multiplication via 32-bit limbs (below). */
|
|
44
|
+
typedef struct {
|
|
45
|
+
uint64_t lo, hi;
|
|
46
|
+
} yep_u128;
|
|
47
|
+
#define YEP_MUL64(a, b) yep_u128_mul64(a, b)
|
|
38
48
|
#endif
|
|
39
49
|
|
|
40
50
|
static inline yep_u128 yep_u128_of(uint64_t v) {
|
|
41
|
-
#if defined(__SIZEOF_INT128__)
|
|
51
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
42
52
|
return (yep_u128)v;
|
|
43
53
|
#else
|
|
44
54
|
yep_u128 r = {v, 0};
|
|
@@ -47,7 +57,7 @@ static inline yep_u128 yep_u128_of(uint64_t v) {
|
|
|
47
57
|
}
|
|
48
58
|
|
|
49
59
|
static inline yep_u128 yep_u128_max(void) {
|
|
50
|
-
#if defined(__SIZEOF_INT128__)
|
|
60
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
51
61
|
return ~(yep_u128)0;
|
|
52
62
|
#else
|
|
53
63
|
yep_u128 r = {~(uint64_t)0, ~(uint64_t)0};
|
|
@@ -56,7 +66,7 @@ static inline yep_u128 yep_u128_max(void) {
|
|
|
56
66
|
}
|
|
57
67
|
|
|
58
68
|
static inline yep_u128 yep_u128_add(yep_u128 a, yep_u128 b) {
|
|
59
|
-
#if defined(__SIZEOF_INT128__)
|
|
69
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
60
70
|
return a + b;
|
|
61
71
|
#else
|
|
62
72
|
yep_u128 r;
|
|
@@ -67,7 +77,7 @@ static inline yep_u128 yep_u128_add(yep_u128 a, yep_u128 b) {
|
|
|
67
77
|
}
|
|
68
78
|
|
|
69
79
|
static inline yep_u128 yep_u128_sub(yep_u128 a, yep_u128 b) {
|
|
70
|
-
#if defined(__SIZEOF_INT128__)
|
|
80
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
71
81
|
return a - b;
|
|
72
82
|
#else
|
|
73
83
|
yep_u128 r;
|
|
@@ -79,7 +89,7 @@ static inline yep_u128 yep_u128_sub(yep_u128 a, yep_u128 b) {
|
|
|
79
89
|
|
|
80
90
|
/* n < 128 */
|
|
81
91
|
static inline yep_u128 yep_u128_shl(yep_u128 a, unsigned n) {
|
|
82
|
-
#if defined(__SIZEOF_INT128__)
|
|
92
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
83
93
|
return a << n;
|
|
84
94
|
#else
|
|
85
95
|
yep_u128 r = {0, 0};
|
|
@@ -98,7 +108,7 @@ static inline yep_u128 yep_u128_shl(yep_u128 a, unsigned n) {
|
|
|
98
108
|
|
|
99
109
|
/* n < 128 */
|
|
100
110
|
static inline yep_u128 yep_u128_shr(yep_u128 a, unsigned n) {
|
|
101
|
-
#if defined(__SIZEOF_INT128__)
|
|
111
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
102
112
|
return a >> n;
|
|
103
113
|
#else
|
|
104
114
|
yep_u128 r = {0, 0};
|
|
@@ -116,7 +126,7 @@ static inline yep_u128 yep_u128_shr(yep_u128 a, unsigned n) {
|
|
|
116
126
|
}
|
|
117
127
|
|
|
118
128
|
static inline int yep_u128_cmp(yep_u128 a, yep_u128 b) {
|
|
119
|
-
#if defined(__SIZEOF_INT128__)
|
|
129
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
120
130
|
return a < b ? -1 : (a > b ? 1 : 0);
|
|
121
131
|
#else
|
|
122
132
|
if (a.hi != b.hi) {
|
|
@@ -142,29 +152,47 @@ static inline yep_u128 yep_u128_mul64(uint64_t a, uint64_t b) {
|
|
|
142
152
|
r.lo = a * b;
|
|
143
153
|
return r;
|
|
144
154
|
}
|
|
155
|
+
#elif !defined(__SIZEOF_INT128__) || defined(YEP_FLOAT_FORCE_LIMBS)
|
|
156
|
+
/* portable: 32-bit limbs, exact (the struct tier only) */
|
|
157
|
+
static inline yep_u128 yep_u128_mul64(uint64_t a, uint64_t b) {
|
|
158
|
+
uint64_t a0 = (uint32_t)a, a1 = a >> 32;
|
|
159
|
+
uint64_t b0 = (uint32_t)b, b1 = b >> 32;
|
|
160
|
+
uint64_t ll = a0 * b0;
|
|
161
|
+
uint64_t lh = a0 * b1;
|
|
162
|
+
uint64_t hl = a1 * b0;
|
|
163
|
+
uint64_t mid = (ll >> 32) + (uint32_t)lh + (uint32_t)hl;
|
|
164
|
+
yep_u128 r;
|
|
165
|
+
r.lo = (mid << 32) | (uint32_t)ll;
|
|
166
|
+
r.hi = (a1 * b1) + (lh >> 32) + (hl >> 32) + (mid >> 32);
|
|
167
|
+
return r;
|
|
168
|
+
}
|
|
145
169
|
#endif
|
|
146
170
|
|
|
147
171
|
/* x * 10 stays in range */
|
|
148
172
|
static inline int yep_u128_fits10(yep_u128 x) {
|
|
149
|
-
#if defined(__SIZEOF_INT128__)
|
|
173
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
150
174
|
return x <= (~(yep_u128)0) / 10;
|
|
151
175
|
#else
|
|
152
|
-
/* exact:
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
176
|
+
/* exact: x*10 = (hi*10 << 64) + lo*10 — overflow iff hi*10
|
|
177
|
+
* escapes 64 bits or the lo-carry wraps the sum */
|
|
178
|
+
yep_u128 hp = YEP_MUL64(x.hi, 10u);
|
|
179
|
+
if (hp.hi != 0) {
|
|
180
|
+
return 0;
|
|
181
|
+
}
|
|
182
|
+
yep_u128 lp = YEP_MUL64(x.lo, 10u);
|
|
183
|
+
return hp.lo + lp.hi >= hp.lo;
|
|
157
184
|
#endif
|
|
158
185
|
}
|
|
159
186
|
|
|
160
187
|
/* m small (< 2^32); caller guarantees no overflow (fits10 guarded) */
|
|
161
188
|
static inline yep_u128 yep_u128_mul_small(yep_u128 a, uint32_t m) {
|
|
162
|
-
#if defined(__SIZEOF_INT128__)
|
|
189
|
+
#if defined(__SIZEOF_INT128__) && !defined(YEP_FLOAT_FORCE_LIMBS)
|
|
163
190
|
return a * m;
|
|
164
191
|
#else
|
|
165
192
|
yep_u128 r;
|
|
166
|
-
|
|
167
|
-
r.
|
|
193
|
+
yep_u128 lp = YEP_MUL64(a.lo, m);
|
|
194
|
+
r.lo = lp.lo;
|
|
195
|
+
r.hi = a.hi * m + lp.hi;
|
|
168
196
|
return r;
|
|
169
197
|
#endif
|
|
170
198
|
}
|