aboutsummaryrefslogtreecommitdiff
path: root/libgcc/config/libbid/bid128_sqrt.c
blob: bae395f60d343eeab590aa71a997cb7b61f3be87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
/* Copyright (C) 2007  Free Software Foundation, Inc.

This file is part of GCC.

GCC is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free
Software Foundation; either version 2, or (at your option) any later
version.

In addition to the permissions in the GNU General Public License, the
Free Software Foundation gives you unlimited permission to link the
compiled version of this file into combinations with other programs,
and to distribute those combinations without any restriction coming
from the use of this file.  (The General Public License restrictions
do apply in other respects; for example, they cover modification of
the file, and distribution when not linked into a combine
executable.)

GCC is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
for more details.

You should have received a copy of the GNU General Public License
along with GCC; see the file COPYING.  If not, write to the Free
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.  */

#define BID_128RES
#include "sqrt_macros.h"

BID128_FUNCTION_ARG1(__bid128_sqrt, x)

  UINT256 M256, C256, C4, C8;
  UINT128 CX, CX1, CX2, A10, S2, T128, TP128, CS, CSM, res;
  UINT64 sign_x, Carry;
  SINT64 D;
  int_float fx, f64;
  int exponent_x = 0, bin_expon_cx;
  int digits, scale, exponent_q;

  // unpack arguments, check for NaN or Infinity
  if (!unpack_BID128_value (&sign_x, &exponent_x, &CX, x)) {
    res.w[1] = x.w[1];
    res.w[0] = x.w[0];
    // NaN ?
    if ((x.w[1] & 0x7c00000000000000ull) == 0x7c00000000000000ull) {
#ifdef SET_STATUS_FLAGS
      if ((x.w[1] & 0x7e00000000000000ull) == 0x7e00000000000000ull)	// sNaN
	__set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
	  res.w[1] &= QUIET_MASK64;
      BID_RETURN (res);
    }
    // x is Infinity?
    if ((x.w[1] & 0x7800000000000000ull) == 0x7800000000000000ull) {
      if (sign_x) {
	// -Inf, return NaN
	res.w[1] = 0x7c00000000000000ull;
#ifdef SET_STATUS_FLAGS
	__set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
      }
      BID_RETURN (res);
    }
    // x is 0 otherwise

    res.w[1] =
      sign_x |
      ((((UINT64) (exponent_x + DECIMAL_EXPONENT_BIAS_128)) >> 1) <<
       49);
    BID_RETURN (res);
  }
  if (sign_x) {
    res.w[1] = 0x7c00000000000000ull;
    res.w[0] = 0;
#ifdef SET_STATUS_FLAGS
    __set_status_flags (pfpsf, INVALID_EXCEPTION);
#endif
    BID_RETURN (res);
  }
  // 2^64
  f64.i = 0x5f800000;

  // fx ~ CX
  fx.d = (float) CX.w[1] * f64.d + (float) CX.w[0];
  bin_expon_cx = ((fx.i >> 23) & 0xff) - 0x7f;
  digits = __bid_estimate_decimal_digits[bin_expon_cx];

  A10 = CX;
  if (exponent_x & 1) {
    A10.w[1] = (CX.w[1] << 3) | (CX.w[0] >> 61);
    A10.w[0] = CX.w[0] << 3;
    CX2.w[1] = (CX.w[1] << 1) | (CX.w[0] >> 63);
    CX2.w[0] = CX.w[0] << 1;
    __add_128_128 (A10, A10, CX2);
  }

  CS.w[0] = short_sqrt128 (A10);
  CS.w[1] = 0;
  // check for exact result
  if (CS.w[0] * CS.w[0] == A10.w[0]) {
    __mul_64x64_to_128_fast (S2, CS.w[0], CS.w[0]);
    if (S2.w[1] == A10.w[1])	// && S2.w[0]==A10.w[0])
    {
      get_BID128_very_fast (&res, 0,
			    (exponent_x +
			     DECIMAL_EXPONENT_BIAS_128) >> 1, CS);
      BID_RETURN (res);
    }
  }
  // get number of digits in CX
  D = CX.w[1] - __bid_power10_index_binexp_128[bin_expon_cx].w[1];
  if (D > 0
      || (!D && CX.w[0] >= __bid_power10_index_binexp_128[bin_expon_cx].w[0]))
    digits++;

  // if exponent is odd, scale coefficient by 10
  scale = 67 - digits;
  exponent_q = exponent_x - scale;
  scale += (exponent_q & 1);	// exp. bias is even

  if (scale > 38) {
    T128 = __bid_power10_table_128[scale - 37];
    __mul_128x128_low (CX1, CX, T128);

    TP128 = __bid_power10_table_128[37];
    __mul_128x128_to_256 (C256, CX1, TP128);
  } else {
    T128 = __bid_power10_table_128[scale];
    __mul_128x128_to_256 (C256, CX, T128);
  }


  // 4*C256
  C4.w[3] = (C256.w[3] << 2) | (C256.w[2] >> 62);
  C4.w[2] = (C256.w[2] << 2) | (C256.w[1] >> 62);
  C4.w[1] = (C256.w[1] << 2) | (C256.w[0] >> 62);
  C4.w[0] = C256.w[0] << 2;

  long_sqrt128 (&CS, C256);

