Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   1) /* Software floating-point emulation.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   2)    Definitions for IEEE Double Precision
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   3)    Copyright (C) 1997,1998,1999 Free Software Foundation, Inc.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   4)    This file is part of the GNU C Library.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   5)    Contributed by Richard Henderson (rth@cygnus.com),
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   6) 		  Jakub Jelinek (jj@ultra.linux.cz),
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   7) 		  David S. Miller (davem@redhat.com) and
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   8) 		  Peter Maydell (pmaydell@chiark.greenend.org.uk).
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300   9) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  10)    The GNU C Library is free software; you can redistribute it and/or
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  11)    modify it under the terms of the GNU Library General Public License as
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  12)    published by the Free Software Foundation; either version 2 of the
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  13)    License, or (at your option) any later version.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  14) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  15)    The GNU C Library is distributed in the hope that it will be useful,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  16)    but WITHOUT ANY WARRANTY; without even the implied warranty of
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  17)    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  18)    Library General Public License for more details.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  19) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  20)    You should have received a copy of the GNU Library General Public
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  21)    License along with the GNU C Library; see the file COPYING.LIB.  If
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  22)    not, write to the Free Software Foundation, Inc.,
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  23)    59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  24) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  25) #ifndef    __MATH_EMU_DOUBLE_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  26) #define    __MATH_EMU_DOUBLE_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  27) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  28) #if _FP_W_TYPE_SIZE < 32
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  29) #error "Here's a nickel kid.  Go buy yourself a real computer."
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  30) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  31) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  32) #if _FP_W_TYPE_SIZE < 64
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  33) #define _FP_FRACTBITS_D		(2 * _FP_W_TYPE_SIZE)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  34) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  35) #define _FP_FRACTBITS_D		_FP_W_TYPE_SIZE
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  36) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  37) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  38) #define _FP_FRACBITS_D		53
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  39) #define _FP_FRACXBITS_D		(_FP_FRACTBITS_D - _FP_FRACBITS_D)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  40) #define _FP_WFRACBITS_D		(_FP_WORKBITS + _FP_FRACBITS_D)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  41) #define _FP_WFRACXBITS_D	(_FP_FRACTBITS_D - _FP_WFRACBITS_D)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  42) #define _FP_EXPBITS_D		11
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  43) #define _FP_EXPBIAS_D		1023
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  44) #define _FP_EXPMAX_D		2047
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  45) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  46) #define _FP_QNANBIT_D		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  47) 	((_FP_W_TYPE)1 << (_FP_FRACBITS_D-2) % _FP_W_TYPE_SIZE)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  48) #define _FP_IMPLBIT_D		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  49) 	((_FP_W_TYPE)1 << (_FP_FRACBITS_D-1) % _FP_W_TYPE_SIZE)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  50) #define _FP_OVERFLOW_D		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  51) 	((_FP_W_TYPE)1 << _FP_WFRACBITS_D % _FP_W_TYPE_SIZE)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  52) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  53) #if _FP_W_TYPE_SIZE < 64
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  54) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  55) union _FP_UNION_D
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  56) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  57)   double flt;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  58)   struct {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  59) #if __BYTE_ORDER == __BIG_ENDIAN
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  60)     unsigned sign  : 1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  61)     unsigned exp   : _FP_EXPBITS_D;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  62)     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  63)     unsigned frac0 : _FP_W_TYPE_SIZE;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  64) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  65)     unsigned frac0 : _FP_W_TYPE_SIZE;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  66)     unsigned frac1 : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0) - _FP_W_TYPE_SIZE;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  67)     unsigned exp   : _FP_EXPBITS_D;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  68)     unsigned sign  : 1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  69) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  70)   } bits __attribute__((packed));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  71) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  72) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  73) #define FP_DECL_D(X)		_FP_DECL(2,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  74) #define FP_UNPACK_RAW_D(X,val)	_FP_UNPACK_RAW_2(D,X,val)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  75) #define FP_UNPACK_RAW_DP(X,val)	_FP_UNPACK_RAW_2_P(D,X,val)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  76) #define FP_PACK_RAW_D(val,X)	_FP_PACK_RAW_2(D,val,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  77) #define FP_PACK_RAW_DP(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  78)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  79)     if (!FP_INHIBIT_RESULTS)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  80)       _FP_PACK_RAW_2_P(D,val,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  81)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  82) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  83) #define FP_UNPACK_D(X,val)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  84)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  85)     _FP_UNPACK_RAW_2(D,X,val);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  86)     _FP_UNPACK_CANONICAL(D,2,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  87)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  88) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  89) #define FP_UNPACK_DP(X,val)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  90)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  91)     _FP_UNPACK_RAW_2_P(D,X,val);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  92)     _FP_UNPACK_CANONICAL(D,2,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  93)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  94) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  95) #define FP_PACK_D(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  96)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  97)     _FP_PACK_CANONICAL(D,2,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  98)     _FP_PACK_RAW_2(D,val,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  99)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 100) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 101) #define FP_PACK_DP(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 102)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 103)     _FP_PACK_CANONICAL(D,2,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 104)     if (!FP_INHIBIT_RESULTS)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 105)       _FP_PACK_RAW_2_P(D,val,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 106)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 107) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 108) #define FP_ISSIGNAN_D(X)		_FP_ISSIGNAN(D,2,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 109) #define FP_NEG_D(R,X)			_FP_NEG(D,2,R,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 110) #define FP_ADD_D(R,X,Y)			_FP_ADD(D,2,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 111) #define FP_SUB_D(R,X,Y)			_FP_SUB(D,2,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 112) #define FP_MUL_D(R,X,Y)			_FP_MUL(D,2,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 113) #define FP_DIV_D(R,X,Y)			_FP_DIV(D,2,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 114) #define FP_SQRT_D(R,X)			_FP_SQRT(D,2,R,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 115) #define _FP_SQRT_MEAT_D(R,S,T,X,Q)	_FP_SQRT_MEAT_2(R,S,T,X,Q)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 116) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 117) #define FP_CMP_D(r,X,Y,un)	_FP_CMP(D,2,r,X,Y,un)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 118) #define FP_CMP_EQ_D(r,X,Y)	_FP_CMP_EQ(D,2,r,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 119) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 120) #define FP_TO_INT_D(r,X,rsz,rsg)	_FP_TO_INT(D,2,r,X,rsz,rsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 121) #define FP_TO_INT_ROUND_D(r,X,rsz,rsg)	_FP_TO_INT_ROUND(D,2,r,X,rsz,rsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 122) #define FP_FROM_INT_D(X,r,rs,rt)	_FP_FROM_INT(D,2,X,r,rs,rt)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 123) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 124) #define _FP_FRAC_HIGH_D(X)	_FP_FRAC_HIGH_2(X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 125) #define _FP_FRAC_HIGH_RAW_D(X)	_FP_FRAC_HIGH_2(X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 126) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 127) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 128) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 129) union _FP_UNION_D
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 130) {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 131)   double flt;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 132)   struct {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 133) #if __BYTE_ORDER == __BIG_ENDIAN
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 134)     unsigned sign : 1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 135)     unsigned exp  : _FP_EXPBITS_D;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 136)     unsigned long frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 137) #else
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 138)     unsigned long frac : _FP_FRACBITS_D - (_FP_IMPLBIT_D != 0);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 139)     unsigned exp  : _FP_EXPBITS_D;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 140)     unsigned sign : 1;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 141) #endif
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 142)   } bits __attribute__((packed));
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 143) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 144) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 145) #define FP_DECL_D(X)		_FP_DECL(1,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 146) #define FP_UNPACK_RAW_D(X,val)	_FP_UNPACK_RAW_1(D,X,val)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 147) #define FP_UNPACK_RAW_DP(X,val)	_FP_UNPACK_RAW_1_P(D,X,val)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 148) #define FP_PACK_RAW_D(val,X)	_FP_PACK_RAW_1(D,val,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 149) #define FP_PACK_RAW_DP(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 150)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 151)     if (!FP_INHIBIT_RESULTS)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 152)       _FP_PACK_RAW_1_P(D,val,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 153)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 154) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 155) #define FP_UNPACK_D(X,val)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 156)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 157)     _FP_UNPACK_RAW_1(D,X,val);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 158)     _FP_UNPACK_CANONICAL(D,1,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 159)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 160) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 161) #define FP_UNPACK_DP(X,val)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 162)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 163)     _FP_UNPACK_RAW_1_P(D,X,val);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 164)     _FP_UNPACK_CANONICAL(D,1,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 165)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 166) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 167) #define FP_PACK_D(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 168)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 169)     _FP_PACK_CANONICAL(D,1,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 170)     _FP_PACK_RAW_1(D,val,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 171)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 172) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 173) #define FP_PACK_DP(val,X)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 174)   do {					\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 175)     _FP_PACK_CANONICAL(D,1,X);		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 176)     if (!FP_INHIBIT_RESULTS)		\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 177)       _FP_PACK_RAW_1_P(D,val,X);	\
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 178)   } while (0)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 179) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 180) #define FP_ISSIGNAN_D(X)		_FP_ISSIGNAN(D,1,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 181) #define FP_NEG_D(R,X)			_FP_NEG(D,1,R,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 182) #define FP_ADD_D(R,X,Y)			_FP_ADD(D,1,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 183) #define FP_SUB_D(R,X,Y)			_FP_SUB(D,1,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 184) #define FP_MUL_D(R,X,Y)			_FP_MUL(D,1,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 185) #define FP_DIV_D(R,X,Y)			_FP_DIV(D,1,R,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 186) #define FP_SQRT_D(R,X)			_FP_SQRT(D,1,R,X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 187) #define _FP_SQRT_MEAT_D(R,S,T,X,Q)	_FP_SQRT_MEAT_1(R,S,T,X,Q)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 188) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 189) /* The implementation of _FP_MUL_D and _FP_DIV_D should be chosen by
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 190)    the target machine.  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 191) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 192) #define FP_CMP_D(r,X,Y,un)	_FP_CMP(D,1,r,X,Y,un)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 193) #define FP_CMP_EQ_D(r,X,Y)	_FP_CMP_EQ(D,1,r,X,Y)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 194) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 195) #define FP_TO_INT_D(r,X,rsz,rsg)	_FP_TO_INT(D,1,r,X,rsz,rsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 196) #define FP_TO_INT_ROUND_D(r,X,rsz,rsg)	_FP_TO_INT_ROUND(D,1,r,X,rsz,rsg)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 197) #define FP_FROM_INT_D(X,r,rs,rt)	_FP_FROM_INT(D,1,X,r,rs,rt)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 198) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 199) #define _FP_FRAC_HIGH_D(X)	_FP_FRAC_HIGH_1(X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 200) #define _FP_FRAC_HIGH_RAW_D(X)	_FP_FRAC_HIGH_1(X)
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 201) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 202) #endif /* W_TYPE_SIZE < 64 */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 203) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 204) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 205) #endif /* __MATH_EMU_DOUBLE_H__ */