1 /* Decimal Number module for the decNumber C Library
2 Copyright (C) 2005 Free Software Foundation, Inc.
3 Contributed by IBM Corporation. Author Mike Cowlishaw.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 /* ------------------------------------------------------------------ */
23 /* This module comprises the routines for Standard Decimal Arithmetic */
24 /* as defined in the specification which may be found on the */
25 /* http://www2.hursley.ibm.com/decimal web pages. It implements both */
26 /* the full ('extended') arithmetic and the simpler ('subset') */
31 /* 1. This code is ANSI C89 except: */
33 /* a) Line comments (double forward slash) are used. (Most C */
34 /* compilers accept these. If yours does not, a simple script */
35 /* can be used to convert them to ANSI C comments.) */
37 /* b) Types from C99 stdint.h are used. If you do not have this */
38 /* header file, see the User's Guide section of the decNumber */
39 /* documentation; this lists the necessary definitions. */
41 /* c) If DECDPUN>4, non-ANSI 64-bit 'long long' types are used. */
42 /* To avoid these, set DECDPUN <= 4 (see documentation). */
44 /* 2. The decNumber format which this library uses is optimized for */
45 /* efficient processing of relatively short numbers; in particular */
46 /* it allows the use of fixed sized structures and minimizes copy */
47 /* and move operations. It does, however, support arbitrary */
48 /* precision (up to 999,999,999 digits) and arbitrary exponent */
49 /* range (Emax in the range 0 through 999,999,999 and Emin in the */
50 /* range -999,999,999 through 0). */
52 /* 3. Operands to operator functions are never modified unless they */
53 /* are also specified to be the result number (which is always */
54 /* permitted). Other than that case, operands may not overlap. */
56 /* 4. Error handling: the type of the error is ORed into the status */
57 /* flags in the current context (decContext structure). The */
58 /* SIGFPE signal is then raised if the corresponding trap-enabler */
59 /* flag in the decContext is set (is 1). */
61 /* It is the responsibility of the caller to clear the status */
62 /* flags as required. */
64 /* The result of any routine which returns a number will always */
65 /* be a valid number (which may be a special value, such as an */
66 /* Infinity or NaN). */
68 /* 5. The decNumber format is not an exchangeable concrete */
69 /* representation as it comprises fields which may be machine- */
70 /* dependent (big-endian or little-endian, for example). */
71 /* Canonical conversions to and from strings are provided; other */
72 /* conversions are available in separate modules. */
74 /* 6. Normally, input operands are assumed to be valid. Set DECCHECK */
75 /* to 1 for extended operand checking (including NULL operands). */
76 /* Results are undefined if a badly-formed structure (or a NULL */
77 /* NULL pointer to a structure) is provided, though with DECCHECK */
78 /* enabled the operator routines are protected against exceptions. */
79 /* (Except if the result pointer is NULL, which is unrecoverable.) */
81 /* However, the routines will never cause exceptions if they are */
82 /* given well-formed operands, even if the value of the operands */
83 /* is inappropriate for the operation and DECCHECK is not set. */
85 /* 7. Subset arithmetic is available only if DECSUBSET is set to 1. */
86 /* ------------------------------------------------------------------ */
87 /* Implementation notes for maintenance of this module: */
89 /* 1. Storage leak protection: Routines which use malloc are not */
90 /* permitted to use return for fastpath or error exits (i.e., */
91 /* they follow strict structured programming conventions). */
92 /* Instead they have a do{}while(0); construct surrounding the */
93 /* code which is protected -- break may be used from this. */
94 /* Other routines are allowed to use the return statement inline. */
96 /* Storage leak accounting can be enabled using DECALLOC. */
98 /* 2. All loops use the for(;;) construct. Any do construct is for */
99 /* protection as just described. */
101 /* 3. Setting status in the context must always be the very last */
102 /* action in a routine, as non-0 status may raise a trap and hence */
103 /* the call to set status may not return (if the handler uses long */
104 /* jump). Therefore all cleanup must be done first. In general, */
105 /* to achieve this we accumulate status and only finally apply it */
106 /* by calling decContextSetStatus (via decStatus). */
108 /* Routines which allocate storage cannot, therefore, use the */
109 /* 'top level' routines which could cause a non-returning */
110 /* transfer of control. The decXxxxOp routines are safe (do not */
111 /* call decStatus even if traps are set in the context) and should */
112 /* be used instead (they are also a little faster). */
114 /* 4. Exponent checking is minimized by allowing the exponent to */
115 /* grow outside its limits during calculations, provided that */
116 /* the decFinalize function is called later. Multiplication and */
117 /* division, and intermediate calculations in exponentiation, */
118 /* require more careful checks because of the risk of 31-bit */
119 /* overflow (the most negative valid exponent is -1999999997, for */
120 /* a 999999999-digit number with adjusted exponent of -999999999). */
122 /* 5. Rounding is deferred until finalization of results, with any */
123 /* 'off to the right' data being represented as a single digit */
124 /* residue (in the range -1 through 9). This avoids any double- */
125 /* rounding when more than one shortening takes place (for */
126 /* example, when a result is subnormal). */
128 /* 6. The digits count is allowed to rise to a multiple of DECDPUN */
129 /* during many operations, so whole Units are handled and exact */
130 /* accounting of digits is not needed. The correct digits value */
131 /* is found by decGetDigits, which accounts for leading zeros. */
132 /* This must be called before any rounding if the number of digits */
133 /* is not known exactly. */
135 /* 7. We use the multiply-by-reciprocal 'trick' for partitioning */
136 /* numbers up to four digits, using appropriate constants. This */
137 /* is not useful for longer numbers because overflow of 32 bits */
138 /* would lead to 4 multiplies, which is almost as expensive as */
139 /* a divide (unless we assumed floating-point multiply available). */
141 /* 8. Unusual abbreviations possibly used in the commentary: */
142 /* lhs -- left hand side (operand, of an operation) */
143 /* lsd -- least significant digit (of coefficient) */
144 /* lsu -- least significant Unit (of coefficient) */
145 /* msd -- most significant digit (of coefficient) */
146 /* msu -- most significant Unit (of coefficient) */
147 /* rhs -- right hand side (operand, of an operation) */
148 /* +ve -- positive */
149 /* -ve -- negative */
150 /* ------------------------------------------------------------------ */
152 /* Some of glibc's string inlines cause warnings. Plus we'd rather
153 rely on (and therefore test) GCC's string builtins. */
154 #define __NO_STRING_INLINES
156 #include <stdlib.h> /* for malloc, free, etc. */
157 #include <stdio.h> /* for printf [if needed] */
158 #include <string.h> /* for strcpy */
159 #include <ctype.h> /* for lower */
161 #include "decNumber.h" /* base number library */
162 #include "decNumberLocal.h" /* decNumber local types, etc. */
165 /* Public constant array: powers of ten (powers[n]==10**n) */
166 const uInt powers
[] = { 1, 10, 100, 1000, 10000, 100000, 1000000,
167 10000000, 100000000, 1000000000
170 /* Local constants */
171 #define DIVIDE 0x80 /* Divide operators */
172 #define REMAINDER 0x40 /* .. */
173 #define DIVIDEINT 0x20 /* .. */
174 #define REMNEAR 0x10 /* .. */
175 #define COMPARE 0x01 /* Compare operators */
176 #define COMPMAX 0x02 /* .. */
177 #define COMPMIN 0x03 /* .. */
178 #define COMPNAN 0x04 /* .. [NaN processing] */
180 #define DEC_sNaN 0x40000000 /* local status: sNaN signal */
181 #define BADINT (Int)0x80000000 /* most-negative Int; error indicator */
183 static Unit one
[] = { 1 }; /* Unit array of 1, used for incrementing */
185 /* Granularity-dependent code */
187 #define eInt Int /* extended integer */
188 #define ueInt uInt /* unsigned extended integer */
189 /* Constant multipliers for divide-by-power-of five using reciprocal */
190 /* multiply, after removing powers of 2 by shifting, and final shift */
191 /* of 17 [we only need up to **4] */
192 static const uInt multies
[] = { 131073, 26215, 5243, 1049, 210 };
194 /* QUOT10 -- macro to return the quotient of unit u divided by 10**n */
195 #define QUOT10(u, n) ((((uInt)(u)>>(n))*multies[n])>>17)
197 /* For DECDPUN>4 we currently use non-ANSI 64-bit types. These could */
198 /* be replaced by subroutine calls later. */
202 typedef signed long long Long
;
203 typedef unsigned long long uLong
;
204 #define eInt Long /* extended integer */
205 #define ueInt uLong /* unsigned extended integer */
209 static decNumber
*decAddOp (decNumber
*, decNumber
*, decNumber
*,
210 decContext
*, uByte
, uInt
*);
211 static void decApplyRound (decNumber
*, decContext
*, Int
, uInt
*);
212 static Int
decCompare (decNumber
* lhs
, decNumber
* rhs
);
213 static decNumber
*decCompareOp (decNumber
*, decNumber
*, decNumber
*,
214 decContext
*, Flag
, uInt
*);
215 static void decCopyFit (decNumber
*, decNumber
*, decContext
*,
217 static decNumber
*decDivideOp (decNumber
*, decNumber
*, decNumber
*,
218 decContext
*, Flag
, uInt
*);
219 static void decFinalize (decNumber
*, decContext
*, Int
*, uInt
*);
220 static Int
decGetDigits (Unit
*, Int
);
222 static Int
decGetInt (decNumber
*, decContext
*);
224 static Int
decGetInt (decNumber
*);
226 static decNumber
*decMultiplyOp (decNumber
*, decNumber
*, decNumber
*,
227 decContext
*, uInt
*);
228 static decNumber
*decNaNs (decNumber
*, decNumber
*, decNumber
*, uInt
*);
229 static decNumber
*decQuantizeOp (decNumber
*, decNumber
*, decNumber
*,
230 decContext
*, Flag
, uInt
*);
231 static void decSetCoeff (decNumber
*, decContext
*, Unit
*,
233 static void decSetOverflow (decNumber
*, decContext
*, uInt
*);
234 static void decSetSubnormal (decNumber
*, decContext
*, Int
*, uInt
*);
235 static Int
decShiftToLeast (Unit
*, Int
, Int
);
236 static Int
decShiftToMost (Unit
*, Int
, Int
);
237 static void decStatus (decNumber
*, uInt
, decContext
*);
238 static Flag
decStrEq (const char *, const char *);
239 static void decToString (decNumber
*, char[], Flag
);
240 static decNumber
*decTrim (decNumber
*, Flag
, Int
*);
241 static Int
decUnitAddSub (Unit
*, Int
, Unit
*, Int
, Int
, Unit
*, Int
);
242 static Int
decUnitCompare (Unit
*, Int
, Unit
*, Int
, Int
);
245 /* decFinish == decFinalize when no subset arithmetic needed */
246 #define decFinish(a,b,c,d) decFinalize(a,b,c,d)
248 static void decFinish (decNumber
*, decContext
*, Int
*, uInt
*);
249 static decNumber
*decRoundOperand (decNumber
*, decContext
*, uInt
*);
252 /* Diagnostic macros, etc. */
254 /* Handle malloc/free accounting. If enabled, our accountable routines */
255 /* are used; otherwise the code just goes straight to the system malloc */
256 /* and free routines. */
257 #define malloc(a) decMalloc(a)
258 #define free(a) decFree(a)
259 #define DECFENCE 0x5a /* corruption detector */
260 /* 'Our' malloc and free: */
261 static void *decMalloc (size_t);
262 static void decFree (void *);
263 uInt decAllocBytes
= 0; /* count of bytes allocated */
264 /* Note that DECALLOC code only checks for storage buffer overflow. */
265 /* To check for memory leaks, the decAllocBytes variable should be */
266 /* checked to be 0 at appropriate times (e.g., after the test */
267 /* harness completes a set of tests). This checking may be unreliable */
268 /* if the testing is done in a multi-thread environment. */
272 /* Optional operand checking routines. Enabling these means that */
273 /* decNumber and decContext operands to operator routines are checked */
274 /* for correctness. This roughly doubles the execution time of the */
275 /* fastest routines (and adds 600+ bytes), so should not normally be */
276 /* used in 'production'. */
277 #define DECUNUSED (void *)(0xffffffff)
278 static Flag
decCheckOperands (decNumber
*, decNumber
*, decNumber
*,
280 static Flag
decCheckNumber (decNumber
*, decContext
*);
283 #if DECTRACE || DECCHECK
284 /* Optional trace/debugging routines. */
285 void decNumberShow (decNumber
*); /* displays the components of a number */
286 static void decDumpAr (char, Unit
*, Int
);
289 /* ================================================================== */
291 /* ================================================================== */
293 /* ------------------------------------------------------------------ */
294 /* to-scientific-string -- conversion to numeric string */
295 /* to-engineering-string -- conversion to numeric string */
297 /* decNumberToString(dn, string); */
298 /* decNumberToEngString(dn, string); */
300 /* dn is the decNumber to convert */
301 /* string is the string where the result will be laid out */
303 /* string must be at least dn->digits+14 characters long */
305 /* No error is possible, and no status can be set. */
306 /* ------------------------------------------------------------------ */
308 decNumberToString (decNumber
* dn
, char *string
)
310 decToString (dn
, string
, 0);
315 decNumberToEngString (decNumber
* dn
, char *string
)
317 decToString (dn
, string
, 1);
321 /* ------------------------------------------------------------------ */
322 /* to-number -- conversion from numeric string */
324 /* decNumberFromString -- convert string to decNumber */
325 /* dn -- the number structure to fill */
326 /* chars[] -- the string to convert ('\0' terminated) */
327 /* set -- the context used for processing any error, */
328 /* determining the maximum precision available */
329 /* (set.digits), determining the maximum and minimum */
330 /* exponent (set.emax and set.emin), determining if */
331 /* extended values are allowed, and checking the */
332 /* rounding mode if overflow occurs or rounding is */
335 /* The length of the coefficient and the size of the exponent are */
336 /* checked by this routine, so the correct error (Underflow or */
337 /* Overflow) can be reported or rounding applied, as necessary. */
339 /* If bad syntax is detected, the result will be a quiet NaN. */
340 /* ------------------------------------------------------------------ */
342 decNumberFromString (decNumber
* dn
, char chars
[], decContext
* set
)
344 Int exponent
= 0; /* working exponent [assume 0] */
345 uByte bits
= 0; /* working flags [assume +ve] */
346 Unit
*res
; /* where result will be built */
347 Unit resbuff
[D2U (DECBUFFER
+ 1)]; /* local buffer in case need temporary */
348 Unit
*allocres
= NULL
; /* -> allocated result, iff allocated */
349 Int need
; /* units needed for result */
350 Int d
= 0; /* count of digits found in decimal part */
351 char *dotchar
= NULL
; /* where dot was found */
352 char *cfirst
; /* -> first character of decimal part */
353 char *last
= NULL
; /* -> last digit of decimal part */
354 char *firstexp
; /* -> first significant exponent digit */
360 Int residue
= 0; /* rounding residue */
361 uInt status
= 0; /* error code */
364 if (decCheckOperands (DECUNUSED
, DECUNUSED
, DECUNUSED
, set
))
365 return decNumberZero (dn
);
369 { /* status & malloc protection */
370 c
= chars
; /* -> input character */
372 { /* handle leading '-' */
377 c
++; /* step over leading '+' */
378 /* We're at the start of the number [we think] */
379 cfirst
= c
; /* save */
382 if (*c
>= '0' && *c
<= '9')
383 { /* test for Arabic digit */
385 d
++; /* count of real digits */
386 continue; /* still in decimal part */
389 break; /* done with decimal part */
390 /* dot: record, check, and ignore */
393 last
= NULL
; /* indicate bad */
395 } /* .. and go report */
396 dotchar
= c
; /* offset into decimal part */
400 { /* no decimal digits, or >1 . */
402 /* If subset then infinities and NaNs are not allowed */
405 status
= DEC_Conversion_syntax
;
406 break; /* all done */
411 /* Infinities and NaNs are possible, here */
412 decNumberZero (dn
); /* be optimistic */
413 if (decStrEq (c
, "Infinity") || decStrEq (c
, "Inf"))
415 dn
->bits
= bits
| DECINF
;
416 break; /* all done */
419 { /* a NaN expected */
420 /* 2003.09.10 NaNs are now permitted to have a sign */
421 status
= DEC_Conversion_syntax
; /* assume the worst */
422 dn
->bits
= bits
| DECNAN
; /* assume simple NaN */
423 if (*c
== 's' || *c
== 'S')
424 { /* looks like an` sNaN */
426 dn
->bits
= bits
| DECSNAN
;
428 if (*c
!= 'n' && *c
!= 'N')
429 break; /* check caseless "NaN" */
431 if (*c
!= 'a' && *c
!= 'A')
434 if (*c
!= 'n' && *c
!= 'N')
437 /* now nothing, or nnnn, expected */
438 /* -> start of integer and skip leading 0s [including plain 0] */
439 for (cfirst
= c
; *cfirst
== '0';)
442 { /* "NaN" or "sNaN", maybe with all 0s */
443 status
= 0; /* it's good */
446 /* something other than 0s; setup last and d as usual [no dots] */
447 for (c
= cfirst
;; c
++, d
++)
449 if (*c
< '0' || *c
> '9')
450 break; /* test for Arabic digit */
454 break; /* not all digits */
456 break; /* too many digits */
457 /* good; drop through and convert the integer */
459 bits
= dn
->bits
; /* for copy-back */
467 { /* more there; exponent expected... */
468 Flag nege
= 0; /* 1=negative exponent */
469 if (*c
!= 'e' && *c
!= 'E')
471 status
= DEC_Conversion_syntax
;
475 /* Found 'e' or 'E' -- now process explicit exponent */
476 /* 1998.07.11: sign no longer required */
477 c
++; /* to (expected) sign */
487 status
= DEC_Conversion_syntax
;
491 for (; *c
== '0' && *(c
+ 1) != '\0';)
492 c
++; /* strip insignificant zeros */
493 firstexp
= c
; /* save exponent digit place */
496 if (*c
< '0' || *c
> '9')
497 break; /* not a digit */
498 exponent
= X10 (exponent
) + (Int
) * c
- (Int
) '0';
500 /* if we didn't end on '\0' must not be a digit */
503 status
= DEC_Conversion_syntax
;
507 /* (this next test must be after the syntax check) */
508 /* if it was too long the exponent may have wrapped, so check */
509 /* carefully and set it to a certain overflow if wrap possible */
510 if (c
>= firstexp
+ 9 + 1)
512 if (c
> firstexp
+ 9 + 1 || *firstexp
> '1')
513 exponent
= DECNUMMAXE
* 2;
514 /* [up to 1999999999 is OK, for example 1E-1000000998] */
517 exponent
= -exponent
; /* was negative */
519 /* Here when all inspected; syntax is good */
521 /* Handle decimal point... */
522 if (dotchar
!= NULL
&& dotchar
< last
) /* embedded . found, so */
523 exponent
= exponent
- (last
- dotchar
); /* .. adjust exponent */
524 /* [we can now ignore the .] */
526 /* strip leading zeros/dot (leave final if all 0's) */
527 for (c
= cfirst
; c
< last
; c
++)
530 d
--; /* 0 stripped */
533 cfirst
++; /* step past leader */
537 /* We can now make a rapid exit for zeros if !extended */
538 if (*cfirst
== '0' && !set
->extended
)
540 decNumberZero (dn
); /* clean result */
541 break; /* [could be return] */
545 /* OK, the digits string is good. Copy to the decNumber, or to
546 a temporary decNumber if rounding is needed */
547 if (d
<= set
->digits
)
548 res
= dn
->lsu
; /* fits into given decNumber */
550 { /* rounding needed */
551 need
= D2U (d
); /* units needed */
552 res
= resbuff
; /* assume use local buffer */
553 if (need
* sizeof (Unit
) > sizeof (resbuff
))
554 { /* too big for local */
555 allocres
= (Unit
*) malloc (need
* sizeof (Unit
));
556 if (allocres
== NULL
)
558 status
|= DEC_Insufficient_storage
;
564 /* res now -> number lsu, buffer, or allocated storage for Unit array */
566 /* Place the coefficient into the selected Unit array */
568 i
= d
% DECDPUN
; /* digits in top unit */
571 up
= res
+ D2U (d
) - 1; /* -> msu */
573 for (c
= cfirst
;; c
++)
574 { /* along the digits */
576 { /* ignore . [don't decrement i] */
581 *up
= (Unit
) (X10 (*up
) + (Int
) * c
- (Int
) '0');
584 continue; /* more for this unit */
586 break; /* just filled the last unit */
593 up
= res
; /* -> lsu */
594 for (c
= last
; c
>= cfirst
; c
--)
595 { /* over each character, from least */
597 continue; /* ignore . [don't step b] */
598 *up
= (Unit
) ((Int
) * c
- (Int
) '0');
604 dn
->exponent
= exponent
;
607 /* if not in number (too long) shorten into the number */
609 decSetCoeff (dn
, set
, res
, d
, &residue
, &status
);
611 /* Finally check for overflow or subnormal and round as needed */
612 decFinalize (dn
, set
, &residue
, &status
);
613 /* decNumberShow(dn); */
615 while (0); /* [for break] */
617 if (allocres
!= NULL
)
618 free (allocres
); /* drop any storage we used */
620 decStatus (dn
, status
, set
);
624 /* ================================================================== */
626 /* ================================================================== */
628 /* ------------------------------------------------------------------ */
629 /* decNumberAbs -- absolute value operator */
631 /* This computes C = abs(A) */
633 /* res is C, the result. C may be A */
635 /* set is the context */
637 /* C must have space for set->digits digits. */
638 /* ------------------------------------------------------------------ */
639 /* This has the same effect as decNumberPlus unless A is negative, */
640 /* in which case it has the same effect as decNumberMinus. */
641 /* ------------------------------------------------------------------ */
643 decNumberAbs (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
645 decNumber dzero
; /* for 0 */
646 uInt status
= 0; /* accumulator */
649 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
653 decNumberZero (&dzero
); /* set 0 */
654 dzero
.exponent
= rhs
->exponent
; /* [no coefficient expansion] */
655 decAddOp (res
, &dzero
, rhs
, set
, (uByte
) (rhs
->bits
& DECNEG
), &status
);
657 decStatus (res
, status
, set
);
661 /* ------------------------------------------------------------------ */
662 /* decNumberAdd -- add two Numbers */
664 /* This computes C = A + B */
666 /* res is C, the result. C may be A and/or B (e.g., X=X+X) */
669 /* set is the context */
671 /* C must have space for set->digits digits. */
672 /* ------------------------------------------------------------------ */
673 /* This just calls the routine shared with Subtract */
675 decNumberAdd (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
,
678 uInt status
= 0; /* accumulator */
679 decAddOp (res
, lhs
, rhs
, set
, 0, &status
);
681 decStatus (res
, status
, set
);
685 /* ------------------------------------------------------------------ */
686 /* decNumberCompare -- compare two Numbers */
688 /* This computes C = A ? B */
690 /* res is C, the result. C may be A and/or B (e.g., X=X?X) */
693 /* set is the context */
695 /* C must have space for one digit. */
696 /* ------------------------------------------------------------------ */
698 decNumberCompare (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
,
701 uInt status
= 0; /* accumulator */
702 decCompareOp (res
, lhs
, rhs
, set
, COMPARE
, &status
);
704 decStatus (res
, status
, set
);
708 /* ------------------------------------------------------------------ */
709 /* decNumberDivide -- divide one number by another */
711 /* This computes C = A / B */
713 /* res is C, the result. C may be A and/or B (e.g., X=X/X) */
716 /* set is the context */
718 /* C must have space for set->digits digits. */
719 /* ------------------------------------------------------------------ */
721 decNumberDivide (decNumber
* res
, decNumber
* lhs
,
722 decNumber
* rhs
, decContext
* set
)
724 uInt status
= 0; /* accumulator */
725 decDivideOp (res
, lhs
, rhs
, set
, DIVIDE
, &status
);
727 decStatus (res
, status
, set
);
731 /* ------------------------------------------------------------------ */
732 /* decNumberDivideInteger -- divide and return integer quotient */
734 /* This computes C = A # B, where # is the integer divide operator */
736 /* res is C, the result. C may be A and/or B (e.g., X=X#X) */
739 /* set is the context */
741 /* C must have space for set->digits digits. */
742 /* ------------------------------------------------------------------ */
744 decNumberDivideInteger (decNumber
* res
, decNumber
* lhs
,
745 decNumber
* rhs
, decContext
* set
)
747 uInt status
= 0; /* accumulator */
748 decDivideOp (res
, lhs
, rhs
, set
, DIVIDEINT
, &status
);
750 decStatus (res
, status
, set
);
754 /* ------------------------------------------------------------------ */
755 /* decNumberMax -- compare two Numbers and return the maximum */
757 /* This computes C = A ? B, returning the maximum or A if equal */
759 /* res is C, the result. C may be A and/or B (e.g., X=X?X) */
762 /* set is the context */
764 /* C must have space for set->digits digits. */
765 /* ------------------------------------------------------------------ */
767 decNumberMax (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
,
770 uInt status
= 0; /* accumulator */
771 decCompareOp (res
, lhs
, rhs
, set
, COMPMAX
, &status
);
773 decStatus (res
, status
, set
);
777 /* ------------------------------------------------------------------ */
778 /* decNumberMin -- compare two Numbers and return the minimum */
780 /* This computes C = A ? B, returning the minimum or A if equal */
782 /* res is C, the result. C may be A and/or B (e.g., X=X?X) */
785 /* set is the context */
787 /* C must have space for set->digits digits. */
788 /* ------------------------------------------------------------------ */
790 decNumberMin (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
,
793 uInt status
= 0; /* accumulator */
794 decCompareOp (res
, lhs
, rhs
, set
, COMPMIN
, &status
);
796 decStatus (res
, status
, set
);
800 /* ------------------------------------------------------------------ */
801 /* decNumberMinus -- prefix minus operator */
803 /* This computes C = 0 - A */
805 /* res is C, the result. C may be A */
807 /* set is the context */
809 /* C must have space for set->digits digits. */
810 /* ------------------------------------------------------------------ */
811 /* We simply use AddOp for the subtract, which will do the necessary. */
812 /* ------------------------------------------------------------------ */
814 decNumberMinus (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
817 uInt status
= 0; /* accumulator */
820 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
824 decNumberZero (&dzero
); /* make 0 */
825 dzero
.exponent
= rhs
->exponent
; /* [no coefficient expansion] */
826 decAddOp (res
, &dzero
, rhs
, set
, DECNEG
, &status
);
828 decStatus (res
, status
, set
);
832 /* ------------------------------------------------------------------ */
833 /* decNumberPlus -- prefix plus operator */
835 /* This computes C = 0 + A */
837 /* res is C, the result. C may be A */
839 /* set is the context */
841 /* C must have space for set->digits digits. */
842 /* ------------------------------------------------------------------ */
843 /* We simply use AddOp; Add will take fast path after preparing A. */
844 /* Performance is a concern here, as this routine is often used to */
845 /* check operands and apply rounding and overflow/underflow testing. */
846 /* ------------------------------------------------------------------ */
848 decNumberPlus (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
851 uInt status
= 0; /* accumulator */
854 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
858 decNumberZero (&dzero
); /* make 0 */
859 dzero
.exponent
= rhs
->exponent
; /* [no coefficient expansion] */
860 decAddOp (res
, &dzero
, rhs
, set
, 0, &status
);
862 decStatus (res
, status
, set
);
866 /* ------------------------------------------------------------------ */
867 /* decNumberMultiply -- multiply two Numbers */
869 /* This computes C = A x B */
871 /* res is C, the result. C may be A and/or B (e.g., X=X+X) */
874 /* set is the context */
876 /* C must have space for set->digits digits. */
877 /* ------------------------------------------------------------------ */
879 decNumberMultiply (decNumber
* res
, decNumber
* lhs
,
880 decNumber
* rhs
, decContext
* set
)
882 uInt status
= 0; /* accumulator */
883 decMultiplyOp (res
, lhs
, rhs
, set
, &status
);
885 decStatus (res
, status
, set
);
889 /* ------------------------------------------------------------------ */
890 /* decNumberNormalize -- remove trailing zeros */
892 /* This computes C = 0 + A, and normalizes the result */
894 /* res is C, the result. C may be A */
896 /* set is the context */
898 /* C must have space for set->digits digits. */
899 /* ------------------------------------------------------------------ */
901 decNumberNormalize (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
903 decNumber
*allocrhs
= NULL
; /* non-NULL if rounded rhs allocated */
904 uInt status
= 0; /* as usual */
905 Int residue
= 0; /* as usual */
906 Int dropped
; /* work */
909 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
914 { /* protect allocated storage */
918 /* reduce operand and set lostDigits status, as needed */
919 if (rhs
->digits
> set
->digits
)
921 allocrhs
= decRoundOperand (rhs
, set
, &status
);
922 if (allocrhs
== NULL
)
928 /* [following code does not require input rounding] */
930 /* specials copy through, except NaNs need care */
931 if (decNumberIsNaN (rhs
))
933 decNaNs (res
, rhs
, NULL
, &status
);
937 /* reduce result to the requested length and copy to result */
938 decCopyFit (res
, rhs
, set
, &residue
, &status
); /* copy & round */
939 decFinish (res
, set
, &residue
, &status
); /* cleanup/set flags */
940 decTrim (res
, 1, &dropped
); /* normalize in place */
942 while (0); /* end protected */
944 if (allocrhs
!= NULL
)
945 free (allocrhs
); /* .. */
947 decStatus (res
, status
, set
); /* then report status */
951 /* ------------------------------------------------------------------ */
952 /* decNumberPower -- raise a number to an integer power */
954 /* This computes C = A ** B */
956 /* res is C, the result. C may be A and/or B (e.g., X=X**X) */
959 /* set is the context */
961 /* C must have space for set->digits digits. */
963 /* Specification restriction: abs(n) must be <=999999999 */
964 /* ------------------------------------------------------------------ */
966 decNumberPower (decNumber
* res
, decNumber
* lhs
,
967 decNumber
* rhs
, decContext
* set
)
969 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
970 decNumber
*allocrhs
= NULL
; /* .., rhs */
971 decNumber
*allocdac
= NULL
; /* -> allocated acc buffer, iff used */
972 decNumber
*inrhs
= rhs
; /* save original rhs */
973 Int reqdigits
= set
->digits
; /* requested DIGITS */
974 Int n
; /* RHS in binary */
977 Int dropped
; /* .. */
979 uInt needbytes
; /* buffer size needed */
980 Flag seenbit
; /* seen a bit while powering */
981 Int residue
= 0; /* rounding residue */
982 uInt status
= 0; /* accumulator */
983 uByte bits
= 0; /* result sign if errors */
984 decContext workset
; /* working context */
985 decNumber dnOne
; /* work value 1... */
986 /* local accumulator buffer [a decNumber, with digits+elength+1 digits] */
987 uByte dacbuff
[sizeof (decNumber
) + D2U (DECBUFFER
+ 9) * sizeof (Unit
)];
988 /* same again for possible 1/lhs calculation */
989 uByte lhsbuff
[sizeof (decNumber
) + D2U (DECBUFFER
+ 9) * sizeof (Unit
)];
990 decNumber
*dac
= (decNumber
*) dacbuff
; /* -> result accumulator */
993 if (decCheckOperands (res
, lhs
, rhs
, set
))
998 { /* protect allocated storage */
1002 /* reduce operands and set lostDigits status, as needed */
1003 if (lhs
->digits
> reqdigits
)
1005 alloclhs
= decRoundOperand (lhs
, set
, &status
);
1006 if (alloclhs
== NULL
)
1010 /* rounding won't affect the result, but we might signal lostDigits */
1011 /* as well as the error for non-integer [x**y would need this too] */
1012 if (rhs
->digits
> reqdigits
)
1014 allocrhs
= decRoundOperand (rhs
, set
, &status
);
1015 if (allocrhs
== NULL
)
1021 /* [following code does not require input rounding] */
1023 /* handle rhs Infinity */
1024 if (decNumberIsInfinite (rhs
))
1026 status
|= DEC_Invalid_operation
; /* bad */
1030 if ((lhs
->bits
| rhs
->bits
) & (DECNAN
| DECSNAN
))
1032 decNaNs (res
, lhs
, rhs
, &status
);
1036 /* Original rhs must be an integer that fits and is in range */
1038 n
= decGetInt (inrhs
, set
);
1040 n
= decGetInt (inrhs
);
1042 if (n
== BADINT
|| n
> 999999999 || n
< -999999999)
1044 status
|= DEC_Invalid_operation
;
1049 n
= -n
; /* use the absolute value */
1051 if (decNumberIsNegative (lhs
) /* -x .. */
1052 && (n
& 0x00000001))
1053 bits
= DECNEG
; /* .. to an odd power */
1055 /* handle LHS infinity */
1056 if (decNumberIsInfinite (lhs
))
1057 { /* [NaNs already handled] */
1058 uByte rbits
= rhs
->bits
; /* save */
1059 decNumberZero (res
);
1061 *res
->lsu
= 1; /* [-]Inf**0 => 1 */
1064 if (!(rbits
& DECNEG
))
1065 bits
|= DECINF
; /* was not a **-n */
1066 /* [otherwise will be 0 or -0] */
1072 /* clone the context */
1073 workset
= *set
; /* copy all fields */
1074 /* calculate the working DIGITS */
1075 workset
.digits
= reqdigits
+ (inrhs
->digits
+ inrhs
->exponent
) + 1;
1076 /* it's an error if this is more than we can handle */
1077 if (workset
.digits
> DECNUMMAXP
)
1079 status
|= DEC_Invalid_operation
;
1083 /* workset.digits is the count of digits for the accumulator we need */
1084 /* if accumulator is too long for local storage, then allocate */
1086 sizeof (decNumber
) + (D2U (workset
.digits
) - 1) * sizeof (Unit
);
1087 /* [needbytes also used below if 1/lhs needed] */
1088 if (needbytes
> sizeof (dacbuff
))
1090 allocdac
= (decNumber
*) malloc (needbytes
);
1091 if (allocdac
== NULL
)
1092 { /* hopeless -- abandon */
1093 status
|= DEC_Insufficient_storage
;
1096 dac
= allocdac
; /* use the allocated space */
1098 decNumberZero (dac
); /* acc=1 */
1099 *dac
->lsu
= 1; /* .. */
1102 { /* x**0 is usually 1 */
1103 /* 0**0 is bad unless subset, when it becomes 1 */
1109 status
|= DEC_Invalid_operation
;
1111 decNumberCopy (res
, dac
); /* copy the 1 */
1115 /* if a negative power we'll need the constant 1, and if not subset */
1116 /* we'll invert the lhs now rather than inverting the result later */
1117 if (decNumberIsNegative (rhs
))
1118 { /* was a **-n [hence digits>0] */
1119 decNumberCopy (&dnOne
, dac
); /* dnOne=1; [needed now or later] */
1122 { /* need to calculate 1/lhs */
1124 /* divide lhs into 1, putting result in dac [dac=1/dac] */
1125 decDivideOp (dac
, &dnOne
, lhs
, &workset
, DIVIDE
, &status
);
1126 if (alloclhs
!= NULL
)
1128 free (alloclhs
); /* done with intermediate */
1129 alloclhs
= NULL
; /* indicate freed */
1131 /* now locate or allocate space for the inverted lhs */
1132 if (needbytes
> sizeof (lhsbuff
))
1134 alloclhs
= (decNumber
*) malloc (needbytes
);
1135 if (alloclhs
== NULL
)
1136 { /* hopeless -- abandon */
1137 status
|= DEC_Insufficient_storage
;
1140 lhs
= alloclhs
; /* use the allocated space */
1143 lhs
= (decNumber
*) lhsbuff
; /* use stack storage */
1144 /* [lhs now points to buffer or allocated storage] */
1145 decNumberCopy (lhs
, dac
); /* copy the 1/lhs */
1146 decNumberCopy (dac
, &dnOne
); /* restore acc=1 */
1152 /* Raise-to-the-power loop... */
1153 seenbit
= 0; /* set once we've seen a 1-bit */
1155 { /* for each bit [top bit ignored] */
1156 /* abandon if we have had overflow or terminal underflow */
1157 if (status
& (DEC_Overflow
| DEC_Underflow
))
1158 { /* interesting? */
1159 if (status
& DEC_Overflow
|| ISZERO (dac
))
1162 /* [the following two lines revealed an optimizer bug in a C++ */
1163 /* compiler, with symptom: 5**3 -> 25, when n=n+n was used] */
1164 n
= n
<< 1; /* move next bit to testable position */
1166 { /* top bit is set */
1167 seenbit
= 1; /* OK, we're off */
1168 decMultiplyOp (dac
, dac
, lhs
, &workset
, &status
); /* dac=dac*x */
1171 break; /* that was the last bit */
1173 continue; /* we don't have to square 1 */
1174 decMultiplyOp (dac
, dac
, dac
, &workset
, &status
); /* dac=dac*dac [square] */
1175 } /*i *//* 32 bits */
1177 /* complete internal overflow or underflow processing */
1178 if (status
& (DEC_Overflow
| DEC_Subnormal
))
1181 /* If subset, and power was negative, reverse the kind of -erflow */
1182 /* [1/x not yet done] */
1183 if (!set
->extended
&& decNumberIsNegative (rhs
))
1185 if (status
& DEC_Overflow
)
1186 status
^= DEC_Overflow
| DEC_Underflow
| DEC_Subnormal
;
1188 { /* trickier -- Underflow may or may not be set */
1189 status
&= ~(DEC_Underflow
| DEC_Subnormal
); /* [one or both] */
1190 status
|= DEC_Overflow
;
1194 dac
->bits
= (dac
->bits
& ~DECNEG
) | bits
; /* force correct sign */
1195 /* round subnormals [to set.digits rather than workset.digits] */
1196 /* or set overflow result similarly as required */
1197 decFinalize (dac
, set
, &residue
, &status
);
1198 decNumberCopy (res
, dac
); /* copy to result (is now OK length) */
1203 if (!set
->extended
&& /* subset math */
1204 decNumberIsNegative (rhs
))
1205 { /* was a **-n [hence digits>0] */
1206 /* so divide result into 1 [dac=1/dac] */
1207 decDivideOp (dac
, &dnOne
, dac
, &workset
, DIVIDE
, &status
);
1211 /* reduce result to the requested length and copy to result */
1212 decCopyFit (res
, dac
, set
, &residue
, &status
);
1213 decFinish (res
, set
, &residue
, &status
); /* final cleanup */
1216 decTrim (res
, 0, &dropped
); /* trailing zeros */
1219 while (0); /* end protected */
1221 if (allocdac
!= NULL
)
1222 free (allocdac
); /* drop any storage we used */
1223 if (allocrhs
!= NULL
)
1224 free (allocrhs
); /* .. */
1225 if (alloclhs
!= NULL
)
1226 free (alloclhs
); /* .. */
1228 decStatus (res
, status
, set
);
1232 /* ------------------------------------------------------------------ */
1233 /* decNumberQuantize -- force exponent to requested value */
1235 /* This computes C = op(A, B), where op adjusts the coefficient */
1236 /* of C (by rounding or shifting) such that the exponent (-scale) */
1237 /* of C has exponent of B. The numerical value of C will equal A, */
1238 /* except for the effects of any rounding that occurred. */
1240 /* res is C, the result. C may be A or B */
1241 /* lhs is A, the number to adjust */
1242 /* rhs is B, the number with exponent to match */
1243 /* set is the context */
1245 /* C must have space for set->digits digits. */
1247 /* Unless there is an error or the result is infinite, the exponent */
1248 /* after the operation is guaranteed to be equal to that of B. */
1249 /* ------------------------------------------------------------------ */
1251 decNumberQuantize (decNumber
* res
, decNumber
* lhs
,
1252 decNumber
* rhs
, decContext
* set
)
1254 uInt status
= 0; /* accumulator */
1255 decQuantizeOp (res
, lhs
, rhs
, set
, 1, &status
);
1257 decStatus (res
, status
, set
);
1261 /* ------------------------------------------------------------------ */
1262 /* decNumberRescale -- force exponent to requested value */
1264 /* This computes C = op(A, B), where op adjusts the coefficient */
1265 /* of C (by rounding or shifting) such that the exponent (-scale) */
1266 /* of C has the value B. The numerical value of C will equal A, */
1267 /* except for the effects of any rounding that occurred. */
1269 /* res is C, the result. C may be A or B */
1270 /* lhs is A, the number to adjust */
1271 /* rhs is B, the requested exponent */
1272 /* set is the context */
1274 /* C must have space for set->digits digits. */
1276 /* Unless there is an error or the result is infinite, the exponent */
1277 /* after the operation is guaranteed to be equal to B. */
1278 /* ------------------------------------------------------------------ */
1280 decNumberRescale (decNumber
* res
, decNumber
* lhs
,
1281 decNumber
* rhs
, decContext
* set
)
1283 uInt status
= 0; /* accumulator */
1284 decQuantizeOp (res
, lhs
, rhs
, set
, 0, &status
);
1286 decStatus (res
, status
, set
);
1290 /* ------------------------------------------------------------------ */
1291 /* decNumberRemainder -- divide and return remainder */
1293 /* This computes C = A % B */
1295 /* res is C, the result. C may be A and/or B (e.g., X=X%X) */
1298 /* set is the context */
1300 /* C must have space for set->digits digits. */
1301 /* ------------------------------------------------------------------ */
1303 decNumberRemainder (decNumber
* res
, decNumber
* lhs
,
1304 decNumber
* rhs
, decContext
* set
)
1306 uInt status
= 0; /* accumulator */
1307 decDivideOp (res
, lhs
, rhs
, set
, REMAINDER
, &status
);
1309 decStatus (res
, status
, set
);
1313 /* ------------------------------------------------------------------ */
1314 /* decNumberRemainderNear -- divide and return remainder from nearest */
1316 /* This computes C = A % B, where % is the IEEE remainder operator */
1318 /* res is C, the result. C may be A and/or B (e.g., X=X%X) */
1321 /* set is the context */
1323 /* C must have space for set->digits digits. */
1324 /* ------------------------------------------------------------------ */
1326 decNumberRemainderNear (decNumber
* res
, decNumber
* lhs
,
1327 decNumber
* rhs
, decContext
* set
)
1329 uInt status
= 0; /* accumulator */
1330 decDivideOp (res
, lhs
, rhs
, set
, REMNEAR
, &status
);
1332 decStatus (res
, status
, set
);
1336 /* ------------------------------------------------------------------ */
1337 /* decNumberSameQuantum -- test for equal exponents */
1339 /* res is the result number, which will contain either 0 or 1 */
1340 /* lhs is a number to test */
1341 /* rhs is the second (usually a pattern) */
1343 /* No errors are possible and no context is needed. */
1344 /* ------------------------------------------------------------------ */
1346 decNumberSameQuantum (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
)
1348 uByte merged
; /* merged flags */
1349 Unit ret
= 0; /* return value */
1352 if (decCheckOperands (res
, lhs
, rhs
, DECUNUSED
))
1356 merged
= (lhs
->bits
| rhs
->bits
) & DECSPECIAL
;
1359 if (decNumberIsNaN (lhs
) && decNumberIsNaN (rhs
))
1361 else if (decNumberIsInfinite (lhs
) && decNumberIsInfinite (rhs
))
1363 /* [anything else with a special gives 0] */
1365 else if (lhs
->exponent
== rhs
->exponent
)
1368 decNumberZero (res
); /* OK to overwrite an operand */
1373 /* ------------------------------------------------------------------ */
1374 /* decNumberSquareRoot -- square root operator */
1376 /* This computes C = squareroot(A) */
1378 /* res is C, the result. C may be A */
1380 /* set is the context; note that rounding mode has no effect */
1382 /* C must have space for set->digits digits. */
1383 /* ------------------------------------------------------------------ */
1384 /* This uses the following varying-precision algorithm in: */
1386 /* Properly Rounded Variable Precision Square Root, T. E. Hull and */
1387 /* A. Abrham, ACM Transactions on Mathematical Software, Vol 11 #3, */
1388 /* pp229-237, ACM, September 1985. */
1390 /* % [Reformatted original Numerical Turing source code follows.] */
1391 /* function sqrt(x : real) : real */
1392 /* % sqrt(x) returns the properly rounded approximation to the square */
1393 /* % root of x, in the precision of the calling environment, or it */
1394 /* % fails if x < 0. */
1395 /* % t e hull and a abrham, august, 1984 */
1396 /* if x <= 0 then */
1403 /* var f := setexp(x, 0) % fraction part of x [0.1 <= x < 1] */
1404 /* var e := getexp(x) % exponent part of x */
1405 /* var approx : real */
1406 /* if e mod 2 = 0 then */
1407 /* approx := .259 + .819 * f % approx to root of f */
1409 /* f := f/l0 % adjustments */
1410 /* e := e + 1 % for odd */
1411 /* approx := .0819 + 2.59 * f % exponent */
1415 /* const maxp := currentprecision + 2 */
1417 /* p := min(2*p - 2, maxp) % p = 4,6,10, . . . , maxp */
1419 /* approx := .5 * (approx + f/approx) */
1420 /* exit when p = maxp */
1423 /* % approx is now within 1 ulp of the properly rounded square root */
1424 /* % of f; to ensure proper rounding, compare squares of (approx - */
1425 /* % l/2 ulp) and (approx + l/2 ulp) with f. */
1426 /* p := currentprecision */
1428 /* precision p + 2 */
1429 /* const approxsubhalf := approx - setexp(.5, -p) */
1430 /* if mulru(approxsubhalf, approxsubhalf) > f then */
1431 /* approx := approx - setexp(.l, -p + 1) */
1433 /* const approxaddhalf := approx + setexp(.5, -p) */
1434 /* if mulrd(approxaddhalf, approxaddhalf) < f then */
1435 /* approx := approx + setexp(.l, -p + 1) */
1439 /* result setexp(approx, e div 2) % fix exponent */
1441 /* ------------------------------------------------------------------ */
1443 decNumberSquareRoot (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
1445 decContext workset
, approxset
; /* work contexts */
1446 decNumber dzero
; /* used for constant zero */
1447 Int maxp
= set
->digits
+ 2; /* largest working precision */
1448 Int residue
= 0; /* rounding residue */
1449 uInt status
= 0, ignore
= 0; /* status accumulators */
1450 Int exp
; /* working exponent */
1451 Int ideal
; /* ideal (preferred) exponent */
1452 uInt needbytes
; /* work */
1453 Int dropped
; /* .. */
1455 decNumber
*allocrhs
= NULL
; /* non-NULL if rounded rhs allocated */
1456 /* buffer for f [needs +1 in case DECBUFFER 0] */
1457 uByte buff
[sizeof (decNumber
) + (D2U (DECBUFFER
+ 1) - 1) * sizeof (Unit
)];
1458 /* buffer for a [needs +2 to match maxp] */
1459 uByte bufa
[sizeof (decNumber
) + (D2U (DECBUFFER
+ 2) - 1) * sizeof (Unit
)];
1460 /* buffer for temporary, b [must be same size as a] */
1461 uByte bufb
[sizeof (decNumber
) + (D2U (DECBUFFER
+ 2) - 1) * sizeof (Unit
)];
1462 decNumber
*allocbuff
= NULL
; /* -> allocated buff, iff allocated */
1463 decNumber
*allocbufa
= NULL
; /* -> allocated bufa, iff allocated */
1464 decNumber
*allocbufb
= NULL
; /* -> allocated bufb, iff allocated */
1465 decNumber
*f
= (decNumber
*) buff
; /* reduced fraction */
1466 decNumber
*a
= (decNumber
*) bufa
; /* approximation to result */
1467 decNumber
*b
= (decNumber
*) bufb
; /* intermediate result */
1468 /* buffer for temporary variable, up to 3 digits */
1469 uByte buft
[sizeof (decNumber
) + (D2U (3) - 1) * sizeof (Unit
)];
1470 decNumber
*t
= (decNumber
*) buft
; /* up-to-3-digit constant or work */
1473 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
1478 { /* protect allocated storage */
1482 /* reduce operand and set lostDigits status, as needed */
1483 if (rhs
->digits
> set
->digits
)
1485 allocrhs
= decRoundOperand (rhs
, set
, &status
);
1486 if (allocrhs
== NULL
)
1488 /* [Note: 'f' allocation below could reuse this buffer if */
1489 /* used, but as this is rare we keep them separate for clarity.] */
1494 /* [following code does not require input rounding] */
1496 /* handle infinities and NaNs */
1497 if (rhs
->bits
& DECSPECIAL
)
1499 if (decNumberIsInfinite (rhs
))
1501 if (decNumberIsNegative (rhs
))
1502 status
|= DEC_Invalid_operation
;
1504 decNumberCopy (res
, rhs
); /* +Infinity */
1507 decNaNs (res
, rhs
, NULL
, &status
); /* a NaN */
1511 /* calculate the ideal (preferred) exponent [floor(exp/2)] */
1512 /* [We would like to write: ideal=rhs->exponent>>1, but this */
1513 /* generates a compiler warning. Generated code is the same.] */
1514 ideal
= (rhs
->exponent
& ~1) / 2; /* target */
1519 decNumberCopy (res
, rhs
); /* could be 0 or -0 */
1520 res
->exponent
= ideal
; /* use the ideal [safe] */
1524 /* any other -x is an oops */
1525 if (decNumberIsNegative (rhs
))
1527 status
|= DEC_Invalid_operation
;
1531 /* we need space for three working variables */
1532 /* f -- the same precision as the RHS, reduced to 0.01->0.99... */
1533 /* a -- Hull's approx -- precision, when assigned, is */
1534 /* currentprecision (we allow +2 for use as temporary) */
1535 /* b -- intermediate temporary result */
1536 /* if any is too long for local storage, then allocate */
1538 sizeof (decNumber
) + (D2U (rhs
->digits
) - 1) * sizeof (Unit
);
1539 if (needbytes
> sizeof (buff
))
1541 allocbuff
= (decNumber
*) malloc (needbytes
);
1542 if (allocbuff
== NULL
)
1543 { /* hopeless -- abandon */
1544 status
|= DEC_Insufficient_storage
;
1547 f
= allocbuff
; /* use the allocated space */
1549 /* a and b both need to be able to hold a maxp-length number */
1550 needbytes
= sizeof (decNumber
) + (D2U (maxp
) - 1) * sizeof (Unit
);
1551 if (needbytes
> sizeof (bufa
))
1552 { /* [same applies to b] */
1553 allocbufa
= (decNumber
*) malloc (needbytes
);
1554 allocbufb
= (decNumber
*) malloc (needbytes
);
1555 if (allocbufa
== NULL
|| allocbufb
== NULL
)
1557 status
|= DEC_Insufficient_storage
;
1560 a
= allocbufa
; /* use the allocated space */
1561 b
= allocbufb
; /* .. */
1564 /* copy rhs -> f, save exponent, and reduce so 0.1 <= f < 1 */
1565 decNumberCopy (f
, rhs
);
1566 exp
= f
->exponent
+ f
->digits
; /* adjusted to Hull rules */
1567 f
->exponent
= -(f
->digits
); /* to range */
1569 /* set up working contexts (the second is used for Numerical */
1570 /* Turing assignment) */
1571 decContextDefault (&workset
, DEC_INIT_DECIMAL64
);
1572 decContextDefault (&approxset
, DEC_INIT_DECIMAL64
);
1573 approxset
.digits
= set
->digits
; /* approx's length */
1575 /* [Until further notice, no error is possible and status bits */
1576 /* (Rounded, etc.) should be ignored, not accumulated.] */
1578 /* Calculate initial approximation, and allow for odd exponent */
1579 workset
.digits
= set
->digits
; /* p for initial calculation */
1585 { /* even exponent */
1586 /* Set t=0.259, a=0.819 */
1607 { /* odd exponent */
1608 /* Set t=0.0819, a=2.59 */
1609 f
->exponent
--; /* f=f/10 */
1630 decMultiplyOp (a
, a
, f
, &workset
, &ignore
); /* a=a*f */
1631 decAddOp (a
, a
, t
, &workset
, 0, &ignore
); /* ..+t */
1632 /* [a is now the initial approximation for sqrt(f), calculated with */
1633 /* currentprecision, which is also a's precision.] */
1635 /* the main calculation loop */
1636 decNumberZero (&dzero
); /* make 0 */
1637 decNumberZero (t
); /* set t = 0.5 */
1638 t
->lsu
[0] = 5; /* .. */
1639 t
->exponent
= -1; /* .. */
1640 workset
.digits
= 3; /* initial p */
1643 /* set p to min(2*p - 2, maxp) [hence 3; or: 4, 6, 10, ... , maxp] */
1644 workset
.digits
= workset
.digits
* 2 - 2;
1645 if (workset
.digits
> maxp
)
1646 workset
.digits
= maxp
;
1647 /* a = 0.5 * (a + f/a) */
1648 /* [calculated at p then rounded to currentprecision] */
1649 decDivideOp (b
, f
, a
, &workset
, DIVIDE
, &ignore
); /* b=f/a */
1650 decAddOp (b
, b
, a
, &workset
, 0, &ignore
); /* b=b+a */
1651 decMultiplyOp (a
, b
, t
, &workset
, &ignore
); /* a=b*0.5 */
1652 /* assign to approx [round to length] */
1653 decAddOp (a
, &dzero
, a
, &approxset
, 0, &ignore
);
1654 if (workset
.digits
== maxp
)
1655 break; /* just did final */
1658 /* a is now at currentprecision and within 1 ulp of the properly */
1659 /* rounded square root of f; to ensure proper rounding, compare */
1660 /* squares of (a - l/2 ulp) and (a + l/2 ulp) with f. */
1661 /* Here workset.digits=maxp and t=0.5 */
1662 workset
.digits
--; /* maxp-1 is OK now */
1663 t
->exponent
= -set
->digits
- 1; /* make 0.5 ulp */
1664 decNumberCopy (b
, a
);
1665 decAddOp (b
, b
, t
, &workset
, DECNEG
, &ignore
); /* b = a - 0.5 ulp */
1666 workset
.round
= DEC_ROUND_UP
;
1667 decMultiplyOp (b
, b
, b
, &workset
, &ignore
); /* b = mulru(b, b) */
1668 decCompareOp (b
, f
, b
, &workset
, COMPARE
, &ignore
); /* b ? f, reversed */
1669 if (decNumberIsNegative (b
))
1670 { /* f < b [i.e., b > f] */
1671 /* this is the more common adjustment, though both are rare */
1672 t
->exponent
++; /* make 1.0 ulp */
1673 t
->lsu
[0] = 1; /* .. */
1674 decAddOp (a
, a
, t
, &workset
, DECNEG
, &ignore
); /* a = a - 1 ulp */
1675 /* assign to approx [round to length] */
1676 decAddOp (a
, &dzero
, a
, &approxset
, 0, &ignore
);
1680 decNumberCopy (b
, a
);
1681 decAddOp (b
, b
, t
, &workset
, 0, &ignore
); /* b = a + 0.5 ulp */
1682 workset
.round
= DEC_ROUND_DOWN
;
1683 decMultiplyOp (b
, b
, b
, &workset
, &ignore
); /* b = mulrd(b, b) */
1684 decCompareOp (b
, b
, f
, &workset
, COMPARE
, &ignore
); /* b ? f */
1685 if (decNumberIsNegative (b
))
1687 t
->exponent
++; /* make 1.0 ulp */
1688 t
->lsu
[0] = 1; /* .. */
1689 decAddOp (a
, a
, t
, &workset
, 0, &ignore
); /* a = a + 1 ulp */
1690 /* assign to approx [round to length] */
1691 decAddOp (a
, &dzero
, a
, &approxset
, 0, &ignore
);
1694 /* [no errors are possible in the above, and rounding/inexact during */
1695 /* estimation are irrelevant, so status was not accumulated] */
1697 /* Here, 0.1 <= a < 1 [Hull] */
1698 a
->exponent
+= exp
/ 2; /* set correct exponent */
1700 /* Process Subnormals */
1701 decFinalize (a
, set
, &residue
, &status
);
1703 /* count dropable zeros [after any subnormal rounding] */
1704 decNumberCopy (b
, a
);
1705 decTrim (b
, 1, &dropped
); /* [drops trailing zeros] */
1707 /* Finally set Inexact and Rounded. The answer can only be exact if */
1708 /* it is short enough so that squaring it could fit in set->digits, */
1709 /* so this is the only (relatively rare) time we have to check */
1711 if (b
->digits
* 2 - 1 > set
->digits
)
1713 status
|= DEC_Inexact
| DEC_Rounded
;
1716 { /* could be exact/unrounded */
1717 uInt mstatus
= 0; /* local status */
1718 decMultiplyOp (b
, b
, b
, &workset
, &mstatus
); /* try the multiply */
1720 { /* result won't fit */
1721 status
|= DEC_Inexact
| DEC_Rounded
;
1725 decCompareOp (t
, b
, rhs
, &workset
, COMPARE
, &mstatus
); /* b ? rhs */
1728 status
|= DEC_Inexact
| DEC_Rounded
;
1732 /* here, dropped is the count of trailing zeros in 'a' */
1733 /* use closest exponent to ideal... */
1734 Int todrop
= ideal
- a
->exponent
; /* most we can drop */
1737 { /* ideally would add 0s */
1738 status
|= DEC_Rounded
;
1742 if (dropped
< todrop
)
1743 todrop
= dropped
; /* clamp to those available */
1745 { /* OK, some to drop */
1746 decShiftToLeast (a
->lsu
, D2U (a
->digits
), todrop
);
1747 a
->exponent
+= todrop
; /* maintain numerical value */
1748 a
->digits
-= todrop
; /* new length */
1754 decNumberCopy (res
, a
); /* assume this is the result */
1756 while (0); /* end protected */
1758 if (allocbuff
!= NULL
)
1759 free (allocbuff
); /* drop any storage we used */
1760 if (allocbufa
!= NULL
)
1761 free (allocbufa
); /* .. */
1762 if (allocbufb
!= NULL
)
1763 free (allocbufb
); /* .. */
1764 if (allocrhs
!= NULL
)
1765 free (allocrhs
); /* .. */
1767 decStatus (res
, status
, set
); /* then report status */
1771 /* ------------------------------------------------------------------ */
1772 /* decNumberSubtract -- subtract two Numbers */
1774 /* This computes C = A - B */
1776 /* res is C, the result. C may be A and/or B (e.g., X=X-X) */
1779 /* set is the context */
1781 /* C must have space for set->digits digits. */
1782 /* ------------------------------------------------------------------ */
1784 decNumberSubtract (decNumber
* res
, decNumber
* lhs
,
1785 decNumber
* rhs
, decContext
* set
)
1787 uInt status
= 0; /* accumulator */
1789 decAddOp (res
, lhs
, rhs
, set
, DECNEG
, &status
);
1791 decStatus (res
, status
, set
);
1795 /* ------------------------------------------------------------------ */
1796 /* decNumberToIntegralValue -- round-to-integral-value */
1798 /* res is the result */
1799 /* rhs is input number */
1800 /* set is the context */
1802 /* res must have space for any value of rhs. */
1804 /* This implements the IEEE special operator and therefore treats */
1805 /* special values as valid, and also never sets Inexact. For finite */
1806 /* numbers it returns rescale(rhs, 0) if rhs->exponent is <0. */
1807 /* Otherwise the result is rhs (so no error is possible). */
1809 /* The context is used for rounding mode and status after sNaN, but */
1810 /* the digits setting is ignored. */
1811 /* ------------------------------------------------------------------ */
1813 decNumberToIntegralValue (decNumber
* res
, decNumber
* rhs
, decContext
* set
)
1816 decContext workset
; /* working context */
1819 if (decCheckOperands (res
, DECUNUSED
, rhs
, set
))
1823 /* handle infinities and NaNs */
1824 if (rhs
->bits
& DECSPECIAL
)
1827 if (decNumberIsInfinite (rhs
))
1828 decNumberCopy (res
, rhs
); /* an Infinity */
1830 decNaNs (res
, rhs
, NULL
, &status
); /* a NaN */
1832 decStatus (res
, status
, set
);
1836 /* we have a finite number; no error possible */
1837 if (rhs
->exponent
>= 0)
1838 return decNumberCopy (res
, rhs
);
1839 /* that was easy, but if negative exponent we have work to do... */
1840 workset
= *set
; /* clone rounding, etc. */
1841 workset
.digits
= rhs
->digits
; /* no length rounding */
1842 workset
.traps
= 0; /* no traps */
1843 decNumberZero (&dn
); /* make a number with exponent 0 */
1844 return decNumberQuantize (res
, rhs
, &dn
, &workset
);
1847 /* ================================================================== */
1848 /* Utility routines */
1849 /* ================================================================== */
1851 /* ------------------------------------------------------------------ */
1852 /* decNumberCopy -- copy a number */
1854 /* dest is the target decNumber */
1855 /* src is the source decNumber */
1858 /* (dest==src is allowed and is a no-op) */
1859 /* All fields are updated as required. This is a utility operation, */
1860 /* so special values are unchanged and no error is possible. */
1861 /* ------------------------------------------------------------------ */
1863 decNumberCopy (decNumber
* dest
, decNumber
* src
)
1868 return decNumberZero (dest
);
1872 return dest
; /* no copy required */
1874 /* We use explicit assignments here as structure assignment can copy */
1875 /* more than just the lsu (for small DECDPUN). This would not affect */
1876 /* the value of the results, but would disturb test harness spill */
1878 dest
->bits
= src
->bits
;
1879 dest
->exponent
= src
->exponent
;
1880 dest
->digits
= src
->digits
;
1881 dest
->lsu
[0] = src
->lsu
[0];
1882 if (src
->digits
> DECDPUN
)
1883 { /* more Units to come */
1884 Unit
*s
, *d
, *smsup
; /* work */
1885 /* memcpy for the remaining Units would be safe as they cannot */
1886 /* overlap. However, this explicit loop is faster in short cases. */
1887 d
= dest
->lsu
+ 1; /* -> first destination */
1888 smsup
= src
->lsu
+ D2U (src
->digits
); /* -> source msu+1 */
1889 for (s
= src
->lsu
+ 1; s
< smsup
; s
++, d
++)
1895 /* ------------------------------------------------------------------ */
1896 /* decNumberTrim -- remove insignificant zeros */
1898 /* dn is the number to trim */
1901 /* All fields are updated as required. This is a utility operation, */
1902 /* so special values are unchanged and no error is possible. */
1903 /* ------------------------------------------------------------------ */
1905 decNumberTrim (decNumber
* dn
)
1907 Int dropped
; /* work */
1908 return decTrim (dn
, 0, &dropped
);
1911 /* ------------------------------------------------------------------ */
1912 /* decNumberVersion -- return the name and version of this module */
1914 /* No error is possible. */
1915 /* ------------------------------------------------------------------ */
1917 decNumberVersion (void)
1922 /* ------------------------------------------------------------------ */
1923 /* decNumberZero -- set a number to 0 */
1925 /* dn is the number to set, with space for one digit */
1928 /* No error is possible. */
1929 /* ------------------------------------------------------------------ */
1930 /* Memset is not used as it is much slower in some environments. */
1932 decNumberZero (decNumber
* dn
)
1936 if (decCheckOperands (dn
, DECUNUSED
, DECUNUSED
, DECUNUSED
))
1947 /* ================================================================== */
1948 /* Local routines */
1949 /* ================================================================== */
1951 /* ------------------------------------------------------------------ */
1952 /* decToString -- lay out a number into a string */
1954 /* dn is the number to lay out */
1955 /* string is where to lay out the number */
1956 /* eng is 1 if Engineering, 0 if Scientific */
1958 /* str must be at least dn->digits+14 characters long */
1959 /* No error is possible. */
1961 /* Note that this routine can generate a -0 or 0.000. These are */
1962 /* never generated in subset to-number or arithmetic, but can occur */
1963 /* in non-subset arithmetic (e.g., -1*0 or 1.234-1.234). */
1964 /* ------------------------------------------------------------------ */
1965 /* If DECCHECK is enabled the string "?" is returned if a number is */
1968 /* TODIGIT -- macro to remove the leading digit from the unsigned */
1969 /* integer u at column cut (counting from the right, LSD=0) and place */
1970 /* it as an ASCII character into the character pointed to by c. Note */
1971 /* that cut must be <= 9, and the maximum value for u is 2,000,000,000 */
1972 /* (as is needed for negative exponents of subnormals). The unsigned */
1973 /* integer pow is used as a temporary variable. */
1974 #define TODIGIT(u, cut, c) { \
1976 pow=powers[cut]*2; \
1979 if ((u)>=pow) {(u)-=pow; *(c)+=8;} \
1981 if ((u)>=pow) {(u)-=pow; *(c)+=4;} \
1984 if ((u)>=pow) {(u)-=pow; *(c)+=2;} \
1986 if ((u)>=pow) {(u)-=pow; *(c)+=1;} \
1990 decToString (decNumber
* dn
, char *string
, Flag eng
)
1992 Int exp
= dn
->exponent
; /* local copy */
1993 Int e
; /* E-part value */
1994 Int pre
; /* digits before the '.' */
1995 Int cut
; /* for counting digits in a Unit */
1996 char *c
= string
; /* work [output pointer] */
1997 Unit
*up
= dn
->lsu
+ D2U (dn
->digits
) - 1; /* -> msu [input pointer] */
1998 uInt u
, pow
; /* work */
2001 if (decCheckOperands (DECUNUSED
, dn
, DECUNUSED
, DECUNUSED
))
2003 strcpy (string
, "?");
2008 if (decNumberIsNegative (dn
))
2009 { /* Negatives get a minus (except */
2010 *c
= '-'; /* NaNs, which remove the '-' below) */
2013 if (dn
->bits
& DECSPECIAL
)
2014 { /* Is a special value */
2015 if (decNumberIsInfinite (dn
))
2017 strcpy (c
, "Infinity");
2021 if (dn
->bits
& DECSNAN
)
2022 { /* signalling NaN */
2027 c
+= 3; /* step past */
2028 /* if not a clean non-zero coefficient, that's all we have in a */
2030 if (exp
!= 0 || (*dn
->lsu
== 0 && dn
->digits
== 1))
2032 /* [drop through to add integer] */
2035 /* calculate how many digits in msu, and hence first cut */
2036 cut
= dn
->digits
% DECDPUN
;
2038 cut
= DECDPUN
; /* msu is full */
2039 cut
--; /* power of ten for digit */
2042 { /* simple integer [common fastpath, */
2043 /* used for NaNs, too] */
2044 for (; up
>= dn
->lsu
; up
--)
2045 { /* each Unit from msu */
2046 u
= *up
; /* contains DECDPUN digits to lay out */
2047 for (; cut
>= 0; c
++, cut
--)
2048 TODIGIT (u
, cut
, c
);
2049 cut
= DECDPUN
- 1; /* next Unit has all digits */
2051 *c
= '\0'; /* terminate the string */
2055 /* non-0 exponent -- assume plain form */
2056 pre
= dn
->digits
+ exp
; /* digits before '.' */
2058 if ((exp
> 0) || (pre
< -5))
2059 { /* need exponential form */
2060 e
= exp
+ dn
->digits
- 1; /* calculate E value */
2061 pre
= 1; /* assume one digit before '.' */
2062 if (eng
&& (e
!= 0))
2063 { /* may need to adjust */
2064 Int adj
; /* adjustment */
2065 /* The C remainder operator is undefined for negative numbers, so */
2066 /* we must use positive remainder calculation here */
2078 /* if we are dealing with zero we will use exponent which is a */
2079 /* multiple of three, as expected, but there will only be the */
2080 /* one zero before the E, still. Otherwise note the padding. */
2086 { /* 0.00Esnn needed */
2094 /* lay out the digits of the coefficient, adding 0s and . as needed */
2097 { /* xxx.xxx or xx00 (engineering) form */
2098 for (; pre
> 0; pre
--, c
++, cut
--)
2101 { /* need new Unit */
2103 break; /* out of input digits (pre>digits) */
2108 TODIGIT (u
, cut
, c
);
2110 if (up
> dn
->lsu
|| (up
== dn
->lsu
&& cut
>= 0))
2111 { /* more to come, after '.' */
2117 { /* need new Unit */
2119 break; /* out of input digits */
2124 TODIGIT (u
, cut
, c
);
2128 for (; pre
> 0; pre
--, c
++)
2129 *c
= '0'; /* 0 padding (for engineering) needed */
2132 { /* 0.xxx or 0.000xxx form */
2137 for (; pre
< 0; pre
++, c
++)
2138 *c
= '0'; /* add any 0's after '.' */
2142 { /* need new Unit */
2144 break; /* out of input digits */
2149 TODIGIT (u
, cut
, c
);
2153 /* Finally add the E-part, if needed. It will never be 0, has a
2154 base maximum and minimum of +999999999 through -999999999, but
2155 could range down to -1999999998 for subnormal numbers */
2158 Flag had
= 0; /* 1=had non-zero */
2162 c
++; /* assume positive */
2166 *(c
- 1) = '-'; /* oops, need - */
2167 u
= -e
; /* uInt, please */
2169 /* layout the exponent (_itoa is not ANSI C) */
2170 for (cut
= 9; cut
>= 0; cut
--)
2172 TODIGIT (u
, cut
, c
);
2173 if (*c
== '0' && !had
)
2174 continue; /* skip leading zeros */
2175 had
= 1; /* had non-0 */
2176 c
++; /* step for next */
2179 *c
= '\0'; /* terminate the string (all paths) */
2183 /* ------------------------------------------------------------------ */
2184 /* decAddOp -- add/subtract operation */
2186 /* This computes C = A + B */
2188 /* res is C, the result. C may be A and/or B (e.g., X=X+X) */
2191 /* set is the context */
2192 /* negate is DECNEG if rhs should be negated, or 0 otherwise */
2193 /* status accumulates status for the caller */
2195 /* C must have space for set->digits digits. */
2196 /* ------------------------------------------------------------------ */
2197 /* If possible, we calculate the coefficient directly into C. */
2199 /* -- we need a digits+1 calculation because numbers are unaligned */
2200 /* and span more than set->digits digits */
2201 /* -- a carry to digits+1 digits looks possible */
2202 /* -- C is the same as A or B, and the result would destructively */
2203 /* overlap the A or B coefficient */
2204 /* then we must calculate into a temporary buffer. In this latter */
2205 /* case we use the local (stack) buffer if possible, and only if too */
2206 /* long for that do we resort to malloc. */
2208 /* Misalignment is handled as follows: */
2209 /* Apad: (AExp>BExp) Swap operands and proceed as for BExp>AExp. */
2210 /* BPad: Apply the padding by a combination of shifting (whole */
2211 /* units) and multiplication (part units). */
2213 /* Addition, especially x=x+1, is speed-critical, so we take pains */
2214 /* to make returning as fast as possible, by flagging any allocation. */
2215 /* ------------------------------------------------------------------ */
2217 decAddOp (decNumber
* res
, decNumber
* lhs
,
2218 decNumber
* rhs
, decContext
* set
, uByte negate
, uInt
* status
)
2220 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
2221 decNumber
*allocrhs
= NULL
; /* .., rhs */
2222 Int rhsshift
; /* working shift (in Units) */
2223 Int maxdigits
; /* longest logical length */
2224 Int mult
; /* multiplier */
2225 Int residue
; /* rounding accumulator */
2226 uByte bits
; /* result bits */
2227 Flag diffsign
; /* non-0 if arguments have different sign */
2228 Unit
*acc
; /* accumulator for result */
2229 Unit accbuff
[D2U (DECBUFFER
+ 1)]; /* local buffer [+1 is for possible */
2230 /* final carry digit or DECBUFFER=0] */
2231 Unit
*allocacc
= NULL
; /* -> allocated acc buffer, iff allocated */
2232 Flag alloced
= 0; /* set non-0 if any allocations */
2233 Int reqdigits
= set
->digits
; /* local copy; requested DIGITS */
2234 uByte merged
; /* merged flags */
2235 Int padding
; /* work */
2238 if (decCheckOperands (res
, lhs
, rhs
, set
))
2243 { /* protect allocated storage */
2247 /* reduce operands and set lostDigits status, as needed */
2248 if (lhs
->digits
> reqdigits
)
2250 alloclhs
= decRoundOperand (lhs
, set
, status
);
2251 if (alloclhs
== NULL
)
2256 if (rhs
->digits
> reqdigits
)
2258 allocrhs
= decRoundOperand (rhs
, set
, status
);
2259 if (allocrhs
== NULL
)
2266 /* [following code does not require input rounding] */
2268 /* note whether signs differ */
2269 diffsign
= (Flag
) ((lhs
->bits
^ rhs
->bits
^ negate
) & DECNEG
);
2271 /* handle infinities and NaNs */
2272 merged
= (lhs
->bits
| rhs
->bits
) & DECSPECIAL
;
2274 { /* a special bit set */
2275 if (merged
& (DECSNAN
| DECNAN
)) /* a NaN */
2276 decNaNs (res
, lhs
, rhs
, status
);
2278 { /* one or two infinities */
2279 if (decNumberIsInfinite (lhs
))
2280 { /* LHS is infinity */
2281 /* two infinities with different signs is invalid */
2282 if (decNumberIsInfinite (rhs
) && diffsign
)
2284 *status
|= DEC_Invalid_operation
;
2287 bits
= lhs
->bits
& DECNEG
; /* get sign from LHS */
2290 bits
= (rhs
->bits
^ negate
) & DECNEG
; /* RHS must be Infinity */
2292 decNumberZero (res
);
2293 res
->bits
= bits
; /* set +/- infinity */
2298 /* Quick exit for add 0s; return the non-0, modified as need be */
2301 Int adjust
; /* work */
2302 Int lexp
= lhs
->exponent
; /* save in case LHS==RES */
2303 bits
= lhs
->bits
; /* .. */
2304 residue
= 0; /* clear accumulator */
2305 decCopyFit (res
, rhs
, set
, &residue
, status
); /* copy (as needed) */
2306 res
->bits
^= negate
; /* flip if rhs was negated */
2309 { /* exponents on zeros count */
2311 /* exponent will be the lower of the two */
2312 adjust
= lexp
- res
->exponent
; /* adjustment needed [if -ve] */
2314 { /* both 0: special IEEE 854 rules */
2316 res
->exponent
= lexp
; /* set exponent */
2317 /* 0-0 gives +0 unless rounding to -infinity, and -0-0 gives -0 */
2320 if (set
->round
!= DEC_ROUND_FLOOR
)
2323 res
->bits
= DECNEG
; /* preserve 0 sign */
2329 { /* 0-padding needed */
2330 if ((res
->digits
- adjust
) > set
->digits
)
2332 adjust
= res
->digits
- set
->digits
; /* to fit exactly */
2333 *status
|= DEC_Rounded
; /* [but exact] */
2336 decShiftToMost (res
->lsu
, res
->digits
, -adjust
);
2337 res
->exponent
+= adjust
; /* set the exponent. */
2343 decFinish (res
, set
, &residue
, status
); /* clean and finalize */
2348 { /* [lhs is non-zero] */
2349 Int adjust
; /* work */
2350 Int rexp
= rhs
->exponent
; /* save in case RHS==RES */
2351 bits
= rhs
->bits
; /* be clean */
2352 residue
= 0; /* clear accumulator */
2353 decCopyFit (res
, lhs
, set
, &residue
, status
); /* copy (as needed) */
2356 { /* exponents on zeros count */
2358 /* exponent will be the lower of the two */
2359 /* [0-0 case handled above] */
2360 adjust
= rexp
- res
->exponent
; /* adjustment needed [if -ve] */
2362 { /* 0-padding needed */
2363 if ((res
->digits
- adjust
) > set
->digits
)
2365 adjust
= res
->digits
- set
->digits
; /* to fit exactly */
2366 *status
|= DEC_Rounded
; /* [but exact] */
2369 decShiftToMost (res
->lsu
, res
->digits
, -adjust
);
2370 res
->exponent
+= adjust
; /* set the exponent. */
2375 decFinish (res
, set
, &residue
, status
); /* clean and finalize */
2378 /* [both fastpath and mainpath code below assume these cases */
2379 /* (notably 0-0) have already been handled] */
2381 /* calculate the padding needed to align the operands */
2382 padding
= rhs
->exponent
- lhs
->exponent
;
2384 /* Fastpath cases where the numbers are aligned and normal, the RHS */
2385 /* is all in one unit, no operand rounding is needed, and no carry, */
2386 /* lengthening, or borrow is needed */
2387 if (rhs
->digits
<= DECDPUN
&& padding
== 0 && rhs
->exponent
>= set
->emin
/* [some normals drop through] */
2388 && rhs
->digits
<= reqdigits
&& lhs
->digits
<= reqdigits
)
2390 Int partial
= *lhs
->lsu
;
2393 Int maxv
= DECDPUNMAX
; /* highest no-overflow */
2394 if (lhs
->digits
< DECDPUN
)
2395 maxv
= powers
[lhs
->digits
] - 1;
2396 partial
+= *rhs
->lsu
;
2397 if (partial
<= maxv
)
2400 decNumberCopy (res
, lhs
); /* not in place */
2401 *res
->lsu
= (Unit
) partial
; /* [copy could have overwritten RHS] */
2404 /* else drop out for careful add */
2407 { /* signs differ */
2408 partial
-= *rhs
->lsu
;
2410 { /* no borrow needed, and non-0 result */
2412 decNumberCopy (res
, lhs
); /* not in place */
2413 *res
->lsu
= (Unit
) partial
;
2414 /* this could have reduced digits [but result>0] */
2415 res
->digits
= decGetDigits (res
->lsu
, D2U (res
->digits
));
2418 /* else drop out for careful subtract */
2422 /* Now align (pad) the lhs or rhs so we can add or subtract them, as
2423 necessary. If one number is much larger than the other (that is,
2424 if in plain form there is a least one digit between the lowest
2425 digit or one and the highest of the other) we need to pad with up
2426 to DIGITS-1 trailing zeros, and then apply rounding (as exotic
2427 rounding modes may be affected by the residue).
2429 rhsshift
= 0; /* rhs shift to left (padding) in Units */
2430 bits
= lhs
->bits
; /* assume sign is that of LHS */
2431 mult
= 1; /* likely multiplier */
2433 /* if padding==0 the operands are aligned; no padding needed */
2436 /* some padding needed */
2437 /* We always pad the RHS, as we can then effect any required */
2438 /* padding by a combination of shifts and a multiply */
2441 { /* LHS needs the padding */
2443 padding
= -padding
; /* will be +ve */
2444 bits
= (uByte
) (rhs
->bits
^ negate
); /* assumed sign is now that of RHS */
2451 /* If, after pad, rhs would be longer than lhs by digits+1 or */
2452 /* more then lhs cannot affect the answer, except as a residue, */
2453 /* so we only need to pad up to a length of DIGITS+1. */
2454 if (rhs
->digits
+ padding
> lhs
->digits
+ reqdigits
+ 1)
2456 /* The RHS is sufficient */
2457 /* for residue we use the relative sign indication... */
2458 Int shift
= reqdigits
- rhs
->digits
; /* left shift needed */
2459 residue
= 1; /* residue for rounding */
2461 residue
= -residue
; /* signs differ */
2462 /* copy, shortening if necessary */
2463 decCopyFit (res
, rhs
, set
, &residue
, status
);
2464 /* if it was already shorter, then need to pad with zeros */
2467 res
->digits
= decShiftToMost (res
->lsu
, res
->digits
, shift
);
2468 res
->exponent
-= shift
; /* adjust the exponent. */
2470 /* flip the result sign if unswapped and rhs was negated */
2472 res
->bits
^= negate
;
2473 decFinish (res
, set
, &residue
, status
); /* done */
2477 /* LHS digits may affect result */
2478 rhsshift
= D2U (padding
+ 1) - 1; /* this much by Unit shift .. */
2479 mult
= powers
[padding
- (rhsshift
* DECDPUN
)]; /* .. this by multiplication */
2480 } /* padding needed */
2483 mult
= -mult
; /* signs differ */
2485 /* determine the longer operand */
2486 maxdigits
= rhs
->digits
+ padding
; /* virtual length of RHS */
2487 if (lhs
->digits
> maxdigits
)
2488 maxdigits
= lhs
->digits
;
2490 /* Decide on the result buffer to use; if possible place directly */
2492 acc
= res
->lsu
; /* assume build direct */
2493 /* If destructive overlap, or the number is too long, or a carry or */
2494 /* borrow to DIGITS+1 might be possible we must use a buffer. */
2495 /* [Might be worth more sophisticated tests when maxdigits==reqdigits] */
2496 if ((maxdigits
>= reqdigits
) /* is, or could be, too large */
2497 || (res
== rhs
&& rhsshift
> 0))
2498 { /* destructive overlap */
2499 /* buffer needed; choose it */
2500 /* we'll need units for maxdigits digits, +1 Unit for carry or borrow */
2501 Int need
= D2U (maxdigits
) + 1;
2502 acc
= accbuff
; /* assume use local buffer */
2503 if (need
* sizeof (Unit
) > sizeof (accbuff
))
2505 allocacc
= (Unit
*) malloc (need
* sizeof (Unit
));
2506 if (allocacc
== NULL
)
2507 { /* hopeless -- abandon */
2508 *status
|= DEC_Insufficient_storage
;
2516 res
->bits
= (uByte
) (bits
& DECNEG
); /* it's now safe to overwrite.. */
2517 res
->exponent
= lhs
->exponent
; /* .. operands (even if aliased) */
2520 decDumpAr ('A', lhs
->lsu
, D2U (lhs
->digits
));
2521 decDumpAr ('B', rhs
->lsu
, D2U (rhs
->digits
));
2522 printf (" :h: %d %d\n", rhsshift
, mult
);
2525 /* add [A+B*m] or subtract [A+B*(-m)] */
2526 res
->digits
= decUnitAddSub (lhs
->lsu
, D2U (lhs
->digits
), rhs
->lsu
, D2U (rhs
->digits
), rhsshift
, acc
, mult
) * DECDPUN
; /* [units -> digits] */
2527 if (res
->digits
< 0)
2529 res
->digits
= -res
->digits
;
2530 res
->bits
^= DECNEG
; /* flip the sign */
2533 decDumpAr ('+', acc
, D2U (res
->digits
));
2536 /* If we used a buffer we need to copy back, possibly shortening */
2537 /* (If we didn't use buffer it must have fit, so can't need rounding */
2538 /* and residue must be 0.) */
2539 residue
= 0; /* clear accumulator */
2540 if (acc
!= res
->lsu
)
2544 { /* round from first significant digit */
2546 /* remove leading zeros that we added due to rounding up to */
2547 /* integral Units -- before the test for rounding. */
2548 if (res
->digits
> reqdigits
)
2549 res
->digits
= decGetDigits (acc
, D2U (res
->digits
));
2550 decSetCoeff (res
, set
, acc
, res
->digits
, &residue
, status
);
2554 { /* subset arithmetic rounds from original significant digit */
2555 /* We may have an underestimate. This only occurs when both */
2556 /* numbers fit in DECDPUN digits and we are padding with a */
2557 /* negative multiple (-10, -100...) and the top digit(s) become */
2558 /* 0. (This only matters if we are using X3.274 rules where the */
2559 /* leading zero could be included in the rounding.) */
2560 if (res
->digits
< maxdigits
)
2562 *(acc
+ D2U (res
->digits
)) = 0; /* ensure leading 0 is there */
2563 res
->digits
= maxdigits
;
2567 /* remove leading zeros that we added due to rounding up to */
2568 /* integral Units (but only those in excess of the original */
2569 /* maxdigits length, unless extended) before test for rounding. */
2570 if (res
->digits
> reqdigits
)
2572 res
->digits
= decGetDigits (acc
, D2U (res
->digits
));
2573 if (res
->digits
< maxdigits
)
2574 res
->digits
= maxdigits
;
2577 decSetCoeff (res
, set
, acc
, res
->digits
, &residue
, status
);
2578 /* Now apply rounding if needed before removing leading zeros. */
2579 /* This is safe because subnormals are not a possibility */
2582 decApplyRound (res
, set
, residue
, status
);
2583 residue
= 0; /* we did what we had to do */
2589 /* strip leading zeros [these were left on in case of subset subtract] */
2590 res
->digits
= decGetDigits (res
->lsu
, D2U (res
->digits
));
2592 /* apply checks and rounding */
2593 decFinish (res
, set
, &residue
, status
);
2595 /* "When the sum of two operands with opposite signs is exactly */
2596 /* zero, the sign of that sum shall be '+' in all rounding modes */
2597 /* except round toward -Infinity, in which mode that sign shall be */
2598 /* '-'." [Subset zeros also never have '-', set by decFinish.] */
2599 if (ISZERO (res
) && diffsign
2603 && (*status
& DEC_Inexact
) == 0)
2605 if (set
->round
== DEC_ROUND_FLOOR
)
2606 res
->bits
|= DECNEG
; /* sign - */
2608 res
->bits
&= ~DECNEG
; /* sign + */
2611 while (0); /* end protected */
2615 if (allocacc
!= NULL
)
2616 free (allocacc
); /* drop any storage we used */
2617 if (allocrhs
!= NULL
)
2618 free (allocrhs
); /* .. */
2619 if (alloclhs
!= NULL
)
2620 free (alloclhs
); /* .. */
2625 /* ------------------------------------------------------------------ */
2626 /* decDivideOp -- division operation */
2628 /* This routine performs the calculations for all four division */
2629 /* operators (divide, divideInteger, remainder, remainderNear). */
2633 /* res is C, the result. C may be A and/or B (e.g., X=X/X) */
2636 /* set is the context */
2637 /* op is DIVIDE, DIVIDEINT, REMAINDER, or REMNEAR respectively. */
2638 /* status is the usual accumulator */
2640 /* C must have space for set->digits digits. */
2642 /* ------------------------------------------------------------------ */
2643 /* The underlying algorithm of this routine is the same as in the */
2644 /* 1981 S/370 implementation, that is, non-restoring long division */
2645 /* with bi-unit (rather than bi-digit) estimation for each unit */
2646 /* multiplier. In this pseudocode overview, complications for the */
2647 /* Remainder operators and division residues for exact rounding are */
2648 /* omitted for clarity. */
2650 /* Prepare operands and handle special values */
2651 /* Test for x/0 and then 0/x */
2652 /* Exp =Exp1 - Exp2 */
2653 /* Exp =Exp +len(var1) -len(var2) */
2654 /* Sign=Sign1 * Sign2 */
2655 /* Pad accumulator (Var1) to double-length with 0's (pad1) */
2656 /* Pad Var2 to same length as Var1 */
2657 /* msu2pair/plus=1st 2 or 1 units of var2, +1 to allow for round */
2659 /* Do until (have=digits+1 OR residue=0) */
2660 /* if exp<0 then if integer divide/residue then leave */
2663 /* compare numbers */
2664 /* if <0 then leave inner_loop */
2665 /* if =0 then (* quick exit without subtract *) do */
2666 /* this_unit=this_unit+1; output this_unit */
2667 /* leave outer_loop; end */
2668 /* Compare lengths of numbers (mantissae): */
2669 /* If same then tops2=msu2pair -- {units 1&2 of var2} */
2670 /* else tops2=msu2plus -- {0, unit 1 of var2} */
2671 /* tops1=first_unit_of_Var1*10**DECDPUN +second_unit_of_var1 */
2672 /* mult=tops1/tops2 -- Good and safe guess at divisor */
2673 /* if mult=0 then mult=1 */
2674 /* this_unit=this_unit+mult */
2676 /* end inner_loop */
2677 /* if have\=0 | this_unit\=0 then do */
2678 /* output this_unit */
2679 /* have=have+1; end */
2682 /* end outer_loop */
2683 /* exp=exp+1 -- set the proper exponent */
2684 /* if have=0 then generate answer=0 */
2685 /* Return (Result is defined by Var1) */
2687 /* ------------------------------------------------------------------ */
2688 /* We need two working buffers during the long division; one (digits+ */
2689 /* 1) to accumulate the result, and the other (up to 2*digits+1) for */
2690 /* long subtractions. These are acc and var1 respectively. */
2691 /* var1 is a copy of the lhs coefficient, var2 is the rhs coefficient.*/
2692 /* ------------------------------------------------------------------ */
2694 decDivideOp (decNumber
* res
,
2695 decNumber
* lhs
, decNumber
* rhs
,
2696 decContext
* set
, Flag op
, uInt
* status
)
2698 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
2699 decNumber
*allocrhs
= NULL
; /* .., rhs */
2700 Unit accbuff
[D2U (DECBUFFER
+ DECDPUN
)]; /* local buffer */
2701 Unit
*acc
= accbuff
; /* -> accumulator array for result */
2702 Unit
*allocacc
= NULL
; /* -> allocated buffer, iff allocated */
2703 Unit
*accnext
; /* -> where next digit will go */
2704 Int acclength
; /* length of acc needed [Units] */
2705 Int accunits
; /* count of units accumulated */
2706 Int accdigits
; /* count of digits accumulated */
2708 Unit varbuff
[D2U (DECBUFFER
* 2 + DECDPUN
) * sizeof (Unit
)]; /* buffer for var1 */
2709 Unit
*var1
= varbuff
; /* -> var1 array for long subtraction */
2710 Unit
*varalloc
= NULL
; /* -> allocated buffer, iff used */
2712 Unit
*var2
; /* -> var2 array */
2714 Int var1units
, var2units
; /* actual lengths */
2715 Int var2ulen
; /* logical length (units) */
2716 Int var1initpad
= 0; /* var1 initial padding (digits) */
2717 Unit
*msu1
, *msu2
; /* -> msu of each var */
2718 Int msu2plus
; /* msu2 plus one [does not vary] */
2719 eInt msu2pair
; /* msu2 pair plus one [does not vary] */
2720 Int maxdigits
; /* longest LHS or required acc length */
2721 Int mult
; /* multiplier for subtraction */
2722 Unit thisunit
; /* current unit being accumulated */
2723 Int residue
; /* for rounding */
2724 Int reqdigits
= set
->digits
; /* requested DIGITS */
2725 Int exponent
; /* working exponent */
2726 Int maxexponent
= 0; /* DIVIDE maximum exponent if unrounded */
2727 uByte bits
; /* working sign */
2728 uByte merged
; /* merged flags */
2729 Unit
*target
, *source
; /* work */
2730 uInt
const *pow
; /* .. */
2731 Int shift
, cut
; /* .. */
2733 Int dropped
; /* work */
2737 if (decCheckOperands (res
, lhs
, rhs
, set
))
2742 { /* protect allocated storage */
2746 /* reduce operands and set lostDigits status, as needed */
2747 if (lhs
->digits
> reqdigits
)
2749 alloclhs
= decRoundOperand (lhs
, set
, status
);
2750 if (alloclhs
== NULL
)
2754 if (rhs
->digits
> reqdigits
)
2756 allocrhs
= decRoundOperand (rhs
, set
, status
);
2757 if (allocrhs
== NULL
)
2763 /* [following code does not require input rounding] */
2765 bits
= (lhs
->bits
^ rhs
->bits
) & DECNEG
; /* assumed sign for divisions */
2767 /* handle infinities and NaNs */
2768 merged
= (lhs
->bits
| rhs
->bits
) & DECSPECIAL
;
2770 { /* a special bit set */
2771 if (merged
& (DECSNAN
| DECNAN
))
2772 { /* one or two NaNs */
2773 decNaNs (res
, lhs
, rhs
, status
);
2776 /* one or two infinities */
2777 if (decNumberIsInfinite (lhs
))
2778 { /* LHS (dividend) is infinite */
2779 if (decNumberIsInfinite (rhs
) || /* two infinities are invalid .. */
2780 op
& (REMAINDER
| REMNEAR
))
2781 { /* as is remainder of infinity */
2782 *status
|= DEC_Invalid_operation
;
2785 /* [Note that infinity/0 raises no exceptions] */
2786 decNumberZero (res
);
2787 res
->bits
= bits
| DECINF
; /* set +/- infinity */
2791 { /* RHS (divisor) is infinite */
2793 if (op
& (REMAINDER
| REMNEAR
))
2795 /* result is [finished clone of] lhs */
2796 decCopyFit (res
, lhs
, set
, &residue
, status
);
2800 decNumberZero (res
);
2801 res
->bits
= bits
; /* set +/- zero */
2802 /* for DIVIDEINT the exponent is always 0. For DIVIDE, result */
2803 /* is a 0 with infinitely negative exponent, clamped to minimum */
2806 res
->exponent
= set
->emin
- set
->digits
+ 1;
2807 *status
|= DEC_Clamped
;
2810 decFinish (res
, set
, &residue
, status
);
2815 /* handle 0 rhs (x/0) */
2817 { /* x/0 is always exceptional */
2820 decNumberZero (res
); /* [after lhs test] */
2821 *status
|= DEC_Division_undefined
; /* 0/0 will become NaN */
2825 decNumberZero (res
);
2826 if (op
& (REMAINDER
| REMNEAR
))
2827 *status
|= DEC_Invalid_operation
;
2830 *status
|= DEC_Division_by_zero
; /* x/0 */
2831 res
->bits
= bits
| DECINF
; /* .. is +/- Infinity */
2837 /* handle 0 lhs (0/x) */
2842 decNumberZero (res
);
2849 exponent
= lhs
->exponent
- rhs
->exponent
; /* ideal exponent */
2850 decNumberCopy (res
, lhs
); /* [zeros always fit] */
2851 res
->bits
= bits
; /* sign as computed */
2852 res
->exponent
= exponent
; /* exponent, too */
2853 decFinalize (res
, set
, &residue
, status
); /* check exponent */
2855 else if (op
& DIVIDEINT
)
2857 decNumberZero (res
); /* integer 0 */
2858 res
->bits
= bits
; /* sign as computed */
2862 exponent
= rhs
->exponent
; /* [save in case overwrite] */
2863 decNumberCopy (res
, lhs
); /* [zeros always fit] */
2864 if (exponent
< res
->exponent
)
2865 res
->exponent
= exponent
; /* use lower */
2873 /* Precalculate exponent. This starts off adjusted (and hence fits */
2874 /* in 31 bits) and becomes the usual unadjusted exponent as the */
2875 /* division proceeds. The order of evaluation is important, here, */
2876 /* to avoid wrap. */
2878 (lhs
->exponent
+ lhs
->digits
) - (rhs
->exponent
+ rhs
->digits
);
2880 /* If the working exponent is -ve, then some quick exits are */
2881 /* possible because the quotient is known to be <1 */
2882 /* [for REMNEAR, it needs to be < -1, as -0.5 could need work] */
2883 if (exponent
< 0 && !(op
== DIVIDE
))
2887 decNumberZero (res
); /* integer part is 0 */
2891 res
->bits
= bits
; /* set +/- zero */
2894 /* we can fastpath remainders so long as the lhs has the */
2895 /* smaller (or equal) exponent */
2896 if (lhs
->exponent
<= rhs
->exponent
)
2898 if (op
& REMAINDER
|| exponent
< -1)
2900 /* It is REMAINDER or safe REMNEAR; result is [finished */
2901 /* clone of] lhs (r = x - 0*y) */
2903 decCopyFit (res
, lhs
, set
, &residue
, status
);
2904 decFinish (res
, set
, &residue
, status
);
2907 /* [unsafe REMNEAR drops through] */
2911 /* We need long (slow) division; roll up the sleeves... */
2913 /* The accumulator will hold the quotient of the division. */
2914 /* If it needs to be too long for stack storage, then allocate. */
2915 acclength
= D2U (reqdigits
+ DECDPUN
); /* in Units */
2916 if (acclength
* sizeof (Unit
) > sizeof (accbuff
))
2918 allocacc
= (Unit
*) malloc (acclength
* sizeof (Unit
));
2919 if (allocacc
== NULL
)
2920 { /* hopeless -- abandon */
2921 *status
|= DEC_Insufficient_storage
;
2924 acc
= allocacc
; /* use the allocated space */
2927 /* var1 is the padded LHS ready for subtractions. */
2928 /* If it needs to be too long for stack storage, then allocate. */
2929 /* The maximum units we need for var1 (long subtraction) is: */
2931 /* (rhs->digits+reqdigits-1) -- to allow full slide to right */
2932 /* or (lhs->digits) -- to allow for long lhs */
2933 /* whichever is larger */
2934 /* +1 -- for rounding of slide to right */
2935 /* +1 -- for leading 0s */
2936 /* +1 -- for pre-adjust if a remainder or DIVIDEINT */
2937 /* [Note: unused units do not participate in decUnitAddSub data] */
2938 maxdigits
= rhs
->digits
+ reqdigits
- 1;
2939 if (lhs
->digits
> maxdigits
)
2940 maxdigits
= lhs
->digits
;
2941 var1units
= D2U (maxdigits
) + 2;
2942 /* allocate a guard unit above msu1 for REMAINDERNEAR */
2945 if ((var1units
+ 1) * sizeof (Unit
) > sizeof (varbuff
))
2947 varalloc
= (Unit
*) malloc ((var1units
+ 1) * sizeof (Unit
));
2948 if (varalloc
== NULL
)
2949 { /* hopeless -- abandon */
2950 *status
|= DEC_Insufficient_storage
;
2953 var1
= varalloc
; /* use the allocated space */
2956 /* Extend the lhs and rhs to full long subtraction length. The lhs */
2957 /* is truly extended into the var1 buffer, with 0 padding, so we can */
2958 /* subtract in place. The rhs (var2) has virtual padding */
2959 /* (implemented by decUnitAddSub). */
2960 /* We allocated one guard unit above msu1 for rem=rem+rem in REMAINDERNEAR */
2961 msu1
= var1
+ var1units
- 1; /* msu of var1 */
2962 source
= lhs
->lsu
+ D2U (lhs
->digits
) - 1; /* msu of input array */
2963 for (target
= msu1
; source
>= lhs
->lsu
; source
--, target
--)
2965 for (; target
>= var1
; target
--)
2968 /* rhs (var2) is left-aligned with var1 at the start */
2969 var2ulen
= var1units
; /* rhs logical length (units) */
2970 var2units
= D2U (rhs
->digits
); /* rhs actual length (units) */
2971 var2
= rhs
->lsu
; /* -> rhs array */
2972 msu2
= var2
+ var2units
- 1; /* -> msu of var2 [never changes] */
2973 /* now set up the variables which we'll use for estimating the */
2974 /* multiplication factor. If these variables are not exact, we add */
2975 /* 1 to make sure that we never overestimate the multiplier. */
2976 msu2plus
= *msu2
; /* it's value .. */
2978 msu2plus
++; /* .. +1 if any more */
2979 msu2pair
= (eInt
) * msu2
* (DECDPUNMAX
+ 1); /* top two pair .. */
2981 { /* .. [else treat 2nd as 0] */
2982 msu2pair
+= *(msu2
- 1); /* .. */
2984 msu2pair
++; /* .. +1 if any more */
2987 /* Since we are working in units, the units may have leading zeros, */
2988 /* but we calculated the exponent on the assumption that they are */
2989 /* both left-aligned. Adjust the exponent to compensate: add the */
2990 /* number of leading zeros in var1 msu and subtract those in var2 msu. */
2991 /* [We actually do this by counting the digits and negating, as */
2992 /* lead1=DECDPUN-digits1, and similarly for lead2.] */
2993 for (pow
= &powers
[1]; *msu1
>= *pow
; pow
++)
2995 for (pow
= &powers
[1]; *msu2
>= *pow
; pow
++)
2998 /* Now, if doing an integer divide or remainder, we want to ensure */
2999 /* that the result will be Unit-aligned. To do this, we shift the */
3000 /* var1 accumulator towards least if need be. (It's much easier to */
3001 /* do this now than to reassemble the residue afterwards, if we are */
3002 /* doing a remainder.) Also ensure the exponent is not negative. */
3006 /* save the initial 'false' padding of var1, in digits */
3007 var1initpad
= (var1units
- D2U (lhs
->digits
)) * DECDPUN
;
3008 /* Determine the shift to do. */
3012 cut
= DECDPUN
- exponent
% DECDPUN
;
3013 decShiftToLeast (var1
, var1units
, cut
);
3014 exponent
+= cut
; /* maintain numerical value */
3015 var1initpad
-= cut
; /* .. and reduce padding */
3016 /* clean any most-significant units we just emptied */
3017 for (u
= msu1
; cut
>= DECDPUN
; cut
-= DECDPUN
, u
--)
3022 maxexponent
= lhs
->exponent
- rhs
->exponent
; /* save */
3023 /* optimization: if the first iteration will just produce 0, */
3024 /* preadjust to skip it [valid for DIVIDE only] */
3027 var2ulen
--; /* shift down */
3028 exponent
-= DECDPUN
; /* update the exponent */
3032 /* ---- start the long-division loops ------------------------------ */
3033 accunits
= 0; /* no units accumulated yet */
3034 accdigits
= 0; /* .. or digits */
3035 accnext
= acc
+ acclength
- 1; /* -> msu of acc [NB: allows digits+1] */
3037 { /* outer forever loop */
3038 thisunit
= 0; /* current unit assumed 0 */
3039 /* find the next unit */
3041 { /* inner forever loop */
3042 /* strip leading zero units [from either pre-adjust or from */
3043 /* subtract last time around]. Leave at least one unit. */
3044 for (; *msu1
== 0 && msu1
> var1
; msu1
--)
3047 if (var1units
< var2ulen
)
3048 break; /* var1 too low for subtract */
3049 if (var1units
== var2ulen
)
3050 { /* unit-by-unit compare needed */
3051 /* compare the two numbers, from msu */
3052 Unit
*pv1
, *pv2
, v2
; /* units to compare */
3053 pv2
= msu2
; /* -> msu */
3054 for (pv1
= msu1
;; pv1
--, pv2
--)
3056 /* v1=*pv1 -- always OK */
3057 v2
= 0; /* assume in padding */
3059 v2
= *pv2
; /* in range */
3061 break; /* no longer the same */
3063 break; /* done; leave pv1 as is */
3065 /* here when all inspected or a difference seen */
3067 break; /* var1 too low to subtract */
3069 { /* var1 == var2 */
3070 /* reach here if var1 and var2 are identical; subtraction */
3071 /* would increase digit by one, and the residue will be 0 so */
3072 /* we are done; leave the loop with residue set to 0. */
3073 thisunit
++; /* as though subtracted */
3074 *var1
= 0; /* set var1 to 0 */
3075 var1units
= 1; /* .. */
3076 break; /* from inner */
3077 } /* var1 == var2 */
3078 /* *pv1>v2. Prepare for real subtraction; the lengths are equal */
3079 /* Estimate the multiplier (there's always a msu1-1)... */
3080 /* Bring in two units of var2 to provide a good estimate. */
3082 (Int
) (((eInt
) * msu1
* (DECDPUNMAX
+ 1) +
3083 *(msu1
- 1)) / msu2pair
);
3084 } /* lengths the same */
3086 { /* var1units > var2ulen, so subtraction is safe */
3087 /* The var2 msu is one unit towards the lsu of the var1 msu, */
3088 /* so we can only use one unit for var2. */
3090 (Int
) (((eInt
) * msu1
* (DECDPUNMAX
+ 1) +
3091 *(msu1
- 1)) / msu2plus
);
3094 mult
= 1; /* must always be at least 1 */
3095 /* subtraction needed; var1 is > var2 */
3096 thisunit
= (Unit
) (thisunit
+ mult
); /* accumulate */
3097 /* subtract var1-var2, into var1; only the overlap needs */
3098 /* processing, as we are in place */
3099 shift
= var2ulen
- var2units
;
3101 decDumpAr ('1', &var1
[shift
], var1units
- shift
);
3102 decDumpAr ('2', var2
, var2units
);
3103 printf ("m=%d\n", -mult
);
3105 decUnitAddSub (&var1
[shift
], var1units
- shift
,
3106 var2
, var2units
, 0, &var1
[shift
], -mult
);
3108 decDumpAr ('#', &var1
[shift
], var1units
- shift
);
3110 /* var1 now probably has leading zeros; these are removed at the */
3111 /* top of the inner loop. */
3114 /* We have the next unit; unless it's a leading zero, add to acc */
3115 if (accunits
!= 0 || thisunit
!= 0)
3116 { /* put the unit we got */
3117 *accnext
= thisunit
; /* store in accumulator */
3118 /* account exactly for the digits we got */
3121 accdigits
++; /* at least one */
3122 for (pow
= &powers
[1]; thisunit
>= *pow
; pow
++)
3126 accdigits
+= DECDPUN
;
3127 accunits
++; /* update count */
3128 accnext
--; /* ready for next */
3129 if (accdigits
> reqdigits
)
3130 break; /* we have all we need */
3133 /* if the residue is zero, we're done (unless divide or */
3134 /* divideInteger and we haven't got enough digits yet) */
3135 if (*var1
== 0 && var1units
== 1)
3136 { /* residue is 0 */
3137 if (op
& (REMAINDER
| REMNEAR
))
3139 if ((op
& DIVIDE
) && (exponent
<= maxexponent
))
3141 /* [drop through if divideInteger] */
3143 /* we've also done enough if calculating remainder or integer */
3144 /* divide and we just did the last ('units') unit */
3145 if (exponent
== 0 && !(op
& DIVIDE
))
3148 /* to get here, var1 is less than var2, so divide var2 by the per- */
3149 /* Unit power of ten and go for the next digit */
3150 var2ulen
--; /* shift down */
3151 exponent
-= DECDPUN
; /* update the exponent */
3154 /* ---- division is complete --------------------------------------- */
3155 /* here: acc has at least reqdigits+1 of good results (or fewer */
3156 /* if early stop), starting at accnext+1 (its lsu) */
3157 /* var1 has any residue at the stopping point */
3158 /* accunits is the number of digits we collected in acc */
3161 accunits
= 1; /* show we have one .. */
3162 accdigits
= 1; /* .. */
3163 *accnext
= 0; /* .. whose value is 0 */
3166 accnext
++; /* back to last placed */
3167 /* accnext now -> lowest unit of result */
3169 residue
= 0; /* assume no residue */
3172 /* record the presence of any residue, for rounding */
3173 if (*var1
!= 0 || var1units
> 1)
3177 /* We had an exact division; clean up spurious trailing 0s. */
3178 /* There will be at most DECDPUN-1, from the final multiply, */
3179 /* and then only if the result is non-0 (and even) and the */
3180 /* exponent is 'loose'. */
3182 Unit lsu
= *accnext
;
3183 if (!(lsu
& 0x01) && (lsu
!= 0))
3185 /* count the trailing zeros */
3188 { /* [will terminate because lsu!=0] */
3189 if (exponent
>= maxexponent
)
3190 break; /* don't chop real 0s */
3192 if ((lsu
- QUOT10 (lsu
, drop
+ 1)
3193 * powers
[drop
+ 1]) != 0)
3194 break; /* found non-0 digit */
3196 if (lsu
% powers
[drop
+ 1] != 0)
3197 break; /* found non-0 digit */
3203 accunits
= decShiftToLeast (accnext
, accunits
, drop
);
3204 accdigits
= decGetDigits (accnext
, accunits
);
3205 accunits
= D2U (accdigits
);
3206 /* [exponent was adjusted in the loop] */
3208 } /* neither odd nor 0 */
3210 } /* exact divide */
3212 else /* op!=DIVIDE */
3214 /* check for coefficient overflow */
3215 if (accdigits
+ exponent
> reqdigits
)
3217 *status
|= DEC_Division_impossible
;
3220 if (op
& (REMAINDER
| REMNEAR
))
3222 /* [Here, the exponent will be 0, because we adjusted var1 */
3223 /* appropriately.] */
3224 Int postshift
; /* work */
3225 Flag wasodd
= 0; /* integer was odd */
3226 Unit
*quotlsu
; /* for save */
3227 Int quotdigits
; /* .. */
3229 /* Fastpath when residue is truly 0 is worthwhile [and */
3230 /* simplifies the code below] */
3231 if (*var1
== 0 && var1units
== 1)
3232 { /* residue is 0 */
3233 Int exp
= lhs
->exponent
; /* save min(exponents) */
3234 if (rhs
->exponent
< exp
)
3235 exp
= rhs
->exponent
;
3236 decNumberZero (res
); /* 0 coefficient */
3240 res
->exponent
= exp
; /* .. with proper exponent */
3243 /* note if the quotient was odd */
3244 if (*accnext
& 0x01)
3245 wasodd
= 1; /* acc is odd */
3246 quotlsu
= accnext
; /* save in case need to reinspect */
3247 quotdigits
= accdigits
; /* .. */
3249 /* treat the residue, in var1, as the value to return, via acc */
3250 /* calculate the unused zero digits. This is the smaller of: */
3251 /* var1 initial padding (saved above) */
3252 /* var2 residual padding, which happens to be given by: */
3254 var1initpad
+ exponent
- lhs
->exponent
+ rhs
->exponent
;
3255 /* [the 'exponent' term accounts for the shifts during divide] */
3256 if (var1initpad
< postshift
)
3257 postshift
= var1initpad
;
3259 /* shift var1 the requested amount, and adjust its digits */
3260 var1units
= decShiftToLeast (var1
, var1units
, postshift
);
3262 accdigits
= decGetDigits (var1
, var1units
);
3263 accunits
= D2U (accdigits
);
3265 exponent
= lhs
->exponent
; /* exponent is smaller of lhs & rhs */
3266 if (rhs
->exponent
< exponent
)
3267 exponent
= rhs
->exponent
;
3268 bits
= lhs
->bits
; /* remainder sign is always as lhs */
3270 /* Now correct the result if we are doing remainderNear; if it */
3271 /* (looking just at coefficients) is > rhs/2, or == rhs/2 and */
3272 /* the integer was odd then the result should be rem-rhs. */
3275 Int compare
, tarunits
; /* work */
3279 /* calculate remainder*2 into the var1 buffer (which has */
3280 /* 'headroom' of an extra unit and hence enough space) */
3281 /* [a dedicated 'double' loop would be faster, here] */
3283 decUnitAddSub (accnext
, accunits
, accnext
, accunits
, 0,
3285 /* decDumpAr('r', accnext, tarunits); */
3287 /* Here, accnext (var1) holds tarunits Units with twice the */
3288 /* remainder's coefficient, which we must now compare to the */
3289 /* RHS. The remainder's exponent may be smaller than the RHS's. */
3291 decUnitCompare (accnext
, tarunits
, rhs
->lsu
,
3293 rhs
->exponent
- exponent
);
3294 if (compare
== BADINT
)
3295 { /* deep trouble */
3296 *status
|= DEC_Insufficient_storage
;
3300 /* now restore the remainder by dividing by two; we know the */
3302 for (up
= accnext
; up
< accnext
+ tarunits
; up
++)
3304 Int half
; /* half to add to lower unit */
3306 *up
/= 2; /* [shift] */
3309 *(up
- 1) += (DECDPUNMAX
+ 1) / 2;
3311 /* [accunits still describes the original remainder length] */
3313 if (compare
> 0 || (compare
== 0 && wasodd
))
3314 { /* adjustment needed */
3315 Int exp
, expunits
, exprem
; /* work */
3316 /* This is effectively causing round-up of the quotient, */
3317 /* so if it was the rare case where it was full and all */
3318 /* nines, it would overflow and hence division-impossible */
3319 /* should be raised */
3320 Flag allnines
= 0; /* 1 if quotient all nines */
3321 if (quotdigits
== reqdigits
)
3322 { /* could be borderline */
3323 for (up
= quotlsu
;; up
++)
3325 if (quotdigits
> DECDPUN
)
3327 if (*up
!= DECDPUNMAX
)
3328 break; /* non-nines */
3331 { /* this is the last Unit */
3332 if (*up
== powers
[quotdigits
] - 1)
3336 quotdigits
-= DECDPUN
; /* checked those digits */
3338 } /* borderline check */
3341 *status
|= DEC_Division_impossible
;
3345 /* we need rem-rhs; the sign will invert. Again we can */
3346 /* safely use var1 for the working Units array. */
3347 exp
= rhs
->exponent
- exponent
; /* RHS padding needed */
3348 /* Calculate units and remainder from exponent. */
3349 expunits
= exp
/ DECDPUN
;
3350 exprem
= exp
% DECDPUN
;
3351 /* subtract [A+B*(-m)]; the result will always be negative */
3352 accunits
= -decUnitAddSub (accnext
, accunits
,
3353 rhs
->lsu
, D2U (rhs
->digits
),
3355 -(Int
) powers
[exprem
]);
3356 accdigits
= decGetDigits (accnext
, accunits
); /* count digits exactly */
3357 accunits
= D2U (accdigits
); /* and recalculate the units for copy */
3358 /* [exponent is as for original remainder] */
3359 bits
^= DECNEG
; /* flip the sign */
3362 } /* REMAINDER or REMNEAR */
3365 /* Set exponent and bits */
3366 res
->exponent
= exponent
;
3367 res
->bits
= (uByte
) (bits
& DECNEG
); /* [cleaned] */
3369 /* Now the coefficient. */
3370 decSetCoeff (res
, set
, accnext
, accdigits
, &residue
, status
);
3372 decFinish (res
, set
, &residue
, status
); /* final cleanup */
3375 /* If a divide then strip trailing zeros if subset [after round] */
3376 if (!set
->extended
&& (op
== DIVIDE
))
3377 decTrim (res
, 0, &dropped
);
3380 while (0); /* end protected */
3382 if (varalloc
!= NULL
)
3383 free (varalloc
); /* drop any storage we used */
3384 if (allocacc
!= NULL
)
3385 free (allocacc
); /* .. */
3386 if (allocrhs
!= NULL
)
3387 free (allocrhs
); /* .. */
3388 if (alloclhs
!= NULL
)
3389 free (alloclhs
); /* .. */
3393 /* ------------------------------------------------------------------ */
3394 /* decMultiplyOp -- multiplication operation */
3396 /* This routine performs the multiplication C=A x B. */
3398 /* res is C, the result. C may be A and/or B (e.g., X=X*X) */
3401 /* set is the context */
3402 /* status is the usual accumulator */
3404 /* C must have space for set->digits digits. */
3406 /* ------------------------------------------------------------------ */
3407 /* Note: We use 'long' multiplication rather than Karatsuba, as the */
3408 /* latter would give only a minor improvement for the short numbers */
3409 /* we expect to handle most (and uses much more memory). */
3411 /* We always have to use a buffer for the accumulator. */
3412 /* ------------------------------------------------------------------ */
3414 decMultiplyOp (decNumber
* res
, decNumber
* lhs
,
3415 decNumber
* rhs
, decContext
* set
, uInt
* status
)
3417 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
3418 decNumber
*allocrhs
= NULL
; /* .., rhs */
3419 Unit accbuff
[D2U (DECBUFFER
* 2 + 1)]; /* local buffer (+1 in case DECBUFFER==0) */
3420 Unit
*acc
= accbuff
; /* -> accumulator array for exact result */
3421 Unit
*allocacc
= NULL
; /* -> allocated buffer, iff allocated */
3422 Unit
*mer
, *mermsup
; /* work */
3423 Int accunits
; /* Units of accumulator in use */
3424 Int madlength
; /* Units in multiplicand */
3425 Int shift
; /* Units to shift multiplicand by */
3426 Int need
; /* Accumulator units needed */
3427 Int exponent
; /* work */
3428 Int residue
= 0; /* rounding residue */
3429 uByte bits
; /* result sign */
3430 uByte merged
; /* merged flags */
3433 if (decCheckOperands (res
, lhs
, rhs
, set
))
3438 { /* protect allocated storage */
3442 /* reduce operands and set lostDigits status, as needed */
3443 if (lhs
->digits
> set
->digits
)
3445 alloclhs
= decRoundOperand (lhs
, set
, status
);
3446 if (alloclhs
== NULL
)
3450 if (rhs
->digits
> set
->digits
)
3452 allocrhs
= decRoundOperand (rhs
, set
, status
);
3453 if (allocrhs
== NULL
)
3459 /* [following code does not require input rounding] */
3461 /* precalculate result sign */
3462 bits
= (uByte
) ((lhs
->bits
^ rhs
->bits
) & DECNEG
);
3464 /* handle infinities and NaNs */
3465 merged
= (lhs
->bits
| rhs
->bits
) & DECSPECIAL
;
3467 { /* a special bit set */
3468 if (merged
& (DECSNAN
| DECNAN
))
3469 { /* one or two NaNs */
3470 decNaNs (res
, lhs
, rhs
, status
);
3473 /* one or two infinities. Infinity * 0 is invalid */
3474 if (((lhs
->bits
& DECSPECIAL
) == 0 && ISZERO (lhs
))
3475 || ((rhs
->bits
& DECSPECIAL
) == 0 && ISZERO (rhs
)))
3477 *status
|= DEC_Invalid_operation
;
3480 decNumberZero (res
);
3481 res
->bits
= bits
| DECINF
; /* infinity */
3485 /* For best speed, as in DMSRCN, we use the shorter number as the */
3486 /* multiplier (rhs) and the longer as the multiplicand (lhs) */
3487 if (lhs
->digits
< rhs
->digits
)
3489 decNumber
*hold
= lhs
;
3494 /* if accumulator is too long for local storage, then allocate */
3495 need
= D2U (lhs
->digits
) + D2U (rhs
->digits
); /* maximum units in result */
3496 if (need
* sizeof (Unit
) > sizeof (accbuff
))
3498 allocacc
= (Unit
*) malloc (need
* sizeof (Unit
));
3499 if (allocacc
== NULL
)
3501 *status
|= DEC_Insufficient_storage
;
3504 acc
= allocacc
; /* use the allocated space */
3507 /* Now the main long multiplication loop */
3508 /* Unlike the equivalent in the IBM Java implementation, there */
3509 /* is no advantage in calculating from msu to lsu. So we do it */
3510 /* by the book, as it were. */
3511 /* Each iteration calculates ACC=ACC+MULTAND*MULT */
3512 accunits
= 1; /* accumulator starts at '0' */
3513 *acc
= 0; /* .. (lsu=0) */
3514 shift
= 0; /* no multiplicand shift at first */
3515 madlength
= D2U (lhs
->digits
); /* we know this won't change */
3516 mermsup
= rhs
->lsu
+ D2U (rhs
->digits
); /* -> msu+1 of multiplier */
3518 for (mer
= rhs
->lsu
; mer
< mermsup
; mer
++)
3520 /* Here, *mer is the next Unit in the multiplier to use */
3521 /* If non-zero [optimization] add it... */
3525 decUnitAddSub (&acc
[shift
], accunits
- shift
, lhs
->lsu
,
3526 madlength
, 0, &acc
[shift
], *mer
) + shift
;
3529 { /* extend acc with a 0; we'll use it shortly */
3530 /* [this avoids length of <=0 later] */
3531 *(acc
+ accunits
) = 0;
3534 /* multiply multiplicand by 10**DECDPUN for next Unit to left */
3535 shift
++; /* add this for 'logical length' */
3538 /* Show exact result */
3539 decDumpAr ('*', acc
, accunits
);
3542 /* acc now contains the exact result of the multiplication */
3543 /* Build a decNumber from it, noting if any residue */
3544 res
->bits
= bits
; /* set sign */
3545 res
->digits
= decGetDigits (acc
, accunits
); /* count digits exactly */
3547 /* We might have a 31-bit wrap in calculating the exponent. */
3548 /* This can only happen if both input exponents are negative and */
3549 /* both their magnitudes are large. If we did wrap, we set a safe */
3550 /* very negative exponent, from which decFinalize() will raise a */
3551 /* hard underflow. */
3552 exponent
= lhs
->exponent
+ rhs
->exponent
; /* calculate exponent */
3553 if (lhs
->exponent
< 0 && rhs
->exponent
< 0 && exponent
> 0)
3554 exponent
= -2 * DECNUMMAXE
; /* force underflow */
3555 res
->exponent
= exponent
; /* OK to overwrite now */
3557 /* Set the coefficient. If any rounding, residue records */
3558 decSetCoeff (res
, set
, acc
, res
->digits
, &residue
, status
);
3560 decFinish (res
, set
, &residue
, status
); /* final cleanup */
3562 while (0); /* end protected */
3564 if (allocacc
!= NULL
)
3565 free (allocacc
); /* drop any storage we used */
3566 if (allocrhs
!= NULL
)
3567 free (allocrhs
); /* .. */
3568 if (alloclhs
!= NULL
)
3569 free (alloclhs
); /* .. */
3573 /* ------------------------------------------------------------------ */
3574 /* decQuantizeOp -- force exponent to requested value */
3576 /* This computes C = op(A, B), where op adjusts the coefficient */
3577 /* of C (by rounding or shifting) such that the exponent (-scale) */
3578 /* of C has the value B or matches the exponent of B. */
3579 /* The numerical value of C will equal A, except for the effects of */
3580 /* any rounding that occurred. */
3582 /* res is C, the result. C may be A or B */
3583 /* lhs is A, the number to adjust */
3584 /* rhs is B, the requested exponent */
3585 /* set is the context */
3586 /* quant is 1 for quantize or 0 for rescale */
3587 /* status is the status accumulator (this can be called without */
3588 /* risk of control loss) */
3590 /* C must have space for set->digits digits. */
3592 /* Unless there is an error or the result is infinite, the exponent */
3593 /* after the operation is guaranteed to be that requested. */
3594 /* ------------------------------------------------------------------ */
3596 decQuantizeOp (decNumber
* res
, decNumber
* lhs
,
3597 decNumber
* rhs
, decContext
* set
, Flag quant
, uInt
* status
)
3599 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
3600 decNumber
*allocrhs
= NULL
; /* .., rhs */
3601 decNumber
*inrhs
= rhs
; /* save original rhs */
3602 Int reqdigits
= set
->digits
; /* requested DIGITS */
3603 Int reqexp
; /* requested exponent [-scale] */
3604 Int residue
= 0; /* rounding residue */
3605 uByte merged
; /* merged flags */
3606 Int etiny
= set
->emin
- (set
->digits
- 1);
3609 if (decCheckOperands (res
, lhs
, rhs
, set
))
3614 { /* protect allocated storage */
3618 /* reduce operands and set lostDigits status, as needed */
3619 if (lhs
->digits
> reqdigits
)
3621 alloclhs
= decRoundOperand (lhs
, set
, status
);
3622 if (alloclhs
== NULL
)
3626 if (rhs
->digits
> reqdigits
)
3627 { /* [this only checks lostDigits] */
3628 allocrhs
= decRoundOperand (rhs
, set
, status
);
3629 if (allocrhs
== NULL
)
3635 /* [following code does not require input rounding] */
3637 /* Handle special values */
3638 merged
= (lhs
->bits
| rhs
->bits
) & DECSPECIAL
;
3639 if ((lhs
->bits
| rhs
->bits
) & DECSPECIAL
)
3641 /* NaNs get usual processing */
3642 if (merged
& (DECSNAN
| DECNAN
))
3643 decNaNs (res
, lhs
, rhs
, status
);
3644 /* one infinity but not both is bad */
3645 else if ((lhs
->bits
^ rhs
->bits
) & DECINF
)
3646 *status
|= DEC_Invalid_operation
;
3647 /* both infinity: return lhs */
3649 decNumberCopy (res
, lhs
); /* [nop if in place] */
3653 /* set requested exponent */
3655 reqexp
= inrhs
->exponent
; /* quantize -- match exponents */
3657 { /* rescale -- use value of rhs */
3658 /* Original rhs must be an integer that fits and is in range */
3660 reqexp
= decGetInt (inrhs
, set
);
3662 reqexp
= decGetInt (inrhs
);
3668 etiny
= set
->emin
; /* no subnormals */
3671 if (reqexp
== BADINT
/* bad (rescale only) or .. */
3672 || (reqexp
< etiny
) /* < lowest */
3673 || (reqexp
> set
->emax
))
3675 *status
|= DEC_Invalid_operation
;
3679 /* we've processed the RHS, so we can overwrite it now if necessary */
3681 { /* zero coefficient unchanged */
3682 decNumberCopy (res
, lhs
); /* [nop if in place] */
3683 res
->exponent
= reqexp
; /* .. just set exponent */
3686 res
->bits
= 0; /* subset specification; no -0 */
3690 { /* non-zero lhs */
3691 Int adjust
= reqexp
- lhs
->exponent
; /* digit adjustment needed */
3692 /* if adjusted coefficient will not fit, give up now */
3693 if ((lhs
->digits
- adjust
) > reqdigits
)
3695 *status
|= DEC_Invalid_operation
;
3700 { /* increasing exponent */
3701 /* this will decrease the length of the coefficient by adjust */
3702 /* digits, and must round as it does so */
3703 decContext workset
; /* work */
3704 workset
= *set
; /* clone rounding, etc. */
3705 workset
.digits
= lhs
->digits
- adjust
; /* set requested length */
3706 /* [note that the latter can be <1, here] */
3707 decCopyFit (res
, lhs
, &workset
, &residue
, status
); /* fit to result */
3708 decApplyRound (res
, &workset
, residue
, status
); /* .. and round */
3709 residue
= 0; /* [used] */
3710 /* If we rounded a 999s case, exponent will be off by one; */
3711 /* adjust back if so. */
3712 if (res
->exponent
> reqexp
)
3714 res
->digits
= decShiftToMost (res
->lsu
, res
->digits
, 1); /* shift */
3715 res
->exponent
--; /* (re)adjust the exponent. */
3718 if (ISZERO (res
) && !set
->extended
)
3719 res
->bits
= 0; /* subset; no -0 */
3722 else /* adjust<=0 */
3723 { /* decreasing or = exponent */
3724 /* this will increase the length of the coefficient by -adjust */
3725 /* digits, by adding trailing zeros. */
3726 decNumberCopy (res
, lhs
); /* [it will fit] */
3727 /* if padding needed (adjust<0), add it now... */
3731 decShiftToMost (res
->lsu
, res
->digits
, -adjust
);
3732 res
->exponent
+= adjust
; /* adjust the exponent */
3737 /* Check for overflow [do not use Finalize in this case, as an */
3738 /* overflow here is a "don't fit" situation] */
3739 if (res
->exponent
> set
->emax
- res
->digits
+ 1)
3741 *status
|= DEC_Invalid_operation
;
3746 decFinalize (res
, set
, &residue
, status
); /* set subnormal flags */
3747 *status
&= ~DEC_Underflow
; /* suppress Underflow [754r] */
3750 while (0); /* end protected */
3752 if (allocrhs
!= NULL
)
3753 free (allocrhs
); /* drop any storage we used */
3754 if (alloclhs
!= NULL
)
3755 free (alloclhs
); /* .. */
3759 /* ------------------------------------------------------------------ */
3760 /* decCompareOp -- compare, min, or max two Numbers */
3762 /* This computes C = A ? B and returns the signum (as a Number) */
3763 /* for COMPARE or the maximum or minimum (for COMPMAX and COMPMIN). */
3765 /* res is C, the result. C may be A and/or B (e.g., X=X?X) */
3768 /* set is the context */
3769 /* op is the operation flag */
3770 /* status is the usual accumulator */
3772 /* C must have space for one digit for COMPARE or set->digits for */
3773 /* COMPMAX and COMPMIN. */
3774 /* ------------------------------------------------------------------ */
3775 /* The emphasis here is on speed for common cases, and avoiding */
3776 /* coefficient comparison if possible. */
3777 /* ------------------------------------------------------------------ */
3779 decCompareOp (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
,
3780 decContext
* set
, Flag op
, uInt
* status
)
3782 decNumber
*alloclhs
= NULL
; /* non-NULL if rounded lhs allocated */
3783 decNumber
*allocrhs
= NULL
; /* .., rhs */
3784 Int result
= 0; /* default result value */
3785 uByte merged
; /* merged flags */
3786 uByte bits
= 0; /* non-0 for NaN */
3789 if (decCheckOperands (res
, lhs
, rhs
, set
))
3794 { /* protect allocated storage */
3798 /* reduce operands and set lostDigits status, as needed */
3799 if (lhs
->digits
> set
->digits
)
3801 alloclhs
= decRoundOperand (lhs
, set
, status
);
3802 if (alloclhs
== NULL
)
3809 if (rhs
->digits
> set
->digits
)
3811 allocrhs
= decRoundOperand (rhs
, set
, status
);
3812 if (allocrhs
== NULL
)
3821 /* [following code does not require input rounding] */
3823 /* handle NaNs now; let infinities drop through */
3824 /* +++ review sNaN handling with 754r, for now assumes sNaN */
3825 /* (even just one) leads to NaN. */
3826 merged
= (lhs
->bits
| rhs
->bits
) & (DECSNAN
| DECNAN
);
3828 { /* a NaN bit set */
3830 else if (merged
& DECSNAN
);
3832 { /* 754r rules for MIN and MAX ignore single NaN */
3833 /* here if MIN or MAX, and one or two quiet NaNs */
3834 if (lhs
->bits
& rhs
->bits
& DECNAN
);
3836 { /* just one quiet NaN */
3837 /* force choice to be the non-NaN operand */
3839 if (lhs
->bits
& DECNAN
)
3840 result
= -1; /* pick rhs */
3842 result
= +1; /* pick lhs */
3846 op
= COMPNAN
; /* use special path */
3847 decNaNs (res
, lhs
, rhs
, status
);
3851 result
= decCompare (lhs
, rhs
); /* we have numbers */
3853 while (0); /* end protected */
3855 if (result
== BADINT
)
3856 *status
|= DEC_Insufficient_storage
; /* rare */
3860 { /* return signum */
3861 decNumberZero (res
); /* [always a valid result] */
3863 res
->bits
= bits
; /* (maybe qNaN) */
3871 else if (op
== COMPNAN
); /* special, drop through */
3873 { /* MAX or MIN, non-NaN result */
3874 Int residue
= 0; /* rounding accumulator */
3875 /* choose the operand for the result */
3878 { /* operands are numerically equal */
3879 /* choose according to sign then exponent (see 754r) */
3880 uByte slhs
= (lhs
->bits
& DECNEG
);
3881 uByte srhs
= (rhs
->bits
& DECNEG
);
3884 { /* subset: force left-hand */
3891 { /* signs differ */
3893 result
= -1; /* rhs is max */
3895 result
= +1; /* lhs is max */
3897 else if (slhs
&& srhs
)
3898 { /* both negative */
3899 if (lhs
->exponent
< rhs
->exponent
)
3903 /* [if equal, we use lhs, technically identical] */
3906 { /* both positive */
3907 if (lhs
->exponent
> rhs
->exponent
)
3913 } /* numerically equal */
3914 /* here result will be non-0 */
3916 result
= -result
; /* reverse if looking for MIN */
3917 choice
= (result
> 0 ? lhs
: rhs
); /* choose */
3918 /* copy chosen to result, rounding if need be */
3919 decCopyFit (res
, choice
, set
, &residue
, status
);
3920 decFinish (res
, set
, &residue
, status
);
3923 if (allocrhs
!= NULL
)
3924 free (allocrhs
); /* free any storage we used */
3925 if (alloclhs
!= NULL
)
3926 free (alloclhs
); /* .. */
3930 /* ------------------------------------------------------------------ */
3931 /* decCompare -- compare two decNumbers by numerical value */
3933 /* This routine compares A ? B without altering them. */
3935 /* Arg1 is A, a decNumber which is not a NaN */
3936 /* Arg2 is B, a decNumber which is not a NaN */
3938 /* returns -1, 0, or 1 for A<B, A==B, or A>B, or BADINT if failure */
3939 /* (the only possible failure is an allocation error) */
3940 /* ------------------------------------------------------------------ */
3941 /* This could be merged into decCompareOp */
3943 decCompare (decNumber
* lhs
, decNumber
* rhs
)
3945 Int result
; /* result value */
3946 Int sigr
; /* rhs signum */
3947 Int compare
; /* work */
3948 result
= 1; /* assume signum(lhs) */
3951 else if (decNumberIsNegative (lhs
))
3953 sigr
= 1; /* compute signum(rhs) */
3956 else if (decNumberIsNegative (rhs
))
3959 return +1; /* L > R, return 1 */
3961 return -1; /* R < L, return -1 */
3963 /* signums are the same */
3965 return 0; /* both 0 */
3967 if ((lhs
->bits
| rhs
->bits
) & DECINF
)
3968 { /* one or more infinities */
3969 if (lhs
->bits
== rhs
->bits
)
3970 result
= 0; /* both the same */
3971 else if (decNumberIsInfinite (rhs
))
3976 /* we must compare the coefficients, allowing for exponents */
3977 if (lhs
->exponent
> rhs
->exponent
)
3978 { /* LHS exponent larger */
3979 /* swap sides, and sign */
3980 decNumber
*temp
= lhs
;
3986 compare
= decUnitCompare (lhs
->lsu
, D2U (lhs
->digits
),
3987 rhs
->lsu
, D2U (rhs
->digits
),
3988 rhs
->exponent
- lhs
->exponent
);
3990 if (compare
!= BADINT
)
3991 compare
*= result
; /* comparison succeeded */
3992 return compare
; /* what we got */
3995 /* ------------------------------------------------------------------ */
3996 /* decUnitCompare -- compare two >=0 integers in Unit arrays */
3998 /* This routine compares A ? B*10**E where A and B are unit arrays */
3999 /* A is a plain integer */
4000 /* B has an exponent of E (which must be non-negative) */
4002 /* Arg1 is A first Unit (lsu) */
4003 /* Arg2 is A length in Units */
4004 /* Arg3 is B first Unit (lsu) */
4005 /* Arg4 is B length in Units */
4008 /* returns -1, 0, or 1 for A<B, A==B, or A>B, or BADINT if failure */
4009 /* (the only possible failure is an allocation error) */
4010 /* ------------------------------------------------------------------ */
4012 decUnitCompare (Unit
* a
, Int alength
, Unit
* b
, Int blength
, Int exp
)
4014 Unit
*acc
; /* accumulator for result */
4015 Unit accbuff
[D2U (DECBUFFER
+ 1)]; /* local buffer */
4016 Unit
*allocacc
= NULL
; /* -> allocated acc buffer, iff allocated */
4017 Int accunits
, need
; /* units in use or needed for acc */
4018 Unit
*l
, *r
, *u
; /* work */
4019 Int expunits
, exprem
, result
; /* .. */
4022 { /* aligned; fastpath */
4023 if (alength
> blength
)
4025 if (alength
< blength
)
4027 /* same number of units in both -- need unit-by-unit compare */
4028 l
= a
+ alength
- 1;
4029 r
= b
+ alength
- 1;
4030 for (; l
>= a
; l
--, r
--)
4037 return 0; /* all units match */
4040 /* Unaligned. If one is >1 unit longer than the other, padded */
4041 /* approximately, then we can return easily */
4042 if (alength
> blength
+ (Int
) D2U (exp
))
4044 if (alength
+ 1 < blength
+ (Int
) D2U (exp
))
4047 /* We need to do a real subtract. For this, we need a result buffer */
4048 /* even though we only are interested in the sign. Its length needs */
4049 /* to be the larger of alength and padded blength, +2 */
4050 need
= blength
+ D2U (exp
); /* maximum real length of B */
4054 acc
= accbuff
; /* assume use local buffer */
4055 if (need
* sizeof (Unit
) > sizeof (accbuff
))
4057 allocacc
= (Unit
*) malloc (need
* sizeof (Unit
));
4058 if (allocacc
== NULL
)
4059 return BADINT
; /* hopeless -- abandon */
4062 /* Calculate units and remainder from exponent. */
4063 expunits
= exp
/ DECDPUN
;
4064 exprem
= exp
% DECDPUN
;
4065 /* subtract [A+B*(-m)] */
4066 accunits
= decUnitAddSub (a
, alength
, b
, blength
, expunits
, acc
,
4067 -(Int
) powers
[exprem
]);
4068 /* [UnitAddSub result may have leading zeros, even on zero] */
4070 result
= -1; /* negative result */
4072 { /* non-negative result */
4073 /* check units of the result before freeing any storage */
4074 for (u
= acc
; u
< acc
+ accunits
- 1 && *u
== 0;)
4076 result
= (*u
== 0 ? 0 : +1);
4078 /* clean up and return the result */
4079 if (allocacc
!= NULL
)
4080 free (allocacc
); /* drop any storage we used */
4084 /* ------------------------------------------------------------------ */
4085 /* decUnitAddSub -- add or subtract two >=0 integers in Unit arrays */
4087 /* This routine performs the calculation: */
4091 /* Where M is in the range -DECDPUNMAX through +DECDPUNMAX. */
4093 /* A may be shorter or longer than B. */
4095 /* Leading zeros are not removed after a calculation. The result is */
4096 /* either the same length as the longer of A and B (adding any */
4097 /* shift), or one Unit longer than that (if a Unit carry occurred). */
4099 /* A and B content are not altered unless C is also A or B. */
4100 /* C may be the same array as A or B, but only if no zero padding is */
4101 /* requested (that is, C may be B only if bshift==0). */
4102 /* C is filled from the lsu; only those units necessary to complete */
4103 /* the calculation are referenced. */
4105 /* Arg1 is A first Unit (lsu) */
4106 /* Arg2 is A length in Units */
4107 /* Arg3 is B first Unit (lsu) */
4108 /* Arg4 is B length in Units */
4109 /* Arg5 is B shift in Units (>=0; pads with 0 units if positive) */
4110 /* Arg6 is C first Unit (lsu) */
4111 /* Arg7 is M, the multiplier */
4113 /* returns the count of Units written to C, which will be non-zero */
4114 /* and negated if the result is negative. That is, the sign of the */
4115 /* returned Int is the sign of the result (positive for zero) and */
4116 /* the absolute value of the Int is the count of Units. */
4118 /* It is the caller's responsibility to make sure that C size is */
4119 /* safe, allowing space if necessary for a one-Unit carry. */
4121 /* This routine is severely performance-critical; *any* change here */
4122 /* must be measured (timed) to assure no performance degradation. */
4123 /* In particular, trickery here tends to be counter-productive, as */
4124 /* increased complexity of code hurts register optimizations on */
4125 /* register-poor architectures. Avoiding divisions is nearly */
4126 /* always a Good Idea, however. */
4128 /* Special thanks to Rick McGuire (IBM Cambridge, MA) and Dave Clark */
4129 /* (IBM Warwick, UK) for some of the ideas used in this routine. */
4130 /* ------------------------------------------------------------------ */
4132 decUnitAddSub (Unit
* a
, Int alength
,
4133 Unit
* b
, Int blength
, Int bshift
, Unit
* c
, Int m
)
4135 Unit
*alsu
= a
; /* A lsu [need to remember it] */
4136 Unit
*clsu
= c
; /* C ditto */
4137 Unit
*minC
; /* low water mark for C */
4138 Unit
*maxC
; /* high water mark for C */
4139 eInt carry
= 0; /* carry integer (could be Long) */
4141 #if DECDPUN==4 /* myriadal */
4142 Int est
; /* estimated quotient */
4146 if (alength
< 1 || blength
< 1)
4147 printf ("decUnitAddSub: alen blen m %d %d [%d]\n", alength
, blength
, m
);
4150 maxC
= c
+ alength
; /* A is usually the longer */
4151 minC
= c
+ blength
; /* .. and B the shorter */
4153 { /* B is shifted; low As copy across */
4155 /* if in place [common], skip copy unless there's a gap [rare] */
4156 if (a
== c
&& bshift
<= alength
)
4162 for (; c
< clsu
+ bshift
; a
++, c
++)
4164 if (a
< alsu
+ alength
)
4177 /* For speed, we do the addition as two loops; the first where both A */
4178 /* and B contribute, and the second (if necessary) where only one or */
4179 /* other of the numbers contribute. */
4180 /* Carry handling is the same (i.e., duplicated) in each case. */
4181 for (; c
< minC
; c
++)
4185 carry
+= ((eInt
) * b
) * m
; /* [special-casing m=1/-1 */
4186 b
++; /* here is not a win] */
4187 /* here carry is new Unit of digits; it could be +ve or -ve */
4188 if ((ueInt
) carry
<= DECDPUNMAX
)
4189 { /* fastpath 0-DECDPUNMAX */
4194 /* remainder operator is undefined if negative, so we must test */
4195 #if DECDPUN==4 /* use divide-by-multiply */
4198 est
= (((ueInt
) carry
>> 11) * 53687) >> 18;
4199 *c
= (Unit
) (carry
- est
* (DECDPUNMAX
+ 1)); /* remainder */
4200 carry
= est
; /* likely quotient [89%] */
4201 if (*c
< DECDPUNMAX
+ 1)
4202 continue; /* estimate was correct */
4204 *c
-= DECDPUNMAX
+ 1;
4208 carry
= carry
+ (eInt
) (DECDPUNMAX
+ 1) * (DECDPUNMAX
+ 1); /* make positive */
4209 est
= (((ueInt
) carry
>> 11) * 53687) >> 18;
4210 *c
= (Unit
) (carry
- est
* (DECDPUNMAX
+ 1));
4211 carry
= est
- (DECDPUNMAX
+ 1); /* correctly negative */
4212 if (*c
< DECDPUNMAX
+ 1)
4213 continue; /* was OK */
4215 *c
-= DECDPUNMAX
+ 1;
4217 if ((ueInt
) carry
< (DECDPUNMAX
+ 1) * 2)
4218 { /* fastpath carry +1 */
4219 *c
= (Unit
) (carry
- (DECDPUNMAX
+ 1)); /* [helps additions] */
4225 *c
= (Unit
) (carry
% (DECDPUNMAX
+ 1));
4226 carry
= carry
/ (DECDPUNMAX
+ 1);
4230 carry
= carry
+ (eInt
) (DECDPUNMAX
+ 1) * (DECDPUNMAX
+ 1); /* make positive */
4231 *c
= (Unit
) (carry
% (DECDPUNMAX
+ 1));
4232 carry
= carry
/ (DECDPUNMAX
+ 1) - (DECDPUNMAX
+ 1);
4236 /* we now may have one or other to complete */
4237 /* [pretest to avoid loop setup/shutdown] */
4239 for (; c
< maxC
; c
++)
4241 if (a
< alsu
+ alength
)
4248 carry
+= ((eInt
) * b
) * m
;
4251 /* here carry is new Unit of digits; it could be +ve or -ve and */
4252 /* magnitude up to DECDPUNMAX squared */
4253 if ((ueInt
) carry
<= DECDPUNMAX
)
4254 { /* fastpath 0-DECDPUNMAX */
4259 /* result for this unit is negative or >DECDPUNMAX */
4260 #if DECDPUN==4 /* use divide-by-multiply */
4261 /* remainder is undefined if negative, so we must test */
4264 est
= (((ueInt
) carry
>> 11) * 53687) >> 18;
4265 *c
= (Unit
) (carry
- est
* (DECDPUNMAX
+ 1)); /* remainder */
4266 carry
= est
; /* likely quotient [79.7%] */
4267 if (*c
< DECDPUNMAX
+ 1)
4268 continue; /* estimate was correct */
4270 *c
-= DECDPUNMAX
+ 1;
4274 carry
= carry
+ (eInt
) (DECDPUNMAX
+ 1) * (DECDPUNMAX
+ 1); /* make positive */
4275 est
= (((ueInt
) carry
>> 11) * 53687) >> 18;
4276 *c
= (Unit
) (carry
- est
* (DECDPUNMAX
+ 1));
4277 carry
= est
- (DECDPUNMAX
+ 1); /* correctly negative */
4278 if (*c
< DECDPUNMAX
+ 1)
4279 continue; /* was OK */
4281 *c
-= DECDPUNMAX
+ 1;
4283 if ((ueInt
) carry
< (DECDPUNMAX
+ 1) * 2)
4284 { /* fastpath carry 1 */
4285 *c
= (Unit
) (carry
- (DECDPUNMAX
+ 1));
4289 /* remainder is undefined if negative, so we must test */
4292 *c
= (Unit
) (carry
% (DECDPUNMAX
+ 1));
4293 carry
= carry
/ (DECDPUNMAX
+ 1);
4297 carry
= carry
+ (eInt
) (DECDPUNMAX
+ 1) * (DECDPUNMAX
+ 1); /* make positive */
4298 *c
= (Unit
) (carry
% (DECDPUNMAX
+ 1));
4299 carry
= carry
/ (DECDPUNMAX
+ 1) - (DECDPUNMAX
+ 1);
4303 /* OK, all A and B processed; might still have carry or borrow */
4304 /* return number of Units in the result, negated if a borrow */
4306 return c
- clsu
; /* no carry, we're done */
4308 { /* positive carry */
4309 *c
= (Unit
) carry
; /* place as new unit */
4313 /* -ve carry: it's a borrow; complement needed */
4314 add
= 1; /* temporary carry... */
4315 for (c
= clsu
; c
< maxC
; c
++)
4317 add
= DECDPUNMAX
+ add
- *c
;
4318 if (add
<= DECDPUNMAX
)
4329 /* add an extra unit iff it would be non-zero */
4331 printf ("UAS borrow: add %d, carry %d\n", add
, carry
);
4333 if ((add
- carry
- 1) != 0)
4335 *c
= (Unit
) (add
- carry
- 1);
4336 c
++; /* interesting, include it */
4338 return clsu
- c
; /* -ve result indicates borrowed */
4341 /* ------------------------------------------------------------------ */
4342 /* decTrim -- trim trailing zeros or normalize */
4344 /* dn is the number to trim or normalize */
4345 /* all is 1 to remove all trailing zeros, 0 for just fraction ones */
4346 /* dropped returns the number of discarded trailing zeros */
4349 /* All fields are updated as required. This is a utility operation, */
4350 /* so special values are unchanged and no error is possible. */
4351 /* ------------------------------------------------------------------ */
4353 decTrim (decNumber
* dn
, Flag all
, Int
* dropped
)
4355 Int d
, exp
; /* work */
4357 Unit
*up
; /* -> current Unit */
4360 if (decCheckOperands (dn
, DECUNUSED
, DECUNUSED
, DECUNUSED
))
4364 *dropped
= 0; /* assume no zeros dropped */
4365 if ((dn
->bits
& DECSPECIAL
) /* fast exit if special .. */
4366 || (*dn
->lsu
& 0x01))
4367 return dn
; /* .. or odd */
4370 dn
->exponent
= 0; /* (sign is preserved) */
4374 /* we have a finite number which is even */
4376 cut
= 1; /* digit (1-DECDPUN) in Unit */
4377 up
= dn
->lsu
; /* -> current Unit */
4378 for (d
= 0; d
< dn
->digits
- 1; d
++)
4379 { /* [don't strip the final digit] */
4380 /* slice by powers */
4382 uInt quot
= QUOT10 (*up
, cut
);
4383 if ((*up
- quot
* powers
[cut
]) != 0)
4384 break; /* found non-0 digit */
4386 if (*up
% powers
[cut
] != 0)
4387 break; /* found non-0 digit */
4389 /* have a trailing 0 */
4392 /* [if exp>0 then all trailing 0s are significant for trim] */
4394 { /* if digit might be significant */
4396 break; /* then quit */
4397 exp
++; /* next digit might be significant */
4400 cut
++; /* next power */
4402 { /* need new Unit */
4408 return dn
; /* none dropped */
4410 /* effect the drop */
4411 decShiftToLeast (dn
->lsu
, D2U (dn
->digits
), d
);
4412 dn
->exponent
+= d
; /* maintain numerical value */
4413 dn
->digits
-= d
; /* new length */
4414 *dropped
= d
; /* report the count */
4418 /* ------------------------------------------------------------------ */
4419 /* decShiftToMost -- shift digits in array towards most significant */
4421 /* uar is the array */
4422 /* digits is the count of digits in use in the array */
4423 /* shift is the number of zeros to pad with (least significant); */
4424 /* it must be zero or positive */
4426 /* returns the new length of the integer in the array, in digits */
4428 /* No overflow is permitted (that is, the uar array must be known to */
4429 /* be large enough to hold the result, after shifting). */
4430 /* ------------------------------------------------------------------ */
4432 decShiftToMost (Unit
* uar
, Int digits
, Int shift
)
4434 Unit
*target
, *source
, *first
; /* work */
4435 uInt rem
; /* for division */
4436 Int cut
; /* odd 0's to add */
4437 uInt next
; /* work */
4440 return digits
; /* [fastpath] nothing to do */
4441 if ((digits
+ shift
) <= DECDPUN
)
4442 { /* [fastpath] single-unit case */
4443 *uar
= (Unit
) (*uar
* powers
[shift
]);
4444 return digits
+ shift
;
4447 cut
= (DECDPUN
- shift
% DECDPUN
) % DECDPUN
;
4448 source
= uar
+ D2U (digits
) - 1; /* where msu comes from */
4449 first
= uar
+ D2U (digits
+ shift
) - 1; /* where msu of source will end up */
4450 target
= source
+ D2U (shift
); /* where upper part of first cut goes */
4453 for (; source
>= uar
; source
--, target
--)
4455 /* split the source Unit and accumulate remainder for next */
4457 uInt quot
= QUOT10 (*source
, cut
);
4458 rem
= *source
- quot
* powers
[cut
];
4461 rem
= *source
% powers
[cut
];
4462 next
+= *source
/ powers
[cut
];
4464 if (target
<= first
)
4465 *target
= (Unit
) next
; /* write to target iff valid */
4466 next
= rem
* powers
[DECDPUN
- cut
]; /* save remainder for next Unit */
4468 /* propagate to one below and clear the rest */
4469 for (; target
>= uar
; target
--)
4471 *target
= (Unit
) next
;
4474 return digits
+ shift
;
4477 /* ------------------------------------------------------------------ */
4478 /* decShiftToLeast -- shift digits in array towards least significant */
4480 /* uar is the array */
4481 /* units is length of the array, in units */
4482 /* shift is the number of digits to remove from the lsu end; it */
4483 /* must be zero or positive and less than units*DECDPUN. */
4485 /* returns the new length of the integer in the array, in units */
4487 /* Removed digits are discarded (lost). Units not required to hold */
4488 /* the final result are unchanged. */
4489 /* ------------------------------------------------------------------ */
4491 decShiftToLeast (Unit
* uar
, Int units
, Int shift
)
4493 Unit
*target
, *up
; /* work */
4494 Int cut
, count
; /* work */
4495 Int quot
, rem
; /* for division */
4498 return units
; /* [fastpath] nothing to do */
4500 up
= uar
+ shift
/ DECDPUN
; /* source; allow for whole Units */
4501 cut
= shift
% DECDPUN
; /* odd 0's to drop */
4502 target
= uar
; /* both paths */
4504 { /* whole units shift */
4505 for (; up
< uar
+ units
; target
++, up
++)
4507 return target
- uar
;
4510 count
= units
* DECDPUN
- shift
; /* the maximum new length */
4512 quot
= QUOT10 (*up
, cut
);
4514 quot
= *up
/ powers
[cut
];
4518 *target
= (Unit
) quot
;
4519 count
-= (DECDPUN
- cut
);
4525 quot
= QUOT10 (quot
, cut
);
4526 rem
= *up
- quot
* powers
[cut
];
4528 rem
= quot
% powers
[cut
];
4529 quot
= quot
/ powers
[cut
];
4531 *target
= (Unit
) (*target
+ rem
* powers
[DECDPUN
- cut
]);
4536 return target
- uar
+ 1;
4540 /* ------------------------------------------------------------------ */
4541 /* decRoundOperand -- round an operand [used for subset only] */
4543 /* dn is the number to round (dn->digits is > set->digits) */
4544 /* set is the relevant context */
4545 /* status is the status accumulator */
4547 /* returns an allocated decNumber with the rounded result. */
4549 /* lostDigits and other status may be set by this. */
4551 /* Since the input is an operand, we are not permitted to modify it. */
4552 /* We therefore return an allocated decNumber, rounded as required. */
4553 /* It is the caller's responsibility to free the allocated storage. */
4555 /* If no storage is available then the result cannot be used, so NULL */
4557 /* ------------------------------------------------------------------ */
4559 decRoundOperand (decNumber
* dn
, decContext
* set
, uInt
* status
)
4561 decNumber
*res
; /* result structure */
4562 uInt newstatus
= 0; /* status from round */
4563 Int residue
= 0; /* rounding accumulator */
4565 /* Allocate storage for the returned decNumber, big enough for the */
4566 /* length specified by the context */
4567 res
= (decNumber
*) malloc (sizeof (decNumber
)
4568 + (D2U (set
->digits
) - 1) * sizeof (Unit
));
4571 *status
|= DEC_Insufficient_storage
;
4574 decCopyFit (res
, dn
, set
, &residue
, &newstatus
);
4575 decApplyRound (res
, set
, residue
, &newstatus
);
4577 /* If that set Inexact then we "lost digits" */
4578 if (newstatus
& DEC_Inexact
)
4579 newstatus
|= DEC_Lost_digits
;
4580 *status
|= newstatus
;
4585 /* ------------------------------------------------------------------ */
4586 /* decCopyFit -- copy a number, shortening the coefficient if needed */
4588 /* dest is the target decNumber */
4589 /* src is the source decNumber */
4590 /* set is the context [used for length (digits) and rounding mode] */
4591 /* residue is the residue accumulator */
4592 /* status contains the current status to be updated */
4594 /* (dest==src is allowed and will be a no-op if fits) */
4595 /* All fields are updated as required. */
4596 /* ------------------------------------------------------------------ */
4598 decCopyFit (decNumber
* dest
, decNumber
* src
, decContext
* set
,
4599 Int
* residue
, uInt
* status
)
4601 dest
->bits
= src
->bits
;
4602 dest
->exponent
= src
->exponent
;
4603 decSetCoeff (dest
, set
, src
->lsu
, src
->digits
, residue
, status
);
4606 /* ------------------------------------------------------------------ */
4607 /* decSetCoeff -- set the coefficient of a number */
4609 /* dn is the number whose coefficient array is to be set. */
4610 /* It must have space for set->digits digits */
4611 /* set is the context [for size] */
4612 /* lsu -> lsu of the source coefficient [may be dn->lsu] */
4613 /* len is digits in the source coefficient [may be dn->digits] */
4614 /* residue is the residue accumulator. This has values as in */
4615 /* decApplyRound, and will be unchanged unless the */
4616 /* target size is less than len. In this case, the */
4617 /* coefficient is truncated and the residue is updated to */
4618 /* reflect the previous residue and the dropped digits. */
4619 /* status is the status accumulator, as usual */
4621 /* The coefficient may already be in the number, or it can be an */
4622 /* external intermediate array. If it is in the number, lsu must == */
4623 /* dn->lsu and len must == dn->digits. */
4625 /* Note that the coefficient length (len) may be < set->digits, and */
4626 /* in this case this merely copies the coefficient (or is a no-op */
4627 /* if dn->lsu==lsu). */
4629 /* Note also that (only internally, from decNumberRescale and */
4630 /* decSetSubnormal) the value of set->digits may be less than one, */
4631 /* indicating a round to left. */
4632 /* This routine handles that case correctly; caller ensures space. */
4634 /* dn->digits, dn->lsu (and as required), and dn->exponent are */
4635 /* updated as necessary. dn->bits (sign) is unchanged. */
4637 /* DEC_Rounded status is set if any digits are discarded. */
4638 /* DEC_Inexact status is set if any non-zero digits are discarded, or */
4639 /* incoming residue was non-0 (implies rounded) */
4640 /* ------------------------------------------------------------------ */
4641 /* mapping array: maps 0-9 to canonical residues, so that we can */
4642 /* adjust by a residue in range [-1, +1] and achieve correct rounding */
4643 /* 0 1 2 3 4 5 6 7 8 9 */
4644 static const uByte resmap
[10] = { 0, 3, 3, 3, 3, 5, 7, 7, 7, 7 };
4646 decSetCoeff (decNumber
* dn
, decContext
* set
, Unit
* lsu
,
4647 Int len
, Int
* residue
, uInt
* status
)
4649 Int discard
; /* number of digits to discard */
4650 uInt discard1
; /* first discarded digit */
4651 uInt cut
; /* cut point in Unit */
4652 uInt quot
, rem
; /* for divisions */
4653 Unit
*up
, *target
; /* work */
4659 discard
= len
- set
->digits
; /* digits to discard */
4661 { /* no digits are being discarded */
4664 /* copy the coefficient array to the result number; no shift needed */
4666 for (target
= dn
->lsu
; target
< dn
->lsu
+ D2U (len
); target
++, up
++)
4670 dn
->digits
= len
; /* set the new length */
4672 /* dn->exponent and residue are unchanged */
4674 *status
|= (DEC_Inexact
| DEC_Rounded
); /* record inexactitude */
4678 /* we have to discard some digits */
4679 *status
|= DEC_Rounded
; /* accumulate Rounded status */
4681 *residue
= 1; /* previous residue now to right, so -1 to +1 */
4684 { /* everything, +1, is being discarded */
4685 /* guard digit is 0 */
4686 /* residue is all the number [NB could be all 0s] */
4688 for (up
= lsu
+ D2U (len
) - 1; up
>= lsu
; up
--)
4691 { /* found a non-0 */
4693 break; /* no need to check any others */
4697 *status
|= DEC_Inexact
; /* record inexactitude */
4698 *dn
->lsu
= 0; /* coefficient will now be 0 */
4699 dn
->digits
= 1; /* .. */
4700 dn
->exponent
+= discard
; /* maintain numerical value */
4702 } /* total discard */
4704 /* partial discard [most common case] */
4705 /* here, at least the first (most significant) discarded digit exists */
4707 /* spin up the number, noting residue as we pass, until we get to */
4708 /* the Unit with the first discarded digit. When we get there, */
4709 /* extract it and remember where we're at */
4711 for (up
= lsu
;; up
++)
4714 if (count
>= discard
)
4715 break; /* full ones all checked */
4720 /* here up -> Unit with discarded digit */
4721 cut
= discard
- (count
- DECDPUN
) - 1;
4722 if (cut
== DECDPUN
- 1)
4723 { /* discard digit is at top */
4725 discard1
= QUOT10 (*up
, DECDPUN
- 1);
4726 rem
= *up
- discard1
* powers
[DECDPUN
- 1];
4728 rem
= *up
% powers
[DECDPUN
- 1];
4729 discard1
= *up
/ powers
[DECDPUN
- 1];
4733 up
++; /* move to next */
4734 cut
= 0; /* bottom digit of result */
4735 quot
= 0; /* keep a certain compiler happy */
4739 /* discard digit is in low digit(s), not top digit */
4743 { /* it's not at bottom of Unit */
4745 quot
= QUOT10 (*up
, cut
);
4746 rem
= *up
- quot
* powers
[cut
];
4748 rem
= *up
% powers
[cut
];
4749 quot
= *up
/ powers
[cut
];
4754 /* discard digit is now at bottom of quot */
4756 temp
= (quot
* 6554) >> 16; /* fast /10 */
4757 /* Vowels algorithm here not a win (9 instructions) */
4758 discard1
= quot
- X10 (temp
);
4761 discard1
= quot
% 10;
4764 cut
++; /* update cut */
4767 /* here: up -> Unit of the array with discarded digit */
4768 /* cut is the division point for each Unit */
4769 /* quot holds the uncut high-order digits for the current */
4770 /* Unit, unless cut==0 in which case it's still in *up */
4771 /* copy the coefficient array to the result number, shifting as we go */
4772 count
= set
->digits
; /* digits to end up with */
4774 { /* special for Rescale/Subnormal :-( */
4775 *dn
->lsu
= 0; /* .. result is 0 */
4776 dn
->digits
= 1; /* .. */
4779 { /* shift to least */
4780 /* [this is similar to decShiftToLeast code, with copy] */
4781 dn
->digits
= count
; /* set the new length */
4784 /* on unit boundary, so simple shift down copy loop suffices */
4785 for (target
= dn
->lsu
; target
< dn
->lsu
+ D2U (count
);
4792 for (target
= dn
->lsu
;; target
++)
4794 *target
= (Unit
) quot
;
4795 count
-= (DECDPUN
- cut
);
4801 quot
= QUOT10 (quot
, cut
);
4802 rem
= *up
- quot
* powers
[cut
];
4804 rem
= quot
% powers
[cut
];
4805 quot
= quot
/ powers
[cut
];
4807 *target
= (Unit
) (*target
+ rem
* powers
[DECDPUN
- cut
]);
4812 } /* shift to least needed */
4813 dn
->exponent
+= discard
; /* maintain numerical value */
4815 /* here, discard1 is the guard digit, and residue is everything else */
4816 /* [use mapping to accumulate residue safely] */
4817 *residue
+= resmap
[discard1
];
4820 *status
|= DEC_Inexact
; /* record inexactitude */
4824 /* ------------------------------------------------------------------ */
4825 /* decApplyRound -- apply pending rounding to a number */
4827 /* dn is the number, with space for set->digits digits */
4828 /* set is the context [for size and rounding mode] */
4829 /* residue indicates pending rounding, being any accumulated */
4830 /* guard and sticky information. It may be: */
4831 /* 6-9: rounding digit is >5 */
4832 /* 5: rounding digit is exactly half-way */
4833 /* 1-4: rounding digit is <5 and >0 */
4834 /* 0: the coefficient is exact */
4835 /* -1: as 1, but the hidden digits are subtractive, that */
4836 /* is, of the opposite sign to dn. In this case the */
4837 /* coefficient must be non-0. */
4838 /* status is the status accumulator, as usual */
4840 /* This routine applies rounding while keeping the length of the */
4841 /* coefficient constant. The exponent and status are unchanged */
4844 /* -- the coefficient was increased and is all nines (in which */
4845 /* case Overflow could occur, and is handled directly here so */
4846 /* the caller does not need to re-test for overflow) */
4848 /* -- the coefficient was decreased and becomes all nines (in which */
4849 /* case Underflow could occur, and is also handled directly). */
4851 /* All fields in dn are updated as required. */
4853 /* ------------------------------------------------------------------ */
4855 decApplyRound (decNumber
* dn
, decContext
* set
, Int residue
, uInt
* status
)
4857 Int bump
; /* 1 if coefficient needs to be incremented */
4858 /* -1 if coefficient needs to be decremented */
4861 return; /* nothing to apply */
4863 bump
= 0; /* assume a smooth ride */
4865 /* now decide whether, and how, to round, depending on mode */
4868 case DEC_ROUND_DOWN
:
4870 /* no change, except if negative residue */
4876 case DEC_ROUND_HALF_DOWN
:
4883 case DEC_ROUND_HALF_EVEN
:
4886 bump
= 1; /* >0.5 goes up */
4887 else if (residue
== 5)
4888 { /* exactly 0.5000... */
4889 /* 0.5 goes up iff [new] lsd is odd */
4890 if (*dn
->lsu
& 0x01)
4896 case DEC_ROUND_HALF_UP
:
4910 case DEC_ROUND_CEILING
:
4912 /* same as _UP for positive numbers, and as _DOWN for negatives */
4913 /* [negative residue cannot occur on 0] */
4914 if (decNumberIsNegative (dn
))
4927 case DEC_ROUND_FLOOR
:
4929 /* same as _UP for negative numbers, and as _DOWN for positive */
4930 /* [negative residue cannot occur on 0] */
4931 if (!decNumberIsNegative (dn
))
4945 { /* e.g., DEC_ROUND_MAX */
4946 *status
|= DEC_Invalid_context
;
4948 printf ("Unknown rounding mode: %d\n", set
->round
);
4954 /* now bump the number, up or down, if need be */
4956 return; /* no action required */
4958 /* Simply use decUnitAddSub unless we are bumping up and the number */
4959 /* is all nines. In this special case we set to 1000... and adjust */
4960 /* the exponent by one (as otherwise we could overflow the array) */
4961 /* Similarly handle all-nines result if bumping down. */
4964 Unit
*up
; /* work */
4965 uInt count
= dn
->digits
; /* digits to be checked */
4966 for (up
= dn
->lsu
;; up
++)
4968 if (count
<= DECDPUN
)
4970 /* this is the last Unit (the msu) */
4971 if (*up
!= powers
[count
] - 1)
4972 break; /* not still 9s */
4973 /* here if it, too, is all nines */
4974 *up
= (Unit
) powers
[count
- 1]; /* here 999 -> 100 etc. */
4975 for (up
= up
- 1; up
>= dn
->lsu
; up
--)
4976 *up
= 0; /* others all to 0 */
4977 dn
->exponent
++; /* and bump exponent */
4978 /* [which, very rarely, could cause Overflow...] */
4979 if ((dn
->exponent
+ dn
->digits
) > set
->emax
+ 1)
4981 decSetOverflow (dn
, set
, status
);
4985 /* a full unit to check, with more to come */
4986 if (*up
!= DECDPUNMAX
)
4987 break; /* not still 9s */
4993 /* here we are lookng for a pre-bump of 1000... (leading 1, */
4994 /* all other digits zero) */
4995 Unit
*up
, *sup
; /* work */
4996 uInt count
= dn
->digits
; /* digits to be checked */
4997 for (up
= dn
->lsu
;; up
++)
4999 if (count
<= DECDPUN
)
5001 /* this is the last Unit (the msu) */
5002 if (*up
!= powers
[count
- 1])
5003 break; /* not 100.. */
5004 /* here if we have the 1000... case */
5005 sup
= up
; /* save msu pointer */
5006 *up
= (Unit
) powers
[count
] - 1; /* here 100 in msu -> 999 */
5007 /* others all to all-nines, too */
5008 for (up
= up
- 1; up
>= dn
->lsu
; up
--)
5009 *up
= (Unit
) powers
[DECDPUN
] - 1;
5010 dn
->exponent
--; /* and bump exponent */
5012 /* iff the number was at the subnormal boundary (exponent=etiny) */
5013 /* then the exponent is now out of range, so it will in fact get */
5014 /* clamped to etiny and the final 9 dropped. */
5015 /* printf(">> emin=%d exp=%d sdig=%d\n", set->emin, */
5016 /* dn->exponent, set->digits); */
5017 if (dn
->exponent
+ 1 == set
->emin
- set
->digits
+ 1)
5019 if (count
== 1 && dn
->digits
== 1)
5020 *sup
= 0; /* here 9 -> 0[.9] */
5023 *sup
= (Unit
) powers
[count
- 1] - 1; /* here 999.. in msu -> 99.. */
5028 DEC_Underflow
| DEC_Subnormal
| DEC_Inexact
| DEC_Rounded
;
5033 /* a full unit to check, with more to come */
5035 break; /* not still 0s */
5041 /* Actual bump needed. Do it. */
5042 decUnitAddSub (dn
->lsu
, D2U (dn
->digits
), one
, 1, 0, dn
->lsu
, bump
);
5046 /* ------------------------------------------------------------------ */
5047 /* decFinish -- finish processing a number */
5049 /* dn is the number */
5050 /* set is the context */
5051 /* residue is the rounding accumulator (as in decApplyRound) */
5052 /* status is the accumulator */
5054 /* This finishes off the current number by: */
5055 /* 1. If not extended: */
5056 /* a. Converting a zero result to clean '0' */
5057 /* b. Reducing positive exponents to 0, if would fit in digits */
5058 /* 2. Checking for overflow and subnormals (always) */
5059 /* Note this is just Finalize when no subset arithmetic. */
5060 /* All fields are updated as required. */
5061 /* ------------------------------------------------------------------ */
5063 decFinish (decNumber
* dn
, decContext
* set
, Int
* residue
, uInt
* status
)
5069 { /* value is zero */
5070 dn
->exponent
= 0; /* clean exponent .. */
5071 dn
->bits
= 0; /* .. and sign */
5072 return; /* no error possible */
5074 if (dn
->exponent
>= 0)
5075 { /* non-negative exponent */
5076 /* >0; reduce to integer if possible */
5077 if (set
->digits
>= (dn
->exponent
+ dn
->digits
))
5079 dn
->digits
= decShiftToMost (dn
->lsu
, dn
->digits
, dn
->exponent
);
5085 decFinalize (dn
, set
, residue
, status
);
5089 /* ------------------------------------------------------------------ */
5090 /* decFinalize -- final check, clamp, and round of a number */
5092 /* dn is the number */
5093 /* set is the context */
5094 /* residue is the rounding accumulator (as in decApplyRound) */
5095 /* status is the status accumulator */
5097 /* This finishes off the current number by checking for subnormal */
5098 /* results, applying any pending rounding, checking for overflow, */
5099 /* and applying any clamping. */
5100 /* Underflow and overflow conditions are raised as appropriate. */
5101 /* All fields are updated as required. */
5102 /* ------------------------------------------------------------------ */
5104 decFinalize (decNumber
* dn
, decContext
* set
, Int
* residue
, uInt
* status
)
5106 Int shift
; /* shift needed if clamping */
5108 /* We have to be careful when checking the exponent as the adjusted */
5109 /* exponent could overflow 31 bits [because it may already be up */
5110 /* to twice the expected]. */
5112 /* First test for subnormal. This must be done before any final */
5113 /* round as the result could be rounded to Nmin or 0. */
5114 if (dn
->exponent
< 0 /* negative exponent */
5115 && (dn
->exponent
< set
->emin
- dn
->digits
+ 1))
5117 /* Go handle subnormals; this will apply round if needed. */
5118 decSetSubnormal (dn
, set
, residue
, status
);
5122 /* now apply any pending round (this could raise overflow). */
5124 decApplyRound (dn
, set
, *residue
, status
);
5126 /* Check for overflow [redundant in the 'rare' case] or clamp */
5127 if (dn
->exponent
<= set
->emax
- set
->digits
+ 1)
5128 return; /* neither needed */
5130 /* here when we might have an overflow or clamp to do */
5131 if (dn
->exponent
> set
->emax
- dn
->digits
+ 1)
5133 decSetOverflow (dn
, set
, status
);
5136 /* here when the result is normal but in clamp range */
5140 /* here when we need to apply the IEEE exponent clamp (fold-down) */
5141 shift
= dn
->exponent
- (set
->emax
- set
->digits
+ 1);
5143 /* shift coefficient (if non-zero) */
5146 dn
->digits
= decShiftToMost (dn
->lsu
, dn
->digits
, shift
);
5148 dn
->exponent
-= shift
; /* adjust the exponent to match */
5149 *status
|= DEC_Clamped
; /* and record the dirty deed */
5153 /* ------------------------------------------------------------------ */
5154 /* decSetOverflow -- set number to proper overflow value */
5156 /* dn is the number (used for sign [only] and result) */
5157 /* set is the context [used for the rounding mode] */
5158 /* status contains the current status to be updated */
5160 /* This sets the sign of a number and sets its value to either */
5161 /* Infinity or the maximum finite value, depending on the sign of */
5162 /* dn and therounding mode, following IEEE 854 rules. */
5163 /* ------------------------------------------------------------------ */
5165 decSetOverflow (decNumber
* dn
, decContext
* set
, uInt
* status
)
5167 Flag needmax
= 0; /* result is maximum finite value */
5168 uByte sign
= dn
->bits
& DECNEG
; /* clean and save sign bit */
5171 { /* zero does not overflow magnitude */
5172 Int emax
= set
->emax
; /* limit value */
5174 emax
-= set
->digits
- 1; /* lower if clamping */
5175 if (dn
->exponent
> emax
)
5176 { /* clamp required */
5177 dn
->exponent
= emax
;
5178 *status
|= DEC_Clamped
;
5186 case DEC_ROUND_DOWN
:
5188 needmax
= 1; /* never Infinity */
5191 case DEC_ROUND_CEILING
:
5194 needmax
= 1; /* Infinity if non-negative */
5197 case DEC_ROUND_FLOOR
:
5200 needmax
= 1; /* Infinity if negative */
5204 break; /* Infinity in all other cases */
5208 Unit
*up
; /* work */
5209 Int count
= set
->digits
; /* nines to add */
5211 /* fill in all nines to set maximum value */
5212 for (up
= dn
->lsu
;; up
++)
5214 if (count
> DECDPUN
)
5215 *up
= DECDPUNMAX
; /* unit full o'nines */
5217 { /* this is the msu */
5218 *up
= (Unit
) (powers
[count
] - 1);
5221 count
-= DECDPUN
; /* we filled those digits */
5223 dn
->bits
= sign
; /* sign */
5224 dn
->exponent
= set
->emax
- set
->digits
+ 1;
5227 dn
->bits
= sign
| DECINF
; /* Value is +/-Infinity */
5228 *status
|= DEC_Overflow
| DEC_Inexact
| DEC_Rounded
;
5231 /* ------------------------------------------------------------------ */
5232 /* decSetSubnormal -- process value whose exponent is <Emin */
5234 /* dn is the number (used as input as well as output; it may have */
5235 /* an allowed subnormal value, which may need to be rounded) */
5236 /* set is the context [used for the rounding mode] */
5237 /* residue is any pending residue */
5238 /* status contains the current status to be updated */
5240 /* If subset mode, set result to zero and set Underflow flags. */
5242 /* Value may be zero with a low exponent; this does not set Subnormal */
5243 /* but the exponent will be clamped to Etiny. */
5245 /* Otherwise ensure exponent is not out of range, and round as */
5246 /* necessary. Underflow is set if the result is Inexact. */
5247 /* ------------------------------------------------------------------ */
5249 decSetSubnormal (decNumber
* dn
, decContext
* set
, Int
* residue
,
5252 decContext workset
; /* work */
5253 Int etiny
, adjust
; /* .. */
5256 /* simple set to zero and 'hard underflow' for subset */
5260 /* always full overflow */
5261 *status
|= DEC_Underflow
| DEC_Subnormal
| DEC_Inexact
| DEC_Rounded
;
5266 /* Full arithmetic -- allow subnormals, rounded to minimum exponent */
5267 /* (Etiny) if needed */
5268 etiny
= set
->emin
- (set
->digits
- 1); /* smallest allowed exponent */
5272 { /* value is zero */
5273 /* residue can never be non-zero here */
5277 printf ("++ Subnormal 0 residue %d\n", *residue
);
5278 *status
|= DEC_Invalid_operation
;
5281 if (dn
->exponent
< etiny
)
5282 { /* clamp required */
5283 dn
->exponent
= etiny
;
5284 *status
|= DEC_Clamped
;
5289 *status
|= DEC_Subnormal
; /* we have a non-zero subnormal */
5291 adjust
= etiny
- dn
->exponent
; /* calculate digits to remove */
5293 { /* not out of range; unrounded */
5294 /* residue can never be non-zero here, so fast-path out */
5298 printf ("++ Subnormal no-adjust residue %d\n", *residue
);
5299 *status
|= DEC_Invalid_operation
;
5302 /* it may already be inexact (from setting the coefficient) */
5303 if (*status
& DEC_Inexact
)
5304 *status
|= DEC_Underflow
;
5308 /* adjust>0. we need to rescale the result so exponent becomes Etiny */
5309 /* [this code is similar to that in rescale] */
5310 workset
= *set
; /* clone rounding, etc. */
5311 workset
.digits
= dn
->digits
- adjust
; /* set requested length */
5312 workset
.emin
-= adjust
; /* and adjust emin to match */
5313 /* [note that the latter can be <1, here, similar to Rescale case] */
5314 decSetCoeff (dn
, &workset
, dn
->lsu
, dn
->digits
, residue
, status
);
5315 decApplyRound (dn
, &workset
, *residue
, status
);
5317 /* Use 754R/854 default rule: Underflow is set iff Inexact */
5318 /* [independent of whether trapped] */
5319 if (*status
& DEC_Inexact
)
5320 *status
|= DEC_Underflow
;
5322 /* if we rounded up a 999s case, exponent will be off by one; adjust */
5323 /* back if so [it will fit, because we shortened] */
5324 if (dn
->exponent
> etiny
)
5326 dn
->digits
= decShiftToMost (dn
->lsu
, dn
->digits
, 1);
5327 dn
->exponent
--; /* (re)adjust the exponent. */
5331 /* ------------------------------------------------------------------ */
5332 /* decGetInt -- get integer from a number */
5334 /* dn is the number [which will not be altered] */
5335 /* set is the context [requested digits], subset only */
5336 /* returns the converted integer, or BADINT if error */
5338 /* This checks and gets a whole number from the input decNumber. */
5339 /* The magnitude of the integer must be <2^31. */
5340 /* Any discarded fractional part must be 0. */
5341 /* If subset it must also fit in set->digits */
5342 /* ------------------------------------------------------------------ */
5345 decGetInt (decNumber
* dn
, decContext
* set
)
5349 decGetInt (decNumber
* dn
)
5352 Int theInt
; /* result accumulator */
5353 Unit
*up
; /* work */
5354 Int got
; /* digits (real or not) processed */
5355 Int ilength
= dn
->digits
+ dn
->exponent
; /* integral length */
5357 /* The number must be an integer that fits in 10 digits */
5358 /* Assert, here, that 10 is enough for any rescale Etiny */
5359 #if DEC_MAX_EMAX > 999999999
5360 #error GetInt may need updating [for Emax]
5362 #if DEC_MIN_EMIN < -999999999
5363 #error GetInt may need updating [for Emin]
5366 return 0; /* zeros are OK, with any exponent */
5368 return BADINT
; /* always too big */
5370 if (!set
->extended
&& ilength
> set
->digits
)
5374 up
= dn
->lsu
; /* ready for lsu */
5375 theInt
= 0; /* ready to accumulate */
5376 if (dn
->exponent
>= 0)
5377 { /* relatively easy */
5378 /* no fractional part [usual]; allow for positive exponent */
5382 { /* -ve exponent; some fractional part to check and discard */
5383 Int count
= -dn
->exponent
; /* digits to discard */
5384 /* spin up whole units until we get to the Unit with the unit digit */
5385 for (; count
>= DECDPUN
; up
++)
5388 return BADINT
; /* non-zero Unit to discard */
5392 got
= 0; /* [a multiple of DECDPUN] */
5394 { /* [not multiple of DECDPUN] */
5396 /* slice off fraction digits and check for non-zero */
5398 theInt
= QUOT10 (*up
, count
);
5399 rem
= *up
- theInt
* powers
[count
];
5401 rem
= *up
% powers
[count
]; /* slice off discards */
5402 theInt
= *up
/ powers
[count
];
5405 return BADINT
; /* non-zero fraction */
5406 /* OK, we're good */
5407 got
= DECDPUN
- count
; /* number of digits so far */
5408 up
++; /* ready for next */
5411 /* collect the rest */
5412 for (; got
< ilength
; up
++)
5414 theInt
+= *up
* powers
[got
];
5417 if ((ilength
== 10) /* check no wrap */
5418 && (theInt
/ (Int
) powers
[got
- DECDPUN
] != *(up
- 1)))
5420 /* [that test also disallows the BADINT result case] */
5422 /* apply any sign and return */
5423 if (decNumberIsNegative (dn
))
5428 /* ------------------------------------------------------------------ */
5429 /* decStrEq -- caseless comparison of strings */
5431 /* str1 is one of the strings to compare */
5432 /* str2 is the other */
5434 /* returns 1 if strings caseless-compare equal, 0 otherwise */
5436 /* Note that the strings must be the same length if they are to */
5437 /* compare equal; there is no padding. */
5438 /* ------------------------------------------------------------------ */
5439 /* [strcmpi is not in ANSI C] */
5441 decStrEq (const char *str1
, const char *str2
)
5443 for (;; str1
++, str2
++)
5445 unsigned char u1
= (unsigned char) *str1
;
5446 unsigned char u2
= (unsigned char) *str2
;
5454 if (tolower (u1
) != tolower (u2
))
5461 /* ------------------------------------------------------------------ */
5462 /* decNaNs -- handle NaN operand or operands */
5464 /* res is the result number */
5465 /* lhs is the first operand */
5466 /* rhs is the second operand, or NULL if none */
5467 /* status contains the current status */
5468 /* returns res in case convenient */
5470 /* Called when one or both operands is a NaN, and propagates the */
5471 /* appropriate result to res. When an sNaN is found, it is changed */
5472 /* to a qNaN and Invalid operation is set. */
5473 /* ------------------------------------------------------------------ */
5475 decNaNs (decNumber
* res
, decNumber
* lhs
, decNumber
* rhs
, uInt
* status
)
5477 /* This decision tree ends up with LHS being the source pointer, */
5478 /* and status updated if need be */
5479 if (lhs
->bits
& DECSNAN
)
5480 *status
|= DEC_Invalid_operation
| DEC_sNaN
;
5481 else if (rhs
== NULL
);
5482 else if (rhs
->bits
& DECSNAN
)
5485 *status
|= DEC_Invalid_operation
| DEC_sNaN
;
5487 else if (lhs
->bits
& DECNAN
);
5491 decNumberCopy (res
, lhs
);
5492 res
->bits
&= ~DECSNAN
; /* convert any sNaN to NaN, while */
5493 res
->bits
|= DECNAN
; /* .. preserving sign */
5494 res
->exponent
= 0; /* clean exponent */
5495 /* [coefficient was copied] */
5499 /* ------------------------------------------------------------------ */
5500 /* decStatus -- apply non-zero status */
5502 /* dn is the number to set if error */
5503 /* status contains the current status (not yet in context) */
5504 /* set is the context */
5506 /* If the status is an error status, the number is set to a NaN, */
5507 /* unless the error was an overflow, divide-by-zero, or underflow, */
5508 /* in which case the number will have already been set. */
5510 /* The context status is then updated with the new status. Note that */
5511 /* this may raise a signal, so control may never return from this */
5512 /* routine (hence resources must be recovered before it is called). */
5513 /* ------------------------------------------------------------------ */
5515 decStatus (decNumber
* dn
, uInt status
, decContext
* set
)
5517 if (status
& DEC_NaNs
)
5518 { /* error status -> NaN */
5519 /* if cause was an sNaN, clear and propagate [NaN is already set up] */
5520 if (status
& DEC_sNaN
)
5521 status
&= ~DEC_sNaN
;
5524 decNumberZero (dn
); /* other error: clean throughout */
5525 dn
->bits
= DECNAN
; /* and make a quiet NaN */
5528 decContextSetStatus (set
, status
);
5532 /* ------------------------------------------------------------------ */
5533 /* decGetDigits -- count digits in a Units array */
5535 /* uar is the Unit array holding the number [this is often an */
5536 /* accumulator of some sort] */
5537 /* len is the length of the array in units */
5539 /* returns the number of (significant) digits in the array */
5541 /* All leading zeros are excluded, except the last if the array has */
5542 /* only zero Units. */
5543 /* ------------------------------------------------------------------ */
5544 /* This may be called twice during some operations. */
5546 decGetDigits (Unit
* uar
, Int len
)
5548 Unit
*up
= uar
+ len
- 1; /* -> msu */
5549 Int digits
= len
* DECDPUN
; /* maximum possible digits */
5550 uInt
const *pow
; /* work */
5552 for (; up
>= uar
; up
--)
5558 continue; /* more to check */
5559 /* all units were 0 */
5560 digits
++; /* .. so bump digits to 1 */
5563 /* found the first non-zero Unit */
5566 break; /* fastpath 1-9 */
5568 for (pow
= &powers
[2]; *up
>= *pow
; pow
++)
5577 #if DECTRACE | DECCHECK
5578 /* ------------------------------------------------------------------ */
5579 /* decNumberShow -- display a number [debug aid] */
5580 /* dn is the number to show */
5582 /* Shows: sign, exponent, coefficient (msu first), digits */
5583 /* or: sign, special-value */
5584 /* ------------------------------------------------------------------ */
5585 /* this is public so other modules can use it */
5587 decNumberShow (decNumber
* dn
)
5589 Unit
*up
; /* work */
5592 char isign
= '+'; /* main sign */
5598 if (decNumberIsNegative (dn
))
5600 printf (" >> %c ", isign
);
5601 if (dn
->bits
& DECSPECIAL
)
5602 { /* Is a special value */
5603 if (decNumberIsInfinite (dn
))
5604 printf ("Infinity");
5607 if (dn
->bits
& DECSNAN
)
5608 printf ("sNaN"); /* signalling NaN */
5612 /* if coefficient and exponent are 0, we're done */
5613 if (dn
->exponent
== 0 && dn
->digits
== 1 && *dn
->lsu
== 0)
5618 /* drop through to report other information */
5622 /* now carefully display the coefficient */
5623 up
= dn
->lsu
+ D2U (dn
->digits
) - 1; /* msu */
5625 for (up
= up
- 1; up
>= dn
->lsu
; up
--)
5629 for (cut
= DECDPUN
- 1; cut
>= 0; cut
--)
5631 d
= u
/ powers
[cut
];
5632 u
-= d
* powers
[cut
];
5636 if (dn
->exponent
!= 0)
5639 if (dn
->exponent
< 0)
5641 printf (" E%c%d", esign
, abs (dn
->exponent
));
5643 printf (" [%d]\n", dn
->digits
);
5647 #if DECTRACE || DECCHECK
5648 /* ------------------------------------------------------------------ */
5649 /* decDumpAr -- display a unit array [debug aid] */
5650 /* name is a single-character tag name */
5651 /* ar is the array to display */
5652 /* len is the length of the array in Units */
5653 /* ------------------------------------------------------------------ */
5655 decDumpAr (char name
, Unit
* ar
, Int len
)
5659 char *spec
= "%04d ";
5663 printf (" :%c: ", name
);
5664 for (i
= len
- 1; i
>= 0; i
--)
5667 printf ("%d ", ar
[i
]);
5669 printf (spec
, ar
[i
]);
5677 /* ------------------------------------------------------------------ */
5678 /* decCheckOperands -- check operand(s) to a routine */
5679 /* res is the result structure (not checked; it will be set to */
5680 /* quiet NaN if error found (and it is not NULL)) */
5681 /* lhs is the first operand (may be DECUNUSED) */
5682 /* rhs is the second (may be DECUNUSED) */
5683 /* set is the context (may be DECUNUSED) */
5684 /* returns 0 if both operands, and the context are clean, or 1 */
5685 /* otherwise (in which case the context will show an error, */
5686 /* unless NULL). Note that res is not cleaned; caller should */
5687 /* handle this so res=NULL case is safe. */
5688 /* The caller is expected to abandon immediately if 1 is returned. */
5689 /* ------------------------------------------------------------------ */
5691 decCheckOperands (decNumber
* res
, decNumber
* lhs
,
5692 decNumber
* rhs
, decContext
* set
)
5696 { /* oops; hopeless */
5698 printf ("Context is NULL.\n");
5703 else if (set
!= DECUNUSED
5704 && (set
->digits
< 1 || set
->round
< 0
5705 || set
->round
>= DEC_ROUND_MAX
))
5709 printf ("Bad context [digits=%d round=%d].\n", set
->digits
, set
->round
);
5718 printf ("Bad result [is NULL].\n");
5721 if (!bad
&& lhs
!= DECUNUSED
)
5722 bad
= (decCheckNumber (lhs
, set
));
5723 if (!bad
&& rhs
!= DECUNUSED
)
5724 bad
= (decCheckNumber (rhs
, set
));
5728 if (set
!= DECUNUSED
)
5729 decContextSetStatus (set
, DEC_Invalid_operation
);
5730 if (res
!= DECUNUSED
&& res
!= NULL
)
5732 decNumberZero (res
);
5733 res
->bits
= DECNAN
; /* qNaN */
5739 /* ------------------------------------------------------------------ */
5740 /* decCheckNumber -- check a number */
5741 /* dn is the number to check */
5742 /* set is the context (may be DECUNUSED) */
5743 /* returns 0 if the number is clean, or 1 otherwise */
5745 /* The number is considered valid if it could be a result from some */
5746 /* operation in some valid context (not necessarily the current one). */
5747 /* ------------------------------------------------------------------ */
5749 decCheckNumber (decNumber
* dn
, decContext
* set
)
5751 Unit
*up
; /* work */
5752 uInt maxuint
; /* .. */
5753 Int ae
, d
, digits
; /* .. */
5754 Int emin
, emax
; /* .. */
5759 printf ("Reference to decNumber is NULL.\n");
5764 /* check special values */
5765 if (dn
->bits
& DECSPECIAL
)
5767 if (dn
->exponent
!= 0)
5770 printf ("Exponent %d (not 0) for a special value.\n", dn
->exponent
);
5775 /* 2003.09.08: NaNs may now have coefficients, so next tests Inf only */
5776 if (decNumberIsInfinite (dn
))
5778 if (dn
->digits
!= 1)
5781 printf ("Digits %d (not 1) for an infinity.\n", dn
->digits
);
5788 printf ("LSU %d (not 0) for an infinity.\n", *dn
->lsu
);
5793 /* 2002.12.26: negative NaNs can now appear through proposed IEEE */
5794 /* concrete formats (decimal64, etc.), though they are */
5795 /* never visible in strings. */
5798 /* if ((dn->bits & DECINF) || (dn->bits & DECNEG)==0) return 0; */
5800 /* printf("Negative NaN in number.\n"); */
5805 /* check the coefficient */
5806 if (dn
->digits
< 1 || dn
->digits
> DECNUMMAXP
)
5809 printf ("Digits %d in number.\n", dn
->digits
);
5816 for (up
= dn
->lsu
; d
> 0; up
++)
5819 maxuint
= DECDPUNMAX
;
5821 { /* we are at the msu */
5822 maxuint
= powers
[d
] - 1;
5823 if (dn
->digits
> 1 && *up
< powers
[d
- 1])
5826 printf ("Leading 0 in number.\n");
5835 printf ("Bad Unit [%08x] in number at offset %d [maxuint %d].\n",
5836 *up
, up
- dn
->lsu
, maxuint
);
5843 /* check the exponent. Note that input operands can have exponents */
5844 /* which are out of the set->emin/set->emax and set->digits range */
5845 /* (just as they can have more digits than set->digits). */
5846 ae
= dn
->exponent
+ dn
->digits
- 1; /* adjusted exponent */
5849 digits
= DECNUMMAXP
;
5850 if (ae
< emin
- (digits
- 1))
5853 printf ("Adjusted exponent underflow [%d].\n", ae
);
5861 printf ("Adjusted exponent overflow [%d].\n", ae
);
5867 return 0; /* it's OK */
5874 /* ------------------------------------------------------------------ */
5875 /* decMalloc -- accountable allocation routine */
5876 /* n is the number of bytes to allocate */
5878 /* Semantics is the same as the stdlib malloc routine, but bytes */
5879 /* allocated are accounted for globally, and corruption fences are */
5880 /* added before and after the 'actual' storage. */
5881 /* ------------------------------------------------------------------ */
5882 /* This routine allocates storage with an extra twelve bytes; 8 are */
5883 /* at the start and hold: */
5884 /* 0-3 the original length requested */
5885 /* 4-7 buffer corruption detection fence (DECFENCE, x4) */
5886 /* The 4 bytes at the end also hold a corruption fence (DECFENCE, x4) */
5887 /* ------------------------------------------------------------------ */
5891 uInt size
= n
+ 12; /* true size */
5892 void *alloc
; /* -> allocated storage */
5894 uByte
*b
, *b0
; /* .. */
5896 alloc
= malloc (size
); /* -> allocated storage */
5898 return NULL
; /* out of strorage */
5899 b0
= (uByte
*) alloc
; /* as bytes */
5900 decAllocBytes
+= n
; /* account for storage */
5901 j
= (uInt
*) alloc
; /* -> first four bytes */
5902 *j
= n
; /* save n */
5903 /* printf("++ alloc(%d)\n", n); */
5904 for (b
= b0
+ 4; b
< b0
+ 8; b
++)
5906 for (b
= b0
+ n
+ 8; b
< b0
+ n
+ 12; b
++)
5908 return b0
+ 8; /* -> play area */
5911 /* ------------------------------------------------------------------ */
5912 /* decFree -- accountable free routine */
5913 /* alloc is the storage to free */
5915 /* Semantics is the same as the stdlib malloc routine, except that */
5916 /* the global storage accounting is updated and the fences are */
5917 /* checked to ensure that no routine has written 'out of bounds'. */
5918 /* ------------------------------------------------------------------ */
5919 /* This routine first checks that the fences have not been corrupted. */
5920 /* It then frees the storage using the 'truw' storage address (that */
5921 /* is, offset by 8). */
5922 /* ------------------------------------------------------------------ */
5924 decFree (void *alloc
)
5926 uInt
*j
, n
; /* pointer, original length */
5927 uByte
*b
, *b0
; /* work */
5930 return; /* allowed; it's a nop */
5931 b0
= (uByte
*) alloc
; /* as bytes */
5932 b0
-= 8; /* -> true start of storage */
5933 j
= (uInt
*) b0
; /* -> first four bytes */
5935 for (b
= b0
+ 4; b
< b0
+ 8; b
++)
5937 printf ("=== Corrupt byte [%02x] at offset %d from %d ===\n", *b
,
5938 b
- b0
- 8, (Int
) b0
);
5939 for (b
= b0
+ n
+ 8; b
< b0
+ n
+ 12; b
++)
5941 printf ("=== Corrupt byte [%02x] at offset +%d from %d, n=%d ===\n", *b
,
5942 b
- b0
- 8, (Int
) b0
, n
);
5943 free (b0
); /* drop the storage */
5944 decAllocBytes
-= n
; /* account for storage */