blob: 108060779977f3dbc417ee219fce7576aa47b62f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*---------------------------------------------------------------------------+
2 | reg_convert.c |
3 | |
4 | Convert register representation. |
5 | |
6 | Copyright (C) 1992,1993,1994,1996,1997 |
7 | W. Metzenthen, 22 Parker St, Ormond, Vic 3163, Australia |
8 | E-mail billm@suburbia.net |
9 | |
10 | |
11 +---------------------------------------------------------------------------*/
12
13#include "exception.h"
14#include "fpu_emu.h"
15
Ingo Molnare8d591d2008-01-30 13:30:12 +010016int FPU_to_exp16(FPU_REG const *a, FPU_REG *x)
Linus Torvalds1da177e2005-04-16 15:20:36 -070017{
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010018 int sign = getsign(a);
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010020 *(long long *)&(x->sigl) = *(const long long *)&(a->sigl);
Linus Torvalds1da177e2005-04-16 15:20:36 -070021
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010022 /* Set up the exponent as a 16 bit quantity. */
23 setexponent16(x, exponent(a));
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010025 if (exponent16(x) == EXP_UNDER) {
26 /* The number is a de-normal or pseudodenormal. */
27 /* We only deal with the significand and exponent. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010029 if (x->sigh & 0x80000000) {
30 /* Is a pseudodenormal. */
31 /* This is non-80486 behaviour because the number
32 loses its 'denormal' identity. */
33 addexponent(x, 1);
34 } else {
35 /* Is a denormal. */
36 addexponent(x, 1);
37 FPU_normalize_nuo(x);
38 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 }
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010040
41 if (!(x->sigh & 0x80000000)) {
42 EXCEPTION(EX_INTERNAL | 0x180);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Ingo Molnar3d0d14f2008-01-30 13:30:11 +010045 return sign;
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}