1 /*---------------------------------------------------------------------------+
4 | Convert register representation. |
6 | Copyright (C) 1992,1993,1994,1996,1997 |
7 | W. Metzenthen, 22 Parker St, Ormond, Vic 3163, Australia |
8 | E-mail billm@suburbia.net |
11 +---------------------------------------------------------------------------*/
13 #include "exception.h"
16 int FPU_to_exp16(FPU_REG
const *a
, FPU_REG
*x
)
18 int sign
= getsign(a
);
20 *(long long *)&(x
->sigl
) = *(const long long *)&(a
->sigl
);
22 /* Set up the exponent as a 16 bit quantity. */
23 setexponent16(x
, exponent(a
));
25 if (exponent16(x
) == EXP_UNDER
) {
26 /* The number is a de-normal or pseudodenormal. */
27 /* We only deal with the significand and exponent. */
29 if (x
->sigh
& 0x80000000) {
30 /* Is a pseudodenormal. */
31 /* This is non-80486 behaviour because the number
32 loses its 'denormal' identity. */
41 if (!(x
->sigh
& 0x80000000)) {
42 EXCEPTION(EX_INTERNAL
| 0x180);