2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* IEEE754 floating point
|
|
|
|
* double precision internal header file
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* MIPS floating point support
|
|
|
|
* Copyright (C) 1994-2000 Algorithmics Ltd.
|
|
|
|
*
|
|
|
|
* ########################################################################
|
|
|
|
*
|
|
|
|
* This program is free software; you can distribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License (Version 2) as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
|
|
|
|
*
|
|
|
|
* ########################################################################
|
|
|
|
*/
|
|
|
|
|
2014-04-16 06:47:59 +08:00
|
|
|
#include <linux/compiler.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include "ieee754int.h"
|
|
|
|
|
|
|
|
#define assert(expr) ((void)0)
|
|
|
|
|
2014-04-22 22:33:07 +08:00
|
|
|
#define DP_EBIAS 1023
|
|
|
|
#define DP_EMIN (-1022)
|
|
|
|
#define DP_EMAX 1023
|
|
|
|
#define DP_FBITS 52
|
|
|
|
#define DP_MBITS 52
|
|
|
|
|
|
|
|
#define DP_MBIT(x) ((u64)1 << (x))
|
|
|
|
#define DP_HIDDEN_BIT DP_MBIT(DP_FBITS)
|
|
|
|
#define DP_SIGN_BIT DP_MBIT(63)
|
|
|
|
|
|
|
|
#define DPSIGN(dp) (dp.parts.sign)
|
|
|
|
#define DPBEXP(dp) (dp.parts.bexp)
|
|
|
|
#define DPMANT(dp) (dp.parts.mant)
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/* 3bit extended double precision sticky right shift */
|
|
|
|
#define XDPSRS(v,rs) \
|
2014-04-22 21:51:55 +08:00
|
|
|
((rs > (DP_FBITS+3))?1:((v) >> (rs)) | ((v) << (64-(rs)) != 0))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define XDPSRSX1() \
|
2014-04-16 17:00:12 +08:00
|
|
|
(xe++, (xm = (xm >> 1) | (xm & 1)))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define XDPSRS1(v) \
|
2014-04-16 17:00:12 +08:00
|
|
|
(((v) >> 1) | ((v) & 1))
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* convert denormal to normalized with extended exponent */
|
|
|
|
#define DPDNORMx(m,e) \
|
2014-04-22 21:51:55 +08:00
|
|
|
while ((m >> DP_FBITS) == 0) { m <<= 1; e--; }
|
2007-10-12 06:46:15 +08:00
|
|
|
#define DPDNORMX DPDNORMx(xm, xe)
|
|
|
|
#define DPDNORMY DPDNORMx(ym, ye)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2014-04-16 07:31:11 +08:00
|
|
|
static inline union ieee754dp builddp(int s, int bx, u64 m)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2014-04-16 07:31:11 +08:00
|
|
|
union ieee754dp r;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
assert((s) == 0 || (s) == 1);
|
|
|
|
assert((bx) >= DP_EMIN - 1 + DP_EBIAS
|
|
|
|
&& (bx) <= DP_EMAX + 1 + DP_EBIAS);
|
2014-04-22 21:51:55 +08:00
|
|
|
assert(((m) >> DP_FBITS) == 0);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
r.parts.sign = s;
|
|
|
|
r.parts.bexp = bx;
|
|
|
|
r.parts.mant = m;
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
2014-04-16 07:31:11 +08:00
|
|
|
extern int ieee754dp_isnan(union ieee754dp);
|
|
|
|
extern int ieee754dp_issnan(union ieee754dp);
|
2014-04-16 06:47:59 +08:00
|
|
|
extern int __cold ieee754si_xcpt(int, const char *, ...);
|
|
|
|
extern s64 __cold ieee754di_xcpt(s64, const char *, ...);
|
2014-04-16 07:31:11 +08:00
|
|
|
extern union ieee754dp __cold ieee754dp_xcpt(union ieee754dp, const char *, ...);
|
|
|
|
extern union ieee754dp __cold ieee754dp_nanxcpt(union ieee754dp, const char *, ...);
|
|
|
|
extern union ieee754dp ieee754dp_bestnan(union ieee754dp, union ieee754dp);
|
|
|
|
extern union ieee754dp ieee754dp_format(int, int, u64);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
2014-04-16 17:00:12 +08:00
|
|
|
#define DPNORMRET2(s, e, m, name, a0, a1) \
|
|
|
|
{ \
|
|
|
|
union ieee754dp V = ieee754dp_format(s, e, m); \
|
2014-04-19 06:36:32 +08:00
|
|
|
if (ieee754_tstx()) \
|
2014-04-16 17:00:12 +08:00
|
|
|
return ieee754dp_xcpt(V, name, a0, a1); \
|
|
|
|
else \
|
|
|
|
return V; \
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-10-12 06:46:15 +08:00
|
|
|
#define DPNORMRET1(s, e, m, name, a0) DPNORMRET2(s, e, m, name, a0, a0)
|