1 /* Software floating-point emulation. Common operations.
2 Copyright (C) 1997,1998,1999 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Richard Henderson (rth@cygnus.com),
5 Jakub Jelinek (jj@ultra.linux.cz),
6 David S. Miller (davem@redhat.com) and
7 Peter Maydell (pmaydell@chiark.greenend.org.uk).
9 The GNU C Library is free software; you can redistribute it and/or
10 modify it under the terms of the GNU Library General Public License as
11 published by the Free Software Foundation; either version 2 of the
12 License, or (at your option) any later version.
14 The GNU C Library is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 Library General Public License for more details.
19 You should have received a copy of the GNU Library General Public
20 License along with the GNU C Library; see the file COPYING.LIB. If
21 not, write to the Free Software Foundation, Inc.,
22 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
24 #ifndef __MATH_EMU_OP_COMMON_H__
25 #define __MATH_EMU_OP_COMMON_H__
27 #define _FP_DECL(wc, X) \
28 _FP_I_TYPE X##_c=0, X##_s=0, X##_e=0; \
32 * Finish truely unpacking a native fp value by classifying the kind
33 * of fp value and normalizing both the exponent and the fraction.
36 #define _FP_UNPACK_CANONICAL(fs, wc, X) \
41 _FP_FRAC_HIGH_RAW_##fs(X) |= _FP_IMPLBIT_##fs; \
42 _FP_FRAC_SLL_##wc(X, _FP_WORKBITS); \
43 X##_e -= _FP_EXPBIAS_##fs; \
44 X##_c = FP_CLS_NORMAL; \
48 if (_FP_FRAC_ZEROP_##wc(X)) \
49 X##_c = FP_CLS_ZERO; \
52 /* a denormalized number */ \
54 _FP_FRAC_CLZ_##wc(_shift, X); \
55 _shift -= _FP_FRACXBITS_##fs; \
56 _FP_FRAC_SLL_##wc(X, (_shift+_FP_WORKBITS)); \
57 X##_e -= _FP_EXPBIAS_##fs - 1 + _shift; \
58 X##_c = FP_CLS_NORMAL; \
59 FP_SET_EXCEPTION(FP_EX_DENORM); \
62 FP_SET_EXCEPTION(FP_EX_INEXACT); \
63 X##_c = FP_CLS_ZERO; \
68 case _FP_EXPMAX_##fs: \
69 if (_FP_FRAC_ZEROP_##wc(X)) \
74 /* Check for signaling NaN */ \
75 if (!(_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)) \
76 FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_SNAN); \
83 * Before packing the bits back into the native fp result, take care
84 * of such mundane things as rounding and overflow. Also, for some
85 * kinds of fp values, the original parts may not have been fully
86 * extracted -- but that is ok, we can regenerate them now.
89 #define _FP_PACK_CANONICAL(fs, wc, X) \
94 X##_e += _FP_EXPBIAS_##fs; \
98 if (_FP_FRAC_OVERP_##wc(fs, X)) \
100 _FP_FRAC_CLEAR_OVERP_##wc(fs, X); \
103 _FP_FRAC_SRL_##wc(X, _FP_WORKBITS); \
104 if (X##_e >= _FP_EXPMAX_##fs) \
107 switch (FP_ROUNDMODE) \
109 case FP_RND_NEAREST: \
110 X##_c = FP_CLS_INF; \
113 if (!X##_s) X##_c = FP_CLS_INF; \
116 if (X##_s) X##_c = FP_CLS_INF; \
119 if (X##_c == FP_CLS_INF) \
121 /* Overflow to infinity */ \
122 X##_e = _FP_EXPMAX_##fs; \
123 _FP_FRAC_SET_##wc(X, _FP_ZEROFRAC_##wc); \
127 /* Overflow to maximum normal */ \
128 X##_e = _FP_EXPMAX_##fs - 1; \
129 _FP_FRAC_SET_##wc(X, _FP_MAXFRAC_##wc); \
131 FP_SET_EXCEPTION(FP_EX_OVERFLOW); \
132 FP_SET_EXCEPTION(FP_EX_INEXACT); \
137 /* we've got a denormalized number */ \
138 X##_e = -X##_e + 1; \
139 if (X##_e <= _FP_WFRACBITS_##fs) \
141 _FP_FRAC_SRS_##wc(X, X##_e, _FP_WFRACBITS_##fs); \
143 if (_FP_FRAC_HIGH_##fs(X) \
144 & (_FP_OVERFLOW_##fs >> 1)) \
147 _FP_FRAC_SET_##wc(X, _FP_ZEROFRAC_##wc); \
148 FP_SET_EXCEPTION(FP_EX_INEXACT); \
153 _FP_FRAC_SRL_##wc(X, _FP_WORKBITS); \
155 if ((FP_CUR_EXCEPTIONS & FP_EX_INEXACT) || \
156 (FP_TRAPPING_EXCEPTIONS & FP_EX_UNDERFLOW)) \
157 FP_SET_EXCEPTION(FP_EX_UNDERFLOW); \
161 /* underflow to zero */ \
163 if (!_FP_FRAC_ZEROP_##wc(X)) \
165 _FP_FRAC_SET_##wc(X, _FP_MINFRAC_##wc); \
167 _FP_FRAC_LOW_##wc(X) >>= (_FP_WORKBITS); \
169 FP_SET_EXCEPTION(FP_EX_UNDERFLOW); \
176 _FP_FRAC_SET_##wc(X, _FP_ZEROFRAC_##wc); \
180 X##_e = _FP_EXPMAX_##fs; \
181 _FP_FRAC_SET_##wc(X, _FP_ZEROFRAC_##wc); \
185 X##_e = _FP_EXPMAX_##fs; \
186 if (!_FP_KEEPNANFRACP) \
188 _FP_FRAC_SET_##wc(X, _FP_NANFRAC_##fs); \
189 X##_s = _FP_NANSIGN_##fs; \
192 _FP_FRAC_HIGH_RAW_##fs(X) |= _FP_QNANBIT_##fs; \
197 /* This one accepts raw argument and not cooked, returns
198 * 1 if X is a signaling NaN.
200 #define _FP_ISSIGNAN(fs, wc, X) \
203 if (X##_e == _FP_EXPMAX_##fs) \
205 if (!_FP_FRAC_ZEROP_##wc(X) \
206 && !(_FP_FRAC_HIGH_RAW_##fs(X) & _FP_QNANBIT_##fs)) \
217 * Main addition routine. The input values should be cooked.
220 #define _FP_ADD_INTERNAL(fs, wc, R, X, Y, OP) \
222 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \
224 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NORMAL): \
226 /* shift the smaller number so that its exponent matches the larger */ \
227 _FP_I_TYPE diff = X##_e - Y##_e; \
232 if (diff <= _FP_WFRACBITS_##fs) \
233 _FP_FRAC_SRS_##wc(X, diff, _FP_WFRACBITS_##fs); \
234 else if (!_FP_FRAC_ZEROP_##wc(X)) \
235 _FP_FRAC_SET_##wc(X, _FP_MINFRAC_##wc); \
242 if (diff <= _FP_WFRACBITS_##fs) \
243 _FP_FRAC_SRS_##wc(Y, diff, _FP_WFRACBITS_##fs); \
244 else if (!_FP_FRAC_ZEROP_##wc(Y)) \
245 _FP_FRAC_SET_##wc(Y, _FP_MINFRAC_##wc); \
250 R##_c = FP_CLS_NORMAL; \
252 if (X##_s == Y##_s) \
255 _FP_FRAC_ADD_##wc(R, X, Y); \
256 if (_FP_FRAC_OVERP_##wc(fs, R)) \
258 _FP_FRAC_SRS_##wc(R, 1, _FP_WFRACBITS_##fs); \
265 _FP_FRAC_SUB_##wc(R, X, Y); \
266 if (_FP_FRAC_ZEROP_##wc(R)) \
268 /* return an exact zero */ \
269 if (FP_ROUNDMODE == FP_RND_MINF) \
273 R##_c = FP_CLS_ZERO; \
277 if (_FP_FRAC_NEGP_##wc(R)) \
279 _FP_FRAC_SUB_##wc(R, Y, X); \
283 /* renormalize after subtraction */ \
284 _FP_FRAC_CLZ_##wc(diff, R); \
285 diff -= _FP_WFRACXBITS_##fs; \
289 _FP_FRAC_SLL_##wc(R, diff); \
296 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NAN): \
297 _FP_CHOOSENAN(fs, wc, R, X, Y, OP); \
300 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
302 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NORMAL): \
303 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
304 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
305 _FP_FRAC_COPY_##wc(R, X); \
310 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
312 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NAN): \
313 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
314 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
315 _FP_FRAC_COPY_##wc(R, Y); \
320 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
321 if (X##_s != Y##_s) \
323 /* +INF + -INF => NAN */ \
324 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
325 R##_s = _FP_NANSIGN_##fs; \
326 R##_c = FP_CLS_NAN; \
327 FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_ISI); \
332 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
333 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
335 R##_c = FP_CLS_INF; \
338 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
339 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
341 R##_c = FP_CLS_INF; \
344 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
345 /* make sure the sign is correct */ \
346 if (FP_ROUNDMODE == FP_RND_MINF) \
347 R##_s = X##_s | Y##_s; \
349 R##_s = X##_s & Y##_s; \
350 R##_c = FP_CLS_ZERO; \
358 #define _FP_ADD(fs, wc, R, X, Y) _FP_ADD_INTERNAL(fs, wc, R, X, Y, '+')
359 #define _FP_SUB(fs, wc, R, X, Y) \
361 if (Y##_c != FP_CLS_NAN) Y##_s ^= 1; \
362 _FP_ADD_INTERNAL(fs, wc, R, X, Y, '-'); \
367 * Main negation routine. FIXME -- when we care about setting exception
368 * bits reliably, this will not do. We should examine all of the fp classes.
371 #define _FP_NEG(fs, wc, R, X) \
373 _FP_FRAC_COPY_##wc(R, X); \
381 * Main multiplication routine. The input values should be cooked.
384 #define _FP_MUL(fs, wc, R, X, Y) \
386 R##_s = X##_s ^ Y##_s; \
387 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \
389 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NORMAL): \
390 R##_c = FP_CLS_NORMAL; \
391 R##_e = X##_e + Y##_e + 1; \
393 _FP_MUL_MEAT_##fs(R,X,Y); \
395 if (_FP_FRAC_OVERP_##wc(fs, R)) \
396 _FP_FRAC_SRS_##wc(R, 1, _FP_WFRACBITS_##fs); \
401 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NAN): \
402 _FP_CHOOSENAN(fs, wc, R, X, Y, '*'); \
405 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NORMAL): \
406 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
407 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
410 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
411 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
412 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
413 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
414 _FP_FRAC_COPY_##wc(R, X); \
418 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NAN): \
419 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
420 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
423 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
424 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
425 _FP_FRAC_COPY_##wc(R, Y); \
429 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
430 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
431 R##_s = _FP_NANSIGN_##fs; \
432 R##_c = FP_CLS_NAN; \
433 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
434 FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_IMZ);\
444 * Main division routine. The input values should be cooked.
447 #define _FP_DIV(fs, wc, R, X, Y) \
449 R##_s = X##_s ^ Y##_s; \
450 switch (_FP_CLS_COMBINE(X##_c, Y##_c)) \
452 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NORMAL): \
453 R##_c = FP_CLS_NORMAL; \
454 R##_e = X##_e - Y##_e; \
456 _FP_DIV_MEAT_##fs(R,X,Y); \
459 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NAN): \
460 _FP_CHOOSENAN(fs, wc, R, X, Y, '/'); \
463 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_NORMAL): \
464 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_INF): \
465 case _FP_CLS_COMBINE(FP_CLS_NAN,FP_CLS_ZERO): \
467 _FP_FRAC_COPY_##wc(R, X); \
471 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_NAN): \
472 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NAN): \
473 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NAN): \
475 _FP_FRAC_COPY_##wc(R, Y); \
479 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_INF): \
480 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_INF): \
481 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_NORMAL): \
482 R##_c = FP_CLS_ZERO; \
485 case _FP_CLS_COMBINE(FP_CLS_NORMAL,FP_CLS_ZERO): \
486 FP_SET_EXCEPTION(FP_EX_DIVZERO); \
487 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_ZERO): \
488 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_NORMAL): \
489 R##_c = FP_CLS_INF; \
492 case _FP_CLS_COMBINE(FP_CLS_INF,FP_CLS_INF): \
493 R##_s = _FP_NANSIGN_##fs; \
494 R##_c = FP_CLS_NAN; \
495 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
496 FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_IDI);\
497 case _FP_CLS_COMBINE(FP_CLS_ZERO,FP_CLS_ZERO): \
498 R##_s = _FP_NANSIGN_##fs; \
499 R##_c = FP_CLS_NAN; \
500 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
501 FP_SET_EXCEPTION(FP_EX_INVALID | FP_EX_INVALID_ZDZ);\
511 * Main differential comparison routine. The inputs should be raw not
512 * cooked. The return is -1,0,1 for normal values, 2 otherwise.
515 #define _FP_CMP(fs, wc, ret, X, Y, un) \
517 /* NANs are unordered */ \
518 if ((X##_e == _FP_EXPMAX_##fs && !_FP_FRAC_ZEROP_##wc(X)) \
519 || (Y##_e == _FP_EXPMAX_##fs && !_FP_FRAC_ZEROP_##wc(Y))) \
528 __is_zero_x = (!X##_e && _FP_FRAC_ZEROP_##wc(X)) ? 1 : 0; \
529 __is_zero_y = (!Y##_e && _FP_FRAC_ZEROP_##wc(Y)) ? 1 : 0; \
531 if (__is_zero_x && __is_zero_y) \
533 else if (__is_zero_x) \
534 ret = Y##_s ? 1 : -1; \
535 else if (__is_zero_y) \
536 ret = X##_s ? -1 : 1; \
537 else if (X##_s != Y##_s) \
538 ret = X##_s ? -1 : 1; \
539 else if (X##_e > Y##_e) \
540 ret = X##_s ? -1 : 1; \
541 else if (X##_e < Y##_e) \
542 ret = X##_s ? 1 : -1; \
543 else if (_FP_FRAC_GT_##wc(X, Y)) \
544 ret = X##_s ? -1 : 1; \
545 else if (_FP_FRAC_GT_##wc(Y, X)) \
546 ret = X##_s ? 1 : -1; \
553 /* Simplification for strict equality. */
555 #define _FP_CMP_EQ(fs, wc, ret, X, Y) \
557 /* NANs are unordered */ \
558 if ((X##_e == _FP_EXPMAX_##fs && !_FP_FRAC_ZEROP_##wc(X)) \
559 || (Y##_e == _FP_EXPMAX_##fs && !_FP_FRAC_ZEROP_##wc(Y))) \
565 ret = !(X##_e == Y##_e \
566 && _FP_FRAC_EQ_##wc(X, Y) \
567 && (X##_s == Y##_s || !X##_e && _FP_FRAC_ZEROP_##wc(X))); \
572 * Main square root routine. The input value should be cooked.
575 #define _FP_SQRT(fs, wc, R, X) \
577 _FP_FRAC_DECL_##wc(T); _FP_FRAC_DECL_##wc(S); \
582 _FP_FRAC_COPY_##wc(R, X); \
584 R##_c = FP_CLS_NAN; \
589 R##_s = _FP_NANSIGN_##fs; \
590 R##_c = FP_CLS_NAN; /* NAN */ \
591 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
592 FP_SET_EXCEPTION(FP_EX_INVALID); \
597 R##_c = FP_CLS_INF; /* sqrt(+inf) = +inf */ \
602 R##_c = FP_CLS_ZERO; /* sqrt(+-0) = +-0 */ \
604 case FP_CLS_NORMAL: \
608 R##_c = FP_CLS_NAN; /* sNAN */ \
609 R##_s = _FP_NANSIGN_##fs; \
610 _FP_FRAC_SET_##wc(R, _FP_NANFRAC_##fs); \
611 FP_SET_EXCEPTION(FP_EX_INVALID); \
614 R##_c = FP_CLS_NORMAL; \
616 _FP_FRAC_SLL_##wc(X, 1); \
617 R##_e = X##_e >> 1; \
618 _FP_FRAC_SET_##wc(S, _FP_ZEROFRAC_##wc); \
619 _FP_FRAC_SET_##wc(R, _FP_ZEROFRAC_##wc); \
620 q = _FP_OVERFLOW_##fs >> 1; \
621 _FP_SQRT_MEAT_##wc(R, S, T, X, q); \
626 * Convert from FP to integer
629 /* RSIGNED can have following values:
630 * 0: the number is required to be 0..(2^rsize)-1, if not, NV is set plus
631 * the result is either 0 or (2^rsize)-1 depending on the sign in such case.
632 * 1: the number is required to be -(2^(rsize-1))..(2^(rsize-1))-1, if not, NV is
633 * set plus the result is either -(2^(rsize-1)) or (2^(rsize-1))-1 depending
634 * on the sign in such case.
635 * 2: the number is required to be -(2^(rsize-1))..(2^(rsize-1))-1, if not, NV is
636 * set plus the result is truncated to fit into destination.
637 * -1: the number is required to be -(2^(rsize-1))..(2^rsize)-1, if not, NV is
638 * set plus the result is either -(2^(rsize-1)) or (2^(rsize-1))-1 depending
639 * on the sign in such case.
641 #define _FP_TO_INT(fs, wc, r, X, rsize, rsigned) \
645 case FP_CLS_NORMAL: \
648 FP_SET_EXCEPTION(FP_EX_INEXACT); \
652 else if (X##_e >= rsize - (rsigned > 0 || X##_s) \
653 || (!rsigned && X##_s)) \
659 if (X##_c != FP_CLS_NORMAL \
660 || X##_e >= rsize - 1 + _FP_WFRACBITS_##fs) \
664 _FP_FRAC_SLL_##wc(X, (X##_e - _FP_WFRACBITS_##fs + 1)); \
665 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
680 FP_SET_EXCEPTION(FP_EX_INVALID); \
684 if (_FP_W_TYPE_SIZE*wc < rsize) \
686 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
687 r <<= X##_e - _FP_WFRACBITS_##fs; \
691 if (X##_e >= _FP_WFRACBITS_##fs) \
692 _FP_FRAC_SLL_##wc(X, (X##_e - _FP_WFRACBITS_##fs + 1)); \
693 else if (X##_e < _FP_WFRACBITS_##fs - 1) \
695 _FP_FRAC_SRS_##wc(X, (_FP_WFRACBITS_##fs - X##_e - 2), \
696 _FP_WFRACBITS_##fs); \
697 if (_FP_FRAC_LOW_##wc(X) & 1) \
698 FP_SET_EXCEPTION(FP_EX_INEXACT); \
699 _FP_FRAC_SRL_##wc(X, 1); \
701 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
703 if (rsigned && X##_s) \
710 #define _FP_TO_INT_ROUND(fs, wc, r, X, rsize, rsigned) \
715 case FP_CLS_NORMAL: \
716 if (X##_e >= _FP_FRACBITS_##fs - 1) \
718 if (X##_e < rsize - 1 + _FP_WFRACBITS_##fs) \
720 if (X##_e >= _FP_WFRACBITS_##fs - 1) \
722 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
723 r <<= X##_e - _FP_WFRACBITS_##fs + 1; \
727 _FP_FRAC_SRL_##wc(X, _FP_WORKBITS - X##_e \
728 + _FP_FRACBITS_##fs - 1); \
729 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
735 if (X##_e <= -_FP_WORKBITS - 1) \
736 _FP_FRAC_SET_##wc(X, _FP_MINFRAC_##wc); \
738 _FP_FRAC_SRS_##wc(X, _FP_FRACBITS_##fs - 1 - X##_e, \
739 _FP_WFRACBITS_##fs); \
741 _FP_FRAC_SRL_##wc(X, _FP_WORKBITS); \
742 _FP_FRAC_ASSEMBLE_##wc(r, X, rsize); \
744 if (rsigned && X##_s) \
746 if (X##_e >= rsize - (rsigned > 0 || X##_s) \
747 || (!rsigned && X##_s)) \
757 else if (rsigned != 2) \
763 FP_SET_EXCEPTION(FP_EX_INVALID); \
771 #define _FP_FROM_INT(fs, wc, X, r, rsize, rtype) \
775 unsigned rtype ur_; \
776 X##_c = FP_CLS_NORMAL; \
778 if ((X##_s = (r < 0))) \
779 ur_ = (unsigned rtype) -r; \
781 ur_ = (unsigned rtype) r; \
782 if (rsize <= _FP_W_TYPE_SIZE) \
783 __FP_CLZ(X##_e, ur_); \
785 __FP_CLZ_2(X##_e, (_FP_W_TYPE)(ur_ >> _FP_W_TYPE_SIZE), \
787 if (rsize < _FP_W_TYPE_SIZE) \
788 X##_e -= (_FP_W_TYPE_SIZE - rsize); \
789 X##_e = rsize - X##_e - 1; \
791 if (_FP_FRACBITS_##fs < rsize && _FP_WFRACBITS_##fs < X##_e) \
792 __FP_FRAC_SRS_1(ur_, (X##_e - _FP_WFRACBITS_##fs + 1), rsize);\
793 _FP_FRAC_DISASSEMBLE_##wc(X, ur_, rsize); \
794 if ((_FP_WFRACBITS_##fs - X##_e - 1) > 0) \
795 _FP_FRAC_SLL_##wc(X, (_FP_WFRACBITS_##fs - X##_e - 1)); \
799 X##_c = FP_CLS_ZERO, X##_s = 0; \
804 #define FP_CONV(dfs,sfs,dwc,swc,D,S) \
806 _FP_FRAC_CONV_##dwc##_##swc(dfs, sfs, D, S); \
816 /* Count leading zeros in a word. */
819 #if _FP_W_TYPE_SIZE < 64
820 /* this is just to shut the compiler up about shifts > word length -- PMM 02/1998 */
821 #define __FP_CLZ(r, x) \
823 _FP_W_TYPE _t = (x); \
824 r = _FP_W_TYPE_SIZE - 1; \
825 if (_t > 0xffff) r -= 16; \
826 if (_t > 0xffff) _t >>= 16; \
827 if (_t > 0xff) r -= 8; \
828 if (_t > 0xff) _t >>= 8; \
829 if (_t & 0xf0) r -= 4; \
830 if (_t & 0xf0) _t >>= 4; \
831 if (_t & 0xc) r -= 2; \
832 if (_t & 0xc) _t >>= 2; \
833 if (_t & 0x2) r -= 1; \
835 #else /* not _FP_W_TYPE_SIZE < 64 */
836 #define __FP_CLZ(r, x) \
838 _FP_W_TYPE _t = (x); \
839 r = _FP_W_TYPE_SIZE - 1; \
840 if (_t > 0xffffffff) r -= 32; \
841 if (_t > 0xffffffff) _t >>= 32; \
842 if (_t > 0xffff) r -= 16; \
843 if (_t > 0xffff) _t >>= 16; \
844 if (_t > 0xff) r -= 8; \
845 if (_t > 0xff) _t >>= 8; \
846 if (_t & 0xf0) r -= 4; \
847 if (_t & 0xf0) _t >>= 4; \
848 if (_t & 0xc) r -= 2; \
849 if (_t & 0xc) _t >>= 2; \
850 if (_t & 0x2) r -= 1; \
852 #endif /* not _FP_W_TYPE_SIZE < 64 */
853 #endif /* ndef __FP_CLZ */
855 #define _FP_DIV_HELP_imm(q, r, n, d) \
857 q = n / d, r = n % d; \
860 #endif /* __MATH_EMU_OP_COMMON_H__ */