2019-05-31 01:09:55 -07:00
/* SPDX-License-Identifier: GPL-2.0-only */
2005-04-16 15:20:36 -07:00
/*
* IEEE754 floating point
* double precision internal header file
*/
/*
* MIPS floating point support
* Copyright ( C ) 1994 - 2000 Algorithmics Ltd .
*/
2014-04-16 00:47:59 +02:00
# include <linux/compiler.h>
2005-04-16 15:20:36 -07:00
# include "ieee754int.h"
# define assert(expr) ((void)0)
2014-04-22 16:33:07 +02: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)
2014-04-25 15:48:40 +02:00
# define DPSIGN(dp) (dp.sign)
# define DPBEXP(dp) (dp.bexp)
# define DPMANT(dp) (dp.mant)
2014-04-22 16:33:07 +02:00
2014-04-22 16:52:01 +02:00
static inline int ieee754dp_finite ( union ieee754dp x )
{
return DPBEXP ( x ) ! = DP_EMAX + 1 + DP_EBIAS ;
}
2005-04-16 15:20:36 -07:00
/* 3bit extended double precision sticky right shift */
# define XDPSRS(v,rs) \
2014-04-22 15:51:55 +02:00
( ( rs > ( DP_FBITS + 3 ) ) ? 1 : ( ( v ) > > ( rs ) ) | ( ( v ) < < ( 64 - ( rs ) ) ! = 0 ) )
2005-04-16 15:20:36 -07:00
# define XDPSRSX1() \
2014-04-16 11:00:12 +02:00
( xe + + , ( xm = ( xm > > 1 ) | ( xm & 1 ) ) )
2005-04-16 15:20:36 -07:00
# define XDPSRS1(v) \
2014-04-16 11:00:12 +02:00
( ( ( v ) > > 1 ) | ( ( v ) & 1 ) )
2005-04-16 15:20:36 -07:00
2017-11-02 12:14:01 +01:00
/* 32bit * 32bit => 64bit unsigned integer multiplication */
# define DPXMULT(x, y) ((u64)(x) * (u64)y)
2005-04-16 15:20:36 -07:00
/* convert denormal to normalized with extended exponent */
# define DPDNORMx(m,e) \
2014-04-22 15:51:55 +02:00
while ( ( m > > DP_FBITS ) = = 0 ) { m < < = 1 ; e - - ; }
2007-10-11 23:46:15 +01:00
# define DPDNORMX DPDNORMx(xm, xe)
# define DPDNORMY DPDNORMx(ym, ye)
2016-04-21 14:04:51 +01:00
# define DPDNORMZ DPDNORMx(zm, ze)
2005-04-16 15:20:36 -07:00
2014-04-16 01:31:11 +02:00
static inline union ieee754dp builddp ( int s , int bx , u64 m )
2005-04-16 15:20:36 -07:00
{
2014-04-16 01:31:11 +02:00
union ieee754dp r ;
2005-04-16 15:20:36 -07:00
assert ( ( s ) = = 0 | | ( s ) = = 1 ) ;
assert ( ( bx ) > = DP_EMIN - 1 + DP_EBIAS
& & ( bx ) < = DP_EMAX + 1 + DP_EBIAS ) ;
2014-04-22 15:51:55 +02:00
assert ( ( ( m ) > > DP_FBITS ) = = 0 ) ;
2005-04-16 15:20:36 -07:00
2014-04-25 15:48:40 +02:00
r . sign = s ;
r . bexp = bx ;
r . mant = m ;
2005-04-16 15:20:36 -07:00
return r ;
}
2014-04-25 03:19:57 +02:00
extern union ieee754dp __cold ieee754dp_nanxcpt ( union ieee754dp ) ;
2014-04-16 01:31:11 +02:00
extern union ieee754dp ieee754dp_format ( int , int , u64 ) ;