bigdecimal 3.2.0 → 3.3.1
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/ext/bigdecimal/bigdecimal.c +750 -2268
- data/ext/bigdecimal/bigdecimal.h +4 -25
- data/ext/bigdecimal/bits.h +3 -0
- data/ext/bigdecimal/extconf.rb +3 -7
- data/ext/bigdecimal/missing.h +1 -93
- data/lib/bigdecimal/math.rb +88 -70
- data/lib/bigdecimal/util.rb +15 -14
- data/lib/bigdecimal.rb +351 -0
- metadata +3 -6
data/ext/bigdecimal/bigdecimal.c
CHANGED
|
@@ -31,16 +31,23 @@
|
|
|
31
31
|
#include "bits.h"
|
|
32
32
|
#include "static_assert.h"
|
|
33
33
|
|
|
34
|
-
#define BIGDECIMAL_VERSION "3.
|
|
34
|
+
#define BIGDECIMAL_VERSION "3.3.1"
|
|
35
35
|
|
|
36
36
|
/* #define ENABLE_NUMERIC_STRING */
|
|
37
37
|
|
|
38
38
|
#define SIGNED_VALUE_MAX INTPTR_MAX
|
|
39
39
|
#define SIGNED_VALUE_MIN INTPTR_MIN
|
|
40
40
|
#define MUL_OVERFLOW_SIGNED_VALUE_P(a, b) MUL_OVERFLOW_SIGNED_INTEGER_P(a, b, SIGNED_VALUE_MIN, SIGNED_VALUE_MAX)
|
|
41
|
+
#define ADD_OVERFLOW_SIGNED_VALUE_P(a, b) ADD_OVERFLOW_SIGNED_INTEGER_P(a, b, SIGNED_VALUE_MIN, SIGNED_VALUE_MAX)
|
|
42
|
+
|
|
43
|
+
/* max_value = 0.9999_9999_9999E[exponent], exponent <= SIGNED_VALUE_MAX */
|
|
44
|
+
#define VP_EXPONENT_MAX (SIGNED_VALUE_MAX / BASE_FIG)
|
|
45
|
+
/* min_value = 0.0001_0000_0000E[exponent], exponent-(BASE_FIG-1) >= SIGNED_VALUE_MIN */
|
|
46
|
+
#define VP_EXPONENT_MIN ((SIGNED_VALUE_MIN + BASE_FIG - 1) / BASE_FIG)
|
|
47
|
+
#define EXPONENT_MAX (VP_EXPONENT_MAX * BASE_FIG)
|
|
48
|
+
#define EXPONENT_MIN (VP_EXPONENT_MIN * BASE_FIG - (BASE_FIG - 1))
|
|
41
49
|
|
|
42
50
|
VALUE rb_cBigDecimal;
|
|
43
|
-
VALUE rb_mBigMath;
|
|
44
51
|
|
|
45
52
|
static ID id_BigDecimal_exception_mode;
|
|
46
53
|
static ID id_BigDecimal_rounding_mode;
|
|
@@ -68,15 +75,28 @@ static struct {
|
|
|
68
75
|
uint8_t mode;
|
|
69
76
|
} rbd_rounding_modes[RBD_NUM_ROUNDING_MODES];
|
|
70
77
|
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
78
|
+
typedef struct {
|
|
79
|
+
VALUE bigdecimal;
|
|
80
|
+
Real *real;
|
|
81
|
+
} BDVALUE;
|
|
82
|
+
|
|
83
|
+
typedef struct {
|
|
84
|
+
VALUE bigdecimal_or_nil;
|
|
85
|
+
Real *real_or_null;
|
|
86
|
+
} NULLABLE_BDVALUE;
|
|
87
|
+
|
|
88
|
+
static inline BDVALUE
|
|
89
|
+
bdvalue_nonnullable(NULLABLE_BDVALUE v)
|
|
90
|
+
{
|
|
91
|
+
assert(v.real_or_null != NULL);
|
|
92
|
+
return (BDVALUE) { v.bigdecimal_or_nil, v.real_or_null };
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
static inline NULLABLE_BDVALUE
|
|
96
|
+
bdvalue_nullable(BDVALUE v)
|
|
97
|
+
{
|
|
98
|
+
return (NULLABLE_BDVALUE) { v.bigdecimal, v.real };
|
|
99
|
+
}
|
|
80
100
|
|
|
81
101
|
#define BASE_FIG BIGDECIMAL_COMPONENT_FIGURES
|
|
82
102
|
#define BASE BIGDECIMAL_BASE
|
|
@@ -84,31 +104,6 @@ static struct {
|
|
|
84
104
|
#define HALF_BASE (BASE/2)
|
|
85
105
|
#define BASE1 (BASE/10)
|
|
86
106
|
|
|
87
|
-
#define LOG10_2 0.3010299956639812
|
|
88
|
-
|
|
89
|
-
#ifndef RRATIONAL_ZERO_P
|
|
90
|
-
# define RRATIONAL_ZERO_P(x) (FIXNUM_P(rb_rational_num(x)) && \
|
|
91
|
-
FIX2LONG(rb_rational_num(x)) == 0)
|
|
92
|
-
#endif
|
|
93
|
-
|
|
94
|
-
#ifndef RRATIONAL_NEGATIVE_P
|
|
95
|
-
# define RRATIONAL_NEGATIVE_P(x) RTEST(rb_funcall((x), '<', 1, INT2FIX(0)))
|
|
96
|
-
#endif
|
|
97
|
-
|
|
98
|
-
#ifndef DECIMAL_SIZE_OF_BITS
|
|
99
|
-
#define DECIMAL_SIZE_OF_BITS(n) (((n) * 3010 + 9998) / 9999)
|
|
100
|
-
/* an approximation of ceil(n * log10(2)), upto 65536 at least */
|
|
101
|
-
#endif
|
|
102
|
-
|
|
103
|
-
#ifdef PRIsVALUE
|
|
104
|
-
# define RB_OBJ_CLASSNAME(obj) rb_obj_class(obj)
|
|
105
|
-
# define RB_OBJ_STRING(obj) (obj)
|
|
106
|
-
#else
|
|
107
|
-
# define PRIsVALUE "s"
|
|
108
|
-
# define RB_OBJ_CLASSNAME(obj) rb_obj_classname(obj)
|
|
109
|
-
# define RB_OBJ_STRING(obj) StringValueCStr(obj)
|
|
110
|
-
#endif
|
|
111
|
-
|
|
112
107
|
#ifndef MAYBE_UNUSED
|
|
113
108
|
# define MAYBE_UNUSED(x) x
|
|
114
109
|
#endif
|
|
@@ -145,6 +140,17 @@ check_allocation_count_nonzero(void)
|
|
|
145
140
|
# define check_allocation_count_nonzero() /* nothing */
|
|
146
141
|
#endif /* BIGDECIMAL_DEBUG */
|
|
147
142
|
|
|
143
|
+
/* VpMult VpDivd helpers */
|
|
144
|
+
#define VPMULT_RESULT_PREC(a, b) (a->Prec + b->Prec)
|
|
145
|
+
/* To calculate VpDivd with n-digits precision, quotient needs n+2*BASE_FIG-1 digits space */
|
|
146
|
+
/* In the worst precision case 0001_1111_1111 / 9999 = 0000_0001_1112, there are 2*BASE_FIG-1 leading zeros */
|
|
147
|
+
#define VPDIVD_QUO_DIGITS(required_digits) ((required_digits) + 2 * BASE_FIG - 1)
|
|
148
|
+
/* Required r.MaxPrec for calculating VpDivd(c, r, a, b) */
|
|
149
|
+
#define VPDIVD_REM_PREC(a, b, c) Max(a->Prec, b->Prec + c->MaxPrec - 1)
|
|
150
|
+
|
|
151
|
+
static NULLABLE_BDVALUE
|
|
152
|
+
CreateFromString(const char *str, VALUE klass, bool strict_p, bool raise_exception);
|
|
153
|
+
|
|
148
154
|
PUREFUNC(static inline size_t rbd_struct_size(size_t const));
|
|
149
155
|
|
|
150
156
|
static inline size_t
|
|
@@ -164,44 +170,10 @@ rbd_allocate_struct(size_t const internal_digits)
|
|
|
164
170
|
return real;
|
|
165
171
|
}
|
|
166
172
|
|
|
167
|
-
static size_t
|
|
168
|
-
rbd_calculate_internal_digits(size_t const digits, bool limit_precision)
|
|
169
|
-
{
|
|
170
|
-
size_t const len = roomof(digits, BASE_FIG);
|
|
171
|
-
if (limit_precision) {
|
|
172
|
-
size_t const prec_limit = VpGetPrecLimit();
|
|
173
|
-
if (prec_limit > 0) {
|
|
174
|
-
/* NOTE: 2 more digits for rounding and division */
|
|
175
|
-
size_t const max_len = roomof(prec_limit, BASE_FIG) + 2;
|
|
176
|
-
if (len > max_len)
|
|
177
|
-
return max_len;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
return len;
|
|
182
|
-
}
|
|
183
|
-
|
|
184
173
|
static inline Real *
|
|
185
|
-
rbd_allocate_struct_decimal_digits(size_t const decimal_digits
|
|
186
|
-
{
|
|
187
|
-
size_t const internal_digits = rbd_calculate_internal_digits(decimal_digits, limit_precision);
|
|
188
|
-
return rbd_allocate_struct(internal_digits);
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
static VALUE BigDecimal_wrap_struct(VALUE obj, Real *vp);
|
|
192
|
-
|
|
193
|
-
static Real *
|
|
194
|
-
rbd_reallocate_struct(Real *real, size_t const internal_digits)
|
|
174
|
+
rbd_allocate_struct_decimal_digits(size_t const decimal_digits)
|
|
195
175
|
{
|
|
196
|
-
|
|
197
|
-
VALUE obj = real ? real->obj : 0;
|
|
198
|
-
Real *new_real = (Real *)ruby_xrealloc(real, size);
|
|
199
|
-
new_real->MaxPrec = internal_digits;
|
|
200
|
-
if (obj) {
|
|
201
|
-
new_real->obj = 0;
|
|
202
|
-
BigDecimal_wrap_struct(obj, new_real);
|
|
203
|
-
}
|
|
204
|
-
return new_real;
|
|
176
|
+
return rbd_allocate_struct(roomof(decimal_digits, BASE_FIG));
|
|
205
177
|
}
|
|
206
178
|
|
|
207
179
|
static void
|
|
@@ -214,58 +186,16 @@ rbd_free_struct(Real *real)
|
|
|
214
186
|
}
|
|
215
187
|
}
|
|
216
188
|
|
|
189
|
+
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_zero(int sign, size_t const digits));
|
|
217
190
|
#define NewZero rbd_allocate_struct_zero
|
|
218
|
-
static Real *
|
|
219
|
-
rbd_allocate_struct_zero(int sign, size_t const digits, bool limit_precision)
|
|
220
|
-
{
|
|
221
|
-
Real *real = rbd_allocate_struct_decimal_digits(digits, limit_precision);
|
|
222
|
-
VpSetZero(real, sign);
|
|
223
|
-
return real;
|
|
224
|
-
}
|
|
225
|
-
|
|
226
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_zero_limited(int sign, size_t const digits));
|
|
227
|
-
#define NewZeroLimited rbd_allocate_struct_zero_limited
|
|
228
|
-
static inline Real *
|
|
229
|
-
rbd_allocate_struct_zero_limited(int sign, size_t const digits)
|
|
230
|
-
{
|
|
231
|
-
return rbd_allocate_struct_zero(sign, digits, true);
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_zero_nolimit(int sign, size_t const digits));
|
|
235
|
-
#define NewZeroNolimit rbd_allocate_struct_zero_nolimit
|
|
236
191
|
static inline Real *
|
|
237
|
-
|
|
238
|
-
{
|
|
239
|
-
return rbd_allocate_struct_zero(sign, digits, false);
|
|
240
|
-
}
|
|
241
|
-
|
|
242
|
-
#define NewOne rbd_allocate_struct_one
|
|
243
|
-
static Real *
|
|
244
|
-
rbd_allocate_struct_one(int sign, size_t const digits, bool limit_precision)
|
|
192
|
+
rbd_allocate_struct_zero(int sign, size_t const digits)
|
|
245
193
|
{
|
|
246
|
-
Real *real = rbd_allocate_struct_decimal_digits(digits
|
|
247
|
-
|
|
248
|
-
if (sign < 0)
|
|
249
|
-
VpSetSign(real, VP_SIGN_NEGATIVE_FINITE);
|
|
194
|
+
Real *real = rbd_allocate_struct_decimal_digits(digits);
|
|
195
|
+
VpSetZero(real, sign);
|
|
250
196
|
return real;
|
|
251
197
|
}
|
|
252
198
|
|
|
253
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_one_limited(int sign, size_t const digits));
|
|
254
|
-
#define NewOneLimited rbd_allocate_struct_one_limited
|
|
255
|
-
static inline Real *
|
|
256
|
-
rbd_allocate_struct_one_limited(int sign, size_t const digits)
|
|
257
|
-
{
|
|
258
|
-
return rbd_allocate_struct_one(sign, digits, true);
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_one_nolimit(int sign, size_t const digits));
|
|
262
|
-
#define NewOneNolimit rbd_allocate_struct_one_nolimit
|
|
263
|
-
static inline Real *
|
|
264
|
-
rbd_allocate_struct_one_nolimit(int sign, size_t const digits)
|
|
265
|
-
{
|
|
266
|
-
return rbd_allocate_struct_one(sign, digits, false);
|
|
267
|
-
}
|
|
268
|
-
|
|
269
199
|
/*
|
|
270
200
|
* ================== Ruby Interface part ==========================
|
|
271
201
|
*/
|
|
@@ -277,7 +207,8 @@ rbd_allocate_struct_one_nolimit(int sign, size_t const digits)
|
|
|
277
207
|
static unsigned short VpGetException(void);
|
|
278
208
|
static void VpSetException(unsigned short f);
|
|
279
209
|
static void VpCheckException(Real *p, bool always);
|
|
280
|
-
static
|
|
210
|
+
static int AddExponent(Real *a, SIGNED_VALUE n);
|
|
211
|
+
static VALUE CheckGetValue(BDVALUE v);
|
|
281
212
|
static void VpInternalRound(Real *c, size_t ixDigit, DECDIG vPrev, DECDIG v);
|
|
282
213
|
static int VpLimitRound(Real *c, size_t ixDigit);
|
|
283
214
|
static Real *VpCopy(Real *pv, Real const* const x);
|
|
@@ -292,6 +223,8 @@ static VALUE BigDecimal_positive_infinity(void);
|
|
|
292
223
|
static VALUE BigDecimal_negative_infinity(void);
|
|
293
224
|
static VALUE BigDecimal_positive_zero(void);
|
|
294
225
|
static VALUE BigDecimal_negative_zero(void);
|
|
226
|
+
static VALUE BigDecimal_addsub_with_coerce(VALUE self, VALUE r, size_t prec, int operation);
|
|
227
|
+
static VALUE BigDecimal_mult_with_coerce(VALUE self, VALUE r, size_t prec);
|
|
295
228
|
|
|
296
229
|
static void
|
|
297
230
|
BigDecimal_delete(void *pv)
|
|
@@ -319,58 +252,33 @@ static const rb_data_type_t BigDecimal_data_type = {
|
|
|
319
252
|
#endif
|
|
320
253
|
};
|
|
321
254
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
{
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
VALUE obj = TypedData_Wrap_Struct(klass, &BigDecimal_data_type, 0);
|
|
328
|
-
BigDecimal_wrap_struct(obj, real);
|
|
329
|
-
}
|
|
330
|
-
return real;
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_zero_limited_wrap(int sign, size_t const digits));
|
|
334
|
-
#define NewZeroWrapLimited rbd_allocate_struct_zero_limited_wrap
|
|
335
|
-
static inline Real *
|
|
336
|
-
rbd_allocate_struct_zero_limited_wrap(int sign, size_t const digits)
|
|
337
|
-
{
|
|
338
|
-
return rbd_allocate_struct_zero_wrap_klass(rb_cBigDecimal, sign, digits, true);
|
|
339
|
-
}
|
|
340
|
-
|
|
341
|
-
MAYBE_UNUSED(static inline Real * rbd_allocate_struct_zero_nolimit_wrap(int sign, size_t const digits));
|
|
342
|
-
#define NewZeroWrapNolimit rbd_allocate_struct_zero_nolimit_wrap
|
|
343
|
-
static inline Real *
|
|
344
|
-
rbd_allocate_struct_zero_nolimit_wrap(int sign, size_t const digits)
|
|
345
|
-
{
|
|
346
|
-
return rbd_allocate_struct_zero_wrap_klass(rb_cBigDecimal, sign, digits, false);
|
|
347
|
-
}
|
|
348
|
-
|
|
349
|
-
static Real *
|
|
350
|
-
rbd_allocate_struct_one_wrap_klass(VALUE klass, int sign, size_t const digits, bool limit_precision)
|
|
255
|
+
// TypedData_Wrap_Struct may fail if there is no memory, or GC.add_stress_to_class(BigDecimal) is set.
|
|
256
|
+
// We need to first allocate empty struct, allocate Real struct, and then set the data pointer.
|
|
257
|
+
typedef struct { VALUE _obj; } NULL_WRAPPED_VALUE;
|
|
258
|
+
static NULL_WRAPPED_VALUE
|
|
259
|
+
BigDecimal_alloc_empty_struct(VALUE klass)
|
|
351
260
|
{
|
|
352
|
-
|
|
353
|
-
if (real != NULL) {
|
|
354
|
-
VALUE obj = TypedData_Wrap_Struct(klass, &BigDecimal_data_type, 0);
|
|
355
|
-
BigDecimal_wrap_struct(obj, real);
|
|
356
|
-
}
|
|
357
|
-
return real;
|
|
261
|
+
return (NULL_WRAPPED_VALUE) { TypedData_Wrap_Struct(klass, &BigDecimal_data_type, NULL) };
|
|
358
262
|
}
|
|
359
263
|
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
static inline Real *
|
|
363
|
-
rbd_allocate_struct_one_limited_wrap(int sign, size_t const digits)
|
|
264
|
+
static VALUE
|
|
265
|
+
BigDecimal_wrap_struct(NULL_WRAPPED_VALUE v, Real *real)
|
|
364
266
|
{
|
|
365
|
-
|
|
267
|
+
VALUE obj = v._obj;
|
|
268
|
+
assert(RTYPEDDATA_DATA(obj) == NULL);
|
|
269
|
+
RTYPEDDATA_DATA(obj) = real;
|
|
270
|
+
RB_OBJ_FREEZE(obj);
|
|
271
|
+
return obj;
|
|
366
272
|
}
|
|
367
273
|
|
|
368
|
-
MAYBE_UNUSED(static inline
|
|
369
|
-
#define
|
|
370
|
-
static
|
|
371
|
-
|
|
274
|
+
MAYBE_UNUSED(static inline BDVALUE rbd_allocate_struct_zero_wrap(int sign, size_t const digits));
|
|
275
|
+
#define NewZeroWrap rbd_allocate_struct_zero_wrap
|
|
276
|
+
static BDVALUE
|
|
277
|
+
rbd_allocate_struct_zero_wrap(int sign, size_t const digits)
|
|
372
278
|
{
|
|
373
|
-
|
|
279
|
+
NULL_WRAPPED_VALUE null_wrapped = BigDecimal_alloc_empty_struct(rb_cBigDecimal);
|
|
280
|
+
Real *real = rbd_allocate_struct_zero(sign, digits);
|
|
281
|
+
return (BDVALUE) { BigDecimal_wrap_struct(null_wrapped, real), real };
|
|
374
282
|
}
|
|
375
283
|
|
|
376
284
|
static inline int
|
|
@@ -398,24 +306,22 @@ cannot_be_coerced_into_BigDecimal(VALUE exc_class, VALUE v)
|
|
|
398
306
|
}
|
|
399
307
|
|
|
400
308
|
static inline VALUE BigDecimal_div2(VALUE, VALUE, VALUE);
|
|
401
|
-
static VALUE rb_inum_convert_to_BigDecimal(VALUE val
|
|
309
|
+
static VALUE rb_inum_convert_to_BigDecimal(VALUE val);
|
|
402
310
|
static VALUE rb_float_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception);
|
|
403
311
|
static VALUE rb_rational_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception);
|
|
404
|
-
static VALUE rb_cstr_convert_to_BigDecimal(const char *c_str,
|
|
312
|
+
static VALUE rb_cstr_convert_to_BigDecimal(const char *c_str, int raise_exception);
|
|
405
313
|
static VALUE rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception);
|
|
406
314
|
|
|
407
|
-
static
|
|
408
|
-
|
|
315
|
+
static NULLABLE_BDVALUE
|
|
316
|
+
GetBDValueWithPrecInternal(VALUE v, size_t prec, int must)
|
|
409
317
|
{
|
|
410
|
-
const size_t digs = prec < 0 ? SIZE_MAX : (size_t)prec;
|
|
411
|
-
|
|
412
318
|
switch(TYPE(v)) {
|
|
413
319
|
case T_FLOAT:
|
|
414
|
-
v = rb_float_convert_to_BigDecimal(v,
|
|
320
|
+
v = rb_float_convert_to_BigDecimal(v, 0, true);
|
|
415
321
|
break;
|
|
416
322
|
|
|
417
323
|
case T_RATIONAL:
|
|
418
|
-
v = rb_rational_convert_to_BigDecimal(v,
|
|
324
|
+
v = rb_rational_convert_to_BigDecimal(v, prec, true);
|
|
419
325
|
break;
|
|
420
326
|
|
|
421
327
|
case T_DATA:
|
|
@@ -424,47 +330,59 @@ GetVpValueWithPrec(VALUE v, long prec, int must)
|
|
|
424
330
|
}
|
|
425
331
|
break;
|
|
426
332
|
|
|
427
|
-
case T_FIXNUM:
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
v = rb_cstr_convert_to_BigDecimal(szD, VpBaseFig() * 2 + 1, must);
|
|
333
|
+
case T_FIXNUM:
|
|
334
|
+
case T_BIGNUM: {
|
|
335
|
+
v = rb_inum_convert_to_BigDecimal(v);
|
|
431
336
|
break;
|
|
432
337
|
}
|
|
433
338
|
|
|
434
339
|
#ifdef ENABLE_NUMERIC_STRING
|
|
435
340
|
case T_STRING: {
|
|
436
341
|
const char *c_str = StringValueCStr(v);
|
|
437
|
-
v = rb_cstr_convert_to_BigDecimal(c_str,
|
|
342
|
+
v = rb_cstr_convert_to_BigDecimal(c_str, must);
|
|
438
343
|
break;
|
|
439
344
|
}
|
|
440
345
|
#endif /* ENABLE_NUMERIC_STRING */
|
|
441
346
|
|
|
442
|
-
case T_BIGNUM: {
|
|
443
|
-
VALUE bg = rb_big2str(v, 10);
|
|
444
|
-
v = rb_cstr_convert_to_BigDecimal(RSTRING_PTR(bg), RSTRING_LEN(bg) + VpBaseFig() + 1, must);
|
|
445
|
-
RB_GC_GUARD(bg);
|
|
446
|
-
break;
|
|
447
|
-
}
|
|
448
|
-
|
|
449
347
|
default:
|
|
450
348
|
goto SomeOneMayDoIt;
|
|
451
349
|
}
|
|
452
350
|
|
|
453
351
|
Real *vp;
|
|
454
352
|
TypedData_Get_Struct(v, Real, &BigDecimal_data_type, vp);
|
|
455
|
-
return vp;
|
|
353
|
+
return (NULLABLE_BDVALUE) { v, vp };
|
|
456
354
|
|
|
457
355
|
SomeOneMayDoIt:
|
|
458
356
|
if (must) {
|
|
459
357
|
cannot_be_coerced_into_BigDecimal(rb_eTypeError, v);
|
|
460
358
|
}
|
|
461
|
-
return NULL; /* NULL means to coerce */
|
|
359
|
+
return (NULLABLE_BDVALUE) { Qnil, NULL }; /* NULL means to coerce */
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
static inline NULLABLE_BDVALUE
|
|
363
|
+
GetBDValueWithPrec(VALUE v, size_t prec)
|
|
364
|
+
{
|
|
365
|
+
return GetBDValueWithPrecInternal(v, prec, 0);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
|
|
369
|
+
static inline BDVALUE
|
|
370
|
+
GetBDValueWithPrecMust(VALUE v, size_t prec)
|
|
371
|
+
{
|
|
372
|
+
return bdvalue_nonnullable(GetBDValueWithPrecInternal(v, prec, 1));
|
|
462
373
|
}
|
|
463
374
|
|
|
375
|
+
// self must be a receiver of BigDecimal instance method or a gc guarded BigDecimal object.
|
|
464
376
|
static inline Real*
|
|
465
|
-
|
|
377
|
+
GetSelfVpValue(VALUE self)
|
|
378
|
+
{
|
|
379
|
+
return GetBDValueWithPrecMust(self, 0).real;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
static inline BDVALUE
|
|
383
|
+
GetBDValueMust(VALUE v)
|
|
466
384
|
{
|
|
467
|
-
return
|
|
385
|
+
return GetBDValueWithPrecMust(v, 0);
|
|
468
386
|
}
|
|
469
387
|
|
|
470
388
|
/* call-seq:
|
|
@@ -479,7 +397,7 @@ GetVpValue(VALUE v, int must)
|
|
|
479
397
|
static inline VALUE
|
|
480
398
|
BigDecimal_double_fig(VALUE self)
|
|
481
399
|
{
|
|
482
|
-
return INT2FIX(
|
|
400
|
+
return INT2FIX(BIGDECIMAL_DOUBLE_FIGURES);
|
|
483
401
|
}
|
|
484
402
|
|
|
485
403
|
/* call-seq:
|
|
@@ -498,30 +416,26 @@ BigDecimal_double_fig(VALUE self)
|
|
|
498
416
|
static VALUE
|
|
499
417
|
BigDecimal_prec(VALUE self)
|
|
500
418
|
{
|
|
501
|
-
|
|
502
|
-
Real *p;
|
|
419
|
+
BDVALUE v;
|
|
503
420
|
VALUE obj;
|
|
504
421
|
|
|
505
422
|
rb_category_warn(RB_WARN_CATEGORY_DEPRECATED,
|
|
506
423
|
"BigDecimal#precs is deprecated and will be removed in the future; "
|
|
507
424
|
"use BigDecimal#precision instead.");
|
|
508
425
|
|
|
509
|
-
|
|
510
|
-
obj = rb_assoc_new(SIZET2NUM(
|
|
511
|
-
SIZET2NUM(
|
|
426
|
+
v = GetBDValueMust(self);
|
|
427
|
+
obj = rb_assoc_new(SIZET2NUM(v.real->Prec*VpBaseFig()),
|
|
428
|
+
SIZET2NUM(v.real->MaxPrec*VpBaseFig()));
|
|
429
|
+
|
|
430
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
512
431
|
return obj;
|
|
513
432
|
}
|
|
514
433
|
|
|
515
434
|
static void
|
|
516
|
-
|
|
435
|
+
VpCountPrecisionAndScale(Real *p, ssize_t *out_precision, ssize_t *out_scale)
|
|
517
436
|
{
|
|
518
|
-
ENTER(1);
|
|
519
|
-
|
|
520
437
|
if (out_precision == NULL && out_scale == NULL)
|
|
521
438
|
return;
|
|
522
|
-
|
|
523
|
-
Real *p;
|
|
524
|
-
GUARD_OBJ(p, GetVpValue(self, 1));
|
|
525
439
|
if (VpIsZero(p) || !VpIsDef(p)) {
|
|
526
440
|
zero:
|
|
527
441
|
if (out_precision) *out_precision = 0;
|
|
@@ -625,6 +539,14 @@ BigDecimal_count_precision_and_scale(VALUE self, ssize_t *out_precision, ssize_t
|
|
|
625
539
|
}
|
|
626
540
|
}
|
|
627
541
|
|
|
542
|
+
static void
|
|
543
|
+
BigDecimal_count_precision_and_scale(VALUE self, ssize_t *out_precision, ssize_t *out_scale)
|
|
544
|
+
{
|
|
545
|
+
BDVALUE v = GetBDValueMust(self);
|
|
546
|
+
VpCountPrecisionAndScale(v.real, out_precision, out_scale);
|
|
547
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
548
|
+
}
|
|
549
|
+
|
|
628
550
|
/*
|
|
629
551
|
* call-seq:
|
|
630
552
|
* precision -> integer
|
|
@@ -660,8 +582,8 @@ BigDecimal_precision(VALUE self)
|
|
|
660
582
|
* BigDecimal("1").scale # => 0
|
|
661
583
|
* BigDecimal("1.1").scale # => 1
|
|
662
584
|
* BigDecimal("3.1415").scale # => 4
|
|
663
|
-
* BigDecimal("-1e20").
|
|
664
|
-
* BigDecimal("1e-20").
|
|
585
|
+
* BigDecimal("-1e20").scale # => 0
|
|
586
|
+
* BigDecimal("1e-20").scale # => 20
|
|
665
587
|
* BigDecimal("Infinity").scale # => 0
|
|
666
588
|
* BigDecimal("-Infinity").scale # => 0
|
|
667
589
|
* BigDecimal("NaN").scale # => 0
|
|
@@ -711,25 +633,23 @@ BigDecimal_precision_scale(VALUE self)
|
|
|
711
633
|
static VALUE
|
|
712
634
|
BigDecimal_n_significant_digits(VALUE self)
|
|
713
635
|
{
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
Real *p;
|
|
717
|
-
GUARD_OBJ(p, GetVpValue(self, 1));
|
|
718
|
-
if (VpIsZero(p) || !VpIsDef(p)) {
|
|
636
|
+
BDVALUE v = GetBDValueMust(self);
|
|
637
|
+
if (VpIsZero(v.real) || !VpIsDef(v.real)) {
|
|
719
638
|
return INT2FIX(0);
|
|
720
639
|
}
|
|
721
640
|
|
|
722
|
-
ssize_t n =
|
|
723
|
-
for (n =
|
|
641
|
+
ssize_t n = v.real->Prec; /* The length of frac without trailing zeros. */
|
|
642
|
+
for (n = v.real->Prec; n > 0 && v.real->frac[n-1] == 0; --n);
|
|
724
643
|
if (n == 0) return INT2FIX(0);
|
|
725
644
|
|
|
726
645
|
DECDIG x;
|
|
727
646
|
int nlz = BASE_FIG;
|
|
728
|
-
for (x =
|
|
647
|
+
for (x = v.real->frac[0]; x > 0; x /= 10) --nlz;
|
|
729
648
|
|
|
730
649
|
int ntz = 0;
|
|
731
|
-
for (x =
|
|
650
|
+
for (x = v.real->frac[n-1]; x > 0 && x % 10 == 0; x /= 10) ++ntz;
|
|
732
651
|
|
|
652
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
733
653
|
ssize_t n_significant_digits = BASE_FIG*n - nlz - ntz;
|
|
734
654
|
return SSIZET2NUM(n_significant_digits);
|
|
735
655
|
}
|
|
@@ -751,17 +671,14 @@ BigDecimal_n_significant_digits(VALUE self)
|
|
|
751
671
|
static VALUE
|
|
752
672
|
BigDecimal_hash(VALUE self)
|
|
753
673
|
{
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
st_index_t hash;
|
|
757
|
-
|
|
758
|
-
GUARD_OBJ(p, GetVpValue(self, 1));
|
|
759
|
-
hash = (st_index_t)p->sign;
|
|
674
|
+
BDVALUE v = GetBDValueMust(self);
|
|
675
|
+
st_index_t hash = (st_index_t)v.real->sign;
|
|
760
676
|
/* hash!=2: the case for 0(1),NaN(0) or +-Infinity(3) is sign itself */
|
|
761
677
|
if(hash == 2 || hash == (st_index_t)-2) {
|
|
762
|
-
hash ^= rb_memhash(
|
|
763
|
-
hash +=
|
|
678
|
+
hash ^= rb_memhash(v.real->frac, sizeof(DECDIG)*v.real->Prec);
|
|
679
|
+
hash += v.real->exponent;
|
|
764
680
|
}
|
|
681
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
765
682
|
return ST2FIX(hash);
|
|
766
683
|
}
|
|
767
684
|
|
|
@@ -780,21 +697,22 @@ BigDecimal_hash(VALUE self)
|
|
|
780
697
|
static VALUE
|
|
781
698
|
BigDecimal_dump(int argc, VALUE *argv, VALUE self)
|
|
782
699
|
{
|
|
783
|
-
|
|
784
|
-
Real *vp;
|
|
700
|
+
BDVALUE v;
|
|
785
701
|
char *psz;
|
|
786
702
|
VALUE dummy;
|
|
787
703
|
volatile VALUE dump;
|
|
788
704
|
size_t len;
|
|
789
705
|
|
|
790
706
|
rb_scan_args(argc, argv, "01", &dummy);
|
|
791
|
-
|
|
792
|
-
dump = rb_str_new(0, VpNumOfChars(
|
|
707
|
+
v = GetBDValueMust(self);
|
|
708
|
+
dump = rb_str_new(0, VpNumOfChars(v.real, "E")+50);
|
|
793
709
|
psz = RSTRING_PTR(dump);
|
|
794
|
-
snprintf(psz, RSTRING_LEN(dump), "%"PRIuSIZE":",
|
|
710
|
+
snprintf(psz, RSTRING_LEN(dump), "%"PRIuSIZE":", v.real->Prec*VpBaseFig());
|
|
795
711
|
len = strlen(psz);
|
|
796
|
-
VpToString(
|
|
712
|
+
VpToString(v.real, psz+len, RSTRING_LEN(dump)-len, 0, 0);
|
|
797
713
|
rb_str_resize(dump, strlen(psz));
|
|
714
|
+
|
|
715
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
798
716
|
return dump;
|
|
799
717
|
}
|
|
800
718
|
|
|
@@ -804,27 +722,19 @@ BigDecimal_dump(int argc, VALUE *argv, VALUE self)
|
|
|
804
722
|
static VALUE
|
|
805
723
|
BigDecimal_load(VALUE self, VALUE str)
|
|
806
724
|
{
|
|
807
|
-
|
|
808
|
-
Real *pv;
|
|
725
|
+
BDVALUE v;
|
|
809
726
|
unsigned char *pch;
|
|
810
727
|
unsigned char ch;
|
|
811
|
-
unsigned long m=0;
|
|
812
728
|
|
|
813
729
|
pch = (unsigned char *)StringValueCStr(str);
|
|
814
|
-
/* First
|
|
730
|
+
/* First skip max prec. Don't trust the value. */
|
|
815
731
|
while((*pch) != (unsigned char)'\0' && (ch = *pch++) != (unsigned char)':') {
|
|
816
732
|
if(!ISDIGIT(ch)) {
|
|
817
733
|
rb_raise(rb_eTypeError, "load failed: invalid character in the marshaled string");
|
|
818
734
|
}
|
|
819
|
-
m = m*10 + (unsigned long)(ch-'0');
|
|
820
735
|
}
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
m /= VpBaseFig();
|
|
824
|
-
if (m && pv->MaxPrec > m) {
|
|
825
|
-
pv->MaxPrec = m+1;
|
|
826
|
-
}
|
|
827
|
-
return VpCheckGetValue(pv);
|
|
736
|
+
v = bdvalue_nonnullable(CreateFromString((char *)pch, self, true, true));
|
|
737
|
+
return CheckGetValue(v);
|
|
828
738
|
}
|
|
829
739
|
|
|
830
740
|
static unsigned short
|
|
@@ -1117,22 +1027,10 @@ BigDecimal_mode(int argc, VALUE *argv, VALUE self)
|
|
|
1117
1027
|
static size_t
|
|
1118
1028
|
GetAddSubPrec(Real *a, Real *b)
|
|
1119
1029
|
{
|
|
1120
|
-
size_t mxs;
|
|
1121
|
-
size_t mx = a->Prec;
|
|
1122
|
-
SIGNED_VALUE d;
|
|
1123
|
-
|
|
1124
1030
|
if (!VpIsDef(a) || !VpIsDef(b)) return (size_t)-1L;
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
d = a->exponent - b->exponent;
|
|
1129
|
-
if (d < 0) d = -d;
|
|
1130
|
-
mx = mx + (size_t)d;
|
|
1131
|
-
if (mx < mxs) {
|
|
1132
|
-
return VpException(VP_EXCEPTION_INFINITY, "Exponent overflow", 0);
|
|
1133
|
-
}
|
|
1134
|
-
}
|
|
1135
|
-
return mx;
|
|
1031
|
+
ssize_t min_a = a->exponent - a->Prec;
|
|
1032
|
+
ssize_t min_b = b->exponent - b->Prec;
|
|
1033
|
+
return Max(a->exponent, b->exponent) - Min(min_a, min_b);
|
|
1136
1034
|
}
|
|
1137
1035
|
|
|
1138
1036
|
static inline SIGNED_VALUE
|
|
@@ -1152,39 +1050,13 @@ check_int_precision(VALUE v)
|
|
|
1152
1050
|
return n;
|
|
1153
1051
|
}
|
|
1154
1052
|
|
|
1155
|
-
static
|
|
1156
|
-
|
|
1157
|
-
{
|
|
1158
|
-
assert(is_kind_of_BigDecimal(obj));
|
|
1159
|
-
assert(vp != NULL);
|
|
1160
|
-
|
|
1161
|
-
if (vp->obj == obj && RTYPEDDATA_DATA(obj) == vp)
|
|
1162
|
-
return obj;
|
|
1163
|
-
|
|
1164
|
-
assert(RTYPEDDATA_DATA(obj) == NULL);
|
|
1165
|
-
assert(vp->obj == 0);
|
|
1166
|
-
|
|
1167
|
-
RTYPEDDATA_DATA(obj) = vp;
|
|
1168
|
-
vp->obj = obj;
|
|
1169
|
-
RB_OBJ_FREEZE(obj);
|
|
1170
|
-
return obj;
|
|
1171
|
-
}
|
|
1172
|
-
|
|
1173
|
-
VP_EXPORT Real *
|
|
1174
|
-
VpNewRbClass(size_t mx, const char *str, VALUE klass, bool strict_p, bool raise_exception)
|
|
1175
|
-
{
|
|
1176
|
-
VALUE obj = TypedData_Wrap_Struct(klass, &BigDecimal_data_type, 0);
|
|
1177
|
-
Real *pv = VpAlloc(mx, str, strict_p, raise_exception);
|
|
1178
|
-
if (!pv)
|
|
1179
|
-
return NULL;
|
|
1180
|
-
BigDecimal_wrap_struct(obj, pv);
|
|
1181
|
-
return pv;
|
|
1182
|
-
}
|
|
1183
|
-
|
|
1184
|
-
VP_EXPORT Real *
|
|
1185
|
-
VpCreateRbObject(size_t mx, const char *str, bool raise_exception)
|
|
1053
|
+
static NULLABLE_BDVALUE
|
|
1054
|
+
CreateFromString(const char *str, VALUE klass, bool strict_p, bool raise_exception)
|
|
1186
1055
|
{
|
|
1187
|
-
|
|
1056
|
+
NULL_WRAPPED_VALUE null_wrapped = BigDecimal_alloc_empty_struct(klass);
|
|
1057
|
+
Real *pv = VpAlloc(str, strict_p, raise_exception);
|
|
1058
|
+
if (!pv) return (NULLABLE_BDVALUE) { Qnil, NULL };
|
|
1059
|
+
return (NULLABLE_BDVALUE) { BigDecimal_wrap_struct(null_wrapped, pv), pv };
|
|
1188
1060
|
}
|
|
1189
1061
|
|
|
1190
1062
|
static Real *
|
|
@@ -1192,7 +1064,7 @@ VpCopy(Real *pv, Real const* const x)
|
|
|
1192
1064
|
{
|
|
1193
1065
|
assert(x != NULL);
|
|
1194
1066
|
|
|
1195
|
-
pv =
|
|
1067
|
+
pv = (Real *)ruby_xrealloc(pv, rbd_struct_size(x->MaxPrec));
|
|
1196
1068
|
pv->MaxPrec = x->MaxPrec;
|
|
1197
1069
|
pv->Prec = x->Prec;
|
|
1198
1070
|
pv->exponent = x->exponent;
|
|
@@ -1207,7 +1079,7 @@ VpCopy(Real *pv, Real const* const x)
|
|
|
1207
1079
|
static VALUE
|
|
1208
1080
|
BigDecimal_IsNaN(VALUE self)
|
|
1209
1081
|
{
|
|
1210
|
-
Real *p =
|
|
1082
|
+
Real *p = GetSelfVpValue(self);
|
|
1211
1083
|
if (VpIsNaN(p)) return Qtrue;
|
|
1212
1084
|
return Qfalse;
|
|
1213
1085
|
}
|
|
@@ -1218,7 +1090,7 @@ BigDecimal_IsNaN(VALUE self)
|
|
|
1218
1090
|
static VALUE
|
|
1219
1091
|
BigDecimal_IsInfinite(VALUE self)
|
|
1220
1092
|
{
|
|
1221
|
-
Real *p =
|
|
1093
|
+
Real *p = GetSelfVpValue(self);
|
|
1222
1094
|
if (VpIsPosInf(p)) return INT2FIX(1);
|
|
1223
1095
|
if (VpIsNegInf(p)) return INT2FIX(-1);
|
|
1224
1096
|
return Qnil;
|
|
@@ -1228,7 +1100,7 @@ BigDecimal_IsInfinite(VALUE self)
|
|
|
1228
1100
|
static VALUE
|
|
1229
1101
|
BigDecimal_IsFinite(VALUE self)
|
|
1230
1102
|
{
|
|
1231
|
-
Real *p =
|
|
1103
|
+
Real *p = GetSelfVpValue(self);
|
|
1232
1104
|
if (VpIsNaN(p)) return Qfalse;
|
|
1233
1105
|
if (VpIsInf(p)) return Qfalse;
|
|
1234
1106
|
return Qtrue;
|
|
@@ -1240,6 +1112,7 @@ BigDecimal_check_num(Real *p)
|
|
|
1240
1112
|
VpCheckException(p, true);
|
|
1241
1113
|
}
|
|
1242
1114
|
|
|
1115
|
+
static VALUE BigDecimal_fix(VALUE self);
|
|
1243
1116
|
static VALUE BigDecimal_split(VALUE self);
|
|
1244
1117
|
|
|
1245
1118
|
/* Returns the value as an Integer.
|
|
@@ -1249,44 +1122,36 @@ static VALUE BigDecimal_split(VALUE self);
|
|
|
1249
1122
|
static VALUE
|
|
1250
1123
|
BigDecimal_to_i(VALUE self)
|
|
1251
1124
|
{
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
Real *p;
|
|
1125
|
+
BDVALUE v;
|
|
1126
|
+
VALUE ret;
|
|
1255
1127
|
|
|
1256
|
-
|
|
1257
|
-
BigDecimal_check_num(
|
|
1128
|
+
v = GetBDValueMust(self);
|
|
1129
|
+
BigDecimal_check_num(v.real);
|
|
1258
1130
|
|
|
1259
|
-
|
|
1260
|
-
if (
|
|
1261
|
-
|
|
1262
|
-
if (e <= nf) {
|
|
1263
|
-
return LONG2NUM((long)(VpGetSign(p) * (DECDIG_DBL_SIGNED)p->frac[0]));
|
|
1131
|
+
if (v.real->exponent <= 0) return INT2FIX(0);
|
|
1132
|
+
if (v.real->exponent == 1) {
|
|
1133
|
+
ret = LONG2NUM((long)(VpGetSign(v.real) * (DECDIG_DBL_SIGNED)v.real->frac[0]));
|
|
1264
1134
|
}
|
|
1265
1135
|
else {
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
ret = rb_funcall(numerator, '*', 1,
|
|
1282
|
-
rb_funcall(INT2FIX(10), rb_intern("**"), 1,
|
|
1283
|
-
INT2FIX(dpower)));
|
|
1284
|
-
}
|
|
1285
|
-
if (RB_TYPE_P(ret, T_FLOAT)) {
|
|
1286
|
-
rb_raise(rb_eFloatDomainError, "Infinity");
|
|
1287
|
-
}
|
|
1288
|
-
return ret;
|
|
1136
|
+
VALUE fix = (ssize_t)v.real->Prec > v.real->exponent ? BigDecimal_fix(self) : self;
|
|
1137
|
+
VALUE digits = RARRAY_AREF(BigDecimal_split(fix), 1);
|
|
1138
|
+
ssize_t dpower = VpExponent10(v.real) - (ssize_t)RSTRING_LEN(digits);
|
|
1139
|
+
ret = rb_funcall(digits, rb_intern("to_i"), 0);
|
|
1140
|
+
|
|
1141
|
+
if (BIGDECIMAL_NEGATIVE_P(v.real)) {
|
|
1142
|
+
ret = rb_funcall(ret, '*', 1, INT2FIX(-1));
|
|
1143
|
+
}
|
|
1144
|
+
if (dpower) {
|
|
1145
|
+
VALUE pow10 = rb_funcall(INT2FIX(10), rb_intern("**"), 1, SSIZET2NUM(dpower));
|
|
1146
|
+
// In Ruby < 3.4, int**int may return Float::INFINITY
|
|
1147
|
+
if (RB_TYPE_P(pow10, T_FLOAT)) rb_raise(rb_eFloatDomainError, "Infinity");
|
|
1148
|
+
|
|
1149
|
+
ret = rb_funcall(ret, '*', 1, pow10);
|
|
1150
|
+
}
|
|
1289
1151
|
}
|
|
1152
|
+
|
|
1153
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
1154
|
+
return ret;
|
|
1290
1155
|
}
|
|
1291
1156
|
|
|
1292
1157
|
/* Returns a new Float object having approximately the same value as the
|
|
@@ -1296,24 +1161,26 @@ BigDecimal_to_i(VALUE self)
|
|
|
1296
1161
|
static VALUE
|
|
1297
1162
|
BigDecimal_to_f(VALUE self)
|
|
1298
1163
|
{
|
|
1299
|
-
ENTER(1);
|
|
1300
|
-
Real *p;
|
|
1301
1164
|
double d;
|
|
1302
1165
|
SIGNED_VALUE e;
|
|
1303
1166
|
char *buf;
|
|
1304
1167
|
volatile VALUE str;
|
|
1168
|
+
BDVALUE v = GetBDValueMust(self);
|
|
1169
|
+
bool negative = BIGDECIMAL_NEGATIVE_P(v.real);
|
|
1305
1170
|
|
|
1306
|
-
|
|
1307
|
-
if (VpVtoD(&d, &e, p) != 1)
|
|
1171
|
+
if (VpVtoD(&d, &e, v.real) != 1)
|
|
1308
1172
|
return rb_float_new(d);
|
|
1309
1173
|
if (e > (SIGNED_VALUE)(DBL_MAX_10_EXP+BASE_FIG))
|
|
1310
1174
|
goto overflow;
|
|
1311
|
-
if (e < (SIGNED_VALUE)(DBL_MIN_10_EXP-
|
|
1175
|
+
if (e < (SIGNED_VALUE)(DBL_MIN_10_EXP-DBL_DIG))
|
|
1312
1176
|
goto underflow;
|
|
1313
1177
|
|
|
1314
|
-
str = rb_str_new(0, VpNumOfChars(
|
|
1178
|
+
str = rb_str_new(0, VpNumOfChars(v.real, "E"));
|
|
1315
1179
|
buf = RSTRING_PTR(str);
|
|
1316
|
-
VpToString(
|
|
1180
|
+
VpToString(v.real, buf, RSTRING_LEN(str), 0, 0);
|
|
1181
|
+
|
|
1182
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
1183
|
+
|
|
1317
1184
|
errno = 0;
|
|
1318
1185
|
d = strtod(buf, 0);
|
|
1319
1186
|
if (errno == ERANGE) {
|
|
@@ -1324,14 +1191,14 @@ BigDecimal_to_f(VALUE self)
|
|
|
1324
1191
|
|
|
1325
1192
|
overflow:
|
|
1326
1193
|
VpException(VP_EXCEPTION_OVERFLOW, "BigDecimal to Float conversion", 0);
|
|
1327
|
-
if (
|
|
1194
|
+
if (negative)
|
|
1328
1195
|
return rb_float_new(VpGetDoubleNegInf());
|
|
1329
1196
|
else
|
|
1330
1197
|
return rb_float_new(VpGetDoublePosInf());
|
|
1331
1198
|
|
|
1332
1199
|
underflow:
|
|
1333
1200
|
VpException(VP_EXCEPTION_UNDERFLOW, "BigDecimal to Float conversion", 0);
|
|
1334
|
-
if (
|
|
1201
|
+
if (negative)
|
|
1335
1202
|
return rb_float_new(-0.0);
|
|
1336
1203
|
else
|
|
1337
1204
|
return rb_float_new(0.0);
|
|
@@ -1343,15 +1210,16 @@ underflow:
|
|
|
1343
1210
|
static VALUE
|
|
1344
1211
|
BigDecimal_to_r(VALUE self)
|
|
1345
1212
|
{
|
|
1346
|
-
|
|
1213
|
+
BDVALUE v;
|
|
1347
1214
|
ssize_t sign, power, denomi_power;
|
|
1348
1215
|
VALUE a, digits, numerator;
|
|
1349
1216
|
|
|
1350
|
-
|
|
1351
|
-
BigDecimal_check_num(
|
|
1217
|
+
v = GetBDValueMust(self);
|
|
1218
|
+
BigDecimal_check_num(v.real);
|
|
1219
|
+
sign = VpGetSign(v.real);
|
|
1220
|
+
power = VpExponent10(v.real);
|
|
1221
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
1352
1222
|
|
|
1353
|
-
sign = VpGetSign(p);
|
|
1354
|
-
power = VpExponent10(p);
|
|
1355
1223
|
a = BigDecimal_split(self);
|
|
1356
1224
|
digits = RARRAY_AREF(a, 1);
|
|
1357
1225
|
denomi_power = power - RSTRING_LEN(digits);
|
|
@@ -1372,6 +1240,14 @@ BigDecimal_to_r(VALUE self)
|
|
|
1372
1240
|
}
|
|
1373
1241
|
}
|
|
1374
1242
|
|
|
1243
|
+
static size_t
|
|
1244
|
+
GetCoercePrec(Real *a, size_t prec)
|
|
1245
|
+
{
|
|
1246
|
+
if (prec == 0) prec = a->Prec * BASE_FIG;
|
|
1247
|
+
if (prec < 2 * BIGDECIMAL_DOUBLE_FIGURES) prec = 2 * BIGDECIMAL_DOUBLE_FIGURES;
|
|
1248
|
+
return prec;
|
|
1249
|
+
}
|
|
1250
|
+
|
|
1375
1251
|
/* The coerce method provides support for Ruby type coercion. It is not
|
|
1376
1252
|
* enabled by default.
|
|
1377
1253
|
*
|
|
@@ -1389,26 +1265,9 @@ BigDecimal_to_r(VALUE self)
|
|
|
1389
1265
|
static VALUE
|
|
1390
1266
|
BigDecimal_coerce(VALUE self, VALUE other)
|
|
1391
1267
|
{
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
if (RB_TYPE_P(other, T_FLOAT)) {
|
|
1397
|
-
GUARD_OBJ(b, GetVpValueWithPrec(other, 0, 1));
|
|
1398
|
-
obj = rb_assoc_new(VpCheckGetValue(b), self);
|
|
1399
|
-
}
|
|
1400
|
-
else {
|
|
1401
|
-
if (RB_TYPE_P(other, T_RATIONAL)) {
|
|
1402
|
-
Real* pv = DATA_PTR(self);
|
|
1403
|
-
GUARD_OBJ(b, GetVpValueWithPrec(other, pv->Prec*VpBaseFig(), 1));
|
|
1404
|
-
}
|
|
1405
|
-
else {
|
|
1406
|
-
GUARD_OBJ(b, GetVpValue(other, 1));
|
|
1407
|
-
}
|
|
1408
|
-
obj = rb_assoc_new(b->obj, self);
|
|
1409
|
-
}
|
|
1410
|
-
|
|
1411
|
-
return obj;
|
|
1268
|
+
Real* pv = DATA_PTR(self);
|
|
1269
|
+
BDVALUE b = GetBDValueWithPrecMust(other, GetCoercePrec(pv, 0));
|
|
1270
|
+
return rb_assoc_new(CheckGetValue(b), self);
|
|
1412
1271
|
}
|
|
1413
1272
|
|
|
1414
1273
|
/*
|
|
@@ -1428,6 +1287,15 @@ BigDecimal_uplus(VALUE self)
|
|
|
1428
1287
|
return self;
|
|
1429
1288
|
}
|
|
1430
1289
|
|
|
1290
|
+
static bool
|
|
1291
|
+
is_coerceable_to_BigDecimal(VALUE r)
|
|
1292
|
+
{
|
|
1293
|
+
return is_kind_of_BigDecimal(r) ||
|
|
1294
|
+
RB_INTEGER_TYPE_P(r) ||
|
|
1295
|
+
RB_TYPE_P(r, T_FLOAT) ||
|
|
1296
|
+
RB_TYPE_P(r, T_RATIONAL);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1431
1299
|
/*
|
|
1432
1300
|
* call-seq:
|
|
1433
1301
|
* self + value -> bigdecimal
|
|
@@ -1447,42 +1315,40 @@ BigDecimal_uplus(VALUE self)
|
|
|
1447
1315
|
static VALUE
|
|
1448
1316
|
BigDecimal_add(VALUE self, VALUE r)
|
|
1449
1317
|
{
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1318
|
+
if (!is_coerceable_to_BigDecimal(r)) return DoSomeOne(self, r, '+');
|
|
1319
|
+
return BigDecimal_addsub_with_coerce(self, r, 0, +1);
|
|
1320
|
+
}
|
|
1453
1321
|
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
b = GetVpValueWithPrec(r, a->Prec*VpBaseFig(), 1);
|
|
1460
|
-
}
|
|
1461
|
-
else {
|
|
1462
|
-
b = GetVpValue(r, 0);
|
|
1463
|
-
}
|
|
1322
|
+
static VALUE
|
|
1323
|
+
BigDecimal_addsub_with_coerce(VALUE self, VALUE r, size_t prec, int operation)
|
|
1324
|
+
{
|
|
1325
|
+
BDVALUE a, b, c;
|
|
1326
|
+
size_t mx;
|
|
1464
1327
|
|
|
1465
|
-
|
|
1466
|
-
|
|
1328
|
+
a = GetBDValueMust(self);
|
|
1329
|
+
b = GetBDValueWithPrecMust(r, GetCoercePrec(a.real, prec));
|
|
1467
1330
|
|
|
1468
|
-
if (VpIsNaN(
|
|
1469
|
-
if (VpIsNaN(
|
|
1331
|
+
if (VpIsNaN(a.real)) return CheckGetValue(a);
|
|
1332
|
+
if (VpIsNaN(b.real)) return CheckGetValue(b);
|
|
1470
1333
|
|
|
1471
|
-
mx = GetAddSubPrec(a, b);
|
|
1334
|
+
mx = GetAddSubPrec(a.real, b.real);
|
|
1472
1335
|
if (mx == (size_t)-1L) {
|
|
1473
|
-
|
|
1474
|
-
|
|
1336
|
+
/* a or b is inf */
|
|
1337
|
+
c = NewZeroWrap(1, BASE_FIG);
|
|
1338
|
+
VpAddSub(c.real, a.real, b.real, operation);
|
|
1475
1339
|
}
|
|
1476
1340
|
else {
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
}
|
|
1341
|
+
c = NewZeroWrap(1, (mx + 1) * BASE_FIG);
|
|
1342
|
+
size_t pl = VpGetPrecLimit();
|
|
1343
|
+
if (prec) VpSetPrecLimit(prec);
|
|
1344
|
+
// Let VpAddSub round the result
|
|
1345
|
+
VpAddSub(c.real, a.real, b.real, operation);
|
|
1346
|
+
if (prec) VpSetPrecLimit(pl);
|
|
1484
1347
|
}
|
|
1485
|
-
|
|
1348
|
+
|
|
1349
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
1350
|
+
RB_GC_GUARD(b.bigdecimal);
|
|
1351
|
+
return CheckGetValue(c);
|
|
1486
1352
|
}
|
|
1487
1353
|
|
|
1488
1354
|
/*
|
|
@@ -1503,73 +1369,18 @@ BigDecimal_add(VALUE self, VALUE r)
|
|
|
1503
1369
|
static VALUE
|
|
1504
1370
|
BigDecimal_sub(VALUE self, VALUE r)
|
|
1505
1371
|
{
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
size_t mx;
|
|
1509
|
-
|
|
1510
|
-
GUARD_OBJ(a, GetVpValue(self,1));
|
|
1511
|
-
if (RB_TYPE_P(r, T_FLOAT)) {
|
|
1512
|
-
b = GetVpValueWithPrec(r, 0, 1);
|
|
1513
|
-
}
|
|
1514
|
-
else if (RB_TYPE_P(r, T_RATIONAL)) {
|
|
1515
|
-
b = GetVpValueWithPrec(r, a->Prec*VpBaseFig(), 1);
|
|
1516
|
-
}
|
|
1517
|
-
else {
|
|
1518
|
-
b = GetVpValue(r,0);
|
|
1519
|
-
}
|
|
1520
|
-
|
|
1521
|
-
if (!b) return DoSomeOne(self,r,'-');
|
|
1522
|
-
SAVE(b);
|
|
1523
|
-
|
|
1524
|
-
if (VpIsNaN(b)) return b->obj;
|
|
1525
|
-
if (VpIsNaN(a)) return a->obj;
|
|
1526
|
-
|
|
1527
|
-
mx = GetAddSubPrec(a,b);
|
|
1528
|
-
if (mx == (size_t)-1L) {
|
|
1529
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, VpBaseFig() + 1));
|
|
1530
|
-
VpAddSub(c, a, b, -1);
|
|
1531
|
-
}
|
|
1532
|
-
else {
|
|
1533
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx *(VpBaseFig() + 1)));
|
|
1534
|
-
if (!mx) {
|
|
1535
|
-
VpSetInf(c,VpGetSign(a));
|
|
1536
|
-
}
|
|
1537
|
-
else {
|
|
1538
|
-
VpAddSub(c, a, b, -1);
|
|
1539
|
-
}
|
|
1540
|
-
}
|
|
1541
|
-
return VpCheckGetValue(c);
|
|
1372
|
+
if (!is_coerceable_to_BigDecimal(r)) return DoSomeOne(self, r, '-');
|
|
1373
|
+
return BigDecimal_addsub_with_coerce(self, r, 0, -1);
|
|
1542
1374
|
}
|
|
1543
1375
|
|
|
1544
1376
|
static VALUE
|
|
1545
1377
|
BigDecimalCmp(VALUE self, VALUE r,char op)
|
|
1546
1378
|
{
|
|
1547
|
-
ENTER(5);
|
|
1548
1379
|
SIGNED_VALUE e;
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
switch (TYPE(r)) {
|
|
1552
|
-
case T_DATA:
|
|
1553
|
-
if (!is_kind_of_BigDecimal(r)) break;
|
|
1554
|
-
/* fall through */
|
|
1555
|
-
case T_FIXNUM:
|
|
1556
|
-
/* fall through */
|
|
1557
|
-
case T_BIGNUM:
|
|
1558
|
-
GUARD_OBJ(b, GetVpValue(r, 0));
|
|
1559
|
-
break;
|
|
1380
|
+
BDVALUE a = GetBDValueMust(self);
|
|
1381
|
+
NULLABLE_BDVALUE b = GetBDValueWithPrec(r, GetCoercePrec(a.real, 0));
|
|
1560
1382
|
|
|
1561
|
-
|
|
1562
|
-
GUARD_OBJ(b, GetVpValueWithPrec(r, 0, 0));
|
|
1563
|
-
break;
|
|
1564
|
-
|
|
1565
|
-
case T_RATIONAL:
|
|
1566
|
-
GUARD_OBJ(b, GetVpValueWithPrec(r, a->Prec*VpBaseFig(), 0));
|
|
1567
|
-
break;
|
|
1568
|
-
|
|
1569
|
-
default:
|
|
1570
|
-
break;
|
|
1571
|
-
}
|
|
1572
|
-
if (b == NULL) {
|
|
1383
|
+
if (b.real_or_null == NULL) {
|
|
1573
1384
|
ID f = 0;
|
|
1574
1385
|
|
|
1575
1386
|
switch (op) {
|
|
@@ -1598,8 +1409,11 @@ BigDecimalCmp(VALUE self, VALUE r,char op)
|
|
|
1598
1409
|
}
|
|
1599
1410
|
return rb_num_coerce_relop(self, r, f);
|
|
1600
1411
|
}
|
|
1601
|
-
|
|
1602
|
-
|
|
1412
|
+
e = VpComp(a.real, b.real_or_null);
|
|
1413
|
+
|
|
1414
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
1415
|
+
RB_GC_GUARD(b.bigdecimal_or_nil);
|
|
1416
|
+
|
|
1603
1417
|
if (e == 999)
|
|
1604
1418
|
return (op == '*') ? Qnil : Qfalse;
|
|
1605
1419
|
switch (op) {
|
|
@@ -1639,7 +1453,7 @@ BigDecimalCmp(VALUE self, VALUE r,char op)
|
|
|
1639
1453
|
static VALUE
|
|
1640
1454
|
BigDecimal_zero(VALUE self)
|
|
1641
1455
|
{
|
|
1642
|
-
Real *a =
|
|
1456
|
+
Real *a = GetSelfVpValue(self);
|
|
1643
1457
|
return VpIsZero(a) ? Qtrue : Qfalse;
|
|
1644
1458
|
}
|
|
1645
1459
|
|
|
@@ -1647,7 +1461,7 @@ BigDecimal_zero(VALUE self)
|
|
|
1647
1461
|
static VALUE
|
|
1648
1462
|
BigDecimal_nonzero(VALUE self)
|
|
1649
1463
|
{
|
|
1650
|
-
Real *a =
|
|
1464
|
+
Real *a = GetSelfVpValue(self);
|
|
1651
1465
|
return VpIsZero(a) ? Qnil : self;
|
|
1652
1466
|
}
|
|
1653
1467
|
|
|
@@ -1773,12 +1587,11 @@ BigDecimal_ge(VALUE self, VALUE r)
|
|
|
1773
1587
|
static VALUE
|
|
1774
1588
|
BigDecimal_neg(VALUE self)
|
|
1775
1589
|
{
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
return VpCheckGetValue(c);
|
|
1590
|
+
BDVALUE a = GetBDValueMust(self);
|
|
1591
|
+
BDVALUE c = NewZeroWrap(1, a.real->Prec * BASE_FIG);
|
|
1592
|
+
VpAsgn(c.real, a.real, -10);
|
|
1593
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
1594
|
+
return CheckGetValue(c);
|
|
1782
1595
|
}
|
|
1783
1596
|
|
|
1784
1597
|
/*
|
|
@@ -1791,35 +1604,36 @@ BigDecimal_neg(VALUE self)
|
|
|
1791
1604
|
*
|
|
1792
1605
|
* See BigDecimal#mult.
|
|
1793
1606
|
*/
|
|
1794
|
-
|
|
1795
1607
|
static VALUE
|
|
1796
1608
|
BigDecimal_mult(VALUE self, VALUE r)
|
|
1797
1609
|
{
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1610
|
+
if (!is_coerceable_to_BigDecimal(r)) return DoSomeOne(self, r, '*');
|
|
1611
|
+
return BigDecimal_mult_with_coerce(self, r, 0);
|
|
1612
|
+
}
|
|
1801
1613
|
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1614
|
+
static VALUE
|
|
1615
|
+
BigDecimal_mult_with_coerce(VALUE self, VALUE r, size_t prec)
|
|
1616
|
+
{
|
|
1617
|
+
BDVALUE a, b, c;
|
|
1618
|
+
|
|
1619
|
+
a = GetBDValueMust(self);
|
|
1620
|
+
b = GetBDValueWithPrecMust(r, GetCoercePrec(a.real, prec));
|
|
1621
|
+
|
|
1622
|
+
c = NewZeroWrap(1, VPMULT_RESULT_PREC(a.real, b.real) * BASE_FIG);
|
|
1623
|
+
VpMult(c.real, a.real, b.real);
|
|
1624
|
+
if (prec) {
|
|
1625
|
+
VpLeftRound(c.real, VpGetRoundMode(), prec);
|
|
1808
1626
|
}
|
|
1809
1627
|
else {
|
|
1810
|
-
|
|
1628
|
+
VpLimitRound(c.real, 0);
|
|
1811
1629
|
}
|
|
1812
1630
|
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
mx = a->Prec + b->Prec;
|
|
1817
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx * (VpBaseFig() + 1)));
|
|
1818
|
-
VpMult(c, a, b);
|
|
1819
|
-
return VpCheckGetValue(c);
|
|
1631
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
1632
|
+
RB_GC_GUARD(b.bigdecimal);
|
|
1633
|
+
return CheckGetValue(c);
|
|
1820
1634
|
}
|
|
1821
1635
|
|
|
1822
|
-
static
|
|
1636
|
+
static bool BigDecimal_DoDivmod(VALUE self, VALUE r, NULLABLE_BDVALUE *div, NULLABLE_BDVALUE *mod, bool truncate);
|
|
1823
1637
|
|
|
1824
1638
|
/* call-seq:
|
|
1825
1639
|
* a / b -> bigdecimal
|
|
@@ -1836,14 +1650,7 @@ static VALUE
|
|
|
1836
1650
|
BigDecimal_div(VALUE self, VALUE r)
|
|
1837
1651
|
/* For c = self/r: with round operation */
|
|
1838
1652
|
{
|
|
1839
|
-
if (
|
|
1840
|
-
!is_kind_of_BigDecimal(r) &&
|
|
1841
|
-
!RB_INTEGER_TYPE_P(r) &&
|
|
1842
|
-
!RB_TYPE_P(r, T_FLOAT) &&
|
|
1843
|
-
!RB_TYPE_P(r, T_RATIONAL)
|
|
1844
|
-
) {
|
|
1845
|
-
return DoSomeOne(self, r, '/');
|
|
1846
|
-
}
|
|
1653
|
+
if (!is_coerceable_to_BigDecimal(r)) return DoSomeOne(self, r, '/');
|
|
1847
1654
|
return BigDecimal_div2(self, r, INT2FIX(0));
|
|
1848
1655
|
}
|
|
1849
1656
|
|
|
@@ -1889,114 +1696,110 @@ BigDecimal_quo(int argc, VALUE *argv, VALUE self)
|
|
|
1889
1696
|
/*
|
|
1890
1697
|
* %: mod = a%b = a - (a.to_f/b).floor * b
|
|
1891
1698
|
* div = (a.to_f/b).floor
|
|
1699
|
+
* In truncate mode, use truncate instead of floor.
|
|
1892
1700
|
*/
|
|
1893
|
-
static
|
|
1894
|
-
BigDecimal_DoDivmod(VALUE self, VALUE r,
|
|
1701
|
+
static bool
|
|
1702
|
+
BigDecimal_DoDivmod(VALUE self, VALUE r, NULLABLE_BDVALUE *div, NULLABLE_BDVALUE *mod, bool truncate)
|
|
1895
1703
|
{
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
size_t mx;
|
|
1704
|
+
BDVALUE a, b, dv, md, res;
|
|
1705
|
+
NULLABLE_BDVALUE b2;
|
|
1706
|
+
ssize_t a_exponent, b_exponent;
|
|
1707
|
+
size_t mx, rx, pl;
|
|
1901
1708
|
|
|
1902
|
-
|
|
1903
|
-
SAVE(a);
|
|
1709
|
+
a = GetBDValueMust(self);
|
|
1904
1710
|
|
|
1905
|
-
|
|
1906
|
-
if (
|
|
1907
|
-
|
|
1908
|
-
}
|
|
1909
|
-
else if (RB_INTEGER_TYPE_P(r)) {
|
|
1910
|
-
rr = rb_inum_convert_to_BigDecimal(r, 0, true);
|
|
1911
|
-
}
|
|
1912
|
-
else if (RB_TYPE_P(r, T_FLOAT)) {
|
|
1913
|
-
rr = rb_float_convert_to_BigDecimal(r, 0, true);
|
|
1914
|
-
}
|
|
1915
|
-
else if (RB_TYPE_P(r, T_RATIONAL)) {
|
|
1916
|
-
rr = rb_rational_convert_to_BigDecimal(r, a->Prec*BASE_FIG, true);
|
|
1917
|
-
}
|
|
1711
|
+
b2 = GetBDValueWithPrec(r, GetCoercePrec(a.real, 0));
|
|
1712
|
+
if (!b2.real_or_null) return false;
|
|
1713
|
+
b = bdvalue_nonnullable(b2);
|
|
1918
1714
|
|
|
1919
|
-
if (
|
|
1920
|
-
|
|
1715
|
+
if (VpIsNaN(a.real) || VpIsNaN(b.real) || (VpIsInf(a.real) && VpIsInf(b.real))) {
|
|
1716
|
+
VALUE nan = BigDecimal_nan();
|
|
1717
|
+
*div = *mod = (NULLABLE_BDVALUE) { nan, DATA_PTR(nan) };
|
|
1718
|
+
goto Done;
|
|
1921
1719
|
}
|
|
1922
|
-
|
|
1923
|
-
TypedData_Get_Struct(rr, Real, &BigDecimal_data_type, b);
|
|
1924
|
-
SAVE(b);
|
|
1925
|
-
|
|
1926
|
-
if (VpIsNaN(a) || VpIsNaN(b)) goto NaN;
|
|
1927
|
-
if (VpIsInf(a) && VpIsInf(b)) goto NaN;
|
|
1928
|
-
if (VpIsZero(b)) {
|
|
1720
|
+
if (VpIsZero(b.real)) {
|
|
1929
1721
|
rb_raise(rb_eZeroDivError, "divided by 0");
|
|
1930
1722
|
}
|
|
1931
|
-
if (VpIsInf(a)) {
|
|
1932
|
-
if (VpGetSign(a) == VpGetSign(b)) {
|
|
1723
|
+
if (VpIsInf(a.real)) {
|
|
1724
|
+
if (VpGetSign(a.real) == VpGetSign(b.real)) {
|
|
1933
1725
|
VALUE inf = BigDecimal_positive_infinity();
|
|
1934
|
-
|
|
1726
|
+
*div = (NULLABLE_BDVALUE) { inf, DATA_PTR(inf) };
|
|
1935
1727
|
}
|
|
1936
1728
|
else {
|
|
1937
1729
|
VALUE inf = BigDecimal_negative_infinity();
|
|
1938
|
-
|
|
1730
|
+
*div = (NULLABLE_BDVALUE) { inf, DATA_PTR(inf) };
|
|
1939
1731
|
}
|
|
1940
1732
|
VALUE nan = BigDecimal_nan();
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
}
|
|
1944
|
-
if (VpIsInf(b)) {
|
|
1945
|
-
VALUE zero = BigDecimal_positive_zero();
|
|
1946
|
-
TypedData_Get_Struct(zero, Real, &BigDecimal_data_type, *div);
|
|
1947
|
-
*mod = a;
|
|
1948
|
-
return Qtrue;
|
|
1733
|
+
*mod = (NULLABLE_BDVALUE) { nan, DATA_PTR(nan) };
|
|
1734
|
+
goto Done;
|
|
1949
1735
|
}
|
|
1950
|
-
if (VpIsZero(a)) {
|
|
1736
|
+
if (VpIsZero(a.real)) {
|
|
1951
1737
|
VALUE zero = BigDecimal_positive_zero();
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
}
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1738
|
+
*div = (NULLABLE_BDVALUE) { zero, DATA_PTR(zero) };
|
|
1739
|
+
*mod = bdvalue_nullable(a);
|
|
1740
|
+
goto Done;
|
|
1741
|
+
}
|
|
1742
|
+
if (VpIsInf(b.real)) {
|
|
1743
|
+
if (!truncate && VpGetSign(a.real) * VpGetSign(b.real) < 0) {
|
|
1744
|
+
BDVALUE minus_one = NewZeroWrap(1, BASE_FIG);
|
|
1745
|
+
VpSetOne(minus_one.real);
|
|
1746
|
+
VpSetSign(minus_one.real, -1);
|
|
1747
|
+
RB_GC_GUARD(minus_one.bigdecimal);
|
|
1748
|
+
*div = bdvalue_nullable(minus_one);
|
|
1749
|
+
*mod = bdvalue_nullable(b);
|
|
1750
|
+
} else {
|
|
1751
|
+
VALUE zero = BigDecimal_positive_zero();
|
|
1752
|
+
*div = (NULLABLE_BDVALUE) { zero, DATA_PTR(zero) };
|
|
1753
|
+
*mod = bdvalue_nullable(a);
|
|
1754
|
+
}
|
|
1755
|
+
goto Done;
|
|
1756
|
+
}
|
|
1757
|
+
|
|
1758
|
+
a_exponent = VpExponent10(a.real);
|
|
1759
|
+
b_exponent = VpExponent10(b.real);
|
|
1760
|
+
mx = a_exponent > b_exponent ? a_exponent - b_exponent + 1 : 1;
|
|
1761
|
+
dv = NewZeroWrap(1, VPDIVD_QUO_DIGITS(mx));
|
|
1762
|
+
|
|
1763
|
+
/* res is reused for VpDivd remainder and VpMult result */
|
|
1764
|
+
rx = VPDIVD_REM_PREC(a.real, b.real, dv.real);
|
|
1765
|
+
mx = VPMULT_RESULT_PREC(dv.real, b.real);
|
|
1766
|
+
res = NewZeroWrap(1, Max(rx, mx) * BASE_FIG);
|
|
1767
|
+
/* AddSub needs one more prec */
|
|
1768
|
+
md = NewZeroWrap(1, (res.real->MaxPrec + 1) * BASE_FIG);
|
|
1769
|
+
|
|
1770
|
+
VpDivd(dv.real, res.real, a.real, b.real);
|
|
1771
|
+
VpMidRound(dv.real, VP_ROUND_DOWN, 0);
|
|
1772
|
+
VpMult(res.real, dv.real, b.real);
|
|
1773
|
+
pl = VpGetPrecLimit();
|
|
1774
|
+
VpSetPrecLimit(0);
|
|
1775
|
+
VpAddSub(md.real, a.real, res.real, -1);
|
|
1776
|
+
VpSetPrecLimit(pl);
|
|
1976
1777
|
|
|
1977
|
-
if (!VpIsZero(
|
|
1778
|
+
if (!truncate && !VpIsZero(md.real) && (VpGetSign(a.real) * VpGetSign(b.real) < 0)) {
|
|
1978
1779
|
/* result adjustment for negative case */
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
VpAddSub(
|
|
1984
|
-
|
|
1985
|
-
*
|
|
1780
|
+
BDVALUE dv2 = NewZeroWrap(1, (dv.real->MaxPrec + 1) * BASE_FIG);
|
|
1781
|
+
BDVALUE md2 = NewZeroWrap(1, (GetAddSubPrec(md.real, b.real) + 1) * BASE_FIG);
|
|
1782
|
+
VpSetPrecLimit(0);
|
|
1783
|
+
VpAddSub(dv2.real, dv.real, VpOne(), -1);
|
|
1784
|
+
VpAddSub(md2.real, md.real, b.real, 1);
|
|
1785
|
+
VpSetPrecLimit(pl);
|
|
1786
|
+
*div = bdvalue_nullable(dv2);
|
|
1787
|
+
*mod = bdvalue_nullable(md2);
|
|
1788
|
+
RB_GC_GUARD(dv2.bigdecimal);
|
|
1789
|
+
RB_GC_GUARD(md2.bigdecimal);
|
|
1986
1790
|
}
|
|
1987
1791
|
else {
|
|
1988
|
-
*div =
|
|
1989
|
-
*mod =
|
|
1792
|
+
*div = bdvalue_nullable(dv);
|
|
1793
|
+
*mod = bdvalue_nullable(md);
|
|
1990
1794
|
}
|
|
1991
|
-
return Qtrue;
|
|
1992
1795
|
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
return
|
|
1796
|
+
Done:
|
|
1797
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
1798
|
+
RB_GC_GUARD(b.bigdecimal);
|
|
1799
|
+
RB_GC_GUARD(dv.bigdecimal);
|
|
1800
|
+
RB_GC_GUARD(md.bigdecimal);
|
|
1801
|
+
RB_GC_GUARD(res.bigdecimal);
|
|
1802
|
+
return true;
|
|
2000
1803
|
}
|
|
2001
1804
|
|
|
2002
1805
|
/* call-seq:
|
|
@@ -2010,84 +1813,30 @@ BigDecimal_DoDivmod(VALUE self, VALUE r, Real **div, Real **mod)
|
|
|
2010
1813
|
static VALUE
|
|
2011
1814
|
BigDecimal_mod(VALUE self, VALUE r) /* %: a%b = a - (a.to_f/b).floor * b */
|
|
2012
1815
|
{
|
|
2013
|
-
|
|
2014
|
-
Real *div = NULL, *mod = NULL;
|
|
1816
|
+
NULLABLE_BDVALUE div, mod;
|
|
2015
1817
|
|
|
2016
|
-
if (BigDecimal_DoDivmod(self, r, &div, &mod)) {
|
|
2017
|
-
|
|
2018
|
-
return VpCheckGetValue(mod);
|
|
1818
|
+
if (BigDecimal_DoDivmod(self, r, &div, &mod, false)) {
|
|
1819
|
+
return CheckGetValue(bdvalue_nonnullable(mod));
|
|
2019
1820
|
}
|
|
2020
1821
|
return DoSomeOne(self, r, '%');
|
|
2021
1822
|
}
|
|
2022
1823
|
|
|
1824
|
+
/* call-seq:
|
|
1825
|
+
* remainder(value)
|
|
1826
|
+
*
|
|
1827
|
+
* Returns the remainder from dividing by the value.
|
|
1828
|
+
*
|
|
1829
|
+
* x.remainder(y) means x-y*(x/y).truncate
|
|
1830
|
+
*/
|
|
2023
1831
|
static VALUE
|
|
2024
|
-
|
|
1832
|
+
BigDecimal_remainder(VALUE self, VALUE r) /* remainder */
|
|
2025
1833
|
{
|
|
2026
|
-
|
|
2027
|
-
size_t mx;
|
|
2028
|
-
Real *a = NULL, *b = NULL, *c = NULL, *res = NULL, *d = NULL, *rr = NULL, *ff = NULL;
|
|
2029
|
-
Real *f = NULL;
|
|
1834
|
+
NULLABLE_BDVALUE div, mod = { Qnil, NULL };
|
|
2030
1835
|
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
b = GetVpValueWithPrec(r, 0, 1);
|
|
1836
|
+
if (BigDecimal_DoDivmod(self, r, &div, &mod, true)) {
|
|
1837
|
+
return CheckGetValue(bdvalue_nonnullable(mod));
|
|
2034
1838
|
}
|
|
2035
|
-
|
|
2036
|
-
b = GetVpValueWithPrec(r, a->Prec*VpBaseFig(), 1);
|
|
2037
|
-
}
|
|
2038
|
-
else {
|
|
2039
|
-
b = GetVpValue(r, 0);
|
|
2040
|
-
}
|
|
2041
|
-
|
|
2042
|
-
if (!b) return DoSomeOne(self, r, rb_intern("remainder"));
|
|
2043
|
-
SAVE(b);
|
|
2044
|
-
|
|
2045
|
-
if (VpIsPosInf(b) || VpIsNegInf(b)) {
|
|
2046
|
-
GUARD_OBJ(*dv, NewZeroWrapLimited(1, 1));
|
|
2047
|
-
VpSetZero(*dv, 1);
|
|
2048
|
-
*rv = a;
|
|
2049
|
-
return Qnil;
|
|
2050
|
-
}
|
|
2051
|
-
|
|
2052
|
-
mx = (a->MaxPrec + b->MaxPrec) *VpBaseFig();
|
|
2053
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2054
|
-
GUARD_OBJ(res, NewZeroWrapNolimit(1, (mx+1) * 2 + (VpBaseFig() + 1)));
|
|
2055
|
-
GUARD_OBJ(rr, NewZeroWrapNolimit(1, (mx+1) * 2 + (VpBaseFig() + 1)));
|
|
2056
|
-
GUARD_OBJ(ff, NewZeroWrapNolimit(1, (mx+1) * 2 + (VpBaseFig() + 1)));
|
|
2057
|
-
|
|
2058
|
-
VpDivd(c, res, a, b);
|
|
2059
|
-
|
|
2060
|
-
mx = c->Prec *(VpBaseFig() + 1);
|
|
2061
|
-
|
|
2062
|
-
GUARD_OBJ(d, NewZeroWrapLimited(1, mx));
|
|
2063
|
-
GUARD_OBJ(f, NewZeroWrapLimited(1, mx));
|
|
2064
|
-
|
|
2065
|
-
VpActiveRound(d, c, VP_ROUND_DOWN, 0); /* 0: round off */
|
|
2066
|
-
|
|
2067
|
-
VpFrac(f, c);
|
|
2068
|
-
VpMult(rr, f, b);
|
|
2069
|
-
VpAddSub(ff, res, rr, 1);
|
|
2070
|
-
|
|
2071
|
-
*dv = d;
|
|
2072
|
-
*rv = ff;
|
|
2073
|
-
return Qnil;
|
|
2074
|
-
}
|
|
2075
|
-
|
|
2076
|
-
/* call-seq:
|
|
2077
|
-
* remainder(value)
|
|
2078
|
-
*
|
|
2079
|
-
* Returns the remainder from dividing by the value.
|
|
2080
|
-
*
|
|
2081
|
-
* x.remainder(y) means x-y*(x/y).truncate
|
|
2082
|
-
*/
|
|
2083
|
-
static VALUE
|
|
2084
|
-
BigDecimal_remainder(VALUE self, VALUE r) /* remainder */
|
|
2085
|
-
{
|
|
2086
|
-
VALUE f;
|
|
2087
|
-
Real *d, *rv = 0;
|
|
2088
|
-
f = BigDecimal_divremain(self, r, &d, &rv);
|
|
2089
|
-
if (!NIL_P(f)) return f;
|
|
2090
|
-
return VpCheckGetValue(rv);
|
|
1839
|
+
return DoSomeOne(self, r, rb_intern("remainder"));
|
|
2091
1840
|
}
|
|
2092
1841
|
|
|
2093
1842
|
/* call-seq:
|
|
@@ -2115,12 +1864,10 @@ BigDecimal_remainder(VALUE self, VALUE r) /* remainder */
|
|
|
2115
1864
|
static VALUE
|
|
2116
1865
|
BigDecimal_divmod(VALUE self, VALUE r)
|
|
2117
1866
|
{
|
|
2118
|
-
|
|
2119
|
-
Real *div = NULL, *mod = NULL;
|
|
1867
|
+
NULLABLE_BDVALUE div, mod;
|
|
2120
1868
|
|
|
2121
|
-
if (BigDecimal_DoDivmod(self, r, &div, &mod)) {
|
|
2122
|
-
|
|
2123
|
-
return rb_assoc_new(VpCheckGetValue(div), VpCheckGetValue(mod));
|
|
1869
|
+
if (BigDecimal_DoDivmod(self, r, &div, &mod, false)) {
|
|
1870
|
+
return rb_assoc_new(CheckGetValue(bdvalue_nonnullable(div)), CheckGetValue(bdvalue_nonnullable(mod)));
|
|
2124
1871
|
}
|
|
2125
1872
|
return DoSomeOne(self,r,rb_intern("divmod"));
|
|
2126
1873
|
}
|
|
@@ -2132,17 +1879,14 @@ BigDecimal_divmod(VALUE self, VALUE r)
|
|
|
2132
1879
|
static inline VALUE
|
|
2133
1880
|
BigDecimal_div2(VALUE self, VALUE b, VALUE n)
|
|
2134
1881
|
{
|
|
2135
|
-
ENTER(5);
|
|
2136
1882
|
SIGNED_VALUE ix;
|
|
2137
|
-
|
|
2138
|
-
Real *av = NULL, *bv = NULL, *cv = NULL;
|
|
2139
|
-
size_t mx, pl;
|
|
1883
|
+
BDVALUE av, bv, cv, res;
|
|
2140
1884
|
|
|
2141
1885
|
if (NIL_P(n)) { /* div in Float sense */
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
if (BigDecimal_DoDivmod(self, b, &div, &mod)) {
|
|
2145
|
-
return BigDecimal_to_i(
|
|
1886
|
+
NULLABLE_BDVALUE div;
|
|
1887
|
+
NULLABLE_BDVALUE mod;
|
|
1888
|
+
if (BigDecimal_DoDivmod(self, b, &div, &mod, false)) {
|
|
1889
|
+
return BigDecimal_to_i(CheckGetValue(bdvalue_nonnullable(div)));
|
|
2146
1890
|
}
|
|
2147
1891
|
return DoSomeOne(self, b, rb_intern("div"));
|
|
2148
1892
|
}
|
|
@@ -2150,47 +1894,39 @@ BigDecimal_div2(VALUE self, VALUE b, VALUE n)
|
|
|
2150
1894
|
/* div in BigDecimal sense */
|
|
2151
1895
|
ix = check_int_precision(n);
|
|
2152
1896
|
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
GUARD_OBJ(av, GetVpValue(self, 1));
|
|
2156
|
-
if (RB_FLOAT_TYPE_P(b) && ix > BIGDECIMAL_DOUBLE_FIGURES) {
|
|
2157
|
-
/* TODO: I want to refactor this precision control for a float value later
|
|
2158
|
-
* by introducing an implicit conversion function instead of
|
|
2159
|
-
* GetVpValueWithPrec. */
|
|
2160
|
-
GUARD_OBJ(bv, GetVpValueWithPrec(b, BIGDECIMAL_DOUBLE_FIGURES, 1));
|
|
2161
|
-
}
|
|
2162
|
-
else {
|
|
2163
|
-
GUARD_OBJ(bv, GetVpValueWithPrec(b, ix, 1));
|
|
2164
|
-
}
|
|
1897
|
+
av = GetBDValueMust(self);
|
|
1898
|
+
bv = GetBDValueWithPrecMust(b, GetCoercePrec(av.real, ix));
|
|
2165
1899
|
|
|
2166
1900
|
if (ix == 0) {
|
|
2167
|
-
ssize_t a_prec, b_prec;
|
|
2168
|
-
|
|
2169
|
-
|
|
1901
|
+
ssize_t a_prec, b_prec, limit = VpGetPrecLimit();
|
|
1902
|
+
VpCountPrecisionAndScale(av.real, &a_prec, NULL);
|
|
1903
|
+
VpCountPrecisionAndScale(bv.real, &b_prec, NULL);
|
|
2170
1904
|
ix = ((a_prec > b_prec) ? a_prec : b_prec) + BIGDECIMAL_DOUBLE_FIGURES;
|
|
2171
1905
|
if (2 * BIGDECIMAL_DOUBLE_FIGURES > ix)
|
|
2172
1906
|
ix = 2 * BIGDECIMAL_DOUBLE_FIGURES;
|
|
1907
|
+
if (limit && limit < ix) ix = limit;
|
|
2173
1908
|
}
|
|
2174
1909
|
|
|
2175
|
-
//
|
|
2176
|
-
|
|
1910
|
+
// Needs to calculate 1 extra digit for rounding.
|
|
1911
|
+
cv = NewZeroWrap(1, VPDIVD_QUO_DIGITS(ix + 1));
|
|
1912
|
+
res = NewZeroWrap(1, VPDIVD_REM_PREC(av.real, bv.real, cv.real) * BASE_FIG);
|
|
1913
|
+
VpDivd(cv.real, res.real, av.real, bv.real);
|
|
2177
1914
|
|
|
2178
|
-
|
|
2179
|
-
if (mx <= av->Prec) mx = av->Prec + 1;
|
|
2180
|
-
GUARD_OBJ(res, NewZeroWrapNolimit(1, mx * VpBaseFig()));
|
|
2181
|
-
VpDivd(cv, res, av, bv);
|
|
2182
|
-
VpSetPrecLimit(pl);
|
|
2183
|
-
if (!VpIsZero(res)) {
|
|
1915
|
+
if (!VpIsZero(res.real)) {
|
|
2184
1916
|
// Remainder value affects rounding result.
|
|
2185
|
-
// ROUND_UP cv = 0.1e0 with
|
|
1917
|
+
// ROUND_UP cv = 0.1e0 with idx=10 will be:
|
|
2186
1918
|
// 0.1e0 if remainder == 0
|
|
2187
1919
|
// 0.1000000001e0 if remainder != 0
|
|
2188
1920
|
size_t idx = roomof(ix, BASE_FIG);
|
|
2189
|
-
while (cv->Prec <= idx) cv->frac[cv->Prec++] = 0;
|
|
2190
|
-
if (cv->frac[idx] == 0 || cv->frac[idx] == HALF_BASE) cv->frac[idx]++;
|
|
1921
|
+
while (cv.real->Prec <= idx) cv.real->frac[cv.real->Prec++] = 0;
|
|
1922
|
+
if (cv.real->frac[idx] == 0 || cv.real->frac[idx] == HALF_BASE) cv.real->frac[idx]++;
|
|
2191
1923
|
}
|
|
2192
|
-
VpLeftRound(cv, VpGetRoundMode(), ix);
|
|
2193
|
-
|
|
1924
|
+
VpLeftRound(cv.real, VpGetRoundMode(), ix);
|
|
1925
|
+
|
|
1926
|
+
RB_GC_GUARD(av.bigdecimal);
|
|
1927
|
+
RB_GC_GUARD(bv.bigdecimal);
|
|
1928
|
+
RB_GC_GUARD(res.bigdecimal);
|
|
1929
|
+
return CheckGetValue(cv);
|
|
2194
1930
|
}
|
|
2195
1931
|
|
|
2196
1932
|
/*
|
|
@@ -2266,18 +2002,7 @@ BigDecimal_div3(int argc, VALUE *argv, VALUE self)
|
|
|
2266
2002
|
static VALUE
|
|
2267
2003
|
BigDecimal_add2(VALUE self, VALUE b, VALUE n)
|
|
2268
2004
|
{
|
|
2269
|
-
|
|
2270
|
-
Real *cv;
|
|
2271
|
-
SIGNED_VALUE mx = check_int_precision(n);
|
|
2272
|
-
if (mx == 0) return BigDecimal_add(self, b);
|
|
2273
|
-
else {
|
|
2274
|
-
size_t pl = VpSetPrecLimit(0);
|
|
2275
|
-
VALUE c = BigDecimal_add(self, b);
|
|
2276
|
-
VpSetPrecLimit(pl);
|
|
2277
|
-
GUARD_OBJ(cv, GetVpValue(c, 1));
|
|
2278
|
-
VpLeftRound(cv, VpGetRoundMode(), mx);
|
|
2279
|
-
return VpCheckGetValue(cv);
|
|
2280
|
-
}
|
|
2005
|
+
return BigDecimal_addsub_with_coerce(self, b, check_int_precision(n), +1);
|
|
2281
2006
|
}
|
|
2282
2007
|
|
|
2283
2008
|
/* call-seq:
|
|
@@ -2296,18 +2021,7 @@ BigDecimal_add2(VALUE self, VALUE b, VALUE n)
|
|
|
2296
2021
|
static VALUE
|
|
2297
2022
|
BigDecimal_sub2(VALUE self, VALUE b, VALUE n)
|
|
2298
2023
|
{
|
|
2299
|
-
|
|
2300
|
-
Real *cv;
|
|
2301
|
-
SIGNED_VALUE mx = check_int_precision(n);
|
|
2302
|
-
if (mx == 0) return BigDecimal_sub(self, b);
|
|
2303
|
-
else {
|
|
2304
|
-
size_t pl = VpSetPrecLimit(0);
|
|
2305
|
-
VALUE c = BigDecimal_sub(self, b);
|
|
2306
|
-
VpSetPrecLimit(pl);
|
|
2307
|
-
GUARD_OBJ(cv, GetVpValue(c, 1));
|
|
2308
|
-
VpLeftRound(cv, VpGetRoundMode(), mx);
|
|
2309
|
-
return VpCheckGetValue(cv);
|
|
2310
|
-
}
|
|
2024
|
+
return BigDecimal_addsub_with_coerce(self, b, check_int_precision(n), -1);
|
|
2311
2025
|
}
|
|
2312
2026
|
|
|
2313
2027
|
/*
|
|
@@ -2339,18 +2053,7 @@ BigDecimal_sub2(VALUE self, VALUE b, VALUE n)
|
|
|
2339
2053
|
static VALUE
|
|
2340
2054
|
BigDecimal_mult2(VALUE self, VALUE b, VALUE n)
|
|
2341
2055
|
{
|
|
2342
|
-
|
|
2343
|
-
Real *cv;
|
|
2344
|
-
SIGNED_VALUE mx = check_int_precision(n);
|
|
2345
|
-
if (mx == 0) return BigDecimal_mult(self, b);
|
|
2346
|
-
else {
|
|
2347
|
-
size_t pl = VpSetPrecLimit(0);
|
|
2348
|
-
VALUE c = BigDecimal_mult(self, b);
|
|
2349
|
-
VpSetPrecLimit(pl);
|
|
2350
|
-
GUARD_OBJ(cv, GetVpValue(c, 1));
|
|
2351
|
-
VpLeftRound(cv, VpGetRoundMode(), mx);
|
|
2352
|
-
return VpCheckGetValue(cv);
|
|
2353
|
-
}
|
|
2056
|
+
return BigDecimal_mult_with_coerce(self, b, check_int_precision(n));
|
|
2354
2057
|
}
|
|
2355
2058
|
|
|
2356
2059
|
/*
|
|
@@ -2367,41 +2070,12 @@ BigDecimal_mult2(VALUE self, VALUE b, VALUE n)
|
|
|
2367
2070
|
static VALUE
|
|
2368
2071
|
BigDecimal_abs(VALUE self)
|
|
2369
2072
|
{
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2377
|
-
VpAsgn(c, a, 1);
|
|
2378
|
-
VpChangeSign(c, 1);
|
|
2379
|
-
return VpCheckGetValue(c);
|
|
2380
|
-
}
|
|
2381
|
-
|
|
2382
|
-
/* call-seq:
|
|
2383
|
-
* sqrt(n)
|
|
2384
|
-
*
|
|
2385
|
-
* Returns the square root of the value.
|
|
2386
|
-
*
|
|
2387
|
-
* Result has at least n significant digits.
|
|
2388
|
-
*/
|
|
2389
|
-
static VALUE
|
|
2390
|
-
BigDecimal_sqrt(VALUE self, VALUE nFig)
|
|
2391
|
-
{
|
|
2392
|
-
ENTER(5);
|
|
2393
|
-
Real *c, *a;
|
|
2394
|
-
size_t mx, n;
|
|
2395
|
-
|
|
2396
|
-
GUARD_OBJ(a, GetVpValue(self, 1));
|
|
2397
|
-
mx = a->Prec * (VpBaseFig() + 1);
|
|
2398
|
-
|
|
2399
|
-
n = check_int_precision(nFig);
|
|
2400
|
-
n += VpDblFig() + VpBaseFig();
|
|
2401
|
-
if (mx <= n) mx = n;
|
|
2402
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2403
|
-
VpSqrt(c, a);
|
|
2404
|
-
return VpCheckGetValue(c);
|
|
2073
|
+
BDVALUE a = GetBDValueMust(self);
|
|
2074
|
+
BDVALUE c = NewZeroWrap(1, a.real->Prec * BASE_FIG);
|
|
2075
|
+
VpAsgn(c.real, a.real, 10);
|
|
2076
|
+
VpChangeSign(c.real, 1);
|
|
2077
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2078
|
+
return CheckGetValue(c);
|
|
2405
2079
|
}
|
|
2406
2080
|
|
|
2407
2081
|
/* Return the integer part of the number, as a BigDecimal.
|
|
@@ -2409,15 +2083,11 @@ BigDecimal_sqrt(VALUE self, VALUE nFig)
|
|
|
2409
2083
|
static VALUE
|
|
2410
2084
|
BigDecimal_fix(VALUE self)
|
|
2411
2085
|
{
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
mx = a->Prec *(VpBaseFig() + 1);
|
|
2418
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2419
|
-
VpActiveRound(c, a, VP_ROUND_DOWN, 0); /* 0: round off */
|
|
2420
|
-
return VpCheckGetValue(c);
|
|
2086
|
+
BDVALUE a = GetBDValueMust(self);
|
|
2087
|
+
BDVALUE c = NewZeroWrap(1, (a.real->Prec + 1) * BASE_FIG);
|
|
2088
|
+
VpActiveRound(c.real, a.real, VP_ROUND_DOWN, 0); /* 0: round off */
|
|
2089
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2090
|
+
return CheckGetValue(c);
|
|
2421
2091
|
}
|
|
2422
2092
|
|
|
2423
2093
|
/* call-seq:
|
|
@@ -2449,13 +2119,12 @@ BigDecimal_fix(VALUE self)
|
|
|
2449
2119
|
static VALUE
|
|
2450
2120
|
BigDecimal_round(int argc, VALUE *argv, VALUE self)
|
|
2451
2121
|
{
|
|
2452
|
-
|
|
2453
|
-
Real *c, *a;
|
|
2122
|
+
BDVALUE c, a;
|
|
2454
2123
|
int iLoc = 0;
|
|
2455
2124
|
VALUE vLoc;
|
|
2456
2125
|
VALUE vRound;
|
|
2457
2126
|
int round_to_int = 0;
|
|
2458
|
-
size_t mx
|
|
2127
|
+
size_t mx;
|
|
2459
2128
|
|
|
2460
2129
|
unsigned short sw = VpGetRoundMode();
|
|
2461
2130
|
|
|
@@ -2486,16 +2155,46 @@ BigDecimal_round(int argc, VALUE *argv, VALUE self)
|
|
|
2486
2155
|
break;
|
|
2487
2156
|
}
|
|
2488
2157
|
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2158
|
+
a = GetBDValueMust(self);
|
|
2159
|
+
mx = (a.real->Prec + 1) * BASE_FIG;
|
|
2160
|
+
c = NewZeroWrap(1, mx);
|
|
2161
|
+
|
|
2162
|
+
VpActiveRound(c.real, a.real, sw, iLoc);
|
|
2163
|
+
|
|
2164
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2165
|
+
|
|
2495
2166
|
if (round_to_int) {
|
|
2496
|
-
return BigDecimal_to_i(
|
|
2167
|
+
return BigDecimal_to_i(CheckGetValue(c));
|
|
2497
2168
|
}
|
|
2498
|
-
return
|
|
2169
|
+
return CheckGetValue(c);
|
|
2170
|
+
}
|
|
2171
|
+
|
|
2172
|
+
static VALUE
|
|
2173
|
+
BigDecimal_truncate_floor_ceil(int argc, VALUE *argv, VALUE self, unsigned short rounding_mode)
|
|
2174
|
+
{
|
|
2175
|
+
BDVALUE c, a;
|
|
2176
|
+
int iLoc;
|
|
2177
|
+
VALUE vLoc;
|
|
2178
|
+
size_t mx;
|
|
2179
|
+
|
|
2180
|
+
if (rb_scan_args(argc, argv, "01", &vLoc) == 0) {
|
|
2181
|
+
iLoc = 0;
|
|
2182
|
+
}
|
|
2183
|
+
else {
|
|
2184
|
+
iLoc = NUM2INT(vLoc);
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
a = GetBDValueMust(self);
|
|
2188
|
+
mx = (a.real->Prec + 1) * BASE_FIG;
|
|
2189
|
+
c = NewZeroWrap(1, mx);
|
|
2190
|
+
VpActiveRound(c.real, a.real, rounding_mode, iLoc);
|
|
2191
|
+
|
|
2192
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2193
|
+
|
|
2194
|
+
if (argc == 0) {
|
|
2195
|
+
return BigDecimal_to_i(CheckGetValue(c));
|
|
2196
|
+
}
|
|
2197
|
+
return CheckGetValue(c);
|
|
2499
2198
|
}
|
|
2500
2199
|
|
|
2501
2200
|
/* call-seq:
|
|
@@ -2520,28 +2219,7 @@ BigDecimal_round(int argc, VALUE *argv, VALUE self)
|
|
|
2520
2219
|
static VALUE
|
|
2521
2220
|
BigDecimal_truncate(int argc, VALUE *argv, VALUE self)
|
|
2522
2221
|
{
|
|
2523
|
-
|
|
2524
|
-
Real *c, *a;
|
|
2525
|
-
int iLoc;
|
|
2526
|
-
VALUE vLoc;
|
|
2527
|
-
size_t mx, pl = VpSetPrecLimit(0);
|
|
2528
|
-
|
|
2529
|
-
if (rb_scan_args(argc, argv, "01", &vLoc) == 0) {
|
|
2530
|
-
iLoc = 0;
|
|
2531
|
-
}
|
|
2532
|
-
else {
|
|
2533
|
-
iLoc = NUM2INT(vLoc);
|
|
2534
|
-
}
|
|
2535
|
-
|
|
2536
|
-
GUARD_OBJ(a, GetVpValue(self, 1));
|
|
2537
|
-
mx = a->Prec * (VpBaseFig() + 1);
|
|
2538
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2539
|
-
VpSetPrecLimit(pl);
|
|
2540
|
-
VpActiveRound(c, a, VP_ROUND_DOWN, iLoc); /* 0: truncate */
|
|
2541
|
-
if (argc == 0) {
|
|
2542
|
-
return BigDecimal_to_i(VpCheckGetValue(c));
|
|
2543
|
-
}
|
|
2544
|
-
return VpCheckGetValue(c);
|
|
2222
|
+
return BigDecimal_truncate_floor_ceil(argc, argv, self, VP_ROUND_DOWN);
|
|
2545
2223
|
}
|
|
2546
2224
|
|
|
2547
2225
|
/* Return the fractional part of the number, as a BigDecimal.
|
|
@@ -2549,15 +2227,11 @@ BigDecimal_truncate(int argc, VALUE *argv, VALUE self)
|
|
|
2549
2227
|
static VALUE
|
|
2550
2228
|
BigDecimal_frac(VALUE self)
|
|
2551
2229
|
{
|
|
2552
|
-
|
|
2553
|
-
|
|
2554
|
-
|
|
2555
|
-
|
|
2556
|
-
|
|
2557
|
-
mx = a->Prec * (VpBaseFig() + 1);
|
|
2558
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2559
|
-
VpFrac(c, a);
|
|
2560
|
-
return VpCheckGetValue(c);
|
|
2230
|
+
BDVALUE a = GetBDValueMust(self);
|
|
2231
|
+
BDVALUE c = NewZeroWrap(1, (a.real->Prec + 1) * BASE_FIG);
|
|
2232
|
+
VpFrac(c.real, a.real);
|
|
2233
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2234
|
+
return CheckGetValue(c);
|
|
2561
2235
|
}
|
|
2562
2236
|
|
|
2563
2237
|
/* call-seq:
|
|
@@ -2580,31 +2254,7 @@ BigDecimal_frac(VALUE self)
|
|
|
2580
2254
|
static VALUE
|
|
2581
2255
|
BigDecimal_floor(int argc, VALUE *argv, VALUE self)
|
|
2582
2256
|
{
|
|
2583
|
-
|
|
2584
|
-
Real *c, *a;
|
|
2585
|
-
int iLoc;
|
|
2586
|
-
VALUE vLoc;
|
|
2587
|
-
size_t mx, pl = VpSetPrecLimit(0);
|
|
2588
|
-
|
|
2589
|
-
if (rb_scan_args(argc, argv, "01", &vLoc)==0) {
|
|
2590
|
-
iLoc = 0;
|
|
2591
|
-
}
|
|
2592
|
-
else {
|
|
2593
|
-
iLoc = NUM2INT(vLoc);
|
|
2594
|
-
}
|
|
2595
|
-
|
|
2596
|
-
GUARD_OBJ(a, GetVpValue(self, 1));
|
|
2597
|
-
mx = a->Prec * (VpBaseFig() + 1);
|
|
2598
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2599
|
-
VpSetPrecLimit(pl);
|
|
2600
|
-
VpActiveRound(c, a, VP_ROUND_FLOOR, iLoc);
|
|
2601
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
2602
|
-
VPrint(stderr, "floor: c=%\n", c);
|
|
2603
|
-
#endif
|
|
2604
|
-
if (argc == 0) {
|
|
2605
|
-
return BigDecimal_to_i(VpCheckGetValue(c));
|
|
2606
|
-
}
|
|
2607
|
-
return VpCheckGetValue(c);
|
|
2257
|
+
return BigDecimal_truncate_floor_ceil(argc, argv, self, VP_ROUND_FLOOR);
|
|
2608
2258
|
}
|
|
2609
2259
|
|
|
2610
2260
|
/* call-seq:
|
|
@@ -2627,27 +2277,7 @@ BigDecimal_floor(int argc, VALUE *argv, VALUE self)
|
|
|
2627
2277
|
static VALUE
|
|
2628
2278
|
BigDecimal_ceil(int argc, VALUE *argv, VALUE self)
|
|
2629
2279
|
{
|
|
2630
|
-
|
|
2631
|
-
Real *c, *a;
|
|
2632
|
-
int iLoc;
|
|
2633
|
-
VALUE vLoc;
|
|
2634
|
-
size_t mx, pl = VpSetPrecLimit(0);
|
|
2635
|
-
|
|
2636
|
-
if (rb_scan_args(argc, argv, "01", &vLoc) == 0) {
|
|
2637
|
-
iLoc = 0;
|
|
2638
|
-
} else {
|
|
2639
|
-
iLoc = NUM2INT(vLoc);
|
|
2640
|
-
}
|
|
2641
|
-
|
|
2642
|
-
GUARD_OBJ(a, GetVpValue(self, 1));
|
|
2643
|
-
mx = a->Prec * (VpBaseFig() + 1);
|
|
2644
|
-
GUARD_OBJ(c, NewZeroWrapLimited(1, mx));
|
|
2645
|
-
VpSetPrecLimit(pl);
|
|
2646
|
-
VpActiveRound(c, a, VP_ROUND_CEIL, iLoc);
|
|
2647
|
-
if (argc == 0) {
|
|
2648
|
-
return BigDecimal_to_i(VpCheckGetValue(c));
|
|
2649
|
-
}
|
|
2650
|
-
return VpCheckGetValue(c);
|
|
2280
|
+
return BigDecimal_truncate_floor_ceil(argc, argv, self, VP_ROUND_CEIL);
|
|
2651
2281
|
}
|
|
2652
2282
|
|
|
2653
2283
|
/* call-seq:
|
|
@@ -2668,7 +2298,7 @@ BigDecimal_ceil(int argc, VALUE *argv, VALUE self)
|
|
|
2668
2298
|
* If s contains a number, a space is inserted after each group of that many
|
|
2669
2299
|
* digits, starting from '.' and counting outwards.
|
|
2670
2300
|
*
|
|
2671
|
-
* If s ends with an 'E',
|
|
2301
|
+
* If s ends with an 'E', scientific notation (0.xxxxEnn) is used.
|
|
2672
2302
|
*
|
|
2673
2303
|
* If s ends with an 'F', conventional floating point notation is used.
|
|
2674
2304
|
*
|
|
@@ -2686,10 +2316,9 @@ BigDecimal_ceil(int argc, VALUE *argv, VALUE self)
|
|
|
2686
2316
|
static VALUE
|
|
2687
2317
|
BigDecimal_to_s(int argc, VALUE *argv, VALUE self)
|
|
2688
2318
|
{
|
|
2689
|
-
ENTER(5);
|
|
2690
2319
|
int fmt = 0; /* 0: E format, 1: F format */
|
|
2691
2320
|
int fPlus = 0; /* 0: default, 1: set ' ' before digits, 2: set '+' before digits. */
|
|
2692
|
-
|
|
2321
|
+
BDVALUE v;
|
|
2693
2322
|
volatile VALUE str;
|
|
2694
2323
|
char *psz;
|
|
2695
2324
|
char ch;
|
|
@@ -2697,7 +2326,7 @@ BigDecimal_to_s(int argc, VALUE *argv, VALUE self)
|
|
|
2697
2326
|
SIGNED_VALUE m;
|
|
2698
2327
|
VALUE f;
|
|
2699
2328
|
|
|
2700
|
-
|
|
2329
|
+
v = GetBDValueMust(self);
|
|
2701
2330
|
|
|
2702
2331
|
if (rb_scan_args(argc, argv, "01", &f) == 1) {
|
|
2703
2332
|
if (RB_TYPE_P(f, T_STRING)) {
|
|
@@ -2732,10 +2361,10 @@ BigDecimal_to_s(int argc, VALUE *argv, VALUE self)
|
|
|
2732
2361
|
}
|
|
2733
2362
|
}
|
|
2734
2363
|
if (fmt) {
|
|
2735
|
-
nc = VpNumOfChars(
|
|
2364
|
+
nc = VpNumOfChars(v.real, "F");
|
|
2736
2365
|
}
|
|
2737
2366
|
else {
|
|
2738
|
-
nc = VpNumOfChars(
|
|
2367
|
+
nc = VpNumOfChars(v.real, "E");
|
|
2739
2368
|
}
|
|
2740
2369
|
if (mc > 0) {
|
|
2741
2370
|
nc += (nc + mc - 1) / mc + 1;
|
|
@@ -2745,12 +2374,14 @@ BigDecimal_to_s(int argc, VALUE *argv, VALUE self)
|
|
|
2745
2374
|
psz = RSTRING_PTR(str);
|
|
2746
2375
|
|
|
2747
2376
|
if (fmt) {
|
|
2748
|
-
VpToFString(
|
|
2377
|
+
VpToFString(v.real, psz, RSTRING_LEN(str), mc, fPlus);
|
|
2749
2378
|
}
|
|
2750
2379
|
else {
|
|
2751
|
-
VpToString (
|
|
2380
|
+
VpToString (v.real, psz, RSTRING_LEN(str), mc, fPlus);
|
|
2752
2381
|
}
|
|
2753
2382
|
rb_str_resize(str, strlen(psz));
|
|
2383
|
+
|
|
2384
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
2754
2385
|
return str;
|
|
2755
2386
|
}
|
|
2756
2387
|
|
|
@@ -2781,16 +2412,15 @@ BigDecimal_to_s(int argc, VALUE *argv, VALUE self)
|
|
|
2781
2412
|
static VALUE
|
|
2782
2413
|
BigDecimal_split(VALUE self)
|
|
2783
2414
|
{
|
|
2784
|
-
|
|
2785
|
-
Real *vp;
|
|
2415
|
+
BDVALUE v;
|
|
2786
2416
|
VALUE obj,str;
|
|
2787
2417
|
ssize_t e, s;
|
|
2788
2418
|
char *psz1;
|
|
2789
2419
|
|
|
2790
|
-
|
|
2791
|
-
str = rb_str_new(0, VpNumOfChars(
|
|
2420
|
+
v = GetBDValueMust(self);
|
|
2421
|
+
str = rb_str_new(0, VpNumOfChars(v.real, "E"));
|
|
2792
2422
|
psz1 = RSTRING_PTR(str);
|
|
2793
|
-
VpSzMantissa(
|
|
2423
|
+
VpSzMantissa(v.real, psz1, RSTRING_LEN(str));
|
|
2794
2424
|
s = 1;
|
|
2795
2425
|
if(psz1[0] == '-') {
|
|
2796
2426
|
size_t len = strlen(psz1 + 1);
|
|
@@ -2800,13 +2430,15 @@ BigDecimal_split(VALUE self)
|
|
|
2800
2430
|
s = -1;
|
|
2801
2431
|
}
|
|
2802
2432
|
if (psz1[0] == 'N') s = 0; /* NaN */
|
|
2803
|
-
e = VpExponent10(
|
|
2433
|
+
e = VpExponent10(v.real);
|
|
2804
2434
|
obj = rb_ary_new2(4);
|
|
2805
2435
|
rb_ary_push(obj, INT2FIX(s));
|
|
2806
2436
|
rb_ary_push(obj, str);
|
|
2807
2437
|
rb_str_resize(str, strlen(psz1));
|
|
2808
2438
|
rb_ary_push(obj, INT2FIX(10));
|
|
2809
2439
|
rb_ary_push(obj, SSIZET2NUM(e));
|
|
2440
|
+
|
|
2441
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
2810
2442
|
return obj;
|
|
2811
2443
|
}
|
|
2812
2444
|
|
|
@@ -2818,7 +2450,7 @@ BigDecimal_split(VALUE self)
|
|
|
2818
2450
|
static VALUE
|
|
2819
2451
|
BigDecimal_exponent(VALUE self)
|
|
2820
2452
|
{
|
|
2821
|
-
ssize_t e = VpExponent10(
|
|
2453
|
+
ssize_t e = VpExponent10(GetSelfVpValue(self));
|
|
2822
2454
|
return SSIZET2NUM(e);
|
|
2823
2455
|
}
|
|
2824
2456
|
|
|
@@ -2830,49 +2462,78 @@ BigDecimal_exponent(VALUE self)
|
|
|
2830
2462
|
static VALUE
|
|
2831
2463
|
BigDecimal_inspect(VALUE self)
|
|
2832
2464
|
{
|
|
2833
|
-
|
|
2834
|
-
Real *vp;
|
|
2465
|
+
BDVALUE v;
|
|
2835
2466
|
volatile VALUE str;
|
|
2836
2467
|
size_t nc;
|
|
2837
2468
|
|
|
2838
|
-
|
|
2839
|
-
nc = VpNumOfChars(
|
|
2469
|
+
v = GetBDValueMust(self);
|
|
2470
|
+
nc = VpNumOfChars(v.real, "E");
|
|
2840
2471
|
|
|
2841
2472
|
str = rb_str_new(0, nc);
|
|
2842
|
-
VpToString(
|
|
2473
|
+
VpToString(v.real, RSTRING_PTR(str), RSTRING_LEN(str), 0, 0);
|
|
2843
2474
|
rb_str_resize(str, strlen(RSTRING_PTR(str)));
|
|
2844
|
-
return str;
|
|
2845
|
-
}
|
|
2846
|
-
|
|
2847
|
-
static VALUE BigMath_s_exp(VALUE, VALUE, VALUE);
|
|
2848
|
-
static VALUE BigMath_s_log(VALUE, VALUE, VALUE);
|
|
2849
2475
|
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
inline static int
|
|
2854
|
-
is_integer(VALUE x)
|
|
2855
|
-
{
|
|
2856
|
-
return (RB_TYPE_P(x, T_FIXNUM) || RB_TYPE_P(x, T_BIGNUM));
|
|
2476
|
+
RB_GC_GUARD(v.bigdecimal);
|
|
2477
|
+
return str;
|
|
2857
2478
|
}
|
|
2858
2479
|
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
|
|
2864
|
-
|
|
2865
|
-
|
|
2866
|
-
|
|
2867
|
-
|
|
2868
|
-
|
|
2869
|
-
|
|
2480
|
+
/* Returns self * 10**v without changing the precision.
|
|
2481
|
+
* This method is currently for internal use.
|
|
2482
|
+
*
|
|
2483
|
+
* BigDecimal("0.123e10")._decimal_shift(20) #=> "0.123e30"
|
|
2484
|
+
* BigDecimal("0.123e10")._decimal_shift(-20) #=> "0.123e-10"
|
|
2485
|
+
*/
|
|
2486
|
+
static VALUE
|
|
2487
|
+
BigDecimal_decimal_shift(VALUE self, VALUE v)
|
|
2488
|
+
{
|
|
2489
|
+
BDVALUE a, c;
|
|
2490
|
+
ssize_t shift, exponentShift;
|
|
2491
|
+
bool shiftDown;
|
|
2492
|
+
size_t prec;
|
|
2493
|
+
DECDIG ex, iex;
|
|
2494
|
+
|
|
2495
|
+
a = GetBDValueMust(self);
|
|
2496
|
+
shift = NUM2SSIZET(rb_to_int(v));
|
|
2497
|
+
|
|
2498
|
+
if (VpIsZero(a.real) || VpIsNaN(a.real) || VpIsInf(a.real) || shift == 0) return CheckGetValue(a);
|
|
2499
|
+
|
|
2500
|
+
exponentShift = shift > 0 ? shift / BASE_FIG : (shift + 1) / BASE_FIG - 1;
|
|
2501
|
+
shift -= exponentShift * BASE_FIG;
|
|
2502
|
+
ex = 1;
|
|
2503
|
+
for (int i = 0; i < shift; i++) ex *= 10;
|
|
2504
|
+
shiftDown = a.real->frac[0] * (DECDIG_DBL)ex >= BASE;
|
|
2505
|
+
iex = BASE / ex;
|
|
2506
|
+
|
|
2507
|
+
prec = a.real->Prec + shiftDown;
|
|
2508
|
+
c = NewZeroWrap(1, prec * BASE_FIG);
|
|
2509
|
+
if (shift == 0) {
|
|
2510
|
+
VpAsgn(c.real, a.real, 1);
|
|
2511
|
+
} else if (shiftDown) {
|
|
2512
|
+
DECDIG carry = 0;
|
|
2513
|
+
exponentShift++;
|
|
2514
|
+
for (size_t i = 0; i < a.real->Prec; i++) {
|
|
2515
|
+
DECDIG v = a.real->frac[i];
|
|
2516
|
+
c.real->frac[i] = carry * ex + v / iex;
|
|
2517
|
+
carry = v % iex;
|
|
2518
|
+
}
|
|
2519
|
+
c.real->frac[a.real->Prec] = carry * ex;
|
|
2520
|
+
} else {
|
|
2521
|
+
DECDIG carry = 0;
|
|
2522
|
+
for (ssize_t i = a.real->Prec - 1; i >= 0; i--) {
|
|
2523
|
+
DECDIG v = a.real->frac[i];
|
|
2524
|
+
c.real->frac[i] = v % iex * ex + carry;
|
|
2525
|
+
carry = v / iex;
|
|
2526
|
+
}
|
|
2870
2527
|
}
|
|
2871
|
-
|
|
2528
|
+
while (c.real->frac[prec - 1] == 0) prec--;
|
|
2529
|
+
c.real->Prec = prec;
|
|
2530
|
+
c.real->sign = a.real->sign;
|
|
2531
|
+
c.real->exponent = a.real->exponent;
|
|
2532
|
+
AddExponent(c.real, exponentShift);
|
|
2533
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
2534
|
+
return CheckGetValue(c);
|
|
2872
2535
|
}
|
|
2873
2536
|
|
|
2874
|
-
#define is_positive(x) (!is_negative(x))
|
|
2875
|
-
|
|
2876
2537
|
inline static int
|
|
2877
2538
|
is_zero(VALUE x)
|
|
2878
2539
|
{
|
|
@@ -2896,344 +2557,6 @@ is_zero(VALUE x)
|
|
|
2896
2557
|
return RTEST(rb_funcall(x, id_eq, 1, INT2FIX(0)));
|
|
2897
2558
|
}
|
|
2898
2559
|
|
|
2899
|
-
inline static int
|
|
2900
|
-
is_one(VALUE x)
|
|
2901
|
-
{
|
|
2902
|
-
VALUE num, den;
|
|
2903
|
-
|
|
2904
|
-
switch (TYPE(x)) {
|
|
2905
|
-
case T_FIXNUM:
|
|
2906
|
-
return FIX2LONG(x) == 1;
|
|
2907
|
-
|
|
2908
|
-
case T_BIGNUM:
|
|
2909
|
-
return Qfalse;
|
|
2910
|
-
|
|
2911
|
-
case T_RATIONAL:
|
|
2912
|
-
num = rb_rational_num(x);
|
|
2913
|
-
den = rb_rational_den(x);
|
|
2914
|
-
return FIXNUM_P(den) && FIX2LONG(den) == 1 &&
|
|
2915
|
-
FIXNUM_P(num) && FIX2LONG(num) == 1;
|
|
2916
|
-
|
|
2917
|
-
default:
|
|
2918
|
-
break;
|
|
2919
|
-
}
|
|
2920
|
-
|
|
2921
|
-
return RTEST(rb_funcall(x, id_eq, 1, INT2FIX(1)));
|
|
2922
|
-
}
|
|
2923
|
-
|
|
2924
|
-
inline static int
|
|
2925
|
-
is_even(VALUE x)
|
|
2926
|
-
{
|
|
2927
|
-
switch (TYPE(x)) {
|
|
2928
|
-
case T_FIXNUM:
|
|
2929
|
-
return (FIX2LONG(x) % 2) == 0;
|
|
2930
|
-
|
|
2931
|
-
case T_BIGNUM:
|
|
2932
|
-
{
|
|
2933
|
-
unsigned long l;
|
|
2934
|
-
rb_big_pack(x, &l, 1);
|
|
2935
|
-
return l % 2 == 0;
|
|
2936
|
-
}
|
|
2937
|
-
|
|
2938
|
-
default:
|
|
2939
|
-
break;
|
|
2940
|
-
}
|
|
2941
|
-
|
|
2942
|
-
return 0;
|
|
2943
|
-
}
|
|
2944
|
-
|
|
2945
|
-
static VALUE
|
|
2946
|
-
bigdecimal_power_by_bigdecimal(Real const* x, Real const* exp, ssize_t const n)
|
|
2947
|
-
{
|
|
2948
|
-
VALUE log_x, multiplied, y;
|
|
2949
|
-
volatile VALUE obj = exp->obj;
|
|
2950
|
-
|
|
2951
|
-
if (VpIsZero(exp)) {
|
|
2952
|
-
return VpCheckGetValue(NewOneWrapLimited(1, n));
|
|
2953
|
-
}
|
|
2954
|
-
|
|
2955
|
-
log_x = BigMath_log(x->obj, SSIZET2NUM(n+1));
|
|
2956
|
-
multiplied = BigDecimal_mult2(exp->obj, log_x, SSIZET2NUM(n+1));
|
|
2957
|
-
y = BigMath_exp(multiplied, SSIZET2NUM(n));
|
|
2958
|
-
RB_GC_GUARD(obj);
|
|
2959
|
-
|
|
2960
|
-
return y;
|
|
2961
|
-
}
|
|
2962
|
-
|
|
2963
|
-
/* call-seq:
|
|
2964
|
-
* power(n)
|
|
2965
|
-
* power(n, prec)
|
|
2966
|
-
*
|
|
2967
|
-
* Returns the value raised to the power of n.
|
|
2968
|
-
*
|
|
2969
|
-
* Note that n must be an Integer.
|
|
2970
|
-
*
|
|
2971
|
-
* Also available as the operator **.
|
|
2972
|
-
*/
|
|
2973
|
-
static VALUE
|
|
2974
|
-
BigDecimal_power(int argc, VALUE*argv, VALUE self)
|
|
2975
|
-
{
|
|
2976
|
-
ENTER(5);
|
|
2977
|
-
VALUE vexp, prec;
|
|
2978
|
-
Real* exp = NULL;
|
|
2979
|
-
Real *x, *y;
|
|
2980
|
-
ssize_t mp, ma, n;
|
|
2981
|
-
SIGNED_VALUE int_exp;
|
|
2982
|
-
double d;
|
|
2983
|
-
|
|
2984
|
-
rb_scan_args(argc, argv, "11", &vexp, &prec);
|
|
2985
|
-
|
|
2986
|
-
GUARD_OBJ(x, GetVpValue(self, 1));
|
|
2987
|
-
n = NIL_P(prec) ? (ssize_t)(x->Prec*VpBaseFig()) : NUM2SSIZET(prec);
|
|
2988
|
-
|
|
2989
|
-
if (VpIsNaN(x)) {
|
|
2990
|
-
y = NewZeroWrapLimited(1, n);
|
|
2991
|
-
VpSetNaN(y);
|
|
2992
|
-
RB_GC_GUARD(y->obj);
|
|
2993
|
-
return VpCheckGetValue(y);
|
|
2994
|
-
}
|
|
2995
|
-
|
|
2996
|
-
retry:
|
|
2997
|
-
switch (TYPE(vexp)) {
|
|
2998
|
-
case T_FIXNUM:
|
|
2999
|
-
break;
|
|
3000
|
-
|
|
3001
|
-
case T_BIGNUM:
|
|
3002
|
-
break;
|
|
3003
|
-
|
|
3004
|
-
case T_FLOAT:
|
|
3005
|
-
d = RFLOAT_VALUE(vexp);
|
|
3006
|
-
if (d == round(d)) {
|
|
3007
|
-
if (FIXABLE(d)) {
|
|
3008
|
-
vexp = LONG2FIX((long)d);
|
|
3009
|
-
}
|
|
3010
|
-
else {
|
|
3011
|
-
vexp = rb_dbl2big(d);
|
|
3012
|
-
}
|
|
3013
|
-
goto retry;
|
|
3014
|
-
}
|
|
3015
|
-
if (NIL_P(prec)) {
|
|
3016
|
-
n += BIGDECIMAL_DOUBLE_FIGURES;
|
|
3017
|
-
}
|
|
3018
|
-
exp = GetVpValueWithPrec(vexp, 0, 1);
|
|
3019
|
-
break;
|
|
3020
|
-
|
|
3021
|
-
case T_RATIONAL:
|
|
3022
|
-
if (is_zero(rb_rational_num(vexp))) {
|
|
3023
|
-
if (is_positive(vexp)) {
|
|
3024
|
-
vexp = INT2FIX(0);
|
|
3025
|
-
goto retry;
|
|
3026
|
-
}
|
|
3027
|
-
}
|
|
3028
|
-
else if (is_one(rb_rational_den(vexp))) {
|
|
3029
|
-
vexp = rb_rational_num(vexp);
|
|
3030
|
-
goto retry;
|
|
3031
|
-
}
|
|
3032
|
-
exp = GetVpValueWithPrec(vexp, n, 1);
|
|
3033
|
-
if (NIL_P(prec)) {
|
|
3034
|
-
n += n;
|
|
3035
|
-
}
|
|
3036
|
-
break;
|
|
3037
|
-
|
|
3038
|
-
case T_DATA:
|
|
3039
|
-
if (is_kind_of_BigDecimal(vexp)) {
|
|
3040
|
-
VALUE zero = INT2FIX(0);
|
|
3041
|
-
VALUE rounded = BigDecimal_round(1, &zero, vexp);
|
|
3042
|
-
if (RTEST(BigDecimal_eq(vexp, rounded))) {
|
|
3043
|
-
vexp = BigDecimal_to_i(vexp);
|
|
3044
|
-
goto retry;
|
|
3045
|
-
}
|
|
3046
|
-
if (NIL_P(prec)) {
|
|
3047
|
-
GUARD_OBJ(y, GetVpValue(vexp, 1));
|
|
3048
|
-
n += y->Prec*VpBaseFig();
|
|
3049
|
-
}
|
|
3050
|
-
exp = DATA_PTR(vexp);
|
|
3051
|
-
break;
|
|
3052
|
-
}
|
|
3053
|
-
/* fall through */
|
|
3054
|
-
default:
|
|
3055
|
-
rb_raise(rb_eTypeError,
|
|
3056
|
-
"wrong argument type %"PRIsVALUE" (expected scalar Numeric)",
|
|
3057
|
-
RB_OBJ_CLASSNAME(vexp));
|
|
3058
|
-
}
|
|
3059
|
-
|
|
3060
|
-
if (VpIsZero(x)) {
|
|
3061
|
-
if (is_negative(vexp)) {
|
|
3062
|
-
y = NewZeroWrapNolimit(1, n);
|
|
3063
|
-
if (BIGDECIMAL_NEGATIVE_P(x)) {
|
|
3064
|
-
if (is_integer(vexp)) {
|
|
3065
|
-
if (is_even(vexp)) {
|
|
3066
|
-
/* (-0) ** (-even_integer) -> Infinity */
|
|
3067
|
-
VpSetPosInf(y);
|
|
3068
|
-
}
|
|
3069
|
-
else {
|
|
3070
|
-
/* (-0) ** (-odd_integer) -> -Infinity */
|
|
3071
|
-
VpSetNegInf(y);
|
|
3072
|
-
}
|
|
3073
|
-
}
|
|
3074
|
-
else {
|
|
3075
|
-
/* (-0) ** (-non_integer) -> Infinity */
|
|
3076
|
-
VpSetPosInf(y);
|
|
3077
|
-
}
|
|
3078
|
-
}
|
|
3079
|
-
else {
|
|
3080
|
-
/* (+0) ** (-num) -> Infinity */
|
|
3081
|
-
VpSetPosInf(y);
|
|
3082
|
-
}
|
|
3083
|
-
RB_GC_GUARD(y->obj);
|
|
3084
|
-
return VpCheckGetValue(y);
|
|
3085
|
-
}
|
|
3086
|
-
else if (is_zero(vexp)) {
|
|
3087
|
-
return VpCheckGetValue(NewOneWrapLimited(1, n));
|
|
3088
|
-
}
|
|
3089
|
-
else {
|
|
3090
|
-
return VpCheckGetValue(NewZeroWrapLimited(1, n));
|
|
3091
|
-
}
|
|
3092
|
-
}
|
|
3093
|
-
|
|
3094
|
-
if (is_zero(vexp)) {
|
|
3095
|
-
return VpCheckGetValue(NewOneWrapLimited(1, n));
|
|
3096
|
-
}
|
|
3097
|
-
else if (is_one(vexp)) {
|
|
3098
|
-
return self;
|
|
3099
|
-
}
|
|
3100
|
-
|
|
3101
|
-
if (VpIsInf(x)) {
|
|
3102
|
-
if (is_negative(vexp)) {
|
|
3103
|
-
if (BIGDECIMAL_NEGATIVE_P(x)) {
|
|
3104
|
-
if (is_integer(vexp)) {
|
|
3105
|
-
if (is_even(vexp)) {
|
|
3106
|
-
/* (-Infinity) ** (-even_integer) -> +0 */
|
|
3107
|
-
return VpCheckGetValue(NewZeroWrapLimited(1, n));
|
|
3108
|
-
}
|
|
3109
|
-
else {
|
|
3110
|
-
/* (-Infinity) ** (-odd_integer) -> -0 */
|
|
3111
|
-
return VpCheckGetValue(NewZeroWrapLimited(-1, n));
|
|
3112
|
-
}
|
|
3113
|
-
}
|
|
3114
|
-
else {
|
|
3115
|
-
/* (-Infinity) ** (-non_integer) -> -0 */
|
|
3116
|
-
return VpCheckGetValue(NewZeroWrapLimited(-1, n));
|
|
3117
|
-
}
|
|
3118
|
-
}
|
|
3119
|
-
else {
|
|
3120
|
-
return VpCheckGetValue(NewZeroWrapLimited(1, n));
|
|
3121
|
-
}
|
|
3122
|
-
}
|
|
3123
|
-
else {
|
|
3124
|
-
y = NewZeroWrapLimited(1, n);
|
|
3125
|
-
if (BIGDECIMAL_NEGATIVE_P(x)) {
|
|
3126
|
-
if (is_integer(vexp)) {
|
|
3127
|
-
if (is_even(vexp)) {
|
|
3128
|
-
VpSetPosInf(y);
|
|
3129
|
-
}
|
|
3130
|
-
else {
|
|
3131
|
-
VpSetNegInf(y);
|
|
3132
|
-
}
|
|
3133
|
-
}
|
|
3134
|
-
else {
|
|
3135
|
-
/* TODO: support complex */
|
|
3136
|
-
rb_raise(rb_eMathDomainError,
|
|
3137
|
-
"a non-integral exponent for a negative base");
|
|
3138
|
-
}
|
|
3139
|
-
}
|
|
3140
|
-
else {
|
|
3141
|
-
VpSetPosInf(y);
|
|
3142
|
-
}
|
|
3143
|
-
return VpCheckGetValue(y);
|
|
3144
|
-
}
|
|
3145
|
-
}
|
|
3146
|
-
|
|
3147
|
-
if (exp != NULL) {
|
|
3148
|
-
return bigdecimal_power_by_bigdecimal(x, exp, n);
|
|
3149
|
-
}
|
|
3150
|
-
else if (RB_TYPE_P(vexp, T_BIGNUM)) {
|
|
3151
|
-
VALUE abs_value = BigDecimal_abs(self);
|
|
3152
|
-
if (is_one(abs_value)) {
|
|
3153
|
-
return VpCheckGetValue(NewOneWrapLimited(1, n));
|
|
3154
|
-
}
|
|
3155
|
-
else if (RTEST(rb_funcall(abs_value, '<', 1, INT2FIX(1)))) {
|
|
3156
|
-
if (is_negative(vexp)) {
|
|
3157
|
-
y = NewZeroWrapLimited(1, n);
|
|
3158
|
-
VpSetInf(y, (is_even(vexp) ? 1 : -1) * VpGetSign(x));
|
|
3159
|
-
return VpCheckGetValue(y);
|
|
3160
|
-
}
|
|
3161
|
-
else if (BIGDECIMAL_NEGATIVE_P(x) && is_even(vexp)) {
|
|
3162
|
-
return VpCheckGetValue(NewZeroWrapLimited(-1, n));
|
|
3163
|
-
}
|
|
3164
|
-
else {
|
|
3165
|
-
return VpCheckGetValue(NewZeroWrapLimited(1, n));
|
|
3166
|
-
}
|
|
3167
|
-
}
|
|
3168
|
-
else {
|
|
3169
|
-
if (is_positive(vexp)) {
|
|
3170
|
-
y = NewZeroWrapLimited(1, n);
|
|
3171
|
-
VpSetInf(y, (is_even(vexp) ? 1 : -1) * VpGetSign(x));
|
|
3172
|
-
return VpCheckGetValue(y);
|
|
3173
|
-
}
|
|
3174
|
-
else if (BIGDECIMAL_NEGATIVE_P(x) && is_even(vexp)) {
|
|
3175
|
-
return VpCheckGetValue(NewZeroWrapLimited(-1, n));
|
|
3176
|
-
}
|
|
3177
|
-
else {
|
|
3178
|
-
return VpCheckGetValue(NewZeroWrapLimited(1, n));
|
|
3179
|
-
}
|
|
3180
|
-
}
|
|
3181
|
-
}
|
|
3182
|
-
|
|
3183
|
-
int_exp = FIX2LONG(vexp);
|
|
3184
|
-
ma = int_exp;
|
|
3185
|
-
if (ma < 0) ma = -ma;
|
|
3186
|
-
if (ma == 0) ma = 1;
|
|
3187
|
-
|
|
3188
|
-
if (VpIsDef(x)) {
|
|
3189
|
-
mp = x->Prec * (VpBaseFig() + 1);
|
|
3190
|
-
GUARD_OBJ(y, NewZeroWrapLimited(1, mp * (ma + 1)));
|
|
3191
|
-
}
|
|
3192
|
-
else {
|
|
3193
|
-
GUARD_OBJ(y, NewZeroWrapLimited(1, 1));
|
|
3194
|
-
}
|
|
3195
|
-
VpPowerByInt(y, x, int_exp);
|
|
3196
|
-
if (!NIL_P(prec) && VpIsDef(y)) {
|
|
3197
|
-
VpMidRound(y, VpGetRoundMode(), n);
|
|
3198
|
-
}
|
|
3199
|
-
return VpCheckGetValue(y);
|
|
3200
|
-
}
|
|
3201
|
-
|
|
3202
|
-
/* call-seq:
|
|
3203
|
-
* self ** other -> bigdecimal
|
|
3204
|
-
*
|
|
3205
|
-
* Returns the \BigDecimal value of +self+ raised to power +other+:
|
|
3206
|
-
*
|
|
3207
|
-
* b = BigDecimal('3.14')
|
|
3208
|
-
* b ** 2 # => 0.98596e1
|
|
3209
|
-
* b ** 2.0 # => 0.98596e1
|
|
3210
|
-
* b ** Rational(2, 1) # => 0.98596e1
|
|
3211
|
-
*
|
|
3212
|
-
* Related: BigDecimal#power.
|
|
3213
|
-
*
|
|
3214
|
-
*/
|
|
3215
|
-
static VALUE
|
|
3216
|
-
BigDecimal_power_op(VALUE self, VALUE exp)
|
|
3217
|
-
{
|
|
3218
|
-
return BigDecimal_power(1, &exp, self);
|
|
3219
|
-
}
|
|
3220
|
-
|
|
3221
|
-
/* :nodoc:
|
|
3222
|
-
*
|
|
3223
|
-
* private method for dup and clone the provided BigDecimal +other+
|
|
3224
|
-
*/
|
|
3225
|
-
static VALUE
|
|
3226
|
-
BigDecimal_initialize_copy(VALUE self, VALUE other)
|
|
3227
|
-
{
|
|
3228
|
-
Real *pv = rb_check_typeddata(self, &BigDecimal_data_type);
|
|
3229
|
-
Real *x = rb_check_typeddata(other, &BigDecimal_data_type);
|
|
3230
|
-
|
|
3231
|
-
if (self != other) {
|
|
3232
|
-
DATA_PTR(self) = VpCopy(pv, x);
|
|
3233
|
-
}
|
|
3234
|
-
return self;
|
|
3235
|
-
}
|
|
3236
|
-
|
|
3237
2560
|
/* :nodoc: */
|
|
3238
2561
|
static VALUE
|
|
3239
2562
|
BigDecimal_clone(VALUE self)
|
|
@@ -3272,20 +2595,18 @@ check_exception(VALUE bd)
|
|
|
3272
2595
|
|
|
3273
2596
|
Real *vp;
|
|
3274
2597
|
TypedData_Get_Struct(bd, Real, &BigDecimal_data_type, vp);
|
|
3275
|
-
|
|
2598
|
+
VpCheckException(vp, false);
|
|
3276
2599
|
|
|
3277
2600
|
return bd;
|
|
3278
2601
|
}
|
|
3279
2602
|
|
|
3280
2603
|
static VALUE
|
|
3281
|
-
rb_uint64_convert_to_BigDecimal(uint64_t uval
|
|
2604
|
+
rb_uint64_convert_to_BigDecimal(uint64_t uval)
|
|
3282
2605
|
{
|
|
3283
|
-
|
|
3284
|
-
|
|
2606
|
+
NULL_WRAPPED_VALUE null_wrapped = BigDecimal_alloc_empty_struct(rb_cBigDecimal);
|
|
3285
2607
|
Real *vp;
|
|
3286
2608
|
if (uval == 0) {
|
|
3287
2609
|
vp = rbd_allocate_struct(1);
|
|
3288
|
-
vp->MaxPrec = 1;
|
|
3289
2610
|
vp->Prec = 1;
|
|
3290
2611
|
vp->exponent = 1;
|
|
3291
2612
|
VpSetZero(vp, 1);
|
|
@@ -3293,7 +2614,6 @@ rb_uint64_convert_to_BigDecimal(uint64_t uval, RB_UNUSED_VAR(size_t digs), int r
|
|
|
3293
2614
|
}
|
|
3294
2615
|
else if (uval < BASE) {
|
|
3295
2616
|
vp = rbd_allocate_struct(1);
|
|
3296
|
-
vp->MaxPrec = 1;
|
|
3297
2617
|
vp->Prec = 1;
|
|
3298
2618
|
vp->exponent = 1;
|
|
3299
2619
|
VpSetSign(vp, 1);
|
|
@@ -3319,21 +2639,20 @@ rb_uint64_convert_to_BigDecimal(uint64_t uval, RB_UNUSED_VAR(size_t digs), int r
|
|
|
3319
2639
|
|
|
3320
2640
|
const size_t exp = len + ntz;
|
|
3321
2641
|
vp = rbd_allocate_struct(len);
|
|
3322
|
-
vp->MaxPrec = len;
|
|
3323
2642
|
vp->Prec = len;
|
|
3324
2643
|
vp->exponent = exp;
|
|
3325
2644
|
VpSetSign(vp, 1);
|
|
3326
2645
|
MEMCPY(vp->frac, buf + BIGDECIMAL_INT64_MAX_LENGTH - len, DECDIG, len);
|
|
3327
2646
|
}
|
|
3328
2647
|
|
|
3329
|
-
return BigDecimal_wrap_struct(
|
|
2648
|
+
return BigDecimal_wrap_struct(null_wrapped, vp);
|
|
3330
2649
|
}
|
|
3331
2650
|
|
|
3332
2651
|
static VALUE
|
|
3333
|
-
rb_int64_convert_to_BigDecimal(int64_t ival
|
|
2652
|
+
rb_int64_convert_to_BigDecimal(int64_t ival)
|
|
3334
2653
|
{
|
|
3335
2654
|
const uint64_t uval = (ival < 0) ? (((uint64_t)-(ival+1))+1) : (uint64_t)ival;
|
|
3336
|
-
VALUE bd = rb_uint64_convert_to_BigDecimal(uval
|
|
2655
|
+
VALUE bd = rb_uint64_convert_to_BigDecimal(uval);
|
|
3337
2656
|
if (ival < 0) {
|
|
3338
2657
|
Real *vp;
|
|
3339
2658
|
TypedData_Get_Struct(bd, Real, &BigDecimal_data_type, vp);
|
|
@@ -3343,7 +2662,7 @@ rb_int64_convert_to_BigDecimal(int64_t ival, size_t digs, int raise_exception)
|
|
|
3343
2662
|
}
|
|
3344
2663
|
|
|
3345
2664
|
static VALUE
|
|
3346
|
-
rb_big_convert_to_BigDecimal(VALUE val
|
|
2665
|
+
rb_big_convert_to_BigDecimal(VALUE val)
|
|
3347
2666
|
{
|
|
3348
2667
|
assert(RB_TYPE_P(val, T_BIGNUM));
|
|
3349
2668
|
|
|
@@ -3355,40 +2674,44 @@ rb_big_convert_to_BigDecimal(VALUE val, RB_UNUSED_VAR(size_t digs), int raise_ex
|
|
|
3355
2674
|
}
|
|
3356
2675
|
if (size <= sizeof(long)) {
|
|
3357
2676
|
if (sign < 0) {
|
|
3358
|
-
return rb_int64_convert_to_BigDecimal(NUM2LONG(val)
|
|
2677
|
+
return rb_int64_convert_to_BigDecimal(NUM2LONG(val));
|
|
3359
2678
|
}
|
|
3360
2679
|
else {
|
|
3361
|
-
return rb_uint64_convert_to_BigDecimal(NUM2ULONG(val)
|
|
2680
|
+
return rb_uint64_convert_to_BigDecimal(NUM2ULONG(val));
|
|
3362
2681
|
}
|
|
3363
2682
|
}
|
|
3364
2683
|
#if defined(SIZEOF_LONG_LONG) && SIZEOF_LONG < SIZEOF_LONG_LONG
|
|
3365
2684
|
else if (size <= sizeof(LONG_LONG)) {
|
|
3366
2685
|
if (sign < 0) {
|
|
3367
|
-
return rb_int64_convert_to_BigDecimal(NUM2LL(val)
|
|
2686
|
+
return rb_int64_convert_to_BigDecimal(NUM2LL(val));
|
|
3368
2687
|
}
|
|
3369
2688
|
else {
|
|
3370
|
-
return rb_uint64_convert_to_BigDecimal(NUM2ULL(val)
|
|
2689
|
+
return rb_uint64_convert_to_BigDecimal(NUM2ULL(val));
|
|
3371
2690
|
}
|
|
3372
2691
|
}
|
|
3373
2692
|
#endif
|
|
3374
2693
|
else {
|
|
3375
2694
|
VALUE str = rb_big2str(val, 10);
|
|
3376
|
-
|
|
3377
|
-
|
|
2695
|
+
BDVALUE v = bdvalue_nonnullable(CreateFromString(
|
|
2696
|
+
RSTRING_PTR(str),
|
|
2697
|
+
rb_cBigDecimal,
|
|
2698
|
+
true,
|
|
2699
|
+
true
|
|
2700
|
+
));
|
|
3378
2701
|
RB_GC_GUARD(str);
|
|
3379
|
-
return
|
|
2702
|
+
return CheckGetValue(v);
|
|
3380
2703
|
}
|
|
3381
2704
|
}
|
|
3382
2705
|
|
|
3383
2706
|
static VALUE
|
|
3384
|
-
rb_inum_convert_to_BigDecimal(VALUE val
|
|
2707
|
+
rb_inum_convert_to_BigDecimal(VALUE val)
|
|
3385
2708
|
{
|
|
3386
2709
|
assert(RB_INTEGER_TYPE_P(val));
|
|
3387
2710
|
if (FIXNUM_P(val)) {
|
|
3388
|
-
return rb_int64_convert_to_BigDecimal(FIX2LONG(val)
|
|
2711
|
+
return rb_int64_convert_to_BigDecimal(FIX2LONG(val));
|
|
3389
2712
|
}
|
|
3390
2713
|
else {
|
|
3391
|
-
return rb_big_convert_to_BigDecimal(val
|
|
2714
|
+
return rb_big_convert_to_BigDecimal(val);
|
|
3392
2715
|
}
|
|
3393
2716
|
}
|
|
3394
2717
|
|
|
@@ -3423,11 +2746,7 @@ rb_float_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3423
2746
|
}
|
|
3424
2747
|
|
|
3425
2748
|
if (digs == SIZE_MAX) {
|
|
3426
|
-
|
|
3427
|
-
return Qnil;
|
|
3428
|
-
rb_raise(rb_eArgError,
|
|
3429
|
-
"can't omit precision for a %"PRIsVALUE".",
|
|
3430
|
-
CLASS_OF(val));
|
|
2749
|
+
digs = 0;
|
|
3431
2750
|
}
|
|
3432
2751
|
else if (digs > BIGDECIMAL_DOUBLE_FIGURES) {
|
|
3433
2752
|
if (!raise_exception)
|
|
@@ -3542,7 +2861,7 @@ rb_float_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3542
2861
|
exp = -exp;
|
|
3543
2862
|
}
|
|
3544
2863
|
|
|
3545
|
-
VALUE bd = rb_inum_convert_to_BigDecimal(inum
|
|
2864
|
+
VALUE bd = rb_inum_convert_to_BigDecimal(inum);
|
|
3546
2865
|
Real *vp;
|
|
3547
2866
|
TypedData_Get_Struct(bd, Real, &BigDecimal_data_type, vp);
|
|
3548
2867
|
assert(vp->Prec == prec);
|
|
@@ -3565,28 +2884,24 @@ rb_rational_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3565
2884
|
CLASS_OF(val));
|
|
3566
2885
|
}
|
|
3567
2886
|
|
|
3568
|
-
VALUE num = rb_inum_convert_to_BigDecimal(rb_rational_num(val)
|
|
2887
|
+
VALUE num = rb_inum_convert_to_BigDecimal(rb_rational_num(val));
|
|
3569
2888
|
VALUE d = BigDecimal_div2(num, rb_rational_den(val), SIZET2NUM(digs));
|
|
3570
2889
|
return d;
|
|
3571
2890
|
}
|
|
3572
2891
|
|
|
3573
2892
|
static VALUE
|
|
3574
|
-
rb_cstr_convert_to_BigDecimal(const char *c_str,
|
|
2893
|
+
rb_cstr_convert_to_BigDecimal(const char *c_str, int raise_exception)
|
|
3575
2894
|
{
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
Real *vp = VpCreateRbObject(digs, c_str, raise_exception);
|
|
3580
|
-
if (!vp)
|
|
3581
|
-
return Qnil;
|
|
3582
|
-
return VpCheckGetValue(vp);
|
|
2895
|
+
NULLABLE_BDVALUE v = CreateFromString(c_str, rb_cBigDecimal, true, raise_exception);
|
|
2896
|
+
if (v.bigdecimal_or_nil == Qnil) return Qnil;
|
|
2897
|
+
return CheckGetValue(bdvalue_nonnullable(v));
|
|
3583
2898
|
}
|
|
3584
2899
|
|
|
3585
2900
|
static inline VALUE
|
|
3586
|
-
rb_str_convert_to_BigDecimal(VALUE val,
|
|
2901
|
+
rb_str_convert_to_BigDecimal(VALUE val, int raise_exception)
|
|
3587
2902
|
{
|
|
3588
2903
|
const char *c_str = StringValueCStr(val);
|
|
3589
|
-
return rb_cstr_convert_to_BigDecimal(c_str,
|
|
2904
|
+
return rb_cstr_convert_to_BigDecimal(c_str, raise_exception);
|
|
3590
2905
|
}
|
|
3591
2906
|
|
|
3592
2907
|
static VALUE
|
|
@@ -3614,17 +2929,18 @@ rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3614
2929
|
if (digs == SIZE_MAX)
|
|
3615
2930
|
return check_exception(val);
|
|
3616
2931
|
|
|
2932
|
+
NULL_WRAPPED_VALUE null_wrapped = BigDecimal_alloc_empty_struct(rb_cBigDecimal);
|
|
3617
2933
|
Real *vp;
|
|
3618
2934
|
TypedData_Get_Struct(val, Real, &BigDecimal_data_type, vp);
|
|
3619
|
-
|
|
3620
|
-
VALUE copy = TypedData_Wrap_Struct(rb_cBigDecimal, &BigDecimal_data_type, 0);
|
|
3621
2935
|
vp = VpCopy(NULL, vp);
|
|
2936
|
+
RB_GC_GUARD(val);
|
|
2937
|
+
|
|
2938
|
+
VALUE copy = BigDecimal_wrap_struct(null_wrapped, vp);
|
|
3622
2939
|
/* TODO: rounding */
|
|
3623
|
-
|
|
3624
|
-
return VpCheckGetValue(vp);
|
|
2940
|
+
return check_exception(copy);
|
|
3625
2941
|
}
|
|
3626
2942
|
else if (RB_INTEGER_TYPE_P(val)) {
|
|
3627
|
-
return rb_inum_convert_to_BigDecimal(val
|
|
2943
|
+
return rb_inum_convert_to_BigDecimal(val);
|
|
3628
2944
|
}
|
|
3629
2945
|
else if (RB_FLOAT_TYPE_P(val)) {
|
|
3630
2946
|
return rb_float_convert_to_BigDecimal(val, digs, raise_exception);
|
|
@@ -3642,7 +2958,7 @@ rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3642
2958
|
return rb_convert_to_BigDecimal(rb_complex_real(val), digs, raise_exception);
|
|
3643
2959
|
}
|
|
3644
2960
|
else if (RB_TYPE_P(val, T_STRING)) {
|
|
3645
|
-
return rb_str_convert_to_BigDecimal(val,
|
|
2961
|
+
return rb_str_convert_to_BigDecimal(val, raise_exception);
|
|
3646
2962
|
}
|
|
3647
2963
|
|
|
3648
2964
|
/* TODO: chheck to_d */
|
|
@@ -3656,7 +2972,7 @@ rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3656
2972
|
}
|
|
3657
2973
|
return Qnil;
|
|
3658
2974
|
}
|
|
3659
|
-
return rb_str_convert_to_BigDecimal(str,
|
|
2975
|
+
return rb_str_convert_to_BigDecimal(str, raise_exception);
|
|
3660
2976
|
}
|
|
3661
2977
|
|
|
3662
2978
|
/* call-seq:
|
|
@@ -3677,12 +2993,12 @@ rb_convert_to_BigDecimal(VALUE val, size_t digs, int raise_exception)
|
|
|
3677
2993
|
*
|
|
3678
2994
|
* - Integer, Float, Rational, Complex, or BigDecimal: converted directly:
|
|
3679
2995
|
*
|
|
3680
|
-
* # Integer, Complex, or BigDecimal value does not require ndigits; ignored if given.
|
|
2996
|
+
* # Integer, Complex, Float, or BigDecimal value does not require ndigits; ignored if given.
|
|
3681
2997
|
* BigDecimal(2) # => 0.2e1
|
|
3682
2998
|
* BigDecimal(Complex(2, 0)) # => 0.2e1
|
|
3683
2999
|
* BigDecimal(BigDecimal(2)) # => 0.2e1
|
|
3684
|
-
* #
|
|
3685
|
-
*
|
|
3000
|
+
* BigDecimal(2.0) # => 0.2e1
|
|
3001
|
+
* # Rational value requires ndigits.
|
|
3686
3002
|
* BigDecimal(Rational(2, 1), 0) # => 0.2e1
|
|
3687
3003
|
*
|
|
3688
3004
|
* - String: converted by parsing if it contains an integer or floating-point literal;
|
|
@@ -3746,11 +3062,11 @@ static VALUE
|
|
|
3746
3062
|
BigDecimal_s_interpret_loosely(VALUE klass, VALUE str)
|
|
3747
3063
|
{
|
|
3748
3064
|
char const *c_str = StringValueCStr(str);
|
|
3749
|
-
|
|
3750
|
-
if (
|
|
3065
|
+
NULLABLE_BDVALUE v = CreateFromString(c_str, klass, false, true);
|
|
3066
|
+
if (v.bigdecimal_or_nil == Qnil)
|
|
3751
3067
|
return Qnil;
|
|
3752
3068
|
else
|
|
3753
|
-
return
|
|
3069
|
+
return CheckGetValue(bdvalue_nonnullable(v));
|
|
3754
3070
|
}
|
|
3755
3071
|
|
|
3756
3072
|
/*
|
|
@@ -3805,7 +3121,7 @@ BigDecimal_limit(int argc, VALUE *argv, VALUE self)
|
|
|
3805
3121
|
static VALUE
|
|
3806
3122
|
BigDecimal_sign(VALUE self)
|
|
3807
3123
|
{ /* sign */
|
|
3808
|
-
int s =
|
|
3124
|
+
int s = GetSelfVpValue(self)->sign;
|
|
3809
3125
|
return INT2FIX(s);
|
|
3810
3126
|
}
|
|
3811
3127
|
|
|
@@ -3877,310 +3193,15 @@ BigDecimal_save_rounding_mode(VALUE self)
|
|
|
3877
3193
|
* puts BigDecimal.limit
|
|
3878
3194
|
*
|
|
3879
3195
|
*/
|
|
3880
|
-
static VALUE
|
|
3881
|
-
BigDecimal_save_limit(VALUE self)
|
|
3882
|
-
{
|
|
3883
|
-
size_t const limit = VpGetPrecLimit();
|
|
3884
|
-
int state;
|
|
3885
|
-
VALUE ret = rb_protect(rb_yield, Qnil, &state);
|
|
3886
|
-
VpSetPrecLimit(limit);
|
|
3887
|
-
if (state) rb_jump_tag(state);
|
|
3888
|
-
return ret;
|
|
3889
|
-
}
|
|
3890
|
-
|
|
3891
|
-
/* call-seq:
|
|
3892
|
-
* BigMath.exp(decimal, numeric) -> BigDecimal
|
|
3893
|
-
*
|
|
3894
|
-
* Computes the value of e (the base of natural logarithms) raised to the
|
|
3895
|
-
* power of +decimal+, to the specified number of digits of precision.
|
|
3896
|
-
*
|
|
3897
|
-
* If +decimal+ is infinity, returns Infinity.
|
|
3898
|
-
*
|
|
3899
|
-
* If +decimal+ is NaN, returns NaN.
|
|
3900
|
-
*/
|
|
3901
|
-
static VALUE
|
|
3902
|
-
BigMath_s_exp(VALUE klass, VALUE x, VALUE vprec)
|
|
3903
|
-
{
|
|
3904
|
-
ssize_t prec, n, i;
|
|
3905
|
-
Real* vx = NULL;
|
|
3906
|
-
VALUE one, d, y;
|
|
3907
|
-
int negative = 0;
|
|
3908
|
-
int infinite = 0;
|
|
3909
|
-
int nan = 0;
|
|
3910
|
-
double flo;
|
|
3911
|
-
|
|
3912
|
-
prec = NUM2SSIZET(vprec);
|
|
3913
|
-
if (prec <= 0) {
|
|
3914
|
-
rb_raise(rb_eArgError, "Zero or negative precision for exp");
|
|
3915
|
-
}
|
|
3916
|
-
|
|
3917
|
-
/* TODO: the following switch statement is almost same as one in the
|
|
3918
|
-
* BigDecimalCmp function. */
|
|
3919
|
-
switch (TYPE(x)) {
|
|
3920
|
-
case T_DATA:
|
|
3921
|
-
if (!is_kind_of_BigDecimal(x)) break;
|
|
3922
|
-
vx = DATA_PTR(x);
|
|
3923
|
-
negative = BIGDECIMAL_NEGATIVE_P(vx);
|
|
3924
|
-
infinite = VpIsPosInf(vx) || VpIsNegInf(vx);
|
|
3925
|
-
nan = VpIsNaN(vx);
|
|
3926
|
-
break;
|
|
3927
|
-
|
|
3928
|
-
case T_FIXNUM:
|
|
3929
|
-
/* fall through */
|
|
3930
|
-
case T_BIGNUM:
|
|
3931
|
-
vx = GetVpValue(x, 0);
|
|
3932
|
-
break;
|
|
3933
|
-
|
|
3934
|
-
case T_FLOAT:
|
|
3935
|
-
flo = RFLOAT_VALUE(x);
|
|
3936
|
-
negative = flo < 0;
|
|
3937
|
-
infinite = isinf(flo);
|
|
3938
|
-
nan = isnan(flo);
|
|
3939
|
-
if (!infinite && !nan) {
|
|
3940
|
-
vx = GetVpValueWithPrec(x, 0, 0);
|
|
3941
|
-
}
|
|
3942
|
-
break;
|
|
3943
|
-
|
|
3944
|
-
case T_RATIONAL:
|
|
3945
|
-
vx = GetVpValueWithPrec(x, prec, 0);
|
|
3946
|
-
break;
|
|
3947
|
-
|
|
3948
|
-
default:
|
|
3949
|
-
break;
|
|
3950
|
-
}
|
|
3951
|
-
if (infinite) {
|
|
3952
|
-
if (negative) {
|
|
3953
|
-
return VpCheckGetValue(GetVpValueWithPrec(INT2FIX(0), prec, 1));
|
|
3954
|
-
}
|
|
3955
|
-
else {
|
|
3956
|
-
Real* vy = NewZeroWrapNolimit(1, prec);
|
|
3957
|
-
VpSetInf(vy, VP_SIGN_POSITIVE_INFINITE);
|
|
3958
|
-
RB_GC_GUARD(vy->obj);
|
|
3959
|
-
return VpCheckGetValue(vy);
|
|
3960
|
-
}
|
|
3961
|
-
}
|
|
3962
|
-
else if (nan) {
|
|
3963
|
-
Real* vy = NewZeroWrapNolimit(1, prec);
|
|
3964
|
-
VpSetNaN(vy);
|
|
3965
|
-
RB_GC_GUARD(vy->obj);
|
|
3966
|
-
return VpCheckGetValue(vy);
|
|
3967
|
-
}
|
|
3968
|
-
else if (vx == NULL) {
|
|
3969
|
-
cannot_be_coerced_into_BigDecimal(rb_eArgError, x);
|
|
3970
|
-
}
|
|
3971
|
-
x = vx->obj;
|
|
3972
|
-
|
|
3973
|
-
n = prec + BIGDECIMAL_DOUBLE_FIGURES;
|
|
3974
|
-
negative = BIGDECIMAL_NEGATIVE_P(vx);
|
|
3975
|
-
if (negative) {
|
|
3976
|
-
VALUE x_zero = INT2NUM(1);
|
|
3977
|
-
VALUE x_copy = f_BigDecimal(1, &x_zero, klass);
|
|
3978
|
-
x = BigDecimal_initialize_copy(x_copy, x);
|
|
3979
|
-
vx = DATA_PTR(x);
|
|
3980
|
-
VpSetSign(vx, 1);
|
|
3981
|
-
}
|
|
3982
|
-
|
|
3983
|
-
one = VpCheckGetValue(NewOneWrapLimited(1, 1));
|
|
3984
|
-
y = one;
|
|
3985
|
-
d = y;
|
|
3986
|
-
i = 1;
|
|
3987
|
-
|
|
3988
|
-
while (!VpIsZero((Real*)DATA_PTR(d))) {
|
|
3989
|
-
SIGNED_VALUE const ey = VpExponent10(DATA_PTR(y));
|
|
3990
|
-
SIGNED_VALUE const ed = VpExponent10(DATA_PTR(d));
|
|
3991
|
-
ssize_t m = n - vabs(ey - ed);
|
|
3992
|
-
|
|
3993
|
-
rb_thread_check_ints();
|
|
3994
|
-
|
|
3995
|
-
if (m <= 0) {
|
|
3996
|
-
break;
|
|
3997
|
-
}
|
|
3998
|
-
else if ((size_t)m < BIGDECIMAL_DOUBLE_FIGURES) {
|
|
3999
|
-
m = BIGDECIMAL_DOUBLE_FIGURES;
|
|
4000
|
-
}
|
|
4001
|
-
|
|
4002
|
-
d = BigDecimal_mult(d, x); /* d <- d * x */
|
|
4003
|
-
d = BigDecimal_div2(d, SSIZET2NUM(i), SSIZET2NUM(m)); /* d <- d / i */
|
|
4004
|
-
y = BigDecimal_add(y, d); /* y <- y + d */
|
|
4005
|
-
++i; /* i <- i + 1 */
|
|
4006
|
-
}
|
|
4007
|
-
|
|
4008
|
-
if (negative) {
|
|
4009
|
-
return BigDecimal_div2(one, y, vprec);
|
|
4010
|
-
}
|
|
4011
|
-
else {
|
|
4012
|
-
vprec = SSIZET2NUM(prec - VpExponent10(DATA_PTR(y)));
|
|
4013
|
-
return BigDecimal_round(1, &vprec, y);
|
|
4014
|
-
}
|
|
4015
|
-
|
|
4016
|
-
RB_GC_GUARD(one);
|
|
4017
|
-
RB_GC_GUARD(x);
|
|
4018
|
-
RB_GC_GUARD(y);
|
|
4019
|
-
RB_GC_GUARD(d);
|
|
4020
|
-
}
|
|
4021
|
-
|
|
4022
|
-
/* call-seq:
|
|
4023
|
-
* BigMath.log(decimal, numeric) -> BigDecimal
|
|
4024
|
-
*
|
|
4025
|
-
* Computes the natural logarithm of +decimal+ to the specified number of
|
|
4026
|
-
* digits of precision, +numeric+.
|
|
4027
|
-
*
|
|
4028
|
-
* If +decimal+ is zero or negative, raises Math::DomainError.
|
|
4029
|
-
*
|
|
4030
|
-
* If +decimal+ is positive infinity, returns Infinity.
|
|
4031
|
-
*
|
|
4032
|
-
* If +decimal+ is NaN, returns NaN.
|
|
4033
|
-
*/
|
|
4034
|
-
static VALUE
|
|
4035
|
-
BigMath_s_log(VALUE klass, VALUE x, VALUE vprec)
|
|
4036
|
-
{
|
|
4037
|
-
ssize_t prec, n, i;
|
|
4038
|
-
SIGNED_VALUE expo;
|
|
4039
|
-
Real* vx = NULL;
|
|
4040
|
-
VALUE vn, one, two, w, x2, y, d;
|
|
4041
|
-
int zero = 0;
|
|
4042
|
-
int negative = 0;
|
|
4043
|
-
int infinite = 0;
|
|
4044
|
-
int nan = 0;
|
|
4045
|
-
double flo;
|
|
4046
|
-
long fix;
|
|
4047
|
-
|
|
4048
|
-
if (!is_integer(vprec)) {
|
|
4049
|
-
rb_raise(rb_eArgError, "precision must be an Integer");
|
|
4050
|
-
}
|
|
4051
|
-
|
|
4052
|
-
prec = NUM2SSIZET(vprec);
|
|
4053
|
-
if (prec <= 0) {
|
|
4054
|
-
rb_raise(rb_eArgError, "Zero or negative precision for exp");
|
|
4055
|
-
}
|
|
4056
|
-
|
|
4057
|
-
/* TODO: the following switch statement is almost same as one in the
|
|
4058
|
-
* BigDecimalCmp function. */
|
|
4059
|
-
switch (TYPE(x)) {
|
|
4060
|
-
case T_DATA:
|
|
4061
|
-
if (!is_kind_of_BigDecimal(x)) break;
|
|
4062
|
-
vx = DATA_PTR(x);
|
|
4063
|
-
zero = VpIsZero(vx);
|
|
4064
|
-
negative = BIGDECIMAL_NEGATIVE_P(vx);
|
|
4065
|
-
infinite = VpIsPosInf(vx) || VpIsNegInf(vx);
|
|
4066
|
-
nan = VpIsNaN(vx);
|
|
4067
|
-
break;
|
|
4068
|
-
|
|
4069
|
-
case T_FIXNUM:
|
|
4070
|
-
fix = FIX2LONG(x);
|
|
4071
|
-
zero = fix == 0;
|
|
4072
|
-
negative = fix < 0;
|
|
4073
|
-
goto get_vp_value;
|
|
4074
|
-
|
|
4075
|
-
case T_BIGNUM:
|
|
4076
|
-
i = FIX2INT(rb_big_cmp(x, INT2FIX(0)));
|
|
4077
|
-
zero = i == 0;
|
|
4078
|
-
negative = i < 0;
|
|
4079
|
-
get_vp_value:
|
|
4080
|
-
if (zero || negative) break;
|
|
4081
|
-
vx = GetVpValue(x, 0);
|
|
4082
|
-
break;
|
|
4083
|
-
|
|
4084
|
-
case T_FLOAT:
|
|
4085
|
-
flo = RFLOAT_VALUE(x);
|
|
4086
|
-
zero = flo == 0;
|
|
4087
|
-
negative = flo < 0;
|
|
4088
|
-
infinite = isinf(flo);
|
|
4089
|
-
nan = isnan(flo);
|
|
4090
|
-
if (!zero && !negative && !infinite && !nan) {
|
|
4091
|
-
vx = GetVpValueWithPrec(x, 0, 1);
|
|
4092
|
-
}
|
|
4093
|
-
break;
|
|
4094
|
-
|
|
4095
|
-
case T_RATIONAL:
|
|
4096
|
-
zero = RRATIONAL_ZERO_P(x);
|
|
4097
|
-
negative = RRATIONAL_NEGATIVE_P(x);
|
|
4098
|
-
if (zero || negative) break;
|
|
4099
|
-
vx = GetVpValueWithPrec(x, prec, 1);
|
|
4100
|
-
break;
|
|
4101
|
-
|
|
4102
|
-
case T_COMPLEX:
|
|
4103
|
-
rb_raise(rb_eMathDomainError,
|
|
4104
|
-
"Complex argument for BigMath.log");
|
|
4105
|
-
|
|
4106
|
-
default:
|
|
4107
|
-
break;
|
|
4108
|
-
}
|
|
4109
|
-
if (infinite && !negative) {
|
|
4110
|
-
Real *vy = NewZeroWrapNolimit(1, prec);
|
|
4111
|
-
RB_GC_GUARD(vy->obj);
|
|
4112
|
-
VpSetInf(vy, VP_SIGN_POSITIVE_INFINITE);
|
|
4113
|
-
return VpCheckGetValue(vy);
|
|
4114
|
-
}
|
|
4115
|
-
else if (nan) {
|
|
4116
|
-
Real* vy = NewZeroWrapNolimit(1, prec);
|
|
4117
|
-
RB_GC_GUARD(vy->obj);
|
|
4118
|
-
VpSetNaN(vy);
|
|
4119
|
-
return VpCheckGetValue(vy);
|
|
4120
|
-
}
|
|
4121
|
-
else if (zero || negative) {
|
|
4122
|
-
rb_raise(rb_eMathDomainError,
|
|
4123
|
-
"Zero or negative argument for log");
|
|
4124
|
-
}
|
|
4125
|
-
else if (vx == NULL) {
|
|
4126
|
-
cannot_be_coerced_into_BigDecimal(rb_eArgError, x);
|
|
4127
|
-
}
|
|
4128
|
-
x = VpCheckGetValue(vx);
|
|
4129
|
-
|
|
4130
|
-
one = VpCheckGetValue(NewOneWrapLimited(1, 1));
|
|
4131
|
-
two = VpCheckGetValue(VpCreateRbObject(1, "2", true));
|
|
4132
|
-
|
|
4133
|
-
n = prec + BIGDECIMAL_DOUBLE_FIGURES;
|
|
4134
|
-
vn = SSIZET2NUM(n);
|
|
4135
|
-
expo = VpExponent10(vx);
|
|
4136
|
-
if (expo < 0 || expo >= 3) {
|
|
4137
|
-
char buf[DECIMAL_SIZE_OF_BITS(SIZEOF_VALUE * CHAR_BIT) + 4];
|
|
4138
|
-
snprintf(buf, sizeof(buf), "1E%"PRIdVALUE, -expo);
|
|
4139
|
-
x = BigDecimal_mult2(x, VpCheckGetValue(VpCreateRbObject(1, buf, true)), vn);
|
|
4140
|
-
}
|
|
4141
|
-
else {
|
|
4142
|
-
expo = 0;
|
|
4143
|
-
}
|
|
4144
|
-
w = BigDecimal_sub(x, one);
|
|
4145
|
-
x = BigDecimal_div2(w, BigDecimal_add(x, one), vn);
|
|
4146
|
-
x2 = BigDecimal_mult2(x, x, vn);
|
|
4147
|
-
y = x;
|
|
4148
|
-
d = y;
|
|
4149
|
-
i = 1;
|
|
4150
|
-
while (!VpIsZero((Real*)DATA_PTR(d))) {
|
|
4151
|
-
SIGNED_VALUE const ey = VpExponent10(DATA_PTR(y));
|
|
4152
|
-
SIGNED_VALUE const ed = VpExponent10(DATA_PTR(d));
|
|
4153
|
-
ssize_t m = n - vabs(ey - ed);
|
|
4154
|
-
if (m <= 0) {
|
|
4155
|
-
break;
|
|
4156
|
-
}
|
|
4157
|
-
else if ((size_t)m < BIGDECIMAL_DOUBLE_FIGURES) {
|
|
4158
|
-
m = BIGDECIMAL_DOUBLE_FIGURES;
|
|
4159
|
-
}
|
|
4160
|
-
|
|
4161
|
-
x = BigDecimal_mult2(x2, x, vn);
|
|
4162
|
-
i += 2;
|
|
4163
|
-
d = BigDecimal_div2(x, SSIZET2NUM(i), SSIZET2NUM(m));
|
|
4164
|
-
y = BigDecimal_add(y, d);
|
|
4165
|
-
}
|
|
4166
|
-
|
|
4167
|
-
y = BigDecimal_mult(y, two);
|
|
4168
|
-
if (expo != 0) {
|
|
4169
|
-
VALUE log10, vexpo, dy;
|
|
4170
|
-
log10 = BigMath_s_log(klass, INT2FIX(10), vprec);
|
|
4171
|
-
vexpo = VpCheckGetValue(GetVpValue(SSIZET2NUM(expo), 1));
|
|
4172
|
-
dy = BigDecimal_mult(log10, vexpo);
|
|
4173
|
-
y = BigDecimal_add(y, dy);
|
|
4174
|
-
}
|
|
4175
|
-
|
|
4176
|
-
RB_GC_GUARD(one);
|
|
4177
|
-
RB_GC_GUARD(two);
|
|
4178
|
-
RB_GC_GUARD(vn);
|
|
4179
|
-
RB_GC_GUARD(x2);
|
|
4180
|
-
RB_GC_GUARD(y);
|
|
4181
|
-
RB_GC_GUARD(d);
|
|
4182
|
-
|
|
4183
|
-
return y;
|
|
3196
|
+
static VALUE
|
|
3197
|
+
BigDecimal_save_limit(VALUE self)
|
|
3198
|
+
{
|
|
3199
|
+
size_t const limit = VpGetPrecLimit();
|
|
3200
|
+
int state;
|
|
3201
|
+
VALUE ret = rb_protect(rb_yield, Qnil, &state);
|
|
3202
|
+
VpSetPrecLimit(limit);
|
|
3203
|
+
if (state) rb_jump_tag(state);
|
|
3204
|
+
return ret;
|
|
4184
3205
|
}
|
|
4185
3206
|
|
|
4186
3207
|
static VALUE BIGDECIMAL_NAN = Qnil;
|
|
@@ -4234,6 +3255,34 @@ BigDecimal_literal(const char *str)
|
|
|
4234
3255
|
|
|
4235
3256
|
#define BIGDECIMAL_LITERAL(var, val) (BIGDECIMAL_ ## var = BigDecimal_literal(#val))
|
|
4236
3257
|
|
|
3258
|
+
#ifdef BIGDECIMAL_USE_VP_TEST_METHODS
|
|
3259
|
+
VALUE
|
|
3260
|
+
BigDecimal_vpdivd(VALUE self, VALUE r, VALUE cprec) {
|
|
3261
|
+
BDVALUE a,b,c,d;
|
|
3262
|
+
size_t cn = NUM2INT(cprec);
|
|
3263
|
+
a = GetBDValueMust(self);
|
|
3264
|
+
b = GetBDValueMust(r);
|
|
3265
|
+
c = NewZeroWrap(1, cn * BASE_FIG);
|
|
3266
|
+
d = NewZeroWrap(1, VPDIVD_REM_PREC(a.real, b.real, c.real) * BASE_FIG);
|
|
3267
|
+
VpDivd(c.real, d.real, a.real, b.real);
|
|
3268
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
3269
|
+
RB_GC_GUARD(b.bigdecimal);
|
|
3270
|
+
return rb_assoc_new(c.bigdecimal, d.bigdecimal);
|
|
3271
|
+
}
|
|
3272
|
+
|
|
3273
|
+
VALUE
|
|
3274
|
+
BigDecimal_vpmult(VALUE self, VALUE v) {
|
|
3275
|
+
BDVALUE a,b,c;
|
|
3276
|
+
a = GetBDValueMust(self);
|
|
3277
|
+
b = GetBDValueMust(v);
|
|
3278
|
+
c = NewZeroWrap(1, VPMULT_RESULT_PREC(a.real, b.real) * BASE_FIG);
|
|
3279
|
+
VpMult(c.real, a.real, b.real);
|
|
3280
|
+
RB_GC_GUARD(a.bigdecimal);
|
|
3281
|
+
RB_GC_GUARD(b.bigdecimal);
|
|
3282
|
+
return c.bigdecimal;
|
|
3283
|
+
}
|
|
3284
|
+
#endif /* BIGDECIMAL_USE_VP_TEST_METHODS */
|
|
3285
|
+
|
|
4237
3286
|
/* Document-class: BigDecimal
|
|
4238
3287
|
* BigDecimal provides arbitrary-precision floating point decimal arithmetic.
|
|
4239
3288
|
*
|
|
@@ -4350,14 +3399,16 @@ BigDecimal_literal(const char *str)
|
|
|
4350
3399
|
*
|
|
4351
3400
|
* When you require +bigdecimal/util+, the #to_d method will be
|
|
4352
3401
|
* available on BigDecimal and the native Integer, Float, Rational,
|
|
4353
|
-
* and
|
|
3402
|
+
* String, Complex, and NilClass classes:
|
|
4354
3403
|
*
|
|
4355
3404
|
* require 'bigdecimal/util'
|
|
4356
3405
|
*
|
|
4357
|
-
* 42.to_d
|
|
4358
|
-
* 0.5.to_d
|
|
4359
|
-
* (2/3r).to_d(3)
|
|
4360
|
-
* "0.5".to_d
|
|
3406
|
+
* 42.to_d # => 0.42e2
|
|
3407
|
+
* 0.5.to_d # => 0.5e0
|
|
3408
|
+
* (2/3r).to_d(3) # => 0.667e0
|
|
3409
|
+
* "0.5".to_d # => 0.5e0
|
|
3410
|
+
* Complex(0.1234567, 0).to_d(4) # => 0.1235e0
|
|
3411
|
+
* nil.to_d # => 0.0
|
|
4361
3412
|
*
|
|
4362
3413
|
* == Methods for Working with \JSON
|
|
4363
3414
|
*
|
|
@@ -4431,7 +3482,7 @@ Init_bigdecimal(void)
|
|
|
4431
3482
|
* guarantee that two groups could always be multiplied together without
|
|
4432
3483
|
* overflow.)
|
|
4433
3484
|
*/
|
|
4434
|
-
rb_define_const(rb_cBigDecimal, "BASE", INT2FIX((SIGNED_VALUE)
|
|
3485
|
+
rb_define_const(rb_cBigDecimal, "BASE", INT2FIX((SIGNED_VALUE)BASE));
|
|
4435
3486
|
|
|
4436
3487
|
/* Exceptions */
|
|
4437
3488
|
|
|
@@ -4573,14 +3624,11 @@ Init_bigdecimal(void)
|
|
|
4573
3624
|
rb_define_method(rb_cBigDecimal, "dup", BigDecimal_clone, 0);
|
|
4574
3625
|
rb_define_method(rb_cBigDecimal, "to_f", BigDecimal_to_f, 0);
|
|
4575
3626
|
rb_define_method(rb_cBigDecimal, "abs", BigDecimal_abs, 0);
|
|
4576
|
-
rb_define_method(rb_cBigDecimal, "sqrt", BigDecimal_sqrt, 1);
|
|
4577
3627
|
rb_define_method(rb_cBigDecimal, "fix", BigDecimal_fix, 0);
|
|
4578
3628
|
rb_define_method(rb_cBigDecimal, "round", BigDecimal_round, -1);
|
|
4579
3629
|
rb_define_method(rb_cBigDecimal, "frac", BigDecimal_frac, 0);
|
|
4580
3630
|
rb_define_method(rb_cBigDecimal, "floor", BigDecimal_floor, -1);
|
|
4581
3631
|
rb_define_method(rb_cBigDecimal, "ceil", BigDecimal_ceil, -1);
|
|
4582
|
-
rb_define_method(rb_cBigDecimal, "power", BigDecimal_power, -1);
|
|
4583
|
-
rb_define_method(rb_cBigDecimal, "**", BigDecimal_power_op, 1);
|
|
4584
3632
|
rb_define_method(rb_cBigDecimal, "<=>", BigDecimal_comp, 1);
|
|
4585
3633
|
rb_define_method(rb_cBigDecimal, "==", BigDecimal_eq, 1);
|
|
4586
3634
|
rb_define_method(rb_cBigDecimal, "===", BigDecimal_eq, 1);
|
|
@@ -4599,11 +3647,13 @@ Init_bigdecimal(void)
|
|
|
4599
3647
|
rb_define_method(rb_cBigDecimal, "infinite?", BigDecimal_IsInfinite, 0);
|
|
4600
3648
|
rb_define_method(rb_cBigDecimal, "finite?", BigDecimal_IsFinite, 0);
|
|
4601
3649
|
rb_define_method(rb_cBigDecimal, "truncate", BigDecimal_truncate, -1);
|
|
3650
|
+
rb_define_method(rb_cBigDecimal, "_decimal_shift", BigDecimal_decimal_shift, 1);
|
|
4602
3651
|
rb_define_method(rb_cBigDecimal, "_dump", BigDecimal_dump, -1);
|
|
4603
3652
|
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
3653
|
+
#ifdef BIGDECIMAL_USE_VP_TEST_METHODS
|
|
3654
|
+
rb_define_method(rb_cBigDecimal, "vpdivd", BigDecimal_vpdivd, 2);
|
|
3655
|
+
rb_define_method(rb_cBigDecimal, "vpmult", BigDecimal_vpmult, 1);
|
|
3656
|
+
#endif /* BIGDECIMAL_USE_VP_TEST_METHODS */
|
|
4607
3657
|
|
|
4608
3658
|
#define ROUNDING_MODE(i, name, value) \
|
|
4609
3659
|
id_##name = rb_intern_const(#name); \
|
|
@@ -4643,19 +3693,9 @@ Init_bigdecimal(void)
|
|
|
4643
3693
|
*/
|
|
4644
3694
|
#ifdef BIGDECIMAL_DEBUG
|
|
4645
3695
|
static int gfDebug = 1; /* Debug switch */
|
|
4646
|
-
#if 0
|
|
4647
|
-
static int gfCheckVal = 1; /* Value checking flag in VpNmlz() */
|
|
4648
|
-
#endif
|
|
4649
3696
|
#endif /* BIGDECIMAL_DEBUG */
|
|
4650
3697
|
|
|
4651
3698
|
static Real *VpConstOne; /* constant 1.0 */
|
|
4652
|
-
static Real *VpConstPt5; /* constant 0.5 */
|
|
4653
|
-
#define maxnr 100UL /* Maximum iterations for calculating sqrt. */
|
|
4654
|
-
/* used in VpSqrt() */
|
|
4655
|
-
|
|
4656
|
-
/* ETC */
|
|
4657
|
-
#define MemCmp(x,y,z) memcmp(x,y,z)
|
|
4658
|
-
#define StrCmp(x,y) strcmp(x,y)
|
|
4659
3699
|
|
|
4660
3700
|
enum op_sw {
|
|
4661
3701
|
OP_SW_ADD = 1, /* + */
|
|
@@ -4665,11 +3705,9 @@ enum op_sw {
|
|
|
4665
3705
|
};
|
|
4666
3706
|
|
|
4667
3707
|
static int VpIsDefOP(Real *c, Real *a, Real *b, enum op_sw sw);
|
|
4668
|
-
static int AddExponent(Real *a, SIGNED_VALUE n);
|
|
4669
3708
|
static DECDIG VpAddAbs(Real *a,Real *b,Real *c);
|
|
4670
3709
|
static DECDIG VpSubAbs(Real *a,Real *b,Real *c);
|
|
4671
3710
|
static size_t VpSetPTR(Real *a, Real *b, Real *c, size_t *a_pos, size_t *b_pos, size_t *c_pos, DECDIG *av, DECDIG *bv);
|
|
4672
|
-
static int VpNmlz(Real *a);
|
|
4673
3711
|
static void VpFormatSt(char *psz, size_t fFmt);
|
|
4674
3712
|
static int VpRdup(Real *m, size_t ind_m);
|
|
4675
3713
|
|
|
@@ -4728,10 +3766,10 @@ VpCheckException(Real *p, bool always)
|
|
|
4728
3766
|
}
|
|
4729
3767
|
|
|
4730
3768
|
static VALUE
|
|
4731
|
-
|
|
3769
|
+
CheckGetValue(BDVALUE v)
|
|
4732
3770
|
{
|
|
4733
|
-
VpCheckException(
|
|
4734
|
-
return
|
|
3771
|
+
VpCheckException(v.real, false);
|
|
3772
|
+
return v.bigdecimal;
|
|
4735
3773
|
}
|
|
4736
3774
|
|
|
4737
3775
|
/*
|
|
@@ -4763,12 +3801,10 @@ VpGetPrecLimit(void)
|
|
|
4763
3801
|
return NUM2SIZET(vlimit);
|
|
4764
3802
|
}
|
|
4765
3803
|
|
|
4766
|
-
VP_EXPORT
|
|
3804
|
+
VP_EXPORT void
|
|
4767
3805
|
VpSetPrecLimit(size_t n)
|
|
4768
3806
|
{
|
|
4769
|
-
size_t const s = VpGetPrecLimit();
|
|
4770
3807
|
bigdecimal_set_thread_local_precision_limit(n);
|
|
4771
|
-
return s;
|
|
4772
3808
|
}
|
|
4773
3809
|
|
|
4774
3810
|
/*
|
|
@@ -4883,15 +3919,6 @@ VpGetDoubleNegZero(void) /* Returns the value of -0 */
|
|
|
4883
3919
|
return nzero;
|
|
4884
3920
|
}
|
|
4885
3921
|
|
|
4886
|
-
#if 0 /* unused */
|
|
4887
|
-
VP_EXPORT int
|
|
4888
|
-
VpIsNegDoubleZero(double v)
|
|
4889
|
-
{
|
|
4890
|
-
double z = VpGetDoubleNegZero();
|
|
4891
|
-
return MemCmp(&v,&z,sizeof(v))==0;
|
|
4892
|
-
}
|
|
4893
|
-
#endif
|
|
4894
|
-
|
|
4895
3922
|
VP_EXPORT int
|
|
4896
3923
|
VpException(unsigned short f, const char *str,int always)
|
|
4897
3924
|
{
|
|
@@ -5043,7 +4070,7 @@ VpNumOfChars(Real *vp,const char *pszFmt)
|
|
|
5043
4070
|
case 'E':
|
|
5044
4071
|
/* fall through */
|
|
5045
4072
|
default:
|
|
5046
|
-
nc = BASE_FIG*
|
|
4073
|
+
nc = BASE_FIG * vp->Prec + 25; /* "-0."(3) + digits_chars + "e-"(2) + 64bit_exponent_chars(19) + null(1) */
|
|
5047
4074
|
}
|
|
5048
4075
|
return nc;
|
|
5049
4076
|
}
|
|
@@ -5069,28 +4096,13 @@ VpInit(DECDIG BaseVal)
|
|
|
5069
4096
|
VpGetDoubleNegZero();
|
|
5070
4097
|
|
|
5071
4098
|
/* Const 1.0 */
|
|
5072
|
-
VpConstOne =
|
|
5073
|
-
|
|
5074
|
-
/* Const 0.5 */
|
|
5075
|
-
VpConstPt5 = NewOneNolimit(1, 1);
|
|
5076
|
-
VpConstPt5->exponent = 0;
|
|
5077
|
-
VpConstPt5->frac[0] = 5*BASE1;
|
|
4099
|
+
VpConstOne = NewZero(1, 1);
|
|
4100
|
+
VpSetOne(VpConstOne);
|
|
5078
4101
|
|
|
5079
4102
|
#ifdef BIGDECIMAL_DEBUG
|
|
5080
4103
|
gnAlloc = 0;
|
|
5081
4104
|
#endif /* BIGDECIMAL_DEBUG */
|
|
5082
4105
|
|
|
5083
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5084
|
-
if (gfDebug) {
|
|
5085
|
-
printf("VpInit: BaseVal = %"PRIuDECDIG"\n", BaseVal);
|
|
5086
|
-
printf("\tBASE = %"PRIuDECDIG"\n", BASE);
|
|
5087
|
-
printf("\tHALF_BASE = %"PRIuDECDIG"\n", HALF_BASE);
|
|
5088
|
-
printf("\tBASE1 = %"PRIuDECDIG"\n", BASE1);
|
|
5089
|
-
printf("\tBASE_FIG = %u\n", BASE_FIG);
|
|
5090
|
-
printf("\tBIGDECIMAL_DOUBLE_FIGURES = %d\n", BIGDECIMAL_DOUBLE_FIGURES);
|
|
5091
|
-
}
|
|
5092
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5093
|
-
|
|
5094
4106
|
return BIGDECIMAL_DOUBLE_FIGURES;
|
|
5095
4107
|
}
|
|
5096
4108
|
|
|
@@ -5106,24 +4118,14 @@ AddExponent(Real *a, SIGNED_VALUE n)
|
|
|
5106
4118
|
{
|
|
5107
4119
|
SIGNED_VALUE e = a->exponent;
|
|
5108
4120
|
SIGNED_VALUE m = e+n;
|
|
5109
|
-
|
|
5110
|
-
|
|
5111
|
-
|
|
5112
|
-
|
|
5113
|
-
|
|
5114
|
-
|
|
5115
|
-
|
|
5116
|
-
|
|
5117
|
-
if (eb - mb > 0) goto overflow;
|
|
5118
|
-
}
|
|
5119
|
-
}
|
|
5120
|
-
else if (n < 0) {
|
|
5121
|
-
if (MUL_OVERFLOW_SIGNED_VALUE_P(m, (SIGNED_VALUE)BASE_FIG) ||
|
|
5122
|
-
MUL_OVERFLOW_SIGNED_VALUE_P(e, (SIGNED_VALUE)BASE_FIG))
|
|
5123
|
-
goto underflow;
|
|
5124
|
-
mb = m*(SIGNED_VALUE)BASE_FIG;
|
|
5125
|
-
eb = e*(SIGNED_VALUE)BASE_FIG;
|
|
5126
|
-
if (mb - eb > 0) goto underflow;
|
|
4121
|
+
if (e > 0 && n > 0) {
|
|
4122
|
+
if (n > VP_EXPONENT_MAX - e) goto overflow;
|
|
4123
|
+
} else if (e < 0 && n < 0) {
|
|
4124
|
+
if (n < VP_EXPONENT_MIN - e) goto underflow;
|
|
4125
|
+
} else if (m > VP_EXPONENT_MAX) {
|
|
4126
|
+
goto overflow;
|
|
4127
|
+
} else if (m < VP_EXPONENT_MIN) {
|
|
4128
|
+
goto underflow;
|
|
5127
4129
|
}
|
|
5128
4130
|
a->exponent = m;
|
|
5129
4131
|
return 1;
|
|
@@ -5164,7 +4166,6 @@ bigdecimal_parse_special_string(const char *str)
|
|
|
5164
4166
|
while (*p && ISSPACE(*p)) ++p;
|
|
5165
4167
|
if (*p == '\0') {
|
|
5166
4168
|
Real *vp = rbd_allocate_struct(1);
|
|
5167
|
-
vp->MaxPrec = 1;
|
|
5168
4169
|
switch (table[i].sign) {
|
|
5169
4170
|
default:
|
|
5170
4171
|
UNREACHABLE; break;
|
|
@@ -5229,38 +4230,22 @@ protected_VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size
|
|
|
5229
4230
|
/*
|
|
5230
4231
|
* Allocates variable.
|
|
5231
4232
|
* [Input]
|
|
5232
|
-
*
|
|
5233
|
-
* The mx will be the number of significant digits can to be stored.
|
|
5234
|
-
* szVal ... The value assigned(char). If szVal==NULL, then zero is assumed.
|
|
5235
|
-
* If szVal[0]=='#' then MaxPrec is not affected by the precision limit
|
|
5236
|
-
* so that the full precision specified by szVal is allocated.
|
|
4233
|
+
* szVal ... The value assigned(char).
|
|
5237
4234
|
*
|
|
5238
4235
|
* [Returns]
|
|
5239
4236
|
* Pointer to the newly allocated variable, or
|
|
5240
4237
|
* NULL be returned if memory allocation is failed,or any error.
|
|
5241
4238
|
*/
|
|
5242
4239
|
VP_EXPORT Real *
|
|
5243
|
-
VpAlloc(
|
|
4240
|
+
VpAlloc(const char *szVal, int strict_p, int exc)
|
|
5244
4241
|
{
|
|
5245
4242
|
const char *orig_szVal = szVal;
|
|
5246
4243
|
size_t i, j, ni, ipf, nf, ipe, ne, exp_seen, nalloc;
|
|
5247
|
-
size_t len;
|
|
5248
4244
|
char v, *psz;
|
|
5249
4245
|
int sign=1;
|
|
5250
4246
|
Real *vp = NULL;
|
|
5251
4247
|
VALUE buf;
|
|
5252
4248
|
|
|
5253
|
-
if (szVal == NULL) {
|
|
5254
|
-
return_zero:
|
|
5255
|
-
/* necessary to be able to store */
|
|
5256
|
-
/* at least mx digits. */
|
|
5257
|
-
/* szVal==NULL ==> allocate zero value. */
|
|
5258
|
-
vp = rbd_allocate_struct(mx);
|
|
5259
|
-
vp->MaxPrec = rbd_calculate_internal_digits(mx, false); /* Must false */
|
|
5260
|
-
VpSetZero(vp, 1); /* initialize vp to zero. */
|
|
5261
|
-
return vp;
|
|
5262
|
-
}
|
|
5263
|
-
|
|
5264
4249
|
/* Skipping leading spaces */
|
|
5265
4250
|
while (ISSPACE(*szVal)) szVal++;
|
|
5266
4251
|
|
|
@@ -5269,14 +4254,11 @@ VpAlloc(size_t mx, const char *szVal, int strict_p, int exc)
|
|
|
5269
4254
|
return vp;
|
|
5270
4255
|
}
|
|
5271
4256
|
|
|
5272
|
-
/*
|
|
5273
|
-
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
len = rbd_calculate_internal_digits(mx, false);
|
|
5278
|
-
++szVal;
|
|
5279
|
-
}
|
|
4257
|
+
/* Skip leading `#`.
|
|
4258
|
+
* It used to be a mark to indicate that an extra MaxPrec should be allocated,
|
|
4259
|
+
* but now it has no effect.
|
|
4260
|
+
*/
|
|
4261
|
+
if (*szVal == '#') ++szVal;
|
|
5280
4262
|
|
|
5281
4263
|
/* Scanning digits */
|
|
5282
4264
|
|
|
@@ -5423,7 +4405,7 @@ VpAlloc(size_t mx, const char *szVal, int strict_p, int exc)
|
|
|
5423
4405
|
VALUE str;
|
|
5424
4406
|
invalid_value:
|
|
5425
4407
|
if (!strict_p) {
|
|
5426
|
-
|
|
4408
|
+
return NewZero(1, 1);
|
|
5427
4409
|
}
|
|
5428
4410
|
if (!exc) {
|
|
5429
4411
|
return NULL;
|
|
@@ -5434,11 +4416,7 @@ VpAlloc(size_t mx, const char *szVal, int strict_p, int exc)
|
|
|
5434
4416
|
|
|
5435
4417
|
nalloc = (ni + nf + BASE_FIG - 1) / BASE_FIG + 1; /* set effective allocation */
|
|
5436
4418
|
/* units for szVal[] */
|
|
5437
|
-
|
|
5438
|
-
nalloc = Max(nalloc, len);
|
|
5439
|
-
len = nalloc;
|
|
5440
|
-
vp = rbd_allocate_struct(len);
|
|
5441
|
-
vp->MaxPrec = len; /* set max precision */
|
|
4419
|
+
vp = rbd_allocate_struct(nalloc);
|
|
5442
4420
|
VpSetZero(vp, sign);
|
|
5443
4421
|
protected_VpCtoV(vp, psz, ni, psz + ipf, nf, psz + ipe, ne, true);
|
|
5444
4422
|
rb_str_resize(buf, 0);
|
|
@@ -5478,7 +4456,7 @@ VpAsgn(Real *c, Real *a, int isw)
|
|
|
5478
4456
|
c->Prec = n;
|
|
5479
4457
|
memcpy(c->frac, a->frac, n * sizeof(DECDIG));
|
|
5480
4458
|
/* Needs round ? */
|
|
5481
|
-
if (isw != 10) {
|
|
4459
|
+
if (isw != 10 && isw != -10) {
|
|
5482
4460
|
/* Not in ActiveRound */
|
|
5483
4461
|
if(c->Prec < a->Prec) {
|
|
5484
4462
|
VpInternalRound(c, n, (n>0) ? a->frac[n-1] : 0, a->frac[n]);
|
|
@@ -5504,19 +4482,11 @@ VpAsgn(Real *c, Real *a, int isw)
|
|
|
5504
4482
|
VP_EXPORT size_t
|
|
5505
4483
|
VpAddSub(Real *c, Real *a, Real *b, int operation)
|
|
5506
4484
|
{
|
|
5507
|
-
short sw, isw;
|
|
4485
|
+
short sw, isw, sign;
|
|
5508
4486
|
Real *a_ptr, *b_ptr;
|
|
5509
4487
|
size_t n, na, nb, i;
|
|
5510
4488
|
DECDIG mrv;
|
|
5511
4489
|
|
|
5512
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5513
|
-
if (gfDebug) {
|
|
5514
|
-
VPrint(stdout, "VpAddSub(enter) a=% \n", a);
|
|
5515
|
-
VPrint(stdout, " b=% \n", b);
|
|
5516
|
-
printf(" operation=%d\n", operation);
|
|
5517
|
-
}
|
|
5518
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5519
|
-
|
|
5520
4490
|
if (!VpIsDefOP(c, a, b, (operation > 0) ? OP_SW_ADD : OP_SW_SUB)) return 0; /* No significant digits */
|
|
5521
4491
|
|
|
5522
4492
|
/* check if a or b is zero */
|
|
@@ -5605,28 +4575,21 @@ end_if:
|
|
|
5605
4575
|
if (isw) { /* addition */
|
|
5606
4576
|
VpSetSign(c, 1);
|
|
5607
4577
|
mrv = VpAddAbs(a_ptr, b_ptr, c);
|
|
5608
|
-
|
|
4578
|
+
sign = isw / 2;
|
|
5609
4579
|
}
|
|
5610
4580
|
else { /* subtraction */
|
|
5611
4581
|
VpSetSign(c, 1);
|
|
5612
4582
|
mrv = VpSubAbs(a_ptr, b_ptr, c);
|
|
5613
|
-
|
|
5614
|
-
VpSetSign(c,VpGetSign(a));
|
|
5615
|
-
}
|
|
5616
|
-
else {
|
|
5617
|
-
VpSetSign(c, VpGetSign(a_ptr) * sw);
|
|
5618
|
-
}
|
|
4583
|
+
sign = a_ptr == a ? VpGetSign(a) : VpGetSign(a_ptr) * sw;
|
|
5619
4584
|
}
|
|
5620
|
-
|
|
5621
|
-
|
|
5622
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5623
|
-
if (gfDebug) {
|
|
5624
|
-
VPrint(stdout, "VpAddSub(result) c=% \n", c);
|
|
5625
|
-
VPrint(stdout, " a=% \n", a);
|
|
5626
|
-
VPrint(stdout, " b=% \n", b);
|
|
5627
|
-
printf(" operation=%d\n", operation);
|
|
4585
|
+
if (VpIsInf(c)) {
|
|
4586
|
+
VpSetInf(c, sign);
|
|
5628
4587
|
}
|
|
5629
|
-
|
|
4588
|
+
else {
|
|
4589
|
+
VpSetSign(c, sign);
|
|
4590
|
+
VpInternalRound(c, 0, (c->Prec > 0) ? c->frac[c->Prec-1] : 0, mrv);
|
|
4591
|
+
}
|
|
4592
|
+
|
|
5630
4593
|
return c->Prec * BASE_FIG;
|
|
5631
4594
|
}
|
|
5632
4595
|
|
|
@@ -5647,13 +4610,6 @@ VpAddAbs(Real *a, Real *b, Real *c)
|
|
|
5647
4610
|
size_t c_pos;
|
|
5648
4611
|
DECDIG av, bv, carry, mrv;
|
|
5649
4612
|
|
|
5650
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5651
|
-
if (gfDebug) {
|
|
5652
|
-
VPrint(stdout, "VpAddAbs called: a = %\n", a);
|
|
5653
|
-
VPrint(stdout, " b = %\n", b);
|
|
5654
|
-
}
|
|
5655
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5656
|
-
|
|
5657
4613
|
word_shift = VpSetPTR(a, b, c, &ap, &bp, &cp, &av, &bv);
|
|
5658
4614
|
a_pos = ap;
|
|
5659
4615
|
b_pos = bp;
|
|
@@ -5719,11 +4675,6 @@ Assign_a:
|
|
|
5719
4675
|
|
|
5720
4676
|
Exit:
|
|
5721
4677
|
|
|
5722
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5723
|
-
if (gfDebug) {
|
|
5724
|
-
VPrint(stdout, "VpAddAbs exit: c=% \n", c);
|
|
5725
|
-
}
|
|
5726
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5727
4678
|
return mrv;
|
|
5728
4679
|
}
|
|
5729
4680
|
|
|
@@ -5742,13 +4693,6 @@ VpSubAbs(Real *a, Real *b, Real *c)
|
|
|
5742
4693
|
size_t c_pos;
|
|
5743
4694
|
DECDIG av, bv, borrow, mrv;
|
|
5744
4695
|
|
|
5745
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5746
|
-
if (gfDebug) {
|
|
5747
|
-
VPrint(stdout, "VpSubAbs called: a = %\n", a);
|
|
5748
|
-
VPrint(stdout, " b = %\n", b);
|
|
5749
|
-
}
|
|
5750
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5751
|
-
|
|
5752
4696
|
word_shift = VpSetPTR(a, b, c, &ap, &bp, &cp, &av, &bv);
|
|
5753
4697
|
a_pos = ap;
|
|
5754
4698
|
b_pos = bp;
|
|
@@ -5824,11 +4768,6 @@ Assign_a:
|
|
|
5824
4768
|
mrv = 0;
|
|
5825
4769
|
|
|
5826
4770
|
Exit:
|
|
5827
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5828
|
-
if (gfDebug) {
|
|
5829
|
-
VPrint(stdout, "VpSubAbs exit: c=% \n", c);
|
|
5830
|
-
}
|
|
5831
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5832
4771
|
return mrv;
|
|
5833
4772
|
}
|
|
5834
4773
|
|
|
@@ -5959,19 +4898,11 @@ VpSetPTR(Real *a, Real *b, Real *c, size_t *a_pos, size_t *b_pos, size_t *c_pos,
|
|
|
5959
4898
|
VP_EXPORT size_t
|
|
5960
4899
|
VpMult(Real *c, Real *a, Real *b)
|
|
5961
4900
|
{
|
|
5962
|
-
size_t MxIndA, MxIndB, MxIndAB
|
|
4901
|
+
size_t MxIndA, MxIndB, MxIndAB;
|
|
5963
4902
|
size_t ind_c, i, ii, nc;
|
|
5964
4903
|
size_t ind_as, ind_ae, ind_bs;
|
|
5965
4904
|
DECDIG carry;
|
|
5966
4905
|
DECDIG_DBL s;
|
|
5967
|
-
Real *w;
|
|
5968
|
-
|
|
5969
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
5970
|
-
if (gfDebug) {
|
|
5971
|
-
VPrint(stdout, "VpMult(Enter): a=% \n", a);
|
|
5972
|
-
VPrint(stdout, " b=% \n", b);
|
|
5973
|
-
}
|
|
5974
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
5975
4906
|
|
|
5976
4907
|
if (!VpIsDefOP(c, a, b, OP_SW_MULT)) return 0; /* No significant digit */
|
|
5977
4908
|
|
|
@@ -5982,39 +4913,28 @@ VpMult(Real *c, Real *a, Real *b)
|
|
|
5982
4913
|
}
|
|
5983
4914
|
|
|
5984
4915
|
if (VpIsOne(a)) {
|
|
5985
|
-
VpAsgn(c, b, VpGetSign(a));
|
|
4916
|
+
VpAsgn(c, b, 10 * VpGetSign(a));
|
|
5986
4917
|
goto Exit;
|
|
5987
4918
|
}
|
|
5988
4919
|
if (VpIsOne(b)) {
|
|
5989
|
-
VpAsgn(c, a, VpGetSign(b));
|
|
4920
|
+
VpAsgn(c, a, 10 * VpGetSign(b));
|
|
5990
4921
|
goto Exit;
|
|
5991
4922
|
}
|
|
5992
4923
|
if (b->Prec > a->Prec) {
|
|
5993
4924
|
/* Adjust so that digits(a)>digits(b) */
|
|
5994
|
-
w = a;
|
|
4925
|
+
Real *w = a;
|
|
5995
4926
|
a = b;
|
|
5996
4927
|
b = w;
|
|
5997
4928
|
}
|
|
5998
|
-
w = NULL;
|
|
5999
4929
|
MxIndA = a->Prec - 1;
|
|
6000
4930
|
MxIndB = b->Prec - 1;
|
|
6001
|
-
MxIndC = c->MaxPrec - 1;
|
|
6002
4931
|
MxIndAB = a->Prec + b->Prec - 1;
|
|
6003
4932
|
|
|
6004
|
-
if (MxIndC < MxIndAB) { /* The Max. prec. of c < Prec(a)+Prec(b) */
|
|
6005
|
-
w = c;
|
|
6006
|
-
c = NewZeroNolimit(1, (size_t)((MxIndAB + 1) * BASE_FIG));
|
|
6007
|
-
MxIndC = MxIndAB;
|
|
6008
|
-
}
|
|
6009
|
-
|
|
6010
4933
|
/* set LHSV c info */
|
|
6011
4934
|
|
|
6012
4935
|
c->exponent = a->exponent; /* set exponent */
|
|
6013
|
-
if (!AddExponent(c, b->exponent)) {
|
|
6014
|
-
if (w) rbd_free_struct(c);
|
|
6015
|
-
return 0;
|
|
6016
|
-
}
|
|
6017
4936
|
VpSetSign(c, VpGetSign(a) * VpGetSign(b)); /* set sign */
|
|
4937
|
+
if (!AddExponent(c, b->exponent)) return 0;
|
|
6018
4938
|
carry = 0;
|
|
6019
4939
|
nc = ind_c = MxIndAB;
|
|
6020
4940
|
memset(c->frac, 0, (nc + 1) * sizeof(DECDIG)); /* Initialize c */
|
|
@@ -6061,29 +4981,18 @@ VpMult(Real *c, Real *a, Real *b)
|
|
|
6061
4981
|
}
|
|
6062
4982
|
}
|
|
6063
4983
|
}
|
|
6064
|
-
|
|
6065
|
-
VpNmlz(c);
|
|
6066
|
-
VpAsgn(w, c, 1);
|
|
6067
|
-
rbd_free_struct(c);
|
|
6068
|
-
c = w;
|
|
6069
|
-
}
|
|
6070
|
-
else {
|
|
6071
|
-
VpLimitRound(c,0);
|
|
6072
|
-
}
|
|
4984
|
+
VpNmlz(c);
|
|
6073
4985
|
|
|
6074
4986
|
Exit:
|
|
6075
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
6076
|
-
if (gfDebug) {
|
|
6077
|
-
VPrint(stdout, "VpMult(c=a*b): c=% \n", c);
|
|
6078
|
-
VPrint(stdout, " a=% \n", a);
|
|
6079
|
-
VPrint(stdout, " b=% \n", b);
|
|
6080
|
-
}
|
|
6081
|
-
#endif /*BIGDECIMAL_DEBUG */
|
|
6082
4987
|
return c->Prec*BASE_FIG;
|
|
6083
4988
|
}
|
|
6084
4989
|
|
|
6085
4990
|
/*
|
|
6086
4991
|
* c = a / b, remainder = r
|
|
4992
|
+
* XXXX_YYYY_ZZZZ / 0001 = XXXX_YYYY_ZZZZ
|
|
4993
|
+
* XXXX_YYYY_ZZZZ / 1111 = 000X_000Y_000Z
|
|
4994
|
+
* 00XX_XXYY_YYZZ / 1000 = 0000_0XXX_XYYY
|
|
4995
|
+
* 0001_0000_0000 / 9999 = 0000_0001_0001
|
|
6087
4996
|
*/
|
|
6088
4997
|
VP_EXPORT size_t
|
|
6089
4998
|
VpDivd(Real *c, Real *r, Real *a, Real *b)
|
|
@@ -6092,16 +5001,9 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
|
|
|
6092
5001
|
size_t i, n, ind_a, ind_b, ind_c, ind_r;
|
|
6093
5002
|
size_t nLoop;
|
|
6094
5003
|
DECDIG_DBL q, b1, b1p1, b1b2, b1b2p1, r1r2;
|
|
6095
|
-
DECDIG
|
|
5004
|
+
DECDIG borrow1, borrow2;
|
|
6096
5005
|
DECDIG_DBL qb;
|
|
6097
5006
|
|
|
6098
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
6099
|
-
if (gfDebug) {
|
|
6100
|
-
VPrint(stdout, " VpDivd(c=a/b) a=% \n", a);
|
|
6101
|
-
VPrint(stdout, " b=% \n", b);
|
|
6102
|
-
}
|
|
6103
|
-
#endif /*BIGDECIMAL_DEBUG */
|
|
6104
|
-
|
|
6105
5007
|
VpSetNaN(r);
|
|
6106
5008
|
if (!VpIsDefOP(c, a, b, OP_SW_DIV)) goto Exit;
|
|
6107
5009
|
if (VpIsZero(a) && VpIsZero(b)) {
|
|
@@ -6118,30 +5020,17 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
|
|
|
6118
5020
|
VpSetZero(r, VpGetSign(a) * VpGetSign(b));
|
|
6119
5021
|
goto Exit;
|
|
6120
5022
|
}
|
|
6121
|
-
if (VpIsOne(b)) {
|
|
6122
|
-
/* divide by one */
|
|
6123
|
-
VpAsgn(c, a, VpGetSign(b));
|
|
6124
|
-
VpSetZero(r, VpGetSign(a));
|
|
6125
|
-
goto Exit;
|
|
6126
|
-
}
|
|
6127
5023
|
|
|
6128
5024
|
word_a = a->Prec;
|
|
6129
5025
|
word_b = b->Prec;
|
|
6130
5026
|
word_c = c->MaxPrec;
|
|
6131
5027
|
word_r = r->MaxPrec;
|
|
6132
5028
|
|
|
6133
|
-
if (word_a
|
|
5029
|
+
if (word_a > word_r || word_b + word_c - 2 >= word_r) goto space_error;
|
|
6134
5030
|
|
|
6135
|
-
|
|
6136
|
-
r->frac[
|
|
6137
|
-
|
|
6138
|
-
r->frac[ind_r] = a->frac[ind_r - 1];
|
|
6139
|
-
++ind_r;
|
|
6140
|
-
}
|
|
6141
|
-
while (ind_r < word_r) r->frac[ind_r++] = 0;
|
|
6142
|
-
|
|
6143
|
-
ind_c = 0;
|
|
6144
|
-
while (ind_c < word_c) c->frac[ind_c++] = 0;
|
|
5031
|
+
for (i = 0; i < word_a; ++i) r->frac[i] = a->frac[i];
|
|
5032
|
+
for (i = word_a; i < word_r; ++i) r->frac[i] = 0;
|
|
5033
|
+
for (i = 0; i < word_c; ++i) c->frac[i] = 0;
|
|
6145
5034
|
|
|
6146
5035
|
/* initial procedure */
|
|
6147
5036
|
b1 = b1p1 = b->frac[0];
|
|
@@ -6156,15 +5045,14 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
|
|
|
6156
5045
|
|
|
6157
5046
|
/* */
|
|
6158
5047
|
/* loop start */
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
ind_c = 1;
|
|
5048
|
+
nLoop = Min(word_c, word_r);
|
|
5049
|
+
ind_c = 0;
|
|
6162
5050
|
while (ind_c < nLoop) {
|
|
6163
5051
|
if (r->frac[ind_c] == 0) {
|
|
6164
5052
|
++ind_c;
|
|
6165
5053
|
continue;
|
|
6166
5054
|
}
|
|
6167
|
-
r1r2 = (DECDIG_DBL)r->frac[ind_c] * BASE + r->frac[ind_c + 1];
|
|
5055
|
+
r1r2 = (DECDIG_DBL)r->frac[ind_c] * BASE + (ind_c + 1 < word_r ? r->frac[ind_c + 1] : 0);
|
|
6168
5056
|
if (r1r2 == b1b2) {
|
|
6169
5057
|
/* The first two word digits is the same */
|
|
6170
5058
|
ind_b = 2;
|
|
@@ -6177,26 +5065,11 @@ VpDivd(Real *c, Real *r, Real *a, Real *b)
|
|
|
6177
5065
|
}
|
|
6178
5066
|
/* The first few word digits of r and b is the same and */
|
|
6179
5067
|
/* the first different word digit of w is greater than that */
|
|
6180
|
-
/* of b, so quotient is 1
|
|
6181
|
-
|
|
6182
|
-
ind_b = b->Prec - 1;
|
|
6183
|
-
ind_r = ind_c + ind_b;
|
|
6184
|
-
if (ind_r >= word_r) goto space_error;
|
|
6185
|
-
n = ind_b;
|
|
6186
|
-
for (i = 0; i <= n; ++i) {
|
|
6187
|
-
if (r->frac[ind_r] < b->frac[ind_b] + borrow) {
|
|
6188
|
-
r->frac[ind_r] += (BASE - (b->frac[ind_b] + borrow));
|
|
6189
|
-
borrow = 1;
|
|
6190
|
-
}
|
|
6191
|
-
else {
|
|
6192
|
-
r->frac[ind_r] = r->frac[ind_r] - b->frac[ind_b] - borrow;
|
|
6193
|
-
borrow = 0;
|
|
6194
|
-
}
|
|
6195
|
-
--ind_r;
|
|
6196
|
-
--ind_b;
|
|
6197
|
-
}
|
|
5068
|
+
/* of b, so quotient is 1. */
|
|
5069
|
+
q = 1;
|
|
6198
5070
|
++c->frac[ind_c];
|
|
6199
|
-
|
|
5071
|
+
ind_r = b->Prec + ind_c - 1;
|
|
5072
|
+
goto sub_mult;
|
|
6200
5073
|
}
|
|
6201
5074
|
/* The first two word digits is not the same, */
|
|
6202
5075
|
/* then compare magnitude, and divide actually. */
|
|
@@ -6249,49 +5122,26 @@ sub_mult:
|
|
|
6249
5122
|
}
|
|
6250
5123
|
|
|
6251
5124
|
r->frac[ind_r] -= borrow2;
|
|
6252
|
-
carry:
|
|
6253
|
-
ind_r = ind_c;
|
|
6254
|
-
while (c->frac[ind_r] >= BASE) {
|
|
6255
|
-
c->frac[ind_r] -= BASE;
|
|
6256
|
-
--ind_r;
|
|
6257
|
-
++c->frac[ind_r];
|
|
6258
|
-
}
|
|
6259
5125
|
}
|
|
6260
5126
|
/* End of operation, now final arrangement */
|
|
6261
5127
|
out_side:
|
|
6262
5128
|
c->Prec = word_c;
|
|
6263
5129
|
c->exponent = a->exponent;
|
|
6264
|
-
|
|
5130
|
+
VpSetSign(c, VpGetSign(a) * VpGetSign(b));
|
|
5131
|
+
if (!AddExponent(c, 1)) return 0;
|
|
6265
5132
|
if (!AddExponent(c, -(b->exponent))) return 0;
|
|
6266
5133
|
|
|
6267
|
-
VpSetSign(c, VpGetSign(a) * VpGetSign(b));
|
|
6268
5134
|
VpNmlz(c); /* normalize c */
|
|
6269
5135
|
r->Prec = word_r;
|
|
6270
5136
|
r->exponent = a->exponent;
|
|
6271
|
-
if (!AddExponent(r, 1)) return 0;
|
|
6272
5137
|
VpSetSign(r, VpGetSign(a));
|
|
6273
5138
|
VpNmlz(r); /* normalize r(remainder) */
|
|
6274
5139
|
goto Exit;
|
|
6275
5140
|
|
|
6276
5141
|
space_error:
|
|
6277
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
6278
|
-
if (gfDebug) {
|
|
6279
|
-
printf(" word_a=%"PRIuSIZE"\n", word_a);
|
|
6280
|
-
printf(" word_b=%"PRIuSIZE"\n", word_b);
|
|
6281
|
-
printf(" word_c=%"PRIuSIZE"\n", word_c);
|
|
6282
|
-
printf(" word_r=%"PRIuSIZE"\n", word_r);
|
|
6283
|
-
printf(" ind_r =%"PRIuSIZE"\n", ind_r);
|
|
6284
|
-
}
|
|
6285
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
6286
5142
|
rb_bug("ERROR(VpDivd): space for remainder too small.");
|
|
6287
5143
|
|
|
6288
5144
|
Exit:
|
|
6289
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
6290
|
-
if (gfDebug) {
|
|
6291
|
-
VPrint(stdout, " VpDivd(c=a/b), c=% \n", c);
|
|
6292
|
-
VPrint(stdout, " r=% \n", r);
|
|
6293
|
-
}
|
|
6294
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
6295
5145
|
return c->Prec * BASE_FIG;
|
|
6296
5146
|
}
|
|
6297
5147
|
|
|
@@ -6414,13 +5264,6 @@ Exit:
|
|
|
6414
5264
|
if (val > 1) val = 1;
|
|
6415
5265
|
else if (val < -1) val = -1;
|
|
6416
5266
|
|
|
6417
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
6418
|
-
if (gfDebug) {
|
|
6419
|
-
VPrint(stdout, " VpComp a=%\n", a);
|
|
6420
|
-
VPrint(stdout, " b=%\n", b);
|
|
6421
|
-
printf(" ans=%d\n", val);
|
|
6422
|
-
}
|
|
6423
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
6424
5267
|
return (int)val;
|
|
6425
5268
|
}
|
|
6426
5269
|
|
|
@@ -6538,25 +5381,29 @@ VPrint(FILE *fp, const char *cntl_chr, Real *a)
|
|
|
6538
5381
|
static void
|
|
6539
5382
|
VpFormatSt(char *psz, size_t fFmt)
|
|
6540
5383
|
{
|
|
6541
|
-
size_t
|
|
6542
|
-
char
|
|
5384
|
+
size_t iend, idig = 0, iexp = 0, nspaces;
|
|
5385
|
+
char *p;
|
|
6543
5386
|
|
|
6544
5387
|
if (fFmt == 0) return;
|
|
6545
5388
|
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
5389
|
+
iend = strlen(psz);
|
|
5390
|
+
|
|
5391
|
+
if ((p = strchr(psz, '.'))) {
|
|
5392
|
+
idig = (p - psz) + 1;
|
|
5393
|
+
}
|
|
5394
|
+
if ((p = strchr(psz, 'E')) || (p = strchr(psz, 'e'))) {
|
|
5395
|
+
iexp = p - psz;
|
|
5396
|
+
}
|
|
5397
|
+
if (idig == 0 || idig > iexp) return;
|
|
5398
|
+
|
|
5399
|
+
nspaces = (iexp - idig - 1) / fFmt;
|
|
5400
|
+
p = psz + iend + 1;
|
|
5401
|
+
for (size_t i = nspaces; i > 0; i--) {
|
|
5402
|
+
char *src = psz + idig + i * fFmt;
|
|
5403
|
+
char *dst = psz + idig + i * (fFmt + 1);
|
|
5404
|
+
memmove(dst, src, p - src);
|
|
5405
|
+
dst[-1] = ' ';
|
|
5406
|
+
p = src;
|
|
6560
5407
|
}
|
|
6561
5408
|
}
|
|
6562
5409
|
|
|
@@ -6838,7 +5685,7 @@ VP_EXPORT int
|
|
|
6838
5685
|
VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, const char *exp_chr, size_t ne)
|
|
6839
5686
|
{
|
|
6840
5687
|
size_t i, j, ind_a, ma, mi, me;
|
|
6841
|
-
SIGNED_VALUE e
|
|
5688
|
+
SIGNED_VALUE e;
|
|
6842
5689
|
int sign, signe, exponent_overflow;
|
|
6843
5690
|
|
|
6844
5691
|
/* get exponent part */
|
|
@@ -6861,23 +5708,13 @@ VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, con
|
|
|
6861
5708
|
++me;
|
|
6862
5709
|
}
|
|
6863
5710
|
while (i < me) {
|
|
6864
|
-
|
|
6865
|
-
|
|
6866
|
-
|
|
6867
|
-
}
|
|
6868
|
-
es = e * (SIGNED_VALUE)BASE_FIG;
|
|
6869
|
-
if (MUL_OVERFLOW_SIGNED_VALUE_P(e, 10) ||
|
|
6870
|
-
SIGNED_VALUE_MAX - (exp_chr[i] - '0') < e * 10)
|
|
6871
|
-
goto exp_overflow;
|
|
6872
|
-
e = e * 10 + exp_chr[i] - '0';
|
|
6873
|
-
if (MUL_OVERFLOW_SIGNED_VALUE_P(e, (SIGNED_VALUE)BASE_FIG))
|
|
6874
|
-
goto exp_overflow;
|
|
6875
|
-
if (es > (SIGNED_VALUE)(e * BASE_FIG)) {
|
|
6876
|
-
exp_overflow:
|
|
5711
|
+
int dig = exp_chr[i] - '0';
|
|
5712
|
+
if (MUL_OVERFLOW_SIGNED_VALUE_P(e, 10) ||
|
|
5713
|
+
ADD_OVERFLOW_SIGNED_VALUE_P(e * 10, signe * dig)) {
|
|
6877
5714
|
exponent_overflow = 1;
|
|
6878
|
-
e = es; /* keep sign */
|
|
6879
5715
|
break;
|
|
6880
5716
|
}
|
|
5717
|
+
e = e * 10 + signe * dig;
|
|
6881
5718
|
++i;
|
|
6882
5719
|
}
|
|
6883
5720
|
}
|
|
@@ -6896,34 +5733,32 @@ VpCtoV(Real *a, const char *int_chr, size_t ni, const char *frac, size_t nf, con
|
|
|
6896
5733
|
++mi;
|
|
6897
5734
|
}
|
|
6898
5735
|
}
|
|
5736
|
+
/* skip leading zeros in integer part */
|
|
5737
|
+
while (i < mi && int_chr[i] == '0') {
|
|
5738
|
+
++i;
|
|
5739
|
+
--ni;
|
|
5740
|
+
}
|
|
6899
5741
|
|
|
6900
|
-
|
|
6901
|
-
|
|
6902
|
-
|
|
6903
|
-
|
|
6904
|
-
|
|
5742
|
+
/* set actual exponent size. */
|
|
5743
|
+
if (ADD_OVERFLOW_SIGNED_VALUE_P(e, (SIGNED_VALUE)ni)) {
|
|
5744
|
+
exponent_overflow = 1;
|
|
5745
|
+
} else {
|
|
5746
|
+
e += ni;
|
|
5747
|
+
}
|
|
6905
5748
|
|
|
6906
5749
|
/* Adjust the exponent so that it is the multiple of BASE_FIG. */
|
|
6907
|
-
j =
|
|
6908
|
-
|
|
6909
|
-
|
|
6910
|
-
|
|
6911
|
-
|
|
6912
|
-
ef = eb / (SIGNED_VALUE)BASE_FIG;
|
|
6913
|
-
ef = eb - ef * (SIGNED_VALUE)BASE_FIG;
|
|
6914
|
-
if (ef) {
|
|
6915
|
-
++j; /* Means to add one more preceding zero */
|
|
6916
|
-
++e;
|
|
6917
|
-
}
|
|
5750
|
+
j = (BASE_FIG - e % BASE_FIG) % BASE_FIG;
|
|
5751
|
+
if (ADD_OVERFLOW_SIGNED_VALUE_P(e, (SIGNED_VALUE)j)) {
|
|
5752
|
+
exponent_overflow = 1;
|
|
5753
|
+
} else {
|
|
5754
|
+
e += j;
|
|
6918
5755
|
}
|
|
6919
5756
|
|
|
6920
|
-
|
|
6921
|
-
|
|
6922
|
-
if (exponent_overflow) {
|
|
5757
|
+
if (exponent_overflow || e < EXPONENT_MIN || e > EXPONENT_MAX) {
|
|
6923
5758
|
int zero = 1;
|
|
6924
5759
|
for ( ; i < mi && zero; i++) zero = int_chr[i] == '0';
|
|
6925
5760
|
for (i = 0; i < nf && zero; i++) zero = frac[i] == '0';
|
|
6926
|
-
if (!zero &&
|
|
5761
|
+
if (!zero && e > 0) {
|
|
6927
5762
|
VpSetInf(a, sign);
|
|
6928
5763
|
VpException(VP_EXCEPTION_INFINITY, "exponent overflow",0);
|
|
6929
5764
|
}
|
|
@@ -6973,7 +5808,7 @@ Final:
|
|
|
6973
5808
|
++j;
|
|
6974
5809
|
}
|
|
6975
5810
|
a->Prec = ind_a + 1;
|
|
6976
|
-
a->exponent =
|
|
5811
|
+
a->exponent = e / (SIGNED_VALUE)BASE_FIG;
|
|
6977
5812
|
VpSetSign(a, sign);
|
|
6978
5813
|
VpNmlz(a);
|
|
6979
5814
|
return 1;
|
|
@@ -7045,254 +5880,9 @@ VpVtoD(double *d, SIGNED_VALUE *e, Real *m)
|
|
|
7045
5880
|
*d *= VpGetSign(m);
|
|
7046
5881
|
|
|
7047
5882
|
Exit:
|
|
7048
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7049
|
-
if (gfDebug) {
|
|
7050
|
-
VPrint(stdout, " VpVtoD: m=%\n", m);
|
|
7051
|
-
printf(" d=%e * 10 **%ld\n", *d, *e);
|
|
7052
|
-
printf(" BIGDECIMAL_DOUBLE_FIGURES = %d\n", BIGDECIMAL_DOUBLE_FIGURES);
|
|
7053
|
-
}
|
|
7054
|
-
#endif /*BIGDECIMAL_DEBUG */
|
|
7055
5883
|
return f;
|
|
7056
5884
|
}
|
|
7057
5885
|
|
|
7058
|
-
/*
|
|
7059
|
-
* m <- d
|
|
7060
|
-
*/
|
|
7061
|
-
VP_EXPORT void
|
|
7062
|
-
VpDtoV(Real *m, double d)
|
|
7063
|
-
{
|
|
7064
|
-
size_t ind_m, mm;
|
|
7065
|
-
SIGNED_VALUE ne;
|
|
7066
|
-
DECDIG i;
|
|
7067
|
-
double val, val2;
|
|
7068
|
-
|
|
7069
|
-
if (isnan(d)) {
|
|
7070
|
-
VpSetNaN(m);
|
|
7071
|
-
goto Exit;
|
|
7072
|
-
}
|
|
7073
|
-
if (isinf(d)) {
|
|
7074
|
-
if (d > 0.0) VpSetPosInf(m);
|
|
7075
|
-
else VpSetNegInf(m);
|
|
7076
|
-
goto Exit;
|
|
7077
|
-
}
|
|
7078
|
-
|
|
7079
|
-
if (d == 0.0) {
|
|
7080
|
-
VpSetZero(m, 1);
|
|
7081
|
-
goto Exit;
|
|
7082
|
-
}
|
|
7083
|
-
val = (d > 0.) ? d : -d;
|
|
7084
|
-
ne = 0;
|
|
7085
|
-
if (val >= 1.0) {
|
|
7086
|
-
while (val >= 1.0) {
|
|
7087
|
-
val /= (double)BASE;
|
|
7088
|
-
++ne;
|
|
7089
|
-
}
|
|
7090
|
-
}
|
|
7091
|
-
else {
|
|
7092
|
-
val2 = 1.0 / (double)BASE;
|
|
7093
|
-
while (val < val2) {
|
|
7094
|
-
val *= (double)BASE;
|
|
7095
|
-
--ne;
|
|
7096
|
-
}
|
|
7097
|
-
}
|
|
7098
|
-
/* Now val = 0.xxxxx*BASE**ne */
|
|
7099
|
-
|
|
7100
|
-
mm = m->MaxPrec;
|
|
7101
|
-
memset(m->frac, 0, mm * sizeof(DECDIG));
|
|
7102
|
-
for (ind_m = 0; val > 0.0 && ind_m < mm; ind_m++) {
|
|
7103
|
-
val *= (double)BASE;
|
|
7104
|
-
i = (DECDIG)val;
|
|
7105
|
-
val -= (double)i;
|
|
7106
|
-
m->frac[ind_m] = i;
|
|
7107
|
-
}
|
|
7108
|
-
if (ind_m >= mm) ind_m = mm - 1;
|
|
7109
|
-
VpSetSign(m, (d > 0.0) ? 1 : -1);
|
|
7110
|
-
m->Prec = ind_m + 1;
|
|
7111
|
-
m->exponent = ne;
|
|
7112
|
-
|
|
7113
|
-
VpInternalRound(m, 0, (m->Prec > 0) ? m->frac[m->Prec-1] : 0,
|
|
7114
|
-
(DECDIG)(val*(double)BASE));
|
|
7115
|
-
|
|
7116
|
-
Exit:
|
|
7117
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7118
|
-
if (gfDebug) {
|
|
7119
|
-
printf("VpDtoV d=%30.30e\n", d);
|
|
7120
|
-
VPrint(stdout, " m=%\n", m);
|
|
7121
|
-
}
|
|
7122
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7123
|
-
return;
|
|
7124
|
-
}
|
|
7125
|
-
|
|
7126
|
-
/*
|
|
7127
|
-
* m <- ival
|
|
7128
|
-
*/
|
|
7129
|
-
#if 0 /* unused */
|
|
7130
|
-
VP_EXPORT void
|
|
7131
|
-
VpItoV(Real *m, SIGNED_VALUE ival)
|
|
7132
|
-
{
|
|
7133
|
-
size_t mm, ind_m;
|
|
7134
|
-
size_t val, v1, v2, v;
|
|
7135
|
-
int isign;
|
|
7136
|
-
SIGNED_VALUE ne;
|
|
7137
|
-
|
|
7138
|
-
if (ival == 0) {
|
|
7139
|
-
VpSetZero(m, 1);
|
|
7140
|
-
goto Exit;
|
|
7141
|
-
}
|
|
7142
|
-
isign = 1;
|
|
7143
|
-
val = ival;
|
|
7144
|
-
if (ival < 0) {
|
|
7145
|
-
isign = -1;
|
|
7146
|
-
val =(size_t)(-ival);
|
|
7147
|
-
}
|
|
7148
|
-
ne = 0;
|
|
7149
|
-
ind_m = 0;
|
|
7150
|
-
mm = m->MaxPrec;
|
|
7151
|
-
while (ind_m < mm) {
|
|
7152
|
-
m->frac[ind_m] = 0;
|
|
7153
|
-
++ind_m;
|
|
7154
|
-
}
|
|
7155
|
-
ind_m = 0;
|
|
7156
|
-
while (val > 0) {
|
|
7157
|
-
if (val) {
|
|
7158
|
-
v1 = val;
|
|
7159
|
-
v2 = 1;
|
|
7160
|
-
while (v1 >= BASE) {
|
|
7161
|
-
v1 /= BASE;
|
|
7162
|
-
v2 *= BASE;
|
|
7163
|
-
}
|
|
7164
|
-
val = val - v2 * v1;
|
|
7165
|
-
v = v1;
|
|
7166
|
-
}
|
|
7167
|
-
else {
|
|
7168
|
-
v = 0;
|
|
7169
|
-
}
|
|
7170
|
-
m->frac[ind_m] = v;
|
|
7171
|
-
++ind_m;
|
|
7172
|
-
++ne;
|
|
7173
|
-
}
|
|
7174
|
-
m->Prec = ind_m - 1;
|
|
7175
|
-
m->exponent = ne;
|
|
7176
|
-
VpSetSign(m, isign);
|
|
7177
|
-
VpNmlz(m);
|
|
7178
|
-
|
|
7179
|
-
Exit:
|
|
7180
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7181
|
-
if (gfDebug) {
|
|
7182
|
-
printf(" VpItoV i=%d\n", ival);
|
|
7183
|
-
VPrint(stdout, " m=%\n", m);
|
|
7184
|
-
}
|
|
7185
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7186
|
-
return;
|
|
7187
|
-
}
|
|
7188
|
-
#endif
|
|
7189
|
-
|
|
7190
|
-
/*
|
|
7191
|
-
* y = SQRT(x), y*y - x =>0
|
|
7192
|
-
*/
|
|
7193
|
-
VP_EXPORT int
|
|
7194
|
-
VpSqrt(Real *y, Real *x)
|
|
7195
|
-
{
|
|
7196
|
-
Real *f = NULL;
|
|
7197
|
-
Real *r = NULL;
|
|
7198
|
-
size_t y_prec;
|
|
7199
|
-
SIGNED_VALUE n, e;
|
|
7200
|
-
ssize_t nr;
|
|
7201
|
-
double val;
|
|
7202
|
-
|
|
7203
|
-
/* Zero or +Infinity ? */
|
|
7204
|
-
if (VpIsZero(x) || VpIsPosInf(x)) {
|
|
7205
|
-
VpAsgn(y,x,1);
|
|
7206
|
-
goto Exit;
|
|
7207
|
-
}
|
|
7208
|
-
|
|
7209
|
-
/* Negative ? */
|
|
7210
|
-
if (BIGDECIMAL_NEGATIVE_P(x)) {
|
|
7211
|
-
VpSetNaN(y);
|
|
7212
|
-
return VpException(VP_EXCEPTION_OP, "sqrt of negative value", 0);
|
|
7213
|
-
}
|
|
7214
|
-
|
|
7215
|
-
/* NaN ? */
|
|
7216
|
-
if (VpIsNaN(x)) {
|
|
7217
|
-
VpSetNaN(y);
|
|
7218
|
-
return VpException(VP_EXCEPTION_OP, "sqrt of 'NaN'(Not a Number)", 0);
|
|
7219
|
-
}
|
|
7220
|
-
|
|
7221
|
-
/* One ? */
|
|
7222
|
-
if (VpIsOne(x)) {
|
|
7223
|
-
VpSetOne(y);
|
|
7224
|
-
goto Exit;
|
|
7225
|
-
}
|
|
7226
|
-
|
|
7227
|
-
n = (SIGNED_VALUE)y->MaxPrec;
|
|
7228
|
-
if (x->MaxPrec > (size_t)n) n = (ssize_t)x->MaxPrec;
|
|
7229
|
-
|
|
7230
|
-
/* allocate temporally variables */
|
|
7231
|
-
/* TODO: reconsider MaxPrec of f and r */
|
|
7232
|
-
f = NewOneNolimit(1, y->MaxPrec * (BASE_FIG + 2));
|
|
7233
|
-
r = NewOneNolimit(1, (n + n) * (BASE_FIG + 2));
|
|
7234
|
-
|
|
7235
|
-
nr = 0;
|
|
7236
|
-
y_prec = y->MaxPrec;
|
|
7237
|
-
|
|
7238
|
-
VpVtoD(&val, &e, x); /* val <- x */
|
|
7239
|
-
e /= (SIGNED_VALUE)BASE_FIG;
|
|
7240
|
-
n = e / 2;
|
|
7241
|
-
if (e - n * 2 != 0) {
|
|
7242
|
-
val /= BASE;
|
|
7243
|
-
n = (e + 1) / 2;
|
|
7244
|
-
}
|
|
7245
|
-
VpDtoV(y, sqrt(val)); /* y <- sqrt(val) */
|
|
7246
|
-
y->exponent += n;
|
|
7247
|
-
n = (SIGNED_VALUE)roomof(BIGDECIMAL_DOUBLE_FIGURES, BASE_FIG);
|
|
7248
|
-
y->MaxPrec = Min((size_t)n , y_prec);
|
|
7249
|
-
f->MaxPrec = y->MaxPrec + 1;
|
|
7250
|
-
n = (SIGNED_VALUE)(y_prec * BASE_FIG);
|
|
7251
|
-
if (n > (SIGNED_VALUE)maxnr) n = (SIGNED_VALUE)maxnr;
|
|
7252
|
-
|
|
7253
|
-
/*
|
|
7254
|
-
* Perform: y_{n+1} = (y_n - x/y_n) / 2
|
|
7255
|
-
*/
|
|
7256
|
-
do {
|
|
7257
|
-
y->MaxPrec *= 2;
|
|
7258
|
-
if (y->MaxPrec > y_prec) y->MaxPrec = y_prec;
|
|
7259
|
-
f->MaxPrec = y->MaxPrec;
|
|
7260
|
-
VpDivd(f, r, x, y); /* f = x/y */
|
|
7261
|
-
VpAddSub(r, f, y, -1); /* r = f - y */
|
|
7262
|
-
VpMult(f, VpConstPt5, r); /* f = 0.5*r */
|
|
7263
|
-
if (VpIsZero(f))
|
|
7264
|
-
goto converge;
|
|
7265
|
-
VpAddSub(r, f, y, 1); /* r = y + f */
|
|
7266
|
-
VpAsgn(y, r, 1); /* y = r */
|
|
7267
|
-
} while (++nr < n);
|
|
7268
|
-
|
|
7269
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7270
|
-
if (gfDebug) {
|
|
7271
|
-
printf("ERROR(VpSqrt): did not converge within %ld iterations.\n", nr);
|
|
7272
|
-
}
|
|
7273
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7274
|
-
y->MaxPrec = y_prec;
|
|
7275
|
-
|
|
7276
|
-
converge:
|
|
7277
|
-
VpChangeSign(y, 1);
|
|
7278
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7279
|
-
if (gfDebug) {
|
|
7280
|
-
VpMult(r, y, y);
|
|
7281
|
-
VpAddSub(f, x, r, -1);
|
|
7282
|
-
printf("VpSqrt: iterations = %"PRIdSIZE"\n", nr);
|
|
7283
|
-
VPrint(stdout, " y =% \n", y);
|
|
7284
|
-
VPrint(stdout, " x =% \n", x);
|
|
7285
|
-
VPrint(stdout, " x-y*y = % \n", f);
|
|
7286
|
-
}
|
|
7287
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7288
|
-
y->MaxPrec = y_prec;
|
|
7289
|
-
|
|
7290
|
-
Exit:
|
|
7291
|
-
rbd_free_struct(f);
|
|
7292
|
-
rbd_free_struct(r);
|
|
7293
|
-
return 1;
|
|
7294
|
-
}
|
|
7295
|
-
|
|
7296
5886
|
/*
|
|
7297
5887
|
* Round relatively from the decimal point.
|
|
7298
5888
|
* f: rounding mode
|
|
@@ -7469,7 +6059,7 @@ VpLeftRound(Real *y, unsigned short f, ssize_t nf)
|
|
|
7469
6059
|
DECDIG v;
|
|
7470
6060
|
if (!VpHasVal(y)) return 0; /* Unable to round */
|
|
7471
6061
|
v = y->frac[0];
|
|
7472
|
-
nf -=
|
|
6062
|
+
nf -= y->exponent * (ssize_t)BASE_FIG;
|
|
7473
6063
|
while ((v /= 10) != 0) nf--;
|
|
7474
6064
|
nf += (ssize_t)BASE_FIG-1;
|
|
7475
6065
|
return VpMidRound(y, f, nf);
|
|
@@ -7606,117 +6196,9 @@ VpFrac(Real *y, Real *x)
|
|
|
7606
6196
|
VpNmlz(y);
|
|
7607
6197
|
|
|
7608
6198
|
Exit:
|
|
7609
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7610
|
-
if (gfDebug) {
|
|
7611
|
-
VPrint(stdout, "VpFrac y=%\n", y);
|
|
7612
|
-
VPrint(stdout, " x=%\n", x);
|
|
7613
|
-
}
|
|
7614
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7615
6199
|
return;
|
|
7616
6200
|
}
|
|
7617
6201
|
|
|
7618
|
-
/*
|
|
7619
|
-
* y = x ** n
|
|
7620
|
-
*/
|
|
7621
|
-
VP_EXPORT int
|
|
7622
|
-
VpPowerByInt(Real *y, Real *x, SIGNED_VALUE n)
|
|
7623
|
-
{
|
|
7624
|
-
size_t s, ss;
|
|
7625
|
-
ssize_t sign;
|
|
7626
|
-
Real *w1 = NULL;
|
|
7627
|
-
Real *w2 = NULL;
|
|
7628
|
-
|
|
7629
|
-
if (VpIsZero(x)) {
|
|
7630
|
-
if (n == 0) {
|
|
7631
|
-
VpSetOne(y);
|
|
7632
|
-
goto Exit;
|
|
7633
|
-
}
|
|
7634
|
-
sign = VpGetSign(x);
|
|
7635
|
-
if (n < 0) {
|
|
7636
|
-
n = -n;
|
|
7637
|
-
if (sign < 0) sign = (n % 2) ? -1 : 1;
|
|
7638
|
-
VpSetInf(y, sign);
|
|
7639
|
-
}
|
|
7640
|
-
else {
|
|
7641
|
-
if (sign < 0) sign = (n % 2) ? -1 : 1;
|
|
7642
|
-
VpSetZero(y,sign);
|
|
7643
|
-
}
|
|
7644
|
-
goto Exit;
|
|
7645
|
-
}
|
|
7646
|
-
if (VpIsNaN(x)) {
|
|
7647
|
-
VpSetNaN(y);
|
|
7648
|
-
goto Exit;
|
|
7649
|
-
}
|
|
7650
|
-
if (VpIsInf(x)) {
|
|
7651
|
-
if (n == 0) {
|
|
7652
|
-
VpSetOne(y);
|
|
7653
|
-
goto Exit;
|
|
7654
|
-
}
|
|
7655
|
-
if (n > 0) {
|
|
7656
|
-
VpSetInf(y, (n % 2 == 0 || VpIsPosInf(x)) ? 1 : -1);
|
|
7657
|
-
goto Exit;
|
|
7658
|
-
}
|
|
7659
|
-
VpSetZero(y, (n % 2 == 0 || VpIsPosInf(x)) ? 1 : -1);
|
|
7660
|
-
goto Exit;
|
|
7661
|
-
}
|
|
7662
|
-
|
|
7663
|
-
if (x->exponent == 1 && x->Prec == 1 && x->frac[0] == 1) {
|
|
7664
|
-
/* abs(x) = 1 */
|
|
7665
|
-
VpSetOne(y);
|
|
7666
|
-
if (BIGDECIMAL_POSITIVE_P(x)) goto Exit;
|
|
7667
|
-
if ((n % 2) == 0) goto Exit;
|
|
7668
|
-
VpSetSign(y, -1);
|
|
7669
|
-
goto Exit;
|
|
7670
|
-
}
|
|
7671
|
-
|
|
7672
|
-
if (n > 0) sign = 1;
|
|
7673
|
-
else if (n < 0) {
|
|
7674
|
-
sign = -1;
|
|
7675
|
-
n = -n;
|
|
7676
|
-
}
|
|
7677
|
-
else {
|
|
7678
|
-
VpSetOne(y);
|
|
7679
|
-
goto Exit;
|
|
7680
|
-
}
|
|
7681
|
-
|
|
7682
|
-
/* Allocate working variables */
|
|
7683
|
-
/* TODO: reconsider MaxPrec of w1 and w2 */
|
|
7684
|
-
w1 = NewZeroNolimit(1, (y->MaxPrec + 2) * BASE_FIG);
|
|
7685
|
-
w2 = NewZeroNolimit(1, (w1->MaxPrec * 2 + 1) * BASE_FIG);
|
|
7686
|
-
|
|
7687
|
-
/* calculation start */
|
|
7688
|
-
|
|
7689
|
-
VpAsgn(y, x, 1);
|
|
7690
|
-
--n;
|
|
7691
|
-
while (n > 0) {
|
|
7692
|
-
VpAsgn(w1, x, 1);
|
|
7693
|
-
s = 1;
|
|
7694
|
-
while (ss = s, (s += s) <= (size_t)n) {
|
|
7695
|
-
VpMult(w2, w1, w1);
|
|
7696
|
-
VpAsgn(w1, w2, 1);
|
|
7697
|
-
}
|
|
7698
|
-
n -= (SIGNED_VALUE)ss;
|
|
7699
|
-
VpMult(w2, y, w1);
|
|
7700
|
-
VpAsgn(y, w2, 1);
|
|
7701
|
-
}
|
|
7702
|
-
if (sign < 0) {
|
|
7703
|
-
VpDivd(w1, w2, VpConstOne, y);
|
|
7704
|
-
VpAsgn(y, w1, 1);
|
|
7705
|
-
}
|
|
7706
|
-
|
|
7707
|
-
Exit:
|
|
7708
|
-
#ifdef BIGDECIMAL_DEBUG
|
|
7709
|
-
if (gfDebug) {
|
|
7710
|
-
VPrint(stdout, "VpPowerByInt y=%\n", y);
|
|
7711
|
-
VPrint(stdout, "VpPowerByInt x=%\n", x);
|
|
7712
|
-
printf(" n=%"PRIdVALUE"\n", n);
|
|
7713
|
-
}
|
|
7714
|
-
#endif /* BIGDECIMAL_DEBUG */
|
|
7715
|
-
rbd_free_struct(w2);
|
|
7716
|
-
rbd_free_struct(w1);
|
|
7717
|
-
return 1;
|
|
7718
|
-
}
|
|
7719
|
-
|
|
7720
6202
|
#ifdef BIGDECIMAL_DEBUG
|
|
7721
6203
|
int
|
|
7722
6204
|
VpVarCheck(Real * v)
|