#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
  if (!((rnd_mode) & 3)) {
#endif
#endif
    // compare to midpoints
    CSM.w[1] = (CS.w[1] << 1) | (CS.w[0] >> 63);
    CSM.w[0] = (CS.w[0] + CS.w[0]) | 1;
    // CSM^2
    //__mul_128x128_to_256(M256, CSM, CSM);
    __sqr128_to_256 (M256, CSM);

    if (C4.w[3] > M256.w[3]
	|| (C4.w[3] == M256.w[3]
	    && (C4.w[2] > M256.w[2]
		|| (C4.w[2] == M256.w[2]
		    && (C4.w[1] > M256.w[1]
			|| (C4.w[1] == M256.w[1]
			    && C4.w[0] > M256.w[0])))))) {
      // round up
      CS.w[0]++;
      if (!CS.w[0])
	CS.w[1]++;
    } else {
      C8.w[1] = (CS.w[1] << 3) | (CS.w[0] >> 61);
      C8.w[0] = CS.w[0] << 3;
      // M256 - 8*CSM
      __sub_borrow_out (M256.w[0], Carry, M256.w[0], C8.w[0]);
      __sub_borrow_in_out (M256.w[1], Carry, M256.w[1], C8.w[1], Carry);
      __sub_borrow_in_out (M256.w[2], Carry, M256.w[2], 0, Carry);
      M256.w[3] = M256.w[3] - Carry;

      // if CSM' > C256, round up
      if (M256.w[3] > C4.w[3]
	  || (M256.w[3] == C4.w[3]
	      && (M256.w[2] > C4.w[2]
		  || (M256.w[2] == C4.w[2]
		      && (M256.w[1] > C4.w[1]
			  || (M256.w[1] == C4.w[1]
			      && M256.w[0] > C4.w[0])))))) {
	// round down
	if (!CS.w[0])
	  CS.w[1]--;
	CS.w[0]--;
      }
    }
#ifndef IEEE_ROUND_NEAREST
#ifndef IEEE_ROUND_NEAREST_TIES_AWAY
  } else {
    __sqr128_to_256 (M256, CS);
    C8.w[1] = (CS.w[1] << 1) | (CS.w[0] >> 63);
    C8.w[0] = CS.w[0] << 1;
    if (M256.w[3] > C256.w[3]
	|| (M256.w[3] == C256.w[3]
	    && (M256.w[2] > C256.w[2]
		|| (M256.w[2] == C256.w[2]
		    && (M256.w[1] > C256.w[1]
			|| (M256.w[1] == C256.w[1]
			    && M256.w[0] > C256.w[0])))))) {
      __sub_borrow_out (M256.w[0], Carry, M256.w[0], C8.w[0]);
      __sub_borrow_in_out (M256.w[1], Carry, M256.w[1], C8.w[1], Carry);
      __sub_borrow_in_out (M256.w[2], Carry, M256.w[2], 0, Carry);
      M256.w[3] = M256.w[3] - Carry;
      M256.w[0]++;
      if (!M256.w[0]) {
	M256.w[1]++;
	if (!M256.w[1]) {
	  M256.w[2]++;
	  if (!M256.w[2])
	    M256.w[3]++;
	}
      }

      if (!CS.w[0])
	CS.w[1]--;
      CS.w[0]--;

      if (M256.w[3] > C256.w[3]
	  || (M256.w[3] == C256.w[3]
	      && (M256.w[2] > C256.w[2]
		  || (M256.w[2] == C256.w[2]
		      && (M256.w[1] > C256.w[1]
			  || (M256.w[1] == C256.w[1]
			      && M256.w[0] > C256.w[0])))))) {

	if (!CS.w[0])
	  CS.w[1]--;
	CS.w[0]--;
      }
    }

    else {
      __add_carry_out (M256.w[0], Carry, M256.w[0], C8.w[0]);
      __add_carry_in_out (M256.w[1], Carry, M256.w[1], C8.w[1], Carry);
      __add_carry_in_out (M256.w[2], Carry, M256.w[2], 0, Carry);
      M256.w[3] = M256.w[3] + Carry;
      M256.w[0]++;
      if (!M256.w[0]) {
	M256.w[1]++;
	if (!M256.w[1]) {
	  M256.w[2]++;
	  if (!M256.w[2])
	    M256.w[3]++;
	}
      }
      if (M256.w[3] < C256.w[3]
	  || (M256.w[3] == C256.w[3]
	      && (M256.w[2] < C256.w[2]
		  || (M256.w[2] == C256.w[2]
		      && (M256.w[1] < C256.w[1]
			  || (M256.w[1] == C256.w[1]
			      && M256.w[0] <= C256.w[0])))))) {

	CS.w[0]++;
	if (!CS.w[0])
	  CS.w[1]++;
      }
    }
    // RU?
    if ((rnd_mode) == ROUNDING_UP) {
      CS.w[0]++;
      if (!CS.w[0])
	CS.w[1]++;
    }

  }
#endif
#endif

#ifdef SET_STATUS_FLAGS
  __set_status_flags (pfpsf, INEXACT_EXCEPTION);
#endif
  get_BID128_fast (&res, 0,
		   (exponent_q + DECIMAL_EXPONENT_BIAS_128) >> 1, CS);
  BID_RETURN (res);
}