-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcinterface.cpp
64 lines (58 loc) · 2.07 KB
/
cinterface.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
/* C Interface
*
* Copyright (C) 2023 Markus Wallerberger and others
* SPDX-License-Identifier: MIT
*/
#include "xprec/ddouble.h"
#include "xprec/ddouble.hpp"
using xprec::DDouble;
#define UNARY_OP(cfunc, cxxop) \
extern "C" \
xprec_ddouble cfunc(xprec_ddouble a) \
{ \
DDouble r = cxxop(DDouble(a.hi, a.lo)); \
return {r.hi(), r.lo()}; \
}
#define BINARY_OP(cfunc, cxxop) \
extern "C" \
xprec_ddouble cfunc(xprec_ddouble a, xprec_ddouble b) \
{ \
DDouble r = cxxop(DDouble(a.hi, a.lo), DDouble(b.hi, b.lo)); \
return {r.hi(), r.lo()}; \
}
BINARY_OP(xprec_add, operator+)
BINARY_OP(xprec_sub, operator-)
BINARY_OP(xprec_mul, operator*)
BINARY_OP(xprec_div, operator/)
UNARY_OP(xprec_pos, operator+)
UNARY_OP(xprec_neg, operator-)
UNARY_OP(xprec_reciprocal, reciprocal)
UNARY_OP(xprec_abs, abs)
UNARY_OP(xprec_acos, acos)
UNARY_OP(xprec_acosh, acosh)
UNARY_OP(xprec_asin, asin)
UNARY_OP(xprec_asinh, asinh)
UNARY_OP(xprec_atan, atan)
BINARY_OP(xprec_atan2, atan2)
UNARY_OP(xprec_atanh, atanh)
UNARY_OP(xprec_ceil, ceil)
UNARY_OP(xprec_cos, cos)
UNARY_OP(xprec_cosh, cosh)
UNARY_OP(xprec_exp, exp)
UNARY_OP(xprec_expm1, expm1)
UNARY_OP(xprec_fabs, fabs)
BINARY_OP(xprec_fmax, fmax)
BINARY_OP(xprec_fmin, fmin)
UNARY_OP(xprec_floor, floor)
BINARY_OP(xprec_hypot, hypot)
UNARY_OP(xprec_log, log)
UNARY_OP(xprec_log1p, log1p)
UNARY_OP(xprec_logb, logb)
BINARY_OP(xprec_nextafter, nextafter)
BINARY_OP(xprec_pow, pow)
UNARY_OP(xprec_round, round)
UNARY_OP(xprec_sin, sin)
UNARY_OP(xprec_sinh, sinh)
UNARY_OP(xprec_sqrt, sqrt)
UNARY_OP(xprec_tan, tan)
UNARY_OP(xprec_tanh, tanh)