No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / config / pa / quadlib.c
blob077b3f5c7139cc0e7f31ccb0a623036f8b21cfc8
1 /* Subroutines for long double support.
2 Copyright (C) 2000, 2002, 2004, 2005, 2006 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
9 any later version.
11 In addition to the permissions in the GNU General Public License, the
12 Free Software Foundation gives you unlimited permission to link the
13 compiled version of this file into combinations with other programs,
14 and to distribute those combinations without any restriction coming
15 from the use of this file. (The General Public License restrictions
16 do apply in other respects; for example, they cover modification of
17 the file, and distribution when not linked into a combine
18 executable.)
20 GCC is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with GCC; see the file COPYING. If not, write to
27 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
28 Boston, MA 02110-1301, USA. */
30 /* HPUX TFmode compare requires a library call to _U_Qfcmp. It takes
31 a magic number as its third argument which indicates what to do.
32 The return value is an integer to be compared against zero. The
33 comparison conditions are the same as those listed in Table 8-12
34 of the PA-RISC 2.0 Architecture book for the fcmp instruction. */
36 /* Raise FP_INVALID on SNaN as a side effect. */
37 #define QCMP_INV 1
39 /* Comparison relations. */
40 #define QCMP_UNORD 2
41 #define QCMP_EQ 4
42 #define QCMP_LT 8
43 #define QCMP_GT 16
45 int _U_Qfcmp (long double a, long double b, int);
46 long _U_Qfcnvfxt_quad_to_sgl (long double);
48 int _U_Qfeq (long double, long double);
49 int _U_Qfne (long double, long double);
50 int _U_Qfgt (long double, long double);
51 int _U_Qfge (long double, long double);
52 int _U_Qflt (long double, long double);
53 int _U_Qfle (long double, long double);
54 int _U_Qfltgt (long double, long double);
55 int _U_Qfunle (long double, long double);
56 int _U_Qfunlt (long double, long double);
57 int _U_Qfunge (long double, long double);
58 int _U_Qfungt (long double, long double);
59 int _U_Qfuneq (long double, long double);
60 int _U_Qfunord (long double, long double);
61 int _U_Qford (long double, long double);
63 int _U_Qfcomp (long double, long double);
65 long double _U_Qfneg (long double);
67 #ifdef __LP64__
68 int __U_Qfcnvfxt_quad_to_sgl (long double);
69 #endif
70 unsigned int _U_Qfcnvfxt_quad_to_usgl(long double);
71 unsigned long long _U_Qfcnvfxt_quad_to_udbl(long double);
73 int
74 _U_Qfeq (long double a, long double b)
76 return (_U_Qfcmp (a, b, QCMP_EQ) != 0);
79 int
80 _U_Qfne (long double a, long double b)
82 return (_U_Qfcmp (a, b, QCMP_EQ) == 0);
85 int
86 _U_Qfgt (long double a, long double b)
88 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_GT) != 0);
91 int
92 _U_Qfge (long double a, long double b)
94 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_EQ | QCMP_GT) != 0);
97 int
98 _U_Qflt (long double a, long double b)
100 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_LT) != 0);
104 _U_Qfle (long double a, long double b)
106 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_EQ | QCMP_LT) != 0);
110 _U_Qfltgt (long double a, long double b)
112 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_LT | QCMP_GT) != 0);
116 _U_Qfunle (long double a, long double b)
118 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD | QCMP_EQ | QCMP_LT) != 0);
122 _U_Qfunlt (long double a, long double b)
124 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD | QCMP_LT) != 0);
128 _U_Qfunge (long double a, long double b)
130 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD | QCMP_EQ | QCMP_GT) != 0);
134 _U_Qfungt (long double a, long double b)
136 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD | QCMP_GT) != 0);
140 _U_Qfuneq (long double a, long double b)
142 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD | QCMP_EQ) != 0);
146 _U_Qfunord (long double a, long double b)
148 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_UNORD) != 0);
152 _U_Qford (long double a, long double b)
154 return (_U_Qfcmp (a, b, QCMP_INV | QCMP_EQ | QCMP_LT | QCMP_GT) != 0);
158 _U_Qfcomp (long double a, long double b)
160 if (_U_Qfcmp (a, b, QCMP_EQ) == 0)
161 return 0;
163 return (_U_Qfcmp (a, b, QCMP_UNORD | QCMP_EQ | QCMP_GT) != 0 ? 1 : -1);
167 /* Negate long double A. */
168 long double
169 _U_Qfneg (long double a)
171 union
173 long double ld;
174 int i[4];
175 } u;
177 u.ld = a;
178 u.i[0] ^= 0x80000000;
179 return u.ld;
182 #ifdef __LP64__
183 /* This routine is only necessary for the PA64 port; for reasons unknown
184 _U_Qfcnvfxt_quad_to_sgl returns the integer in the high 32bits of the
185 return value. Ugh. */
187 __U_Qfcnvfxt_quad_to_sgl (long double a)
189 return _U_Qfcnvfxt_quad_to_sgl (a) >> 32;
191 #endif
193 /* HP only has signed conversion in library, so need to synthesize an
194 unsigned version */
195 unsigned int
196 _U_Qfcnvfxt_quad_to_usgl(long double a)
198 extern long long _U_Qfcnvfxt_quad_to_dbl (long double a);
199 return (unsigned int) _U_Qfcnvfxt_quad_to_dbl (a);
202 /* HP only has signed conversion in library, so need to synthesize an
203 unsigned version */
204 typedef union {
205 long long unsigned int u[2];
206 long double d[1];
207 } quad_type;
209 unsigned long long
210 _U_Qfcnvfxt_quad_to_udbl(long double a)
212 extern quad_type _U_Qfcnvfxt_quad_to_quad (long double a);
213 quad_type u;
214 u = _U_Qfcnvfxt_quad_to_quad(a);
215 return u.u[1];