thinkpad-acpi: drop HKEY event 0x5010
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / x86 / math-emu / reg_convert.c
blob108060779977f3dbc417ee219fce7576aa47b62f
1 /*---------------------------------------------------------------------------+
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 +---------------------------------------------------------------------------*/
13 #include "exception.h"
14 #include "fpu_emu.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. */
33 addexponent(x, 1);
34 } else {
35 /* Is a denormal. */
36 addexponent(x, 1);
37 FPU_normalize_nuo(x);
41 if (!(x->sigh & 0x80000000)) {
42 EXCEPTION(EX_INTERNAL | 0x180);
45 return sign;