hppa: Export main in pr104869.C on hpux
[official-gcc.git] / gcc / d / d-ctfloat.cc
blob15d02b6de7603695fd66bd084b659962d7acb951
1 /* d-ctfloat.cc -- D frontend interface to the gcc back-end.
2 Copyright (C) 2020-2023 Free Software Foundation, Inc.
4 GCC is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
7 any later version.
9 GCC is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with GCC; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>. */
18 #include "config.h"
19 #include "system.h"
20 #include "coretypes.h"
22 #include "dmd/root/ctfloat.h"
23 #include "dmd/target.h"
25 #include "tree.h"
28 /* Implements the CTFloat interface defined by the frontend.
29 Compile-time floating-pointer helper functions. */
31 /* Return the absolute value of R. */
33 real_t
34 CTFloat::fabs (real_t r)
36 real_t x;
37 real_arithmetic (&x.rv (), ABS_EXPR, &r.rv (), NULL);
38 return x.normalize ();
41 /* Return the value of R * 2 ^^ EXP. */
43 real_t
44 CTFloat::ldexp (real_t r, int exp)
46 real_t x;
47 real_ldexp (&x.rv (), &r.rv (), exp);
48 return x.normalize ();
51 /* Return true if longdouble value X is identical to Y. */
53 bool
54 CTFloat::isIdentical (real_t x, real_t y)
56 real_value rx = x.rv ();
57 real_value ry = y.rv ();
58 return real_identical (&rx, &ry);
61 /* Return true if real_t value R is NaN. */
63 bool
64 CTFloat::isNaN (real_t r)
66 return REAL_VALUE_ISNAN (r.rv ());
69 /* Same as isNaN, but also check if is signalling. */
71 bool
72 CTFloat::isSNaN (real_t r)
74 return REAL_VALUE_ISSIGNALING_NAN (r.rv ());
77 /* Return true if real_t value is +Inf. */
79 bool
80 CTFloat::isInfinity (real_t r)
82 return REAL_VALUE_ISINF (r.rv ());
85 /* Return a real_t value from string BUFFER rounded to long double mode. */
87 real_t
88 CTFloat::parse (const char *buffer, bool &overflow)
90 real_t r;
91 real_from_string3 (&r.rv (), buffer, TYPE_MODE (long_double_type_node));
93 /* Front-end checks overflow to see if the value is representable. */
94 overflow = (r == target.RealProperties.infinity) ? true : false;
96 return r;
99 /* Format the real_t value R to string BUFFER, bounded by BUF_SIZE, as a decimal
100 or hexadecimal, converting the result to uppercase if FMT requests it. */
103 CTFloat::sprint (char *buffer, d_size_t buf_size, char fmt, real_t r)
105 if (fmt == 'a' || fmt == 'A')
107 /* Converting to a hexadecimal string. */
108 real_to_hexadecimal (buffer, &r.rv (), buf_size, 0, 1);
109 int buflen;
111 switch (fmt)
113 case 'A':
114 buflen = strlen (buffer);
115 for (int i = 0; i < buflen; i++)
116 buffer[i] = TOUPPER (buffer[i]);
118 return buflen;
120 case 'a':
121 return strlen (buffer);
123 default:
124 gcc_unreachable ();
127 else
129 /* Note: restricting the precision of significant digits to 18. */
130 real_to_decimal (buffer, &r.rv (), 32, 18, 1);
131 return strlen (buffer);
135 /* Return a hash value for real_t value R. */
137 size_t
138 CTFloat::hash (real_t r)
140 return real_hash (&r.rv ());