40cc84439fb1a6ff992b6e39459d2c70468b97bd
[mesa.git] / src / compiler / glsl / float64.glsl
1 /*
2 * The implementations contained in this file are heavily based on the
3 * implementations found in the Berkeley SoftFloat library. As such, they are
4 * licensed under the same 3-clause BSD license:
5 *
6 * License for Berkeley SoftFloat Release 3e
7 *
8 * John R. Hauser
9 * 2018 January 20
10 *
11 * The following applies to the whole of SoftFloat Release 3e as well as to
12 * each source file individually.
13 *
14 * Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018 The Regents of the
15 * University of California. All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are met:
19 *
20 * 1. Redistributions of source code must retain the above copyright notice,
21 * this list of conditions, and the following disclaimer.
22 *
23 * 2. Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions, and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
26 *
27 * 3. Neither the name of the University nor the names of its contributors
28 * may be used to endorse or promote products derived from this software
29 * without specific prior written permission.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
32 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
34 * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
35 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
36 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
38 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
40 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 */
42
43 #version 430
44 #extension GL_ARB_gpu_shader_int64 : enable
45 #extension GL_ARB_shader_bit_encoding : enable
46 #extension GL_EXT_shader_integer_mix : enable
47 #extension GL_MESA_shader_integer_functions : enable
48
49 #pragma warning(off)
50
51 /* Software IEEE floating-point rounding mode.
52 * GLSL spec section "4.7.1 Range and Precision":
53 * The rounding mode cannot be set and is undefined.
54 * But here, we are able to define the rounding mode at the compilation time.
55 */
56 #define FLOAT_ROUND_NEAREST_EVEN 0
57 #define FLOAT_ROUND_TO_ZERO 1
58 #define FLOAT_ROUND_DOWN 2
59 #define FLOAT_ROUND_UP 3
60 #define FLOAT_ROUNDING_MODE FLOAT_ROUND_NEAREST_EVEN
61
62 /* Relax propagation of NaN. Binary operations with a NaN source will still
63 * produce a NaN result, but it won't follow strict IEEE rules.
64 */
65 #define RELAXED_NAN_PROPAGATION
66
67 /* Absolute value of a Float64 :
68 * Clear the sign bit
69 */
70 uint64_t
71 __fabs64(uint64_t __a)
72 {
73 uvec2 a = unpackUint2x32(__a);
74 a.y &= 0x7FFFFFFFu;
75 return packUint2x32(a);
76 }
77
78 /* Returns 1 if the double-precision floating-point value `a' is a NaN;
79 * otherwise returns 0.
80 */
81 bool
82 __is_nan(uint64_t __a)
83 {
84 uvec2 a = unpackUint2x32(__a);
85 return (0xFFE00000u <= (a.y<<1)) &&
86 ((a.x != 0u) || ((a.y & 0x000FFFFFu) != 0u));
87 }
88
89 /* Negate value of a Float64 :
90 * Toggle the sign bit
91 */
92 uint64_t
93 __fneg64(uint64_t __a)
94 {
95 uvec2 a = unpackUint2x32(__a);
96 a.y ^= (1u << 31);
97 return packUint2x32(a);
98 }
99
100 uint64_t
101 __fsign64(uint64_t __a)
102 {
103 uvec2 a = unpackUint2x32(__a);
104 uvec2 retval;
105 retval.x = 0u;
106 retval.y = mix((a.y & 0x80000000u) | 0x3FF00000u, 0u, (a.y << 1 | a.x) == 0u);
107 return packUint2x32(retval);
108 }
109
110 /* Returns the fraction bits of the double-precision floating-point value `a'.*/
111 uint
112 __extractFloat64FracLo(uint64_t a)
113 {
114 return unpackUint2x32(a).x;
115 }
116
117 uint
118 __extractFloat64FracHi(uint64_t a)
119 {
120 return unpackUint2x32(a).y & 0x000FFFFFu;
121 }
122
123 /* Returns the exponent bits of the double-precision floating-point value `a'.*/
124 int
125 __extractFloat64Exp(uint64_t __a)
126 {
127 uvec2 a = unpackUint2x32(__a);
128 return int((a.y>>20) & 0x7FFu);
129 }
130
131 bool
132 __feq64_nonnan(uint64_t __a, uint64_t __b)
133 {
134 uvec2 a = unpackUint2x32(__a);
135 uvec2 b = unpackUint2x32(__b);
136 return (a.x == b.x) &&
137 ((a.y == b.y) || ((a.x == 0u) && (((a.y | b.y)<<1) == 0u)));
138 }
139
140 /* Returns true if the double-precision floating-point value `a' is equal to the
141 * corresponding value `b', and false otherwise. The comparison is performed
142 * according to the IEEE Standard for Floating-Point Arithmetic.
143 */
144 bool
145 __feq64(uint64_t a, uint64_t b)
146 {
147 if (__is_nan(a) || __is_nan(b))
148 return false;
149
150 return __feq64_nonnan(a, b);
151 }
152
153 /* Returns true if the double-precision floating-point value `a' is not equal
154 * to the corresponding value `b', and false otherwise. The comparison is
155 * performed according to the IEEE Standard for Floating-Point Arithmetic.
156 */
157 bool
158 __fne64(uint64_t a, uint64_t b)
159 {
160 if (__is_nan(a) || __is_nan(b))
161 return true;
162
163 return !__feq64_nonnan(a, b);
164 }
165
166 /* Returns the sign bit of the double-precision floating-point value `a'.*/
167 uint
168 __extractFloat64Sign(uint64_t a)
169 {
170 return unpackUint2x32(a).y & 0x80000000u;
171 }
172
173 /* Returns true if the signed 64-bit value formed by concatenating `a0' and
174 * `a1' is less than the signed 64-bit value formed by concatenating `b0' and
175 * `b1'. Otherwise, returns false.
176 */
177 bool
178 ilt64(uint a0, uint a1, uint b0, uint b1)
179 {
180 return (int(a0) < int(b0)) || ((a0 == b0) && (a1 < b1));
181 }
182
183 bool
184 __flt64_nonnan(uint64_t __a, uint64_t __b)
185 {
186 uvec2 a = unpackUint2x32(__a);
187 uvec2 b = unpackUint2x32(__b);
188
189 /* IEEE 754 floating point numbers are specifically designed so that, with
190 * two exceptions, values can be compared by bit-casting to signed integers
191 * with the same number of bits.
192 *
193 * From https://en.wikipedia.org/wiki/IEEE_754-1985#Comparing_floating-point_numbers:
194 *
195 * When comparing as 2's-complement integers: If the sign bits differ,
196 * the negative number precedes the positive number, so 2's complement
197 * gives the correct result (except that negative zero and positive zero
198 * should be considered equal). If both values are positive, the 2's
199 * complement comparison again gives the correct result. Otherwise (two
200 * negative numbers), the correct FP ordering is the opposite of the 2's
201 * complement ordering.
202 *
203 * The logic implied by the above quotation is:
204 *
205 * !both_are_zero(a, b) && (both_negative(a, b) ? a > b : a < b)
206 *
207 * This is equivalent to
208 *
209 * fne(a, b) && (both_negative(a, b) ? a >= b : a < b)
210 *
211 * fne(a, b) && (both_negative(a, b) ? !(a < b) : a < b)
212 *
213 * fne(a, b) && ((both_negative(a, b) && !(a < b)) ||
214 * (!both_negative(a, b) && (a < b)))
215 *
216 * (A!|B)&(A|!B) is (A xor B) which is implemented here using !=.
217 *
218 * fne(a, b) && (both_negative(a, b) != (a < b))
219 */
220 bool lt = ilt64(a.y, a.x, b.y, b.x);
221 bool both_negative = (a.y & b.y & 0x80000000u) != 0;
222
223 return !__feq64_nonnan(__a, __b) && (lt != both_negative);
224 }
225
226 /* Returns true if the double-precision floating-point value `a' is less than
227 * the corresponding value `b', and false otherwise. The comparison is performed
228 * according to the IEEE Standard for Floating-Point Arithmetic.
229 */
230 bool
231 __flt64(uint64_t a, uint64_t b)
232 {
233 /* This weird layout matters. Doing the "obvious" thing results in extra
234 * flow control being inserted to implement the short-circuit evaluation
235 * rules. Flow control is bad!
236 */
237 bool x = !__is_nan(a);
238 bool y = !__is_nan(b);
239 bool z = __flt64_nonnan(a, b);
240
241 return (x && y && z);
242 }
243
244 /* Returns true if the double-precision floating-point value `a' is greater
245 * than or equal to * the corresponding value `b', and false otherwise. The
246 * comparison is performed * according to the IEEE Standard for Floating-Point
247 * Arithmetic.
248 */
249 bool
250 __fge64(uint64_t a, uint64_t b)
251 {
252 /* This weird layout matters. Doing the "obvious" thing results in extra
253 * flow control being inserted to implement the short-circuit evaluation
254 * rules. Flow control is bad!
255 */
256 bool x = !__is_nan(a);
257 bool y = !__is_nan(b);
258 bool z = !__flt64_nonnan(a, b);
259
260 return (x && y && z);
261 }
262
263 uint64_t
264 __fsat64(uint64_t __a)
265 {
266 uvec2 a = unpackUint2x32(__a);
267
268 /* fsat(NaN) should be zero. */
269 if (__is_nan(__a) || int(a.y) < 0)
270 return 0ul;
271
272 /* IEEE 754 floating point numbers are specifically designed so that, with
273 * two exceptions, values can be compared by bit-casting to signed integers
274 * with the same number of bits.
275 *
276 * From https://en.wikipedia.org/wiki/IEEE_754-1985#Comparing_floating-point_numbers:
277 *
278 * When comparing as 2's-complement integers: If the sign bits differ,
279 * the negative number precedes the positive number, so 2's complement
280 * gives the correct result (except that negative zero and positive zero
281 * should be considered equal). If both values are positive, the 2's
282 * complement comparison again gives the correct result. Otherwise (two
283 * negative numbers), the correct FP ordering is the opposite of the 2's
284 * complement ordering.
285 *
286 * We know that both values are not negative, and we know that at least one
287 * value is not zero. Therefore, we can just use the 2's complement
288 * comparison ordering.
289 */
290 if (ilt64(0x3FF00000, 0x00000000, a.y, a.x))
291 return 0x3FF0000000000000ul;
292
293 return __a;
294 }
295
296 /* Adds the 64-bit value formed by concatenating `a0' and `a1' to the 64-bit
297 * value formed by concatenating `b0' and `b1'. Addition is modulo 2^64, so
298 * any carry out is lost. The result is broken into two 32-bit pieces which
299 * are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
300 */
301 void
302 __add64(uint a0, uint a1, uint b0, uint b1,
303 out uint z0Ptr,
304 out uint z1Ptr)
305 {
306 uint z1 = a1 + b1;
307 z1Ptr = z1;
308 z0Ptr = a0 + b0 + uint(z1 < a1);
309 }
310
311
312 /* Subtracts the 64-bit value formed by concatenating `b0' and `b1' from the
313 * 64-bit value formed by concatenating `a0' and `a1'. Subtraction is modulo
314 * 2^64, so any borrow out (carry out) is lost. The result is broken into two
315 * 32-bit pieces which are stored at the locations pointed to by `z0Ptr' and
316 * `z1Ptr'.
317 */
318 void
319 __sub64(uint a0, uint a1, uint b0, uint b1,
320 out uint z0Ptr,
321 out uint z1Ptr)
322 {
323 z1Ptr = a1 - b1;
324 z0Ptr = a0 - b0 - uint(a1 < b1);
325 }
326
327 /* Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
328 * number of bits given in `count'. If any nonzero bits are shifted off, they
329 * are "jammed" into the least significant bit of the result by setting the
330 * least significant bit to 1. The value of `count' can be arbitrarily large;
331 * in particular, if `count' is greater than 64, the result will be either 0
332 * or 1, depending on whether the concatenation of `a0' and `a1' is zero or
333 * nonzero. The result is broken into two 32-bit pieces which are stored at
334 * the locations pointed to by `z0Ptr' and `z1Ptr'.
335 */
336 void
337 __shift64RightJamming(uint a0,
338 uint a1,
339 int count,
340 out uint z0Ptr,
341 out uint z1Ptr)
342 {
343 uint z0;
344 uint z1;
345 int negCount = (-count) & 31;
346
347 z0 = mix(0u, a0, count == 0);
348 z0 = mix(z0, (a0 >> count), count < 32);
349
350 z1 = uint((a0 | a1) != 0u); /* count >= 64 */
351 uint z1_lt64 = (a0>>(count & 31)) | uint(((a0<<negCount) | a1) != 0u);
352 z1 = mix(z1, z1_lt64, count < 64);
353 z1 = mix(z1, (a0 | uint(a1 != 0u)), count == 32);
354 uint z1_lt32 = (a0<<negCount) | (a1>>count) | uint ((a1<<negCount) != 0u);
355 z1 = mix(z1, z1_lt32, count < 32);
356 z1 = mix(z1, a1, count == 0);
357 z1Ptr = z1;
358 z0Ptr = z0;
359 }
360
361 /* Shifts the 96-bit value formed by concatenating `a0', `a1', and `a2' right
362 * by 32 _plus_ the number of bits given in `count'. The shifted result is
363 * at most 64 nonzero bits; these are broken into two 32-bit pieces which are
364 * stored at the locations pointed to by `z0Ptr' and `z1Ptr'. The bits shifted
365 * off form a third 32-bit result as follows: The _last_ bit shifted off is
366 * the most-significant bit of the extra result, and the other 31 bits of the
367 * extra result are all zero if and only if _all_but_the_last_ bits shifted off
368 * were all zero. This extra result is stored in the location pointed to by
369 * `z2Ptr'. The value of `count' can be arbitrarily large.
370 * (This routine makes more sense if `a0', `a1', and `a2' are considered
371 * to form a fixed-point value with binary point between `a1' and `a2'. This
372 * fixed-point value is shifted right by the number of bits given in `count',
373 * and the integer part of the result is returned at the locations pointed to
374 * by `z0Ptr' and `z1Ptr'. The fractional part of the result may be slightly
375 * corrupted as described above, and is returned at the location pointed to by
376 * `z2Ptr'.)
377 */
378 void
379 __shift64ExtraRightJamming(uint a0, uint a1, uint a2,
380 int count,
381 out uint z0Ptr,
382 out uint z1Ptr,
383 out uint z2Ptr)
384 {
385 uint z0 = 0u;
386 uint z1;
387 uint z2;
388 int negCount = (-count) & 31;
389
390 z2 = mix(uint(a0 != 0u), a0, count == 64);
391 z2 = mix(z2, a0 << negCount, count < 64);
392 z2 = mix(z2, a1 << negCount, count < 32);
393
394 z1 = mix(0u, (a0 >> (count & 31)), count < 64);
395 z1 = mix(z1, (a0<<negCount) | (a1>>count), count < 32);
396
397 a2 = mix(a2 | a1, a2, count < 32);
398 z0 = mix(z0, a0 >> count, count < 32);
399 z2 |= uint(a2 != 0u);
400
401 z0 = mix(z0, 0u, (count == 32));
402 z1 = mix(z1, a0, (count == 32));
403 z2 = mix(z2, a1, (count == 32));
404 z0 = mix(z0, a0, (count == 0));
405 z1 = mix(z1, a1, (count == 0));
406 z2 = mix(z2, a2, (count == 0));
407 z2Ptr = z2;
408 z1Ptr = z1;
409 z0Ptr = z0;
410 }
411
412 /* Shifts the 64-bit value formed by concatenating `a0' and `a1' left by the
413 * number of bits given in `count'. Any bits shifted off are lost. The value
414 * of `count' must be less than 32. The result is broken into two 32-bit
415 * pieces which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
416 */
417 void
418 __shortShift64Left(uint a0, uint a1,
419 int count,
420 out uint z0Ptr,
421 out uint z1Ptr)
422 {
423 z1Ptr = a1<<count;
424 z0Ptr = mix((a0 << count | (a1 >> ((-count) & 31))), a0, count == 0);
425 }
426
427 /* Packs the sign `zSign', the exponent `zExp', and the significand formed by
428 * the concatenation of `zFrac0' and `zFrac1' into a double-precision floating-
429 * point value, returning the result. After being shifted into the proper
430 * positions, the three fields `zSign', `zExp', and `zFrac0' are simply added
431 * together to form the most significant 32 bits of the result. This means
432 * that any integer portion of `zFrac0' will be added into the exponent. Since
433 * a properly normalized significand will have an integer portion equal to 1,
434 * the `zExp' input should be 1 less than the desired result exponent whenever
435 * `zFrac0' and `zFrac1' concatenated form a complete, normalized significand.
436 */
437 uint64_t
438 __packFloat64(uint zSign, int zExp, uint zFrac0, uint zFrac1)
439 {
440 uvec2 z;
441
442 z.y = zSign + (uint(zExp) << 20) + zFrac0;
443 z.x = zFrac1;
444 return packUint2x32(z);
445 }
446
447 /* Takes an abstract floating-point value having sign `zSign', exponent `zExp',
448 * and extended significand formed by the concatenation of `zFrac0', `zFrac1',
449 * and `zFrac2', and returns the proper double-precision floating-point value
450 * corresponding to the abstract input. Ordinarily, the abstract value is
451 * simply rounded and packed into the double-precision format, with the inexact
452 * exception raised if the abstract input cannot be represented exactly.
453 * However, if the abstract value is too large, the overflow and inexact
454 * exceptions are raised and an infinity or maximal finite value is returned.
455 * If the abstract value is too small, the input value is rounded to a
456 * subnormal number, and the underflow and inexact exceptions are raised if the
457 * abstract input cannot be represented exactly as a subnormal double-precision
458 * floating-point number.
459 * The input significand must be normalized or smaller. If the input
460 * significand is not normalized, `zExp' must be 0; in that case, the result
461 * returned is a subnormal number, and it must not require rounding. In the
462 * usual case that the input significand is normalized, `zExp' must be 1 less
463 * than the "true" floating-point exponent. The handling of underflow and
464 * overflow follows the IEEE Standard for Floating-Point Arithmetic.
465 */
466 uint64_t
467 __roundAndPackFloat64(uint zSign,
468 int zExp,
469 uint zFrac0,
470 uint zFrac1,
471 uint zFrac2)
472 {
473 bool roundNearestEven;
474 bool increment;
475
476 roundNearestEven = FLOAT_ROUNDING_MODE == FLOAT_ROUND_NEAREST_EVEN;
477 increment = int(zFrac2) < 0;
478 if (!roundNearestEven) {
479 if (FLOAT_ROUNDING_MODE == FLOAT_ROUND_TO_ZERO) {
480 increment = false;
481 } else {
482 if (zSign != 0u) {
483 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN) &&
484 (zFrac2 != 0u);
485 } else {
486 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP) &&
487 (zFrac2 != 0u);
488 }
489 }
490 }
491 if (0x7FD <= zExp) {
492 if ((0x7FD < zExp) ||
493 ((zExp == 0x7FD) &&
494 (0x001FFFFFu == zFrac0 && 0xFFFFFFFFu == zFrac1) &&
495 increment)) {
496 if ((FLOAT_ROUNDING_MODE == FLOAT_ROUND_TO_ZERO) ||
497 ((zSign != 0u) && (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP)) ||
498 ((zSign == 0u) && (FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN))) {
499 return __packFloat64(zSign, 0x7FE, 0x000FFFFFu, 0xFFFFFFFFu);
500 }
501 return __packFloat64(zSign, 0x7FF, 0u, 0u);
502 }
503 if (zExp < 0) {
504 __shift64ExtraRightJamming(
505 zFrac0, zFrac1, zFrac2, -zExp, zFrac0, zFrac1, zFrac2);
506 zExp = 0;
507 if (roundNearestEven) {
508 increment = zFrac2 < 0u;
509 } else {
510 if (zSign != 0u) {
511 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN) &&
512 (zFrac2 != 0u);
513 } else {
514 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP) &&
515 (zFrac2 != 0u);
516 }
517 }
518 }
519 }
520 if (increment) {
521 __add64(zFrac0, zFrac1, 0u, 1u, zFrac0, zFrac1);
522 zFrac1 &= ~((zFrac2 + uint(zFrac2 == 0u)) & uint(roundNearestEven));
523 } else {
524 zExp = mix(zExp, 0, (zFrac0 | zFrac1) == 0u);
525 }
526 return __packFloat64(zSign, zExp, zFrac0, zFrac1);
527 }
528
529 uint64_t
530 __roundAndPackUInt64(uint zSign, uint zFrac0, uint zFrac1, uint zFrac2)
531 {
532 bool roundNearestEven;
533 bool increment;
534 uint64_t default_nan = 0xFFFFFFFFFFFFFFFFUL;
535
536 roundNearestEven = FLOAT_ROUNDING_MODE == FLOAT_ROUND_NEAREST_EVEN;
537
538 if (zFrac2 >= 0x80000000u)
539 increment = false;
540
541 if (!roundNearestEven) {
542 if (zSign != 0u) {
543 if ((FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN) && (zFrac2 != 0u)) {
544 increment = false;
545 }
546 } else {
547 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP) &&
548 (zFrac2 != 0u);
549 }
550 }
551
552 if (increment) {
553 __add64(zFrac0, zFrac1, 0u, 1u, zFrac0, zFrac1);
554 if ((zFrac0 | zFrac1) != 0u)
555 zFrac1 &= ~(1u) + uint(zFrac2 == 0u) & uint(roundNearestEven);
556 }
557 return mix(packUint2x32(uvec2(zFrac1, zFrac0)), default_nan,
558 (zSign != 0u && (zFrac0 | zFrac1) != 0u));
559 }
560
561 int64_t
562 __roundAndPackInt64(uint zSign, uint zFrac0, uint zFrac1, uint zFrac2)
563 {
564 bool roundNearestEven;
565 bool increment;
566 int64_t default_NegNaN = -0x7FFFFFFFFFFFFFFEL;
567 int64_t default_PosNaN = 0xFFFFFFFFFFFFFFFFL;
568
569 roundNearestEven = FLOAT_ROUNDING_MODE == FLOAT_ROUND_NEAREST_EVEN;
570
571 if (zFrac2 >= 0x80000000u)
572 increment = false;
573
574 if (!roundNearestEven) {
575 if (zSign != 0u) {
576 increment = ((FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN) &&
577 (zFrac2 != 0u));
578 } else {
579 increment = (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP) &&
580 (zFrac2 != 0u);
581 }
582 }
583
584 if (increment) {
585 __add64(zFrac0, zFrac1, 0u, 1u, zFrac0, zFrac1);
586 if ((zFrac0 | zFrac1) != 0u)
587 zFrac1 &= ~(1u) + uint(zFrac2 == 0u) & uint(roundNearestEven);
588 }
589
590 int64_t absZ = mix(int64_t(packUint2x32(uvec2(zFrac1, zFrac0))),
591 -int64_t(packUint2x32(uvec2(zFrac1, zFrac0))),
592 zSign != 0u);
593 int64_t nan = mix(default_PosNaN, default_NegNaN, zSign != 0u);
594 return mix(absZ, nan, ((zSign != 0u) != (absZ < 0)) && bool(absZ));
595 }
596
597 /* Returns the number of leading 0 bits before the most-significant 1 bit of
598 * `a'. If `a' is zero, 32 is returned.
599 */
600 int
601 __countLeadingZeros32(uint a)
602 {
603 return 31 - findMSB(a);
604 }
605
606 /* Takes an abstract floating-point value having sign `zSign', exponent `zExp',
607 * and significand formed by the concatenation of `zSig0' and `zSig1', and
608 * returns the proper double-precision floating-point value corresponding
609 * to the abstract input. This routine is just like `__roundAndPackFloat64'
610 * except that the input significand has fewer bits and does not have to be
611 * normalized. In all cases, `zExp' must be 1 less than the "true" floating-
612 * point exponent.
613 */
614 uint64_t
615 __normalizeRoundAndPackFloat64(uint zSign,
616 int zExp,
617 uint zFrac0,
618 uint zFrac1)
619 {
620 int shiftCount;
621 uint zFrac2;
622
623 if (zFrac0 == 0u) {
624 zExp -= 32;
625 zFrac0 = zFrac1;
626 zFrac1 = 0u;
627 }
628
629 shiftCount = __countLeadingZeros32(zFrac0) - 11;
630 if (0 <= shiftCount) {
631 zFrac2 = 0u;
632 __shortShift64Left(zFrac0, zFrac1, shiftCount, zFrac0, zFrac1);
633 } else {
634 __shift64ExtraRightJamming(
635 zFrac0, zFrac1, 0u, -shiftCount, zFrac0, zFrac1, zFrac2);
636 }
637 zExp -= shiftCount;
638 return __roundAndPackFloat64(zSign, zExp, zFrac0, zFrac1, zFrac2);
639 }
640
641 /* Takes two double-precision floating-point values `a' and `b', one of which
642 * is a NaN, and returns the appropriate NaN result.
643 */
644 uint64_t
645 __propagateFloat64NaN(uint64_t __a, uint64_t __b)
646 {
647 #if defined RELAXED_NAN_PROPAGATION
648 uvec2 a = unpackUint2x32(__a);
649 uvec2 b = unpackUint2x32(__b);
650
651 return packUint2x32(uvec2(a.x | b.x, a.y | b.y));
652 #else
653 bool aIsNaN = __is_nan(__a);
654 bool bIsNaN = __is_nan(__b);
655 uvec2 a = unpackUint2x32(__a);
656 uvec2 b = unpackUint2x32(__b);
657 a.y |= 0x00080000u;
658 b.y |= 0x00080000u;
659
660 return packUint2x32(mix(b, mix(a, b, bvec2(bIsNaN, bIsNaN)), bvec2(aIsNaN, aIsNaN)));
661 #endif
662 }
663
664 /* Returns the result of adding the double-precision floating-point values
665 * `a' and `b'. The operation is performed according to the IEEE Standard for
666 * Floating-Point Arithmetic.
667 */
668 uint64_t
669 __fadd64(uint64_t a, uint64_t b)
670 {
671 uint aSign = __extractFloat64Sign(a);
672 uint bSign = __extractFloat64Sign(b);
673 uint aFracLo = __extractFloat64FracLo(a);
674 uint aFracHi = __extractFloat64FracHi(a);
675 uint bFracLo = __extractFloat64FracLo(b);
676 uint bFracHi = __extractFloat64FracHi(b);
677 int aExp = __extractFloat64Exp(a);
678 int bExp = __extractFloat64Exp(b);
679 int expDiff = aExp - bExp;
680 if (aSign == bSign) {
681 uint zFrac0;
682 uint zFrac1;
683 uint zFrac2;
684 int zExp;
685
686 if (expDiff == 0) {
687 if (aExp == 0x7FF) {
688 bool propagate = ((aFracHi | bFracHi) | (aFracLo| bFracLo)) != 0u;
689 return mix(a, __propagateFloat64NaN(a, b), propagate);
690 }
691 __add64(aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1);
692 if (aExp == 0)
693 return __packFloat64(aSign, 0, zFrac0, zFrac1);
694 zFrac2 = 0u;
695 zFrac0 |= 0x00200000u;
696 zExp = aExp;
697 __shift64ExtraRightJamming(
698 zFrac0, zFrac1, zFrac2, 1, zFrac0, zFrac1, zFrac2);
699 } else {
700 if (0 < expDiff) {
701 if (aExp == 0x7FF) {
702 bool propagate = (aFracHi | aFracLo) != 0u;
703 return mix(a, __propagateFloat64NaN(a, b), propagate);
704 }
705
706 expDiff = mix(expDiff, expDiff - 1, bExp == 0);
707 bFracHi = mix(bFracHi | 0x00100000u, bFracHi, bExp == 0);
708 __shift64ExtraRightJamming(
709 bFracHi, bFracLo, 0u, expDiff, bFracHi, bFracLo, zFrac2);
710 zExp = aExp;
711 } else {
712 if (bExp == 0x7FF) {
713 bool propagate = (bFracHi | bFracLo) != 0u;
714 return mix(__packFloat64(aSign, 0x7ff, 0u, 0u), __propagateFloat64NaN(a, b), propagate);
715 }
716 expDiff = mix(expDiff, expDiff + 1, aExp == 0);
717 aFracHi = mix(aFracHi | 0x00100000u, aFracHi, aExp == 0);
718 __shift64ExtraRightJamming(
719 aFracHi, aFracLo, 0u, - expDiff, aFracHi, aFracLo, zFrac2);
720 zExp = bExp;
721 }
722
723 aFracHi |= 0x00100000u;
724 __add64(aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1);
725 --zExp;
726 if (!(zFrac0 < 0x00200000u)) {
727 __shift64ExtraRightJamming(zFrac0, zFrac1, zFrac2, 1, zFrac0, zFrac1, zFrac2);
728 ++zExp;
729 }
730 }
731 return __roundAndPackFloat64(aSign, zExp, zFrac0, zFrac1, zFrac2);
732
733 } else {
734 int zExp;
735
736 __shortShift64Left(aFracHi, aFracLo, 10, aFracHi, aFracLo);
737 __shortShift64Left(bFracHi, bFracLo, 10, bFracHi, bFracLo);
738 if (0 < expDiff) {
739 uint zFrac0;
740 uint zFrac1;
741
742 if (aExp == 0x7FF) {
743 bool propagate = (aFracHi | aFracLo) != 0u;
744 return mix(a, __propagateFloat64NaN(a, b), propagate);
745 }
746 expDiff = mix(expDiff, expDiff - 1, bExp == 0);
747 bFracHi = mix(bFracHi | 0x40000000u, bFracHi, bExp == 0);
748 __shift64RightJamming(bFracHi, bFracLo, expDiff, bFracHi, bFracLo);
749 aFracHi |= 0x40000000u;
750 __sub64(aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1);
751 zExp = aExp;
752 --zExp;
753 return __normalizeRoundAndPackFloat64(aSign, zExp - 10, zFrac0, zFrac1);
754 }
755 if (expDiff < 0) {
756 uint zFrac0;
757 uint zFrac1;
758
759 if (bExp == 0x7FF) {
760 bool propagate = (bFracHi | bFracLo) != 0u;
761 return mix(__packFloat64(aSign ^ 0x80000000u, 0x7ff, 0u, 0u), __propagateFloat64NaN(a, b), propagate);
762 }
763 expDiff = mix(expDiff, expDiff + 1, aExp == 0);
764 aFracHi = mix(aFracHi | 0x40000000u, aFracHi, aExp == 0);
765 __shift64RightJamming(aFracHi, aFracLo, - expDiff, aFracHi, aFracLo);
766 bFracHi |= 0x40000000u;
767 __sub64(bFracHi, bFracLo, aFracHi, aFracLo, zFrac0, zFrac1);
768 zExp = bExp;
769 aSign ^= 0x80000000u;
770 --zExp;
771 return __normalizeRoundAndPackFloat64(aSign, zExp - 10, zFrac0, zFrac1);
772 }
773 if (aExp == 0x7FF) {
774 bool propagate = ((aFracHi | bFracHi) | (aFracLo | bFracLo)) != 0u;
775 return mix(0xFFFFFFFFFFFFFFFFUL, __propagateFloat64NaN(a, b), propagate);
776 }
777 bExp = mix(bExp, 1, aExp == 0);
778 aExp = mix(aExp, 1, aExp == 0);
779
780 uint zFrac0;
781 uint zFrac1;
782 uint sign_of_difference = 0;
783 if (bFracHi < aFracHi) {
784 __sub64(aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1);
785 }
786 else if (aFracHi < bFracHi) {
787 __sub64(bFracHi, bFracLo, aFracHi, aFracLo, zFrac0, zFrac1);
788 sign_of_difference = 0x80000000;
789 }
790 else if (bFracLo <= aFracLo) {
791 /* It is possible that zFrac0 and zFrac1 may be zero after this. */
792 __sub64(aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1);
793 }
794 else {
795 __sub64(bFracHi, bFracLo, aFracHi, aFracLo, zFrac0, zFrac1);
796 sign_of_difference = 0x80000000;
797 }
798 zExp = mix(bExp, aExp, sign_of_difference == 0u);
799 aSign ^= sign_of_difference;
800 uint64_t retval_0 = __packFloat64(uint(FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN) << 31, 0, 0u, 0u);
801 uint64_t retval_1 = __normalizeRoundAndPackFloat64(aSign, zExp - 11, zFrac0, zFrac1);
802 return mix(retval_0, retval_1, zFrac0 != 0u || zFrac1 != 0u);
803 }
804 }
805
806 /* Multiplies the 64-bit value formed by concatenating `a0' and `a1' to the
807 * 64-bit value formed by concatenating `b0' and `b1' to obtain a 128-bit
808 * product. The product is broken into four 32-bit pieces which are stored at
809 * the locations pointed to by `z0Ptr', `z1Ptr', `z2Ptr', and `z3Ptr'.
810 */
811 void
812 __mul64To128(uint a0, uint a1, uint b0, uint b1,
813 out uint z0Ptr,
814 out uint z1Ptr,
815 out uint z2Ptr,
816 out uint z3Ptr)
817 {
818 uint z0 = 0u;
819 uint z1 = 0u;
820 uint z2 = 0u;
821 uint z3 = 0u;
822 uint more1 = 0u;
823 uint more2 = 0u;
824
825 umulExtended(a1, b1, z2, z3);
826 umulExtended(a1, b0, z1, more2);
827 __add64(z1, more2, 0u, z2, z1, z2);
828 umulExtended(a0, b0, z0, more1);
829 __add64(z0, more1, 0u, z1, z0, z1);
830 umulExtended(a0, b1, more1, more2);
831 __add64(more1, more2, 0u, z2, more1, z2);
832 __add64(z0, z1, 0u, more1, z0, z1);
833 z3Ptr = z3;
834 z2Ptr = z2;
835 z1Ptr = z1;
836 z0Ptr = z0;
837 }
838
839 /* Normalizes the subnormal double-precision floating-point value represented
840 * by the denormalized significand formed by the concatenation of `aFrac0' and
841 * `aFrac1'. The normalized exponent is stored at the location pointed to by
842 * `zExpPtr'. The most significant 21 bits of the normalized significand are
843 * stored at the location pointed to by `zFrac0Ptr', and the least significant
844 * 32 bits of the normalized significand are stored at the location pointed to
845 * by `zFrac1Ptr'.
846 */
847 void
848 __normalizeFloat64Subnormal(uint aFrac0, uint aFrac1,
849 out int zExpPtr,
850 out uint zFrac0Ptr,
851 out uint zFrac1Ptr)
852 {
853 int shiftCount;
854 uint temp_zfrac0, temp_zfrac1;
855 shiftCount = __countLeadingZeros32(mix(aFrac0, aFrac1, aFrac0 == 0u)) - 11;
856 zExpPtr = mix(1 - shiftCount, -shiftCount - 31, aFrac0 == 0u);
857
858 temp_zfrac0 = mix(aFrac1<<shiftCount, aFrac1>>(-shiftCount), shiftCount < 0);
859 temp_zfrac1 = mix(0u, aFrac1<<(shiftCount & 31), shiftCount < 0);
860
861 __shortShift64Left(aFrac0, aFrac1, shiftCount, zFrac0Ptr, zFrac1Ptr);
862
863 zFrac0Ptr = mix(zFrac0Ptr, temp_zfrac0, aFrac0 == 0);
864 zFrac1Ptr = mix(zFrac1Ptr, temp_zfrac1, aFrac0 == 0);
865 }
866
867 /* Returns the result of multiplying the double-precision floating-point values
868 * `a' and `b'. The operation is performed according to the IEEE Standard for
869 * Floating-Point Arithmetic.
870 */
871 uint64_t
872 __fmul64(uint64_t a, uint64_t b)
873 {
874 uint zFrac0 = 0u;
875 uint zFrac1 = 0u;
876 uint zFrac2 = 0u;
877 uint zFrac3 = 0u;
878 int zExp;
879
880 uint aFracLo = __extractFloat64FracLo(a);
881 uint aFracHi = __extractFloat64FracHi(a);
882 uint bFracLo = __extractFloat64FracLo(b);
883 uint bFracHi = __extractFloat64FracHi(b);
884 int aExp = __extractFloat64Exp(a);
885 uint aSign = __extractFloat64Sign(a);
886 int bExp = __extractFloat64Exp(b);
887 uint bSign = __extractFloat64Sign(b);
888 uint zSign = aSign ^ bSign;
889 if (aExp == 0x7FF) {
890 if (((aFracHi | aFracLo) != 0u) ||
891 ((bExp == 0x7FF) && ((bFracHi | bFracLo) != 0u))) {
892 return __propagateFloat64NaN(a, b);
893 }
894 if ((uint(bExp) | bFracHi | bFracLo) == 0u)
895 return 0xFFFFFFFFFFFFFFFFUL;
896 return __packFloat64(zSign, 0x7FF, 0u, 0u);
897 }
898 if (bExp == 0x7FF) {
899 /* a cannot be NaN, but is b NaN? */
900 if ((bFracHi | bFracLo) != 0u)
901 #if defined RELAXED_NAN_PROPAGATION
902 return b;
903 #else
904 return __propagateFloat64NaN(a, b);
905 #endif
906 if ((uint(aExp) | aFracHi | aFracLo) == 0u)
907 return 0xFFFFFFFFFFFFFFFFUL;
908 return __packFloat64(zSign, 0x7FF, 0u, 0u);
909 }
910 if (aExp == 0) {
911 if ((aFracHi | aFracLo) == 0u)
912 return __packFloat64(zSign, 0, 0u, 0u);
913 __normalizeFloat64Subnormal(aFracHi, aFracLo, aExp, aFracHi, aFracLo);
914 }
915 if (bExp == 0) {
916 if ((bFracHi | bFracLo) == 0u)
917 return __packFloat64(zSign, 0, 0u, 0u);
918 __normalizeFloat64Subnormal(bFracHi, bFracLo, bExp, bFracHi, bFracLo);
919 }
920 zExp = aExp + bExp - 0x400;
921 aFracHi |= 0x00100000u;
922 __shortShift64Left(bFracHi, bFracLo, 12, bFracHi, bFracLo);
923 __mul64To128(
924 aFracHi, aFracLo, bFracHi, bFracLo, zFrac0, zFrac1, zFrac2, zFrac3);
925 __add64(zFrac0, zFrac1, aFracHi, aFracLo, zFrac0, zFrac1);
926 zFrac2 |= uint(zFrac3 != 0u);
927 if (0x00200000u <= zFrac0) {
928 __shift64ExtraRightJamming(
929 zFrac0, zFrac1, zFrac2, 1, zFrac0, zFrac1, zFrac2);
930 ++zExp;
931 }
932 return __roundAndPackFloat64(zSign, zExp, zFrac0, zFrac1, zFrac2);
933 }
934
935 uint64_t
936 __ffma64(uint64_t a, uint64_t b, uint64_t c)
937 {
938 return __fadd64(__fmul64(a, b), c);
939 }
940
941 /* Shifts the 64-bit value formed by concatenating `a0' and `a1' right by the
942 * number of bits given in `count'. Any bits shifted off are lost. The value
943 * of `count' can be arbitrarily large; in particular, if `count' is greater
944 * than 64, the result will be 0. The result is broken into two 32-bit pieces
945 * which are stored at the locations pointed to by `z0Ptr' and `z1Ptr'.
946 */
947 void
948 __shift64Right(uint a0, uint a1,
949 int count,
950 out uint z0Ptr,
951 out uint z1Ptr)
952 {
953 uint z0;
954 uint z1;
955 int negCount = (-count) & 31;
956
957 z0 = 0u;
958 z0 = mix(z0, (a0 >> count), count < 32);
959 z0 = mix(z0, a0, count == 0);
960
961 z1 = mix(0u, (a0 >> (count & 31)), count < 64);
962 z1 = mix(z1, (a0<<negCount) | (a1>>count), count < 32);
963 z1 = mix(z1, a0, count == 0);
964
965 z1Ptr = z1;
966 z0Ptr = z0;
967 }
968
969 /* Returns the result of converting the double-precision floating-point value
970 * `a' to the unsigned integer format. The conversion is performed according
971 * to the IEEE Standard for Floating-Point Arithmetic.
972 */
973 uint
974 __fp64_to_uint(uint64_t a)
975 {
976 uint aFracLo = __extractFloat64FracLo(a);
977 uint aFracHi = __extractFloat64FracHi(a);
978 int aExp = __extractFloat64Exp(a);
979 uint aSign = __extractFloat64Sign(a);
980
981 if ((aExp == 0x7FF) && ((aFracHi | aFracLo) != 0u))
982 return 0xFFFFFFFFu;
983
984 aFracHi |= mix(0u, 0x00100000u, aExp != 0);
985
986 int shiftDist = 0x427 - aExp;
987 if (0 < shiftDist)
988 __shift64RightJamming(aFracHi, aFracLo, shiftDist, aFracHi, aFracLo);
989
990 if ((aFracHi & 0xFFFFF000u) != 0u)
991 return mix(~0u, 0u, aSign != 0u);
992
993 uint z = 0u;
994 uint zero = 0u;
995 __shift64Right(aFracHi, aFracLo, 12, zero, z);
996
997 uint expt = mix(~0u, 0u, aSign != 0u);
998
999 return mix(z, expt, (aSign != 0u) && (z != 0u));
1000 }
1001
1002 uint64_t
1003 __uint_to_fp64(uint a)
1004 {
1005 if (a == 0u)
1006 return 0ul;
1007
1008 int shiftDist = __countLeadingZeros32(a) + 21;
1009
1010 uint aHigh = 0u;
1011 uint aLow = 0u;
1012 int negCount = (- shiftDist) & 31;
1013
1014 aHigh = mix(0u, a<< shiftDist - 32, shiftDist < 64);
1015 aLow = 0u;
1016 aHigh = mix(aHigh, 0u, shiftDist == 0);
1017 aLow = mix(aLow, a, shiftDist ==0);
1018 aHigh = mix(aHigh, a >> negCount, shiftDist < 32);
1019 aLow = mix(aLow, a << shiftDist, shiftDist < 32);
1020
1021 return __packFloat64(0u, 0x432 - shiftDist, aHigh, aLow);
1022 }
1023
1024 uint64_t
1025 __uint64_to_fp64(uint64_t a)
1026 {
1027 if (a == 0u)
1028 return 0ul;
1029
1030 uvec2 aFrac = unpackUint2x32(a);
1031 uint aFracLo = __extractFloat64FracLo(a);
1032 uint aFracHi = __extractFloat64FracHi(a);
1033
1034 if ((aFracHi & 0x80000000u) != 0u) {
1035 __shift64RightJamming(aFracHi, aFracLo, 1, aFracHi, aFracLo);
1036 return __roundAndPackFloat64(0, 0x433, aFracHi, aFracLo, 0u);
1037 } else {
1038 return __normalizeRoundAndPackFloat64(0, 0x432, aFrac.y, aFrac.x);
1039 }
1040 }
1041
1042 uint64_t
1043 __fp64_to_uint64(uint64_t a)
1044 {
1045 uint aFracLo = __extractFloat64FracLo(a);
1046 uint aFracHi = __extractFloat64FracHi(a);
1047 int aExp = __extractFloat64Exp(a);
1048 uint aSign = __extractFloat64Sign(a);
1049 uint zFrac2 = 0u;
1050 uint64_t default_nan = 0xFFFFFFFFFFFFFFFFUL;
1051
1052 aFracHi = mix(aFracHi, aFracHi | 0x00100000u, aExp != 0);
1053 int shiftCount = 0x433 - aExp;
1054
1055 if ( shiftCount <= 0 ) {
1056 if (shiftCount < -11 && aExp == 0x7FF) {
1057 if ((aFracHi | aFracLo) != 0u)
1058 return __propagateFloat64NaN(a, a);
1059 return mix(default_nan, a, aSign == 0u);
1060 }
1061 __shortShift64Left(aFracHi, aFracLo, -shiftCount, aFracHi, aFracLo);
1062 } else {
1063 __shift64ExtraRightJamming(aFracHi, aFracLo, zFrac2, shiftCount,
1064 aFracHi, aFracLo, zFrac2);
1065 }
1066 return __roundAndPackUInt64(aSign, aFracHi, aFracLo, zFrac2);
1067 }
1068
1069 int64_t
1070 __fp64_to_int64(uint64_t a)
1071 {
1072 uint zFrac2 = 0u;
1073 uint aFracLo = __extractFloat64FracLo(a);
1074 uint aFracHi = __extractFloat64FracHi(a);
1075 int aExp = __extractFloat64Exp(a);
1076 uint aSign = __extractFloat64Sign(a);
1077 int64_t default_NegNaN = -0x7FFFFFFFFFFFFFFEL;
1078 int64_t default_PosNaN = 0xFFFFFFFFFFFFFFFFL;
1079
1080 aFracHi = mix(aFracHi, aFracHi | 0x00100000u, aExp != 0);
1081 int shiftCount = 0x433 - aExp;
1082
1083 if (shiftCount <= 0) {
1084 if (shiftCount < -11 && aExp == 0x7FF) {
1085 if ((aFracHi | aFracLo) != 0u)
1086 return default_NegNaN;
1087 return mix(default_NegNaN, default_PosNaN, aSign == 0u);
1088 }
1089 __shortShift64Left(aFracHi, aFracLo, -shiftCount, aFracHi, aFracLo);
1090 } else {
1091 __shift64ExtraRightJamming(aFracHi, aFracLo, zFrac2, shiftCount,
1092 aFracHi, aFracLo, zFrac2);
1093 }
1094
1095 return __roundAndPackInt64(aSign, aFracHi, aFracLo, zFrac2);
1096 }
1097
1098 uint64_t
1099 __fp32_to_uint64(float f)
1100 {
1101 uint a = floatBitsToUint(f);
1102 uint aFrac = a & 0x007FFFFFu;
1103 int aExp = int((a>>23) & 0xFFu);
1104 uint aSign = a & 0x80000000u;
1105 uint zFrac0 = 0u;
1106 uint zFrac1 = 0u;
1107 uint zFrac2 = 0u;
1108 uint64_t default_nan = 0xFFFFFFFFFFFFFFFFUL;
1109 int shiftCount = 0xBE - aExp;
1110
1111 if (shiftCount <0) {
1112 if (aExp == 0xFF)
1113 return default_nan;
1114 }
1115
1116 aFrac = mix(aFrac, aFrac | 0x00800000u, aExp != 0);
1117 __shortShift64Left(aFrac, 0, 40, zFrac0, zFrac1);
1118
1119 if (shiftCount != 0) {
1120 __shift64ExtraRightJamming(zFrac0, zFrac1, zFrac2, shiftCount,
1121 zFrac0, zFrac1, zFrac2);
1122 }
1123
1124 return __roundAndPackUInt64(aSign, zFrac0, zFrac1, zFrac2);
1125 }
1126
1127 int64_t
1128 __fp32_to_int64(float f)
1129 {
1130 uint a = floatBitsToUint(f);
1131 uint aFrac = a & 0x007FFFFFu;
1132 int aExp = int((a>>23) & 0xFFu);
1133 uint aSign = a & 0x80000000u;
1134 uint zFrac0 = 0u;
1135 uint zFrac1 = 0u;
1136 uint zFrac2 = 0u;
1137 int64_t default_NegNaN = -0x7FFFFFFFFFFFFFFEL;
1138 int64_t default_PosNaN = 0xFFFFFFFFFFFFFFFFL;
1139 int shiftCount = 0xBE - aExp;
1140
1141 if (shiftCount <0) {
1142 if (aExp == 0xFF && aFrac != 0u)
1143 return default_NegNaN;
1144 return mix(default_NegNaN, default_PosNaN, aSign == 0u);
1145 }
1146
1147 aFrac = mix(aFrac, aFrac | 0x00800000u, aExp != 0);
1148 __shortShift64Left(aFrac, 0, 40, zFrac0, zFrac1);
1149
1150 if (shiftCount != 0) {
1151 __shift64ExtraRightJamming(zFrac0, zFrac1, zFrac2, shiftCount,
1152 zFrac0, zFrac1, zFrac2);
1153 }
1154
1155 return __roundAndPackInt64(aSign, zFrac0, zFrac1, zFrac2);
1156 }
1157
1158 uint64_t
1159 __int64_to_fp64(int64_t a)
1160 {
1161 if (a==0)
1162 return 0ul;
1163
1164 uint64_t absA = mix(uint64_t(a), uint64_t(-a), a < 0);
1165 uint aFracHi = __extractFloat64FracHi(absA);
1166 uvec2 aFrac = unpackUint2x32(absA);
1167 uint zSign = uint(unpackInt2x32(a).y) & 0x80000000u;
1168
1169 if ((aFracHi & 0x80000000u) != 0u) {
1170 return mix(0ul, __packFloat64(0x80000000u, 0x434, 0u, 0u), a < 0);
1171 }
1172
1173 return __normalizeRoundAndPackFloat64(zSign, 0x432, aFrac.y, aFrac.x);
1174 }
1175
1176 /* Returns the result of converting the double-precision floating-point value
1177 * `a' to the 32-bit two's complement integer format. The conversion is
1178 * performed according to the IEEE Standard for Floating-Point Arithmetic---
1179 * which means in particular that the conversion is rounded according to the
1180 * current rounding mode. If `a' is a NaN, the largest positive integer is
1181 * returned. Otherwise, if the conversion overflows, the largest integer with
1182 * the same sign as `a' is returned.
1183 */
1184 int
1185 __fp64_to_int(uint64_t a)
1186 {
1187 uint aFracLo = __extractFloat64FracLo(a);
1188 uint aFracHi = __extractFloat64FracHi(a);
1189 int aExp = __extractFloat64Exp(a);
1190 uint aSign = __extractFloat64Sign(a);
1191
1192 uint absZ = 0u;
1193 uint aFracExtra = 0u;
1194 int shiftCount = aExp - 0x413;
1195
1196 if (0 <= shiftCount) {
1197 if (0x41E < aExp) {
1198 if ((aExp == 0x7FF) && bool(aFracHi | aFracLo))
1199 aSign = 0u;
1200 return mix(0x7FFFFFFF, 0x80000000, aSign != 0u);
1201 }
1202 __shortShift64Left(aFracHi | 0x00100000u, aFracLo, shiftCount, absZ, aFracExtra);
1203 } else {
1204 if (aExp < 0x3FF)
1205 return 0;
1206
1207 aFracHi |= 0x00100000u;
1208 aFracExtra = ( aFracHi << (shiftCount & 31)) | aFracLo;
1209 absZ = aFracHi >> (- shiftCount);
1210 }
1211
1212 int z = mix(int(absZ), -int(absZ), aSign != 0u);
1213 int nan = mix(0x7FFFFFFF, 0x80000000, aSign != 0u);
1214 return mix(z, nan, ((aSign != 0u) != (z < 0)) && bool(z));
1215 }
1216
1217 /* Returns the result of converting the 32-bit two's complement integer `a'
1218 * to the double-precision floating-point format. The conversion is performed
1219 * according to the IEEE Standard for Floating-Point Arithmetic.
1220 */
1221 uint64_t
1222 __int_to_fp64(int a)
1223 {
1224 uint zFrac0 = 0u;
1225 uint zFrac1 = 0u;
1226 if (a==0)
1227 return __packFloat64(0u, 0, 0u, 0u);
1228 uint zSign = uint(a) & 0x80000000u;
1229 uint absA = mix(uint(a), uint(-a), a < 0);
1230 int shiftCount = __countLeadingZeros32(absA) - 11;
1231 if (0 <= shiftCount) {
1232 zFrac0 = absA << shiftCount;
1233 zFrac1 = 0u;
1234 } else {
1235 __shift64Right(absA, 0u, -shiftCount, zFrac0, zFrac1);
1236 }
1237 return __packFloat64(zSign, 0x412 - shiftCount, zFrac0, zFrac1);
1238 }
1239
1240 bool
1241 __fp64_to_bool(uint64_t a)
1242 {
1243 return !__feq64_nonnan(__fabs64(a), 0ul);
1244 }
1245
1246 uint64_t
1247 __bool_to_fp64(bool a)
1248 {
1249 return packUint2x32(uvec2(0x00000000u, uint(-int(a) & 0x3ff00000)));
1250 }
1251
1252 /* Packs the sign `zSign', exponent `zExp', and significand `zFrac' into a
1253 * single-precision floating-point value, returning the result. After being
1254 * shifted into the proper positions, the three fields are simply added
1255 * together to form the result. This means that any integer portion of `zSig'
1256 * will be added into the exponent. Since a properly normalized significand
1257 * will have an integer portion equal to 1, the `zExp' input should be 1 less
1258 * than the desired result exponent whenever `zFrac' is a complete, normalized
1259 * significand.
1260 */
1261 float
1262 __packFloat32(uint zSign, int zExp, uint zFrac)
1263 {
1264 return uintBitsToFloat(zSign + (uint(zExp)<<23) + zFrac);
1265 }
1266
1267 /* Takes an abstract floating-point value having sign `zSign', exponent `zExp',
1268 * and significand `zFrac', and returns the proper single-precision floating-
1269 * point value corresponding to the abstract input. Ordinarily, the abstract
1270 * value is simply rounded and packed into the single-precision format, with
1271 * the inexact exception raised if the abstract input cannot be represented
1272 * exactly. However, if the abstract value is too large, the overflow and
1273 * inexact exceptions are raised and an infinity or maximal finite value is
1274 * returned. If the abstract value is too small, the input value is rounded to
1275 * a subnormal number, and the underflow and inexact exceptions are raised if
1276 * the abstract input cannot be represented exactly as a subnormal single-
1277 * precision floating-point number.
1278 * The input significand `zFrac' has its binary point between bits 30
1279 * and 29, which is 7 bits to the left of the usual location. This shifted
1280 * significand must be normalized or smaller. If `zFrac' is not normalized,
1281 * `zExp' must be 0; in that case, the result returned is a subnormal number,
1282 * and it must not require rounding. In the usual case that `zFrac' is
1283 * normalized, `zExp' must be 1 less than the "true" floating-point exponent.
1284 * The handling of underflow and overflow follows the IEEE Standard for
1285 * Floating-Point Arithmetic.
1286 */
1287 float
1288 __roundAndPackFloat32(uint zSign, int zExp, uint zFrac)
1289 {
1290 bool roundNearestEven;
1291 int roundIncrement;
1292 int roundBits;
1293
1294 roundNearestEven = FLOAT_ROUNDING_MODE == FLOAT_ROUND_NEAREST_EVEN;
1295 roundIncrement = 0x40;
1296 if (!roundNearestEven) {
1297 if (FLOAT_ROUNDING_MODE == FLOAT_ROUND_TO_ZERO) {
1298 roundIncrement = 0;
1299 } else {
1300 roundIncrement = 0x7F;
1301 if (zSign != 0u) {
1302 if (FLOAT_ROUNDING_MODE == FLOAT_ROUND_UP)
1303 roundIncrement = 0;
1304 } else {
1305 if (FLOAT_ROUNDING_MODE == FLOAT_ROUND_DOWN)
1306 roundIncrement = 0;
1307 }
1308 }
1309 }
1310 roundBits = int(zFrac & 0x7Fu);
1311 if (0xFDu <= uint(zExp)) {
1312 if ((0xFD < zExp) || ((zExp == 0xFD) && (int(zFrac) + roundIncrement) < 0))
1313 return __packFloat32(zSign, 0xFF, 0u) - float(roundIncrement == 0);
1314 int count = -zExp;
1315 bool zexp_lt0 = zExp < 0;
1316 uint zFrac_lt0 = mix(uint(zFrac != 0u), (zFrac>>count) | uint((zFrac<<((-count) & 31)) != 0u), (-zExp) < 32);
1317 zFrac = mix(zFrac, zFrac_lt0, zexp_lt0);
1318 roundBits = mix(roundBits, int(zFrac) & 0x7f, zexp_lt0);
1319 zExp = mix(zExp, 0, zexp_lt0);
1320 }
1321 zFrac = (zFrac + uint(roundIncrement))>>7;
1322 zFrac &= ~uint(((roundBits ^ 0x40) == 0) && roundNearestEven);
1323
1324 return __packFloat32(zSign, mix(zExp, 0, zFrac == 0u), zFrac);
1325 }
1326
1327 /* Returns the result of converting the double-precision floating-point value
1328 * `a' to the single-precision floating-point format. The conversion is
1329 * performed according to the IEEE Standard for Floating-Point Arithmetic.
1330 */
1331 float
1332 __fp64_to_fp32(uint64_t __a)
1333 {
1334 uvec2 a = unpackUint2x32(__a);
1335 uint zFrac = 0u;
1336 uint allZero = 0u;
1337
1338 uint aFracLo = __extractFloat64FracLo(__a);
1339 uint aFracHi = __extractFloat64FracHi(__a);
1340 int aExp = __extractFloat64Exp(__a);
1341 uint aSign = __extractFloat64Sign(__a);
1342 if (aExp == 0x7FF) {
1343 __shortShift64Left(a.y, a.x, 12, a.y, a.x);
1344 float rval = uintBitsToFloat(aSign | 0x7FC00000u | (a.y>>9));
1345 rval = mix(__packFloat32(aSign, 0xFF, 0u), rval, (aFracHi | aFracLo) != 0u);
1346 return rval;
1347 }
1348 __shift64RightJamming(aFracHi, aFracLo, 22, allZero, zFrac);
1349 zFrac = mix(zFrac, zFrac | 0x40000000u, aExp != 0);
1350 return __roundAndPackFloat32(aSign, aExp - 0x381, zFrac);
1351 }
1352
1353 float
1354 __uint64_to_fp32(uint64_t __a)
1355 {
1356 uvec2 aFrac = unpackUint2x32(__a);
1357 int shiftCount = mix(__countLeadingZeros32(aFrac.y) - 33,
1358 __countLeadingZeros32(aFrac.x) - 1,
1359 aFrac.y == 0u);
1360
1361 if (0 <= shiftCount)
1362 __shortShift64Left(aFrac.y, aFrac.x, shiftCount, aFrac.y, aFrac.x);
1363 else
1364 __shift64RightJamming(aFrac.y, aFrac.x, -shiftCount, aFrac.y, aFrac.x);
1365
1366 return __roundAndPackFloat32(0u, 0x9C - shiftCount, aFrac.x);
1367 }
1368
1369 float
1370 __int64_to_fp32(int64_t __a)
1371 {
1372 uint aSign = uint(unpackInt2x32(__a).y) & 0x80000000u;
1373 uint64_t absA = mix(uint64_t(__a), uint64_t(-__a), __a < 0);
1374 uvec2 aFrac = unpackUint2x32(absA);
1375 int shiftCount = mix(__countLeadingZeros32(aFrac.y) - 33,
1376 __countLeadingZeros32(aFrac.x) - 1,
1377 aFrac.y == 0u);
1378
1379 if (0 <= shiftCount)
1380 __shortShift64Left(aFrac.y, aFrac.x, shiftCount, aFrac.y, aFrac.x);
1381 else
1382 __shift64RightJamming(aFrac.y, aFrac.x, -shiftCount, aFrac.y, aFrac.x);
1383
1384 return __roundAndPackFloat32(aSign, 0x9C - shiftCount, aFrac.x);
1385 }
1386
1387 /* Returns the result of converting the single-precision floating-point value
1388 * `a' to the double-precision floating-point format.
1389 */
1390 uint64_t
1391 __fp32_to_fp64(float f)
1392 {
1393 uint a = floatBitsToUint(f);
1394 uint aFrac = a & 0x007FFFFFu;
1395 int aExp = int((a>>23) & 0xFFu);
1396 uint aSign = a & 0x80000000u;
1397 uint zFrac0 = 0u;
1398 uint zFrac1 = 0u;
1399
1400 if (aExp == 0xFF) {
1401 if (aFrac != 0u) {
1402 uint nanLo = 0u;
1403 uint nanHi = a<<9;
1404 __shift64Right(nanHi, nanLo, 12, nanHi, nanLo);
1405 nanHi |= aSign | 0x7FF80000u;
1406 return packUint2x32(uvec2(nanLo, nanHi));
1407 }
1408 return __packFloat64(aSign, 0x7FF, 0u, 0u);
1409 }
1410
1411 if (aExp == 0) {
1412 if (aFrac == 0u)
1413 return __packFloat64(aSign, 0, 0u, 0u);
1414 /* Normalize subnormal */
1415 int shiftCount = __countLeadingZeros32(aFrac) - 8;
1416 aFrac <<= shiftCount;
1417 aExp = 1 - shiftCount;
1418 --aExp;
1419 }
1420
1421 __shift64Right(aFrac, 0u, 3, zFrac0, zFrac1);
1422 return __packFloat64(aSign, aExp + 0x380, zFrac0, zFrac1);
1423 }
1424
1425 /* Adds the 96-bit value formed by concatenating `a0', `a1', and `a2' to the
1426 * 96-bit value formed by concatenating `b0', `b1', and `b2'. Addition is
1427 * modulo 2^96, so any carry out is lost. The result is broken into three
1428 * 32-bit pieces which are stored at the locations pointed to by `z0Ptr',
1429 * `z1Ptr', and `z2Ptr'.
1430 */
1431 void
1432 __add96(uint a0, uint a1, uint a2,
1433 uint b0, uint b1, uint b2,
1434 out uint z0Ptr,
1435 out uint z1Ptr,
1436 out uint z2Ptr)
1437 {
1438 uint z2 = a2 + b2;
1439 uint carry1 = uint(z2 < a2);
1440 uint z1 = a1 + b1;
1441 uint carry0 = uint(z1 < a1);
1442 uint z0 = a0 + b0;
1443 z1 += carry1;
1444 z0 += uint(z1 < carry1);
1445 z0 += carry0;
1446 z2Ptr = z2;
1447 z1Ptr = z1;
1448 z0Ptr = z0;
1449 }
1450
1451 /* Subtracts the 96-bit value formed by concatenating `b0', `b1', and `b2' from
1452 * the 96-bit value formed by concatenating `a0', `a1', and `a2'. Subtraction
1453 * is modulo 2^96, so any borrow out (carry out) is lost. The result is broken
1454 * into three 32-bit pieces which are stored at the locations pointed to by
1455 * `z0Ptr', `z1Ptr', and `z2Ptr'.
1456 */
1457 void
1458 __sub96(uint a0, uint a1, uint a2,
1459 uint b0, uint b1, uint b2,
1460 out uint z0Ptr,
1461 out uint z1Ptr,
1462 out uint z2Ptr)
1463 {
1464 uint z2 = a2 - b2;
1465 uint borrow1 = uint(a2 < b2);
1466 uint z1 = a1 - b1;
1467 uint borrow0 = uint(a1 < b1);
1468 uint z0 = a0 - b0;
1469 z0 -= uint(z1 < borrow1);
1470 z1 -= borrow1;
1471 z0 -= borrow0;
1472 z2Ptr = z2;
1473 z1Ptr = z1;
1474 z0Ptr = z0;
1475 }
1476
1477 /* Returns an approximation to the 32-bit integer quotient obtained by dividing
1478 * `b' into the 64-bit value formed by concatenating `a0' and `a1'. The
1479 * divisor `b' must be at least 2^31. If q is the exact quotient truncated
1480 * toward zero, the approximation returned lies between q and q + 2 inclusive.
1481 * If the exact quotient q is larger than 32 bits, the maximum positive 32-bit
1482 * unsigned integer is returned.
1483 */
1484 uint
1485 __estimateDiv64To32(uint a0, uint a1, uint b)
1486 {
1487 uint b0;
1488 uint b1;
1489 uint rem0 = 0u;
1490 uint rem1 = 0u;
1491 uint term0 = 0u;
1492 uint term1 = 0u;
1493 uint z;
1494
1495 if (b <= a0)
1496 return 0xFFFFFFFFu;
1497 b0 = b>>16;
1498 z = (b0<<16 <= a0) ? 0xFFFF0000u : (a0 / b0)<<16;
1499 umulExtended(b, z, term0, term1);
1500 __sub64(a0, a1, term0, term1, rem0, rem1);
1501 while (int(rem0) < 0) {
1502 z -= 0x10000u;
1503 b1 = b<<16;
1504 __add64(rem0, rem1, b0, b1, rem0, rem1);
1505 }
1506 rem0 = (rem0<<16) | (rem1>>16);
1507 z |= (b0<<16 <= rem0) ? 0xFFFFu : rem0 / b0;
1508 return z;
1509 }
1510
1511 uint
1512 __sqrtOddAdjustments(int index)
1513 {
1514 uint res = 0u;
1515 if (index == 0)
1516 res = 0x0004u;
1517 if (index == 1)
1518 res = 0x0022u;
1519 if (index == 2)
1520 res = 0x005Du;
1521 if (index == 3)
1522 res = 0x00B1u;
1523 if (index == 4)
1524 res = 0x011Du;
1525 if (index == 5)
1526 res = 0x019Fu;
1527 if (index == 6)
1528 res = 0x0236u;
1529 if (index == 7)
1530 res = 0x02E0u;
1531 if (index == 8)
1532 res = 0x039Cu;
1533 if (index == 9)
1534 res = 0x0468u;
1535 if (index == 10)
1536 res = 0x0545u;
1537 if (index == 11)
1538 res = 0x631u;
1539 if (index == 12)
1540 res = 0x072Bu;
1541 if (index == 13)
1542 res = 0x0832u;
1543 if (index == 14)
1544 res = 0x0946u;
1545 if (index == 15)
1546 res = 0x0A67u;
1547
1548 return res;
1549 }
1550
1551 uint
1552 __sqrtEvenAdjustments(int index)
1553 {
1554 uint res = 0u;
1555 if (index == 0)
1556 res = 0x0A2Du;
1557 if (index == 1)
1558 res = 0x08AFu;
1559 if (index == 2)
1560 res = 0x075Au;
1561 if (index == 3)
1562 res = 0x0629u;
1563 if (index == 4)
1564 res = 0x051Au;
1565 if (index == 5)
1566 res = 0x0429u;
1567 if (index == 6)
1568 res = 0x0356u;
1569 if (index == 7)
1570 res = 0x029Eu;
1571 if (index == 8)
1572 res = 0x0200u;
1573 if (index == 9)
1574 res = 0x0179u;
1575 if (index == 10)
1576 res = 0x0109u;
1577 if (index == 11)
1578 res = 0x00AFu;
1579 if (index == 12)
1580 res = 0x0068u;
1581 if (index == 13)
1582 res = 0x0034u;
1583 if (index == 14)
1584 res = 0x0012u;
1585 if (index == 15)
1586 res = 0x0002u;
1587
1588 return res;
1589 }
1590
1591 /* Returns an approximation to the square root of the 32-bit significand given
1592 * by `a'. Considered as an integer, `a' must be at least 2^31. If bit 0 of
1593 * `aExp' (the least significant bit) is 1, the integer returned approximates
1594 * 2^31*sqrt(`a'/2^31), where `a' is considered an integer. If bit 0 of `aExp'
1595 * is 0, the integer returned approximates 2^31*sqrt(`a'/2^30). In either
1596 * case, the approximation returned lies strictly within +/-2 of the exact
1597 * value.
1598 */
1599 uint
1600 __estimateSqrt32(int aExp, uint a)
1601 {
1602 uint z;
1603
1604 int index = int(a>>27 & 15u);
1605 if ((aExp & 1) != 0) {
1606 z = 0x4000u + (a>>17) - __sqrtOddAdjustments(index);
1607 z = ((a / z)<<14) + (z<<15);
1608 a >>= 1;
1609 } else {
1610 z = 0x8000u + (a>>17) - __sqrtEvenAdjustments(index);
1611 z = a / z + z;
1612 z = (0x20000u <= z) ? 0xFFFF8000u : (z<<15);
1613 if (z <= a)
1614 return uint(int(a)>>1);
1615 }
1616 return ((__estimateDiv64To32(a, 0u, z))>>1) + (z>>1);
1617 }
1618
1619 /* Returns the square root of the double-precision floating-point value `a'.
1620 * The operation is performed according to the IEEE Standard for Floating-Point
1621 * Arithmetic.
1622 */
1623 uint64_t
1624 __fsqrt64(uint64_t a)
1625 {
1626 uint zFrac0 = 0u;
1627 uint zFrac1 = 0u;
1628 uint zFrac2 = 0u;
1629 uint doubleZFrac0 = 0u;
1630 uint rem0 = 0u;
1631 uint rem1 = 0u;
1632 uint rem2 = 0u;
1633 uint rem3 = 0u;
1634 uint term0 = 0u;
1635 uint term1 = 0u;
1636 uint term2 = 0u;
1637 uint term3 = 0u;
1638 uint64_t default_nan = 0xFFFFFFFFFFFFFFFFUL;
1639
1640 uint aFracLo = __extractFloat64FracLo(a);
1641 uint aFracHi = __extractFloat64FracHi(a);
1642 int aExp = __extractFloat64Exp(a);
1643 uint aSign = __extractFloat64Sign(a);
1644 if (aExp == 0x7FF) {
1645 if ((aFracHi | aFracLo) != 0u)
1646 return __propagateFloat64NaN(a, a);
1647 if (aSign == 0u)
1648 return a;
1649 return default_nan;
1650 }
1651 if (aSign != 0u) {
1652 if ((uint(aExp) | aFracHi | aFracLo) == 0u)
1653 return a;
1654 return default_nan;
1655 }
1656 if (aExp == 0) {
1657 if ((aFracHi | aFracLo) == 0u)
1658 return __packFloat64(0u, 0, 0u, 0u);
1659 __normalizeFloat64Subnormal(aFracHi, aFracLo, aExp, aFracHi, aFracLo);
1660 }
1661 int zExp = ((aExp - 0x3FF)>>1) + 0x3FE;
1662 aFracHi |= 0x00100000u;
1663 __shortShift64Left(aFracHi, aFracLo, 11, term0, term1);
1664 zFrac0 = (__estimateSqrt32(aExp, term0)>>1) + 1u;
1665 if (zFrac0 == 0u)
1666 zFrac0 = 0x7FFFFFFFu;
1667 doubleZFrac0 = zFrac0 + zFrac0;
1668 __shortShift64Left(aFracHi, aFracLo, 9 - (aExp & 1), aFracHi, aFracLo);
1669 umulExtended(zFrac0, zFrac0, term0, term1);
1670 __sub64(aFracHi, aFracLo, term0, term1, rem0, rem1);
1671 while (int(rem0) < 0) {
1672 --zFrac0;
1673 doubleZFrac0 -= 2u;
1674 __add64(rem0, rem1, 0u, doubleZFrac0 | 1u, rem0, rem1);
1675 }
1676 zFrac1 = __estimateDiv64To32(rem1, 0u, doubleZFrac0);
1677 if ((zFrac1 & 0x1FFu) <= 5u) {
1678 if (zFrac1 == 0u)
1679 zFrac1 = 1u;
1680 umulExtended(doubleZFrac0, zFrac1, term1, term2);
1681 __sub64(rem1, 0u, term1, term2, rem1, rem2);
1682 umulExtended(zFrac1, zFrac1, term2, term3);
1683 __sub96(rem1, rem2, 0u, 0u, term2, term3, rem1, rem2, rem3);
1684 while (int(rem1) < 0) {
1685 --zFrac1;
1686 __shortShift64Left(0u, zFrac1, 1, term2, term3);
1687 term3 |= 1u;
1688 term2 |= doubleZFrac0;
1689 __add96(rem1, rem2, rem3, 0u, term2, term3, rem1, rem2, rem3);
1690 }
1691 zFrac1 |= uint((rem1 | rem2 | rem3) != 0u);
1692 }
1693 __shift64ExtraRightJamming(zFrac0, zFrac1, 0u, 10, zFrac0, zFrac1, zFrac2);
1694 return __roundAndPackFloat64(0u, zExp, zFrac0, zFrac1, zFrac2);
1695 }
1696
1697 uint64_t
1698 __ftrunc64(uint64_t __a)
1699 {
1700 uvec2 a = unpackUint2x32(__a);
1701 int aExp = __extractFloat64Exp(__a);
1702 uint zLo;
1703 uint zHi;
1704
1705 int unbiasedExp = aExp - 1023;
1706 int fracBits = 52 - unbiasedExp;
1707 uint maskLo = mix(~0u << fracBits, 0u, fracBits >= 32);
1708 uint maskHi = mix(~0u << (fracBits - 32), ~0u, fracBits < 33);
1709 zLo = maskLo & a.x;
1710 zHi = maskHi & a.y;
1711
1712 zLo = mix(zLo, 0u, unbiasedExp < 0);
1713 zHi = mix(zHi, 0u, unbiasedExp < 0);
1714 zLo = mix(zLo, a.x, unbiasedExp > 52);
1715 zHi = mix(zHi, a.y, unbiasedExp > 52);
1716 return packUint2x32(uvec2(zLo, zHi));
1717 }
1718
1719 uint64_t
1720 __ffloor64(uint64_t a)
1721 {
1722 /* The big assumtion is that when 'a' is NaN, __ftrunc(a) returns a. Based
1723 * on that assumption, NaN values that don't have the sign bit will safely
1724 * return NaN (identity). This is guarded by RELAXED_NAN_PROPAGATION
1725 * because otherwise the NaN should have the "signal" bit set. The
1726 * __fadd64 will ensure that occurs.
1727 */
1728 bool is_positive =
1729 #if defined RELAXED_NAN_PROPAGATION
1730 int(unpackUint2x32(a).y) >= 0
1731 #else
1732 __fge64(a, 0ul)
1733 #endif
1734 ;
1735 uint64_t tr = __ftrunc64(a);
1736
1737 if (is_positive || __feq64(tr, a)) {
1738 return tr;
1739 } else {
1740 return __fadd64(tr, 0xbff0000000000000ul /* -1.0 */);
1741 }
1742 }
1743
1744 uint64_t
1745 __fround64(uint64_t __a)
1746 {
1747 uvec2 a = unpackUint2x32(__a);
1748 int unbiasedExp = __extractFloat64Exp(__a) - 1023;
1749 uint aHi = a.y;
1750 uint aLo = a.x;
1751
1752 if (unbiasedExp < 20) {
1753 if (unbiasedExp < 0) {
1754 if ((aHi & 0x80000000u) != 0u && aLo == 0u) {
1755 return 0;
1756 }
1757 aHi &= 0x80000000u;
1758 if ((a.y & 0x000FFFFFu) == 0u && a.x == 0u) {
1759 aLo = 0u;
1760 return packUint2x32(uvec2(aLo, aHi));
1761 }
1762 aHi = mix(aHi, (aHi | 0x3FF00000u), unbiasedExp == -1);
1763 aLo = 0u;
1764 } else {
1765 uint maskExp = 0x000FFFFFu >> unbiasedExp;
1766 uint lastBit = maskExp + 1;
1767 aHi += 0x00080000u >> unbiasedExp;
1768 if ((aHi & maskExp) == 0u)
1769 aHi &= ~lastBit;
1770 aHi &= ~maskExp;
1771 aLo = 0u;
1772 }
1773 } else if (unbiasedExp > 51 || unbiasedExp == 1024) {
1774 return __a;
1775 } else {
1776 uint maskExp = 0xFFFFFFFFu >> (unbiasedExp - 20);
1777 if ((aLo & maskExp) == 0u)
1778 return __a;
1779 uint tmp = aLo + (1u << (51 - unbiasedExp));
1780 if(tmp < aLo)
1781 aHi += 1u;
1782 aLo = tmp;
1783 aLo &= ~maskExp;
1784 }
1785
1786 return packUint2x32(uvec2(aLo, aHi));
1787 }
1788
1789 uint64_t
1790 __fmin64(uint64_t a, uint64_t b)
1791 {
1792 /* This weird layout matters. Doing the "obvious" thing results in extra
1793 * flow control being inserted to implement the short-circuit evaluation
1794 * rules. Flow control is bad!
1795 */
1796 bool b_nan = __is_nan(b);
1797 bool a_lt_b = __flt64_nonnan(a, b);
1798 bool a_nan = __is_nan(a);
1799
1800 return (b_nan || a_lt_b) && !a_nan ? a : b;
1801 }
1802
1803 uint64_t
1804 __fmax64(uint64_t a, uint64_t b)
1805 {
1806 /* This weird layout matters. Doing the "obvious" thing results in extra
1807 * flow control being inserted to implement the short-circuit evaluation
1808 * rules. Flow control is bad!
1809 */
1810 bool b_nan = __is_nan(b);
1811 bool a_lt_b = __flt64_nonnan(a, b);
1812 bool a_nan = __is_nan(a);
1813
1814 return (b_nan || a_lt_b) && !a_nan ? b : a;
1815 }
1816
1817 uint64_t
1818 __ffract64(uint64_t a)
1819 {
1820 return __fadd64(a, __fneg64(__ffloor64(a)));
1821 }