1 // SPDX-License-Identifier: GPL-2.0
2 /*---------------------------------------------------------------------------+
5 | Function to compute 2^x-1 by a polynomial approximation. |
7 | Copyright (C) 1992,1993,1994,1997 |
8 | W. Metzenthen, 22 Parker St, Ormond, Vic 3163, Australia |
9 | E-mail billm@suburbia.net |
12 +---------------------------------------------------------------------------*/
14 #include "exception.h"
15 #include "reg_constant.h"
17 #include "fpu_system.h"
18 #include "control_w.h"
22 static const unsigned long long lterms
[HIPOWER
] = {
23 0x0000000000000000LL
, /* This term done separately as 12 bytes */
36 static const Xsig hiterm
= MK_XSIG(0xb17217f7, 0xd1cf79ab, 0xc8a39194);
38 /* Four slices: 0.0 : 0.25 : 0.50 : 0.75 : 1.0,
39 These numbers are 2^(1/4), 2^(1/2), and 2^(3/4)
41 static const Xsig shiftterm0
= MK_XSIG(0, 0, 0);
42 static const Xsig shiftterm1
= MK_XSIG(0x9837f051, 0x8db8a96f, 0x46ad2318);
43 static const Xsig shiftterm2
= MK_XSIG(0xb504f333, 0xf9de6484, 0x597d89b3);
44 static const Xsig shiftterm3
= MK_XSIG(0xd744fcca, 0xd69d6af4, 0x39a68bb9);
46 static const Xsig
*shiftterm
[] = { &shiftterm0
, &shiftterm1
,
47 &shiftterm2
, &shiftterm3
50 /*--- poly_2xm1() -----------------------------------------------------------+
51 | Requires st(0) which is TAG_Valid and < 1. |
52 +---------------------------------------------------------------------------*/
53 int poly_2xm1(u_char sign
, FPU_REG
*arg
, FPU_REG
*result
)
55 long int exponent
, shift
;
56 unsigned long long Xll
;
57 Xsig accumulator
, Denom
, argSignif
;
60 exponent
= exponent16(arg
);
63 if (exponent
>= 0) { /* Don't want a |number| >= 1.0 */
64 /* Number negative, too large, or not Valid. */
65 EXCEPTION(EX_INTERNAL
| 0x127);
71 XSIG_LL(argSignif
) = Xll
= significand(arg
);
74 shift
= (argSignif
.msw
& 0x40000000) ? 3 : 2;
75 /* subtract 0.5 or 0.75 */
77 XSIG_LL(argSignif
) <<= 2;
79 } else if (exponent
== -2) {
83 XSIG_LL(argSignif
) <<= 1;
89 /* Shift the argument right by the required places. */
90 if (FPU_shrx(&Xll
, -2 - exponent
) >= 0x80000000U
)
94 accumulator
.lsw
= accumulator
.midw
= accumulator
.msw
= 0;
95 polynomial_Xsig(&accumulator
, &Xll
, lterms
, HIPOWER
- 1);
96 mul_Xsig_Xsig(&accumulator
, &argSignif
);
97 shr_Xsig(&accumulator
, 3);
99 mul_Xsig_Xsig(&argSignif
, &hiterm
); /* The leading term */
100 add_two_Xsig(&accumulator
, &argSignif
, &exponent
);
103 /* The argument is large, use the identity:
104 f(x+a) = f(a) * (f(x) + 1) - 1;
106 shr_Xsig(&accumulator
, -exponent
);
107 accumulator
.msw
|= 0x80000000; /* add 1.0 */
108 mul_Xsig_Xsig(&accumulator
, shiftterm
[shift
]);
109 accumulator
.msw
&= 0x3fffffff; /* subtract 1.0 */
113 if (sign
!= SIGN_POS
) {
114 /* The argument is negative, use the identity:
115 f(-x) = -f(x) / (1 + f(x))
117 Denom
.lsw
= accumulator
.lsw
;
118 XSIG_LL(Denom
) = XSIG_LL(accumulator
);
120 shr_Xsig(&Denom
, -exponent
);
121 else if (exponent
> 0) {
122 /* exponent must be 1 here */
123 XSIG_LL(Denom
) <<= 1;
124 if (Denom
.lsw
& 0x80000000)
128 Denom
.msw
|= 0x80000000; /* add 1.0 */
129 div_Xsig(&accumulator
, &Denom
, &accumulator
);
132 /* Convert to 64 bit signed-compatible */
133 exponent
+= round_Xsig(&accumulator
);
136 significand(result
) = XSIG_LL(accumulator
);
137 setexponent16(result
, exponent
);
139 tag
= FPU_round(result
, 1, 0, FULL_PRECISION
, sign
);
141 setsign(result
, sign
);