mirror of
https://github.com/86Box/86Box.git
synced 2026-02-24 10:28:19 -07:00
Upgrade to softfloat3e.
This should solve licensing problems as well.
This commit is contained in:
199
src/cpu/softfloat3e/extF80_rem.cc
Normal file
199
src/cpu/softfloat3e/extF80_rem.cc
Normal file
@@ -0,0 +1,199 @@
|
||||
/*============================================================================
|
||||
|
||||
This C source file is part of the SoftFloat IEEE Floating-Point Arithmetic
|
||||
Package, Release 3e, by John R. Hauser.
|
||||
|
||||
Copyright 2011, 2012, 2013, 2014, 2015, 2016, 2017 The Regents of the
|
||||
University of California. All rights reserved.
|
||||
|
||||
Redistribution and use in source and binary forms, with or without
|
||||
modification, are permitted provided that the following conditions are met:
|
||||
|
||||
1. Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions, and the following disclaimer.
|
||||
|
||||
2. Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions, and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
|
||||
3. Neither the name of the University nor the names of its contributors may
|
||||
be used to endorse or promote products derived from this software without
|
||||
specific prior written permission.
|
||||
|
||||
THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS", AND ANY
|
||||
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY
|
||||
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
||||
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
=============================================================================*/
|
||||
|
||||
#include <stdint.h>
|
||||
#include "internals.h"
|
||||
#include "primitives.h"
|
||||
#include "specialize.h"
|
||||
#include "softfloat.h"
|
||||
|
||||
extFloat80_t extF80_rem(extFloat80_t a, extFloat80_t b, struct softfloat_status_t *status)
|
||||
{
|
||||
uint16_t uiA64;
|
||||
uint64_t uiA0;
|
||||
bool signA;
|
||||
int32_t expA;
|
||||
uint64_t sigA;
|
||||
uint16_t uiB64;
|
||||
uint64_t uiB0;
|
||||
int32_t expB;
|
||||
uint64_t sigB;
|
||||
struct exp32_sig64 normExpSig;
|
||||
int32_t expDiff;
|
||||
struct uint128 rem, shiftedSigB;
|
||||
uint32_t q, recip32;
|
||||
uint64_t q64;
|
||||
struct uint128 term, altRem, meanRem;
|
||||
bool signRem;
|
||||
|
||||
// handle unsupported extended double-precision floating encodings
|
||||
if (extF80_isUnsupported(a) || extF80_isUnsupported(b))
|
||||
goto invalid;
|
||||
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
uiA64 = a.signExp;
|
||||
uiA0 = a.signif;
|
||||
signA = signExtF80UI64(uiA64);
|
||||
expA = expExtF80UI64(uiA64);
|
||||
sigA = uiA0;
|
||||
uiB64 = b.signExp;
|
||||
uiB0 = b.signif;
|
||||
expB = expExtF80UI64(uiB64);
|
||||
sigB = uiB0;
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
if (expA == 0x7FFF) {
|
||||
if ((sigA & UINT64_C(0x7FFFFFFFFFFFFFFF)) || ((expB == 0x7FFF) && (sigB & UINT64_C(0x7FFFFFFFFFFFFFFF)))) {
|
||||
goto propagateNaN;
|
||||
}
|
||||
goto invalid;
|
||||
}
|
||||
if (expB == 0x7FFF) {
|
||||
if (sigB & UINT64_C(0x7FFFFFFFFFFFFFFF)) goto propagateNaN;
|
||||
/*--------------------------------------------------------------------
|
||||
| Argument b is an infinity. Doubling `expB' is an easy way to ensure
|
||||
| that `expDiff' later is less than -1, which will result in returning
|
||||
| a canonicalized version of argument a.
|
||||
*--------------------------------------------------------------------*/
|
||||
expB += expB;
|
||||
}
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
if (! expB) {
|
||||
expB = 1;
|
||||
if (sigB)
|
||||
softfloat_raiseFlags(status, softfloat_flag_denormal);
|
||||
}
|
||||
if (! (sigB & UINT64_C(0x8000000000000000))) {
|
||||
if (! sigB) goto invalid;
|
||||
normExpSig = softfloat_normSubnormalExtF80Sig(sigB);
|
||||
expB += normExpSig.exp;
|
||||
sigB = normExpSig.sig;
|
||||
}
|
||||
if (! expA) {
|
||||
expA = 1;
|
||||
if (sigA)
|
||||
softfloat_raiseFlags(status, softfloat_flag_denormal);
|
||||
}
|
||||
if (! (sigA & UINT64_C(0x8000000000000000))) {
|
||||
if (! sigA) {
|
||||
expA = 0;
|
||||
goto copyA;
|
||||
}
|
||||
normExpSig = softfloat_normSubnormalExtF80Sig(sigA);
|
||||
expA += normExpSig.exp;
|
||||
sigA = normExpSig.sig;
|
||||
}
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
expDiff = expA - expB;
|
||||
if (expDiff < -1) goto copyA;
|
||||
rem = softfloat_shortShiftLeft128(0, sigA, 32);
|
||||
shiftedSigB = softfloat_shortShiftLeft128(0, sigB, 32);
|
||||
if (expDiff < 1) {
|
||||
if (expDiff) {
|
||||
--expB;
|
||||
shiftedSigB = softfloat_shortShiftLeft128(0, sigB, 33);
|
||||
q = 0;
|
||||
} else {
|
||||
q = (sigB <= sigA);
|
||||
if (q) {
|
||||
rem = softfloat_sub128(rem.v64, rem.v0, shiftedSigB.v64, shiftedSigB.v0);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
recip32 = softfloat_approxRecip32_1(sigB>>32);
|
||||
expDiff -= 30;
|
||||
for (;;) {
|
||||
q64 = (uint64_t) (uint32_t) (rem.v64>>2) * recip32;
|
||||
if (expDiff < 0) break;
|
||||
q = (q64 + 0x80000000)>>32;
|
||||
rem = softfloat_shortShiftLeft128(rem.v64, rem.v0, 29);
|
||||
term = softfloat_mul64ByShifted32To128(sigB, q);
|
||||
rem = softfloat_sub128(rem.v64, rem.v0, term.v64, term.v0);
|
||||
if (rem.v64 & UINT64_C(0x8000000000000000)) {
|
||||
rem = softfloat_add128(rem.v64, rem.v0, shiftedSigB.v64, shiftedSigB.v0);
|
||||
}
|
||||
expDiff -= 29;
|
||||
}
|
||||
/*--------------------------------------------------------------------
|
||||
| (`expDiff' cannot be less than -29 here.)
|
||||
*--------------------------------------------------------------------*/
|
||||
q = (uint32_t) (q64>>32)>>(~expDiff & 31);
|
||||
rem = softfloat_shortShiftLeft128(rem.v64, rem.v0, expDiff + 30);
|
||||
term = softfloat_mul64ByShifted32To128(sigB, q);
|
||||
rem = softfloat_sub128(rem.v64, rem.v0, term.v64, term.v0);
|
||||
if (rem.v64 & UINT64_C(0x8000000000000000)) {
|
||||
altRem = softfloat_add128(rem.v64, rem.v0, shiftedSigB.v64, shiftedSigB.v0);
|
||||
goto selectRem;
|
||||
}
|
||||
}
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
do {
|
||||
altRem = rem;
|
||||
++q;
|
||||
rem = softfloat_sub128(rem.v64, rem.v0, shiftedSigB.v64, shiftedSigB.v0);
|
||||
} while (! (rem.v64 & UINT64_C(0x8000000000000000)));
|
||||
selectRem:
|
||||
meanRem = softfloat_add128(rem.v64, rem.v0, altRem.v64, altRem.v0);
|
||||
if ((meanRem.v64 & UINT64_C(0x8000000000000000)) || (! (meanRem.v64 | meanRem.v0) && (q & 1))) {
|
||||
rem = altRem;
|
||||
}
|
||||
signRem = signA;
|
||||
if (rem.v64 & UINT64_C(0x8000000000000000)) {
|
||||
signRem = ! signRem;
|
||||
rem = softfloat_sub128(0, 0, rem.v64, rem.v0);
|
||||
}
|
||||
return softfloat_normRoundPackToExtF80(signRem, rem.v64 | rem.v0 ? expB + 32 : 0, rem.v64, rem.v0, 80, status);
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
propagateNaN:
|
||||
return softfloat_propagateNaNExtF80UI(uiA64, uiA0, uiB64, uiB0, status);
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
invalid:
|
||||
softfloat_raiseFlags(status, softfloat_flag_invalid);
|
||||
return packToExtF80_twoargs(defaultNaNExtF80UI64, defaultNaNExtF80UI0);
|
||||
/*------------------------------------------------------------------------
|
||||
*------------------------------------------------------------------------*/
|
||||
copyA:
|
||||
if (expA < 1) {
|
||||
sigA >>= 1 - expA;
|
||||
expA = 0;
|
||||
}
|
||||
return packToExtF80(signA, expA, sigA);
|
||||
}
|
||||
Reference in New Issue
Block a user