ieee754dp.h 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
/*
 * 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.
 *
 * ########################################################################
 */

27
#include <linux/compiler.h>
L
Linus Torvalds 已提交
28 29 30 31 32

#include "ieee754int.h"

#define assert(expr) ((void)0)

33 34 35 36 37 38 39 40 41 42 43 44 45 46
#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)

L
Linus Torvalds 已提交
47 48
/* 3bit extended double precision sticky right shift */
#define XDPSRS(v,rs)	\
49
	((rs > (DP_FBITS+3))?1:((v) >> (rs)) | ((v) << (64-(rs)) != 0))
L
Linus Torvalds 已提交
50 51

#define XDPSRSX1() \
52
	(xe++, (xm = (xm >> 1) | (xm & 1)))
L
Linus Torvalds 已提交
53 54

#define XDPSRS1(v)	\
55
	(((v) >> 1) | ((v) & 1))
L
Linus Torvalds 已提交
56 57 58

/* convert denormal to normalized with extended exponent */
#define DPDNORMx(m,e) \
59
	while ((m >> DP_FBITS) == 0) { m <<= 1; e--; }
60 61
#define DPDNORMX	DPDNORMx(xm, xe)
#define DPDNORMY	DPDNORMx(ym, ye)
L
Linus Torvalds 已提交
62

63
static inline union ieee754dp builddp(int s, int bx, u64 m)
L
Linus Torvalds 已提交
64
{
65
	union ieee754dp r;
L
Linus Torvalds 已提交
66 67 68 69

	assert((s) == 0 || (s) == 1);
	assert((bx) >= DP_EMIN - 1 + DP_EBIAS
	       && (bx) <= DP_EMAX + 1 + DP_EBIAS);
70
	assert(((m) >> DP_FBITS) == 0);
L
Linus Torvalds 已提交
71 72 73 74 75 76 77

	r.parts.sign = s;
	r.parts.bexp = bx;
	r.parts.mant = m;
	return r;
}

78 79
extern int ieee754dp_isnan(union ieee754dp);
extern int ieee754dp_issnan(union ieee754dp);
80 81
extern int __cold ieee754si_xcpt(int, const char *, ...);
extern s64 __cold ieee754di_xcpt(s64, const char *, ...);
82 83 84 85
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);
L
Linus Torvalds 已提交
86 87


88 89 90
#define DPNORMRET2(s, e, m, name, a0, a1)				\
{									\
	union ieee754dp V = ieee754dp_format(s, e, m);			\
91
	if (ieee754_tstx())						\
92 93 94
		return ieee754dp_xcpt(V, name, a0, a1);			\
	else								\
		return V;						\
L
Linus Torvalds 已提交
95 96
}

97
#define DPNORMRET1(s, e, m, name, a0)  DPNORMRET2(s, e, m, name, a0, a0)