// SPDX-License-Identifier: GPL-2.01/*---------------------------------------------------------------------------+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 [email protected] |9| |10| |11+---------------------------------------------------------------------------*/1213#include "exception.h"14#include "fpu_emu.h"1516int FPU_to_exp16(FPU_REG const *a, FPU_REG *x)17{18int sign = getsign(a);1920*(long long *)&(x->sigl) = *(const long long *)&(a->sigl);2122/* Set up the exponent as a 16 bit quantity. */23setexponent16(x, exponent(a));2425if (exponent16(x) == EXP_UNDER) {26/* The number is a de-normal or pseudodenormal. */27/* We only deal with the significand and exponent. */2829if (x->sigh & 0x80000000) {30/* Is a pseudodenormal. */31/* This is non-80486 behaviour because the number32loses its 'denormal' identity. */33addexponent(x, 1);34} else {35/* Is a denormal. */36addexponent(x, 1);37FPU_normalize_nuo(x);38}39}4041if (!(x->sigh & 0x80000000)) {42EXCEPTION(EX_INTERNAL | 0x180);43}4445return sign;46}474849