-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathreal128.cpp
529 lines (428 loc) · 15 KB
/
real128.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
// Copyright 2016-2023 Francesco Biscani (bluescarni@gmail.com)
//
// This file is part of the mp++ library.
//
// This Source Code Form is subject to the terms of the Mozilla
// Public License v. 2.0. If a copy of the MPL was not distributed
// with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
#include <mp++/config.hpp>
#include <cassert>
#include <cstddef>
#include <ios>
#include <limits>
#include <locale>
#include <ostream>
#include <sstream>
#include <stdexcept>
#include <string>
#include <vector>
#if defined(MPPP_HAVE_STRING_VIEW)
#include <string_view>
#endif
#if defined(MPPP_WITH_BOOST_S11N)
#include <boost/archive/binary_iarchive.hpp>
#include <boost/archive/binary_oarchive.hpp>
#include <boost/serialization/binary_object.hpp>
#endif
// NOTE: extern "C" is already included in quadmath.h since GCC 4.8:
// https://stackoverflow.com/questions/13780219/link-libquadmath-with-c-on-linux
#include <quadmath.h>
#include <mp++/detail/utils.hpp>
#include <mp++/integer.hpp>
#include <mp++/real128.hpp>
MPPP_BEGIN_NAMESPACE
// Double check our assumption regarding
// the number of binary digits in the
// significand.
static_assert(FLT128_MANT_DIG == real128_sig_digits(), "Invalid number of digits.");
namespace detail
{
namespace
{
void float128_stream(std::ostream &os, const __float128 &x)
{
char buf[100];
// NOTE: 36 decimal digits ensure that reading back the string always produces the same value:
// https://en.wikipedia.org/wiki/Quadruple-precision_floating-point_format
// NOTE: when using the g/G format, the precision field represents the number
// of significant digits:
// https://linux.die.net/man/3/printf
const auto n = ::quadmath_snprintf(buf, sizeof(buf), "%.36Qg", x);
// LCOV_EXCL_START
if (mppp_unlikely(n < 0)) {
throw std::runtime_error("A call to quadmath_snprintf() failed: a negative exit status of " + to_string(n)
+ " was returned");
}
if (mppp_unlikely(unsigned(n) >= sizeof(buf))) {
throw std::runtime_error("A call to quadmath_snprintf() failed: the exit status " + to_string(n)
+ " is not less than the size of the internal buffer " + to_string(sizeof(buf)));
}
// LCOV_EXCL_STOP
os << &buf[0];
}
__float128 str_to_float128(const char *s)
{
// NOLINTNEXTLINE(cppcoreguidelines-init-variables)
char *endptr;
auto retval = ::strtoflt128(s, &endptr);
if (mppp_unlikely(endptr == s || *endptr != '\0')) {
// NOTE: the first condition handles an empty string.
// endptr will point to the first character in the string which
// did not contribute to the construction of retval.
throw std::invalid_argument("The string '" + std::string(s)
+ "' does not represent a valid quadruple-precision floating-point value");
}
return retval;
}
} // namespace
__float128 scalbnq(__float128 x, int exp)
{
return ::scalbnq(x, exp);
}
__float128 scalblnq(__float128 x, long exp)
{
return ::scalblnq(x, exp);
}
} // namespace detail
// Private string constructors.
real128::real128(const ptag &, const char *s) : m_value(detail::str_to_float128(s)) {}
real128::real128(const ptag &, const std::string &s) : real128(s.c_str()) {}
#if defined(MPPP_HAVE_STRING_VIEW)
real128::real128(const ptag &, const std::string_view &s) : real128(s.data(), s.data() + s.size()) {}
#endif
// Constructor from range of characters.
real128::real128(const char *begin, const char *end)
{
MPPP_MAYBE_TLS std::vector<char> buffer;
buffer.assign(begin, end);
buffer.emplace_back('\0');
m_value = detail::str_to_float128(buffer.data());
}
// Convert to string.
std::string real128::to_string() const
{
std::ostringstream oss;
oss.exceptions(std::ios_base::failbit | std::ios_base::badbit);
detail::float128_stream(oss, m_value);
return oss.str();
}
// Sign bit.
bool real128::signbit() const
{
return ::signbitq(m_value) != 0;
}
// Decompose into a normalized fraction and an integral power of two.
real128 frexp(const real128 &x, int *exp)
{
return real128{::frexpq(x.m_value, exp)};
}
// Multiply by a power of 2.
real128 ldexp(const real128 &x, int exp)
{
return real128{::ldexpq(x.m_value, exp)};
}
real128 scalbn(const real128 &x, int n)
{
return real128{detail::scalbnq(x.m_value, n)};
}
real128 scalbln(const real128 &x, long n)
{
return real128{detail::scalblnq(x.m_value, n)};
}
// Fused multiply-add.
real128 fma(const real128 &x, const real128 &y, const real128 &z)
{
return real128{::fmaq(x.m_value, y.m_value, z.m_value)};
}
// Next real128 from 'from' to 'to'.
real128 nextafter(const real128 &from, const real128 &to)
{
return real128{::nextafterq(from.m_value, to.m_value)};
}
// Output stream operator.
std::ostream &operator<<(std::ostream &os, const real128 &x)
{
// Get the stream width.
const auto width = os.width();
// Fetch the stream's flags.
const auto flags = os.flags();
// Check if we are using scientific, fixed or both.
const auto scientific = (flags & std::ios_base::scientific) != 0;
const auto fixed = (flags & std::ios_base::fixed) != 0;
const auto hexfloat = scientific && fixed;
// Force decimal point character?
const auto showpoint = (flags & std::ios_base::showpoint) != 0;
// Force the plus sign?
const bool with_plus = (flags & std::ios_base::showpos) != 0;
// Uppercase?
const bool uppercase = (flags & std::ios_base::uppercase) != 0;
// Fetch the precision too.
auto precision = os.precision();
// NOTE: if the precision is negative, reset it
// to the default value of 6.
if (precision < 0) {
precision = 6;
}
// Put together the format string.
std::ostringstream oss;
oss.exceptions(std::ios_base::failbit | std::ios_base::badbit);
oss.imbue(std::locale::classic());
oss << '%';
if (showpoint) {
oss << '#';
}
if (with_plus) {
oss << '+';
}
if (hexfloat) {
// NOTE: in hexfloat mode, we want to ignore the precision
// setting in the stream object and print the exact representation:
// https://en.cppreference.com/w/cpp/locale/num_put/put
oss << 'Q';
} else {
oss << '.' << precision << 'Q';
}
if (hexfloat) {
oss << (uppercase ? 'A' : 'a');
} else if (scientific) {
oss << (uppercase ? 'E' : 'e');
} else if (fixed) {
// NOTE: in fixed format, the uppercase
// setting is ignored for floating-point types:
// https://en.cppreference.com/w/cpp/locale/num_put/put
oss << 'f';
} else {
oss << (uppercase ? 'G' : 'g');
}
const auto fmt_str = oss.str();
// Execute quadmath_snprintf() once to determine the needed buffer size.
// NOTE: this returns the number of characters *excluding* the terminator.
const auto sz = ::quadmath_snprintf(nullptr, 0, fmt_str.c_str(), x.m_value);
if (sz < 0) {
// LCOV_EXCL_START
throw std::invalid_argument("The quadmath_snprintf() returned an error code");
// LCOV_EXCL_STOP
}
// NOTE: I am not sure if it is possible to get a string of size 0
// from quadmath_snprintf(). Let's throw for the time being in such a case,
// as zero-length output complicates indexing below.
if (sz == 0) {
// LCOV_EXCL_START
throw std::invalid_argument("The quadmath_snprintf() function returned an empty string");
// LCOV_EXCL_STOP
}
if (sz == std::numeric_limits<int>::max()) {
// LCOV_EXCL_START
throw std::overflow_error("An overflow condition was detected in the output stream operator of real128");
// LCOV_EXCL_STOP
}
// Prepare the char buffer.
std::vector<char> buf;
// NOTE: need +1 here because the buffer size passed to
// quadmath_snprintf() must include the terminator.
buf.resize(detail::safe_cast<decltype(buf.size())>(sz + 1));
// Print out to buf.
const auto ret
= ::quadmath_snprintf(buf.data(), detail::safe_cast<std::size_t>(buf.size()), fmt_str.c_str(), x.m_value);
if (ret < 0) {
// LCOV_EXCL_START
throw std::invalid_argument("The quadmath_snprintf() returned an error code");
// LCOV_EXCL_STOP
}
// Make sure we wrote the expected number of chars.
assert(ret == sz);
// We are going to do the filling
// only if the stream width is larger
// than the total size of the string repr.
// NOTE: width > ret already implies width >= 0.
if (width > ret) {
// Determine the fill type.
const auto fill = detail::stream_flags_to_fill(flags);
// Compute how much fill we need.
const auto fill_size = detail::safe_cast<decltype(buf.size())>(width - ret);
// Get the fill character.
const auto fill_char = os.fill();
switch (fill) {
case 1:
// Left fill: fill characters at the end.
// NOTE: minus 1 because of the terminator.
buf.insert(buf.end() - 1, fill_size, fill_char);
break;
case 2:
// Right fill: fill characters at the beginning.
buf.insert(buf.begin(), fill_size, fill_char);
break;
default: {
assert(fill == 3);
// Internal fill: the fill characters are always after the sign (if present).
const auto delta = static_cast<int>(buf[0] == '+' || buf[0] == '-');
buf.insert(buf.begin() + delta, fill_size, fill_char);
break;
}
}
}
// Write from buf into the stream.
// NOTE: minus 1 because of the terminator.
os.write(buf.data(), detail::safe_cast<std::streamsize>(buf.size() - 1u));
// Reset the stream width to zero, like the operator<<() does for builtin types.
// https://en.cppreference.com/w/cpp/io/manip/setw
// Do it here so we ensure we don't alter the state of the stream until the very end.
os.width(0);
return os;
}
namespace detail
{
real128 dispatch_real128_hypot(const real128 &x, const real128 &y)
{
return real128{::hypotq(x.m_value, y.m_value)};
}
real128 dispatch_real128_pow(const real128 &x, const real128 &y)
{
return real128{::powq(x.m_value, y.m_value)};
}
real128 dispatch_real128_atan2(const real128 &y, const real128 &x)
{
return real128{::atan2q(y.m_value, x.m_value)};
}
real128 dispatch_real128_copysign(const real128 &y, const real128 &x)
{
return real128{::copysignq(y.m_value, x.m_value)};
}
real128 dispatch_real128_fdim(const real128 &y, const real128 &x)
{
return real128{::fdimq(y.m_value, x.m_value)};
}
real128 dispatch_real128_fmax(const real128 &y, const real128 &x)
{
return real128{::fmaxq(y.m_value, x.m_value)};
}
real128 dispatch_real128_fmin(const real128 &y, const real128 &x)
{
return real128{::fminq(y.m_value, x.m_value)};
}
real128 dispatch_real128_fmod(const real128 &y, const real128 &x)
{
return real128{::fmodq(y.m_value, x.m_value)};
}
real128 dispatch_real128_remainder(const real128 &y, const real128 &x)
{
return real128{::remainderq(y.m_value, x.m_value)};
}
} // namespace detail
#define MPPP_REAL128_IMPLEMENT_UNARY(func) \
real128 func(const real128 &c) \
{ \
return real128{::func##q(c.m_value)}; \
} \
\
real128 &real128::func() \
{ \
return *this = mppp::func(*this); \
}
MPPP_REAL128_IMPLEMENT_UNARY(ceil)
MPPP_REAL128_IMPLEMENT_UNARY(floor)
MPPP_REAL128_IMPLEMENT_UNARY(nearbyint)
MPPP_REAL128_IMPLEMENT_UNARY(rint)
MPPP_REAL128_IMPLEMENT_UNARY(round)
MPPP_REAL128_IMPLEMENT_UNARY(trunc)
MPPP_REAL128_IMPLEMENT_UNARY(exp)
#if defined(MPPP_QUADMATH_HAVE_EXP2Q)
MPPP_REAL128_IMPLEMENT_UNARY(exp2)
#endif
MPPP_REAL128_IMPLEMENT_UNARY(expm1)
MPPP_REAL128_IMPLEMENT_UNARY(log)
MPPP_REAL128_IMPLEMENT_UNARY(log10)
MPPP_REAL128_IMPLEMENT_UNARY(log2)
MPPP_REAL128_IMPLEMENT_UNARY(log1p)
MPPP_REAL128_IMPLEMENT_UNARY(erf)
MPPP_REAL128_IMPLEMENT_UNARY(erfc)
MPPP_REAL128_IMPLEMENT_UNARY(lgamma)
MPPP_REAL128_IMPLEMENT_UNARY(tgamma)
MPPP_REAL128_IMPLEMENT_UNARY(j0)
MPPP_REAL128_IMPLEMENT_UNARY(j1)
MPPP_REAL128_IMPLEMENT_UNARY(y0)
MPPP_REAL128_IMPLEMENT_UNARY(y1)
MPPP_REAL128_IMPLEMENT_UNARY(sqrt)
MPPP_REAL128_IMPLEMENT_UNARY(cbrt)
MPPP_REAL128_IMPLEMENT_UNARY(sin)
MPPP_REAL128_IMPLEMENT_UNARY(cos)
MPPP_REAL128_IMPLEMENT_UNARY(tan)
MPPP_REAL128_IMPLEMENT_UNARY(asin)
MPPP_REAL128_IMPLEMENT_UNARY(acos)
MPPP_REAL128_IMPLEMENT_UNARY(atan)
MPPP_REAL128_IMPLEMENT_UNARY(sinh)
MPPP_REAL128_IMPLEMENT_UNARY(cosh)
MPPP_REAL128_IMPLEMENT_UNARY(tanh)
MPPP_REAL128_IMPLEMENT_UNARY(asinh)
MPPP_REAL128_IMPLEMENT_UNARY(acosh)
MPPP_REAL128_IMPLEMENT_UNARY(atanh)
#undef MPPP_REAL128_IMPLEMENT_UNARY
real128 jn(int n, const real128 &x)
{
return real128{::jnq(n, x.m_value)};
}
real128 yn(int n, const real128 &x)
{
return real128{::ynq(n, x.m_value)};
}
long long llrint(const real128 &x)
{
return ::llrintq(x.m_value);
}
long lrint(const real128 &x)
{
return ::lrintq(x.m_value);
}
long long llround(const real128 &x)
{
return ::llroundq(x.m_value);
}
long lround(const real128 &x)
{
return ::lroundq(x.m_value);
}
int real128::ilogb() const
{
return ::ilogbq(m_value);
}
int ilogb(const real128 &x)
{
return x.ilogb();
}
#if defined(MPPP_QUADMATH_HAVE_LOGBQ)
real128 real128::logb() const
{
return real128{::logbq(m_value)};
}
real128 logb(const real128 &x)
{
return x.logb();
}
#endif
real128 modf(const real128 &x, real128 *iptr)
{
return real128{::modfq(x.m_value, &iptr->m_value)};
}
real128 remquo(const real128 &x, const real128 &y, int *quo)
{
return real128{::remquoq(x.m_value, y.m_value, quo)};
}
void sincos(const real128 &x, real128 *s, real128 *c)
{
::sincosq(x.m_value, &s->m_value, &c->m_value);
}
#if defined(MPPP_WITH_BOOST_S11N)
// Fast serialization implementations for Boost's binary archives.
void real128::save(boost::archive::binary_oarchive &ar, unsigned) const
{
ar << boost::serialization::make_binary_object(&m_value, sizeof(m_value));
}
void real128::load(boost::archive::binary_iarchive &ar, unsigned)
{
// NOTE: init in order to avoid compiler warnings.
__float128 tmp{};
ar >> boost::serialization::make_binary_object(&tmp, sizeof(tmp));
m_value = tmp;
}
#endif
MPPP_END_NAMESPACE