This source file includes following definitions.
- poly_2xm1
1
2
3
4
5
6
7
8
9
10
11
12
13
14 #include "exception.h"
15 #include "reg_constant.h"
16 #include "fpu_emu.h"
17 #include "fpu_system.h"
18 #include "control_w.h"
19 #include "poly.h"
20
21 #define HIPOWER 11
22 static const unsigned long long lterms[HIPOWER] = {
23 0x0000000000000000LL,
24 0xf5fdeffc162c7543LL,
25 0x1c6b08d704a0bfa6LL,
26 0x0276556df749cc21LL,
27 0x002bb0ffcf14f6b8LL,
28 0x0002861225ef751cLL,
29 0x00001ffcbfcd5422LL,
30 0x00000162c005d5f1LL,
31 0x0000000da96ccb1bLL,
32 0x0000000078d1b897LL,
33 0x000000000422b029LL
34 };
35
36 static const Xsig hiterm = MK_XSIG(0xb17217f7, 0xd1cf79ab, 0xc8a39194);
37
38
39
40
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);
45
46 static const Xsig *shiftterm[] = { &shiftterm0, &shiftterm1,
47 &shiftterm2, &shiftterm3
48 };
49
50
51
52
53 int poly_2xm1(u_char sign, FPU_REG *arg, FPU_REG *result)
54 {
55 long int exponent, shift;
56 unsigned long long Xll;
57 Xsig accumulator, Denom, argSignif;
58 u_char tag;
59
60 exponent = exponent16(arg);
61
62 #ifdef PARANOID
63 if (exponent >= 0) {
64
65 EXCEPTION(EX_INTERNAL | 0x127);
66 return 1;
67 }
68 #endif
69
70 argSignif.lsw = 0;
71 XSIG_LL(argSignif) = Xll = significand(arg);
72
73 if (exponent == -1) {
74 shift = (argSignif.msw & 0x40000000) ? 3 : 2;
75
76 exponent -= 2;
77 XSIG_LL(argSignif) <<= 2;
78 Xll <<= 2;
79 } else if (exponent == -2) {
80 shift = 1;
81
82 exponent--;
83 XSIG_LL(argSignif) <<= 1;
84 Xll <<= 1;
85 } else
86 shift = 0;
87
88 if (exponent < -2) {
89
90 if (FPU_shrx(&Xll, -2 - exponent) >= 0x80000000U)
91 Xll++;
92 }
93
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);
98
99 mul_Xsig_Xsig(&argSignif, &hiterm);
100 add_two_Xsig(&accumulator, &argSignif, &exponent);
101
102 if (shift) {
103
104
105
106 shr_Xsig(&accumulator, -exponent);
107 accumulator.msw |= 0x80000000;
108 mul_Xsig_Xsig(&accumulator, shiftterm[shift]);
109 accumulator.msw &= 0x3fffffff;
110 exponent = 1;
111 }
112
113 if (sign != SIGN_POS) {
114
115
116
117 Denom.lsw = accumulator.lsw;
118 XSIG_LL(Denom) = XSIG_LL(accumulator);
119 if (exponent < 0)
120 shr_Xsig(&Denom, -exponent);
121 else if (exponent > 0) {
122
123 XSIG_LL(Denom) <<= 1;
124 if (Denom.lsw & 0x80000000)
125 XSIG_LL(Denom) |= 1;
126 (Denom.lsw) <<= 1;
127 }
128 Denom.msw |= 0x80000000;
129 div_Xsig(&accumulator, &Denom, &accumulator);
130 }
131
132
133 exponent += round_Xsig(&accumulator);
134
135 result = &st(0);
136 significand(result) = XSIG_LL(accumulator);
137 setexponent16(result, exponent);
138
139 tag = FPU_round(result, 1, 0, FULL_PRECISION, sign);
140
141 setsign(result, sign);
142 FPU_settag0(tag);
143
144 return 0;
145
146 }