1 /* d-longdouble.cc -- Software floating-point emulation for the frontend.
2 Copyright (C) 2006-2022 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)
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/>. */
20 #include "coretypes.h"
22 #include "dmd/mtype.h"
25 #include "fold-const.h"
26 #include "diagnostic.h"
27 #include "stor-layout.h"
30 #include "longdouble.h"
33 /* Truncate longdouble to the highest precision supported by target. */
36 longdouble::normalize (void)
38 const machine_mode mode
= TYPE_MODE (long_double_type_node
);
39 real_convert (&this->rv (), mode
, &this->rv ());
43 /* Assign a real_value to a longdouble type. */
46 longdouble::set (real_value
&d
)
48 real_convert (&this->rv (), TYPE_MODE (long_double_type_node
), &d
);
51 /* Conversion routines between longdouble and integer types. */
54 longdouble::set (int32_t d
)
56 real_from_integer (&this->rv (), TYPE_MODE (double_type_node
), d
, SIGNED
);
60 longdouble::set (int64_t d
)
62 real_from_integer (&this->rv (), TYPE_MODE (long_double_type_node
), d
,
67 longdouble::to_int (void) const
70 wide_int wi
= real_to_integer (&this->rv (), &overflow
, 64);
74 /* Unsigned variants of the same conversion routines. */
77 longdouble::set (uint32_t d
)
79 real_from_integer (&this->rv (), TYPE_MODE (double_type_node
), d
, UNSIGNED
);
83 longdouble::set (uint64_t d
)
85 real_from_integer (&this->rv (), TYPE_MODE (long_double_type_node
), d
,
90 longdouble::to_uint (void) const
93 wide_int wi
= real_to_integer (&this->rv (), &overflow
, 64);
97 /* For conversion between boolean, only need to check if is zero. */
100 longdouble::set (bool d
)
102 this->rv () = (d
== false) ? dconst0
: dconst1
;
106 longdouble::to_bool (void) const
108 return this->rv ().cl
!= rvc_zero
;
111 /* Overload numeric operators for longdouble types. */
114 longdouble::add (const longdouble
&r
) const
117 real_arithmetic (&x
.rv (), PLUS_EXPR
, &this->rv (), &r
.rv ());
118 return x
.normalize ();
122 longdouble::sub (const longdouble
&r
) const
125 real_arithmetic (&x
.rv (), MINUS_EXPR
, &this->rv (), &r
.rv ());
126 return x
.normalize ();
130 longdouble::mul (const longdouble
&r
) const
133 real_arithmetic (&x
.rv (), MULT_EXPR
, &this->rv (), &r
.rv ());
134 return x
.normalize ();
138 longdouble::div (const longdouble
&r
) const
141 real_arithmetic (&x
.rv (), RDIV_EXPR
, &this->rv (), &r
.rv ());
142 return x
.normalize ();
146 longdouble::mod (const longdouble
&r
) const
151 if (r
.rv ().cl
== rvc_zero
|| REAL_VALUE_ISINF (this->rv ()))
153 real_nan (&x
.rv (), "", 1, TYPE_MODE (long_double_type_node
));
157 if (this->rv ().cl
== rvc_zero
)
160 if (REAL_VALUE_ISINF (r
.rv ()))
163 /* Need to check for NaN? */
164 real_arithmetic (&q
, RDIV_EXPR
, &this->rv (), &r
.rv ());
165 real_arithmetic (&q
, FIX_TRUNC_EXPR
, &q
, NULL
);
166 real_arithmetic (&q
, MULT_EXPR
, &q
, &r
.rv ());
167 real_arithmetic (&x
.rv (), MINUS_EXPR
, &this->rv (), &q
);
169 return x
.normalize ();
173 longdouble::neg (void) const
176 real_arithmetic (&x
.rv (), NEGATE_EXPR
, &this->rv (), NULL
);
177 return x
.normalize ();
180 /* Overload equality operators for longdouble types. */
183 longdouble::cmp (const longdouble
&r
) const
185 if (real_compare (LT_EXPR
, &this->rv (), &r
.rv ()))
188 if (real_compare (GT_EXPR
, &this->rv (), &r
.rv ()))
195 longdouble::equals (const longdouble
&r
) const
197 return real_compare (EQ_EXPR
, &this->rv (), &r
.rv ());