* varasm.c (assemble_real): Use REAL_VALUE_TO_x and assemble_integer
[official-gcc.git] / gcc / config / pa / quadlib.c
blob358b9b448bbdeb656e02268d501045411b20f3d1
1 /* Subroutines for long double support.
2 Copyright (C) 2000 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC 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 GNU CC 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 GNU CC; see the file COPYING. If not, write to
27 the Free Software Foundation, 59 Temple Place - Suite 330,
28 Boston, MA 02111-1307, USA. */
30 int _U_Qfcmp (long double a, long double b, int);
31 long _U_Qfcnvfxt_quad_to_sgl (long double);
33 int _U_Qfeq (long double, long double);
34 int _U_Qfne (long double, long double);
35 int _U_Qfgt (long double, long double);
36 int _U_Qfge (long double, long double);
37 int _U_Qflt (long double, long double);
38 int _U_Qfle (long double, long double);
39 int _U_Qfcomp (long double, long double);
40 long double _U_Qfneg (long double);
41 #ifdef __LP64__
42 int __U_Qfcnvfxt_quad_to_sgl (long double);
43 #endif
44 unsigned int _U_Qfcnvfxt_quad_to_usgl(long double);
46 int
47 _U_Qfeq (long double a, long double b)
49 return (_U_Qfcmp (a, b, 4) != 0);
52 int
53 _U_Qfne (long double a, long double b)
55 return (_U_Qfcmp (a, b, 4) == 0);
58 int
59 _U_Qfgt (long double a, long double b)
61 return (_U_Qfcmp (a, b, 17) != 0);
64 int
65 _U_Qfge (long double a, long double b)
67 return (_U_Qfcmp (a, b, 21) != 0);
70 int
71 _U_Qflt (long double a, long double b)
73 return (_U_Qfcmp (a, b, 9) != 0);
76 int
77 _U_Qfle (long double a, long double b)
79 return (_U_Qfcmp (a, b, 13) != 0);
82 int
83 _U_Qfcomp (long double a, long double b)
85 if (_U_Qfcmp (a, b, 4) == 0)
86 return 0;
88 return (_U_Qfcmp (a, b, 22) != 0 ? 1 : -1);
92 long double
93 _U_Qfneg (long double a)
95 return (0.0L - a);
98 #ifdef __LP64__
99 /* This routine is only necessary for the PA64 port; for reasons unknown
100 _U_Qfcnvfxt_quad_to_sgl returns the integer in the high 32bits of the
101 return value. Ugh. */
103 __U_Qfcnvfxt_quad_to_sgl (long double a)
105 return _U_Qfcnvfxt_quad_to_sgl (a) >> 32;
107 #endif
109 /* HP only has signed conversion in library, so need to synthesize an
110 unsigned version */
111 unsigned int
112 _U_Qfcnvfxt_quad_to_usgl(long double a)
114 extern long long _U_Qfcnvfxt_quad_to_dbl (long double a);
115 return (unsigned int) _U_Qfcnvfxt_quad_to_dbl (a);