Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
openlibm_math.h
Go to the documentation of this file.
1/*
2 * ====================================================
3 * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
4 *
5 * Developed at SunPro, a Sun Microsystems, Inc. business.
6 * Permission to use, copy, modify, and distribute this
7 * software is freely granted, provided that this notice
8 * is preserved.
9 * ====================================================
10 */
11
12/*
13 * from: @(#)fdlibm.h 5.1 93/09/24
14 * $FreeBSD: src/lib/msun/src/openlibm.h,v 1.82 2011/11/12 19:55:48 theraven Exp $
15 */
16
17#ifndef OPENLIBM_MATH_H
18#define OPENLIBM_MATH_H
19
20
21//#include "Imt.Base.Core.Platform/Platform.h"
22#include "../inc/openlibm_defs.h"
23
24#ifdef USE_STL
25#include <math.h> // redirect to STL
26#endif
27
28#if (defined(_WIN32) || defined (_MSC_VER)) && !defined(__WIN32__)
29 #define __WIN32__
30#endif
31
32#ifndef __pure2
33#define __pure2
34#endif
35
36/*
37 * ANSI/POSIX
38 */
39 #ifndef _MSC_BUILD
40 extern const union __infinity_un {
41 unsigned char __uc[8];
42 double __ud;
44
45extern const union __nan_un {
46 unsigned char __uc[sizeof(float)];
47 float __uf;
49#else
50#ifdef __cplusplus
51extern "C" {
52#endif // __cplusplus
53typedef union {
54 unsigned char __uc[8];
55 double __ud;
57extern const __infinity_un __infinity;
58typedef union {
59 unsigned char __uc[sizeof(float)];
60 float __uf;
62extern const __nan_un __nan;
63#ifdef __cplusplus
64}
65#endif // __cplusplus
66#endif // _MSC_BUILD
67
68/* VBS
69#if __GNUC_PREREQ__(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
70#define __MATH_BUILTIN_CONSTANTS
71#endif
72
73#if __GNUC_PREREQ__(3, 0) && !defined(__INTEL_COMPILER)
74#define __MATH_BUILTIN_RELOPS
75#endif
76*/
77//VBS begin
78#if !defined(_MSC_BUILD) && !defined(__ARM_ARCH_ISA_THUMB)
79#define __MATH_BUILTIN_CONSTANTS
80#endif // _MSC_BUILD
81#define __MATH_BUILTIN_RELOPS
82#ifndef __ISO_C_VISIBLE
83#define __ISO_C_VISIBLE 1999
84#endif
85//VBS end
86#ifndef USE_STL
87#ifndef HUGE_VAL
88#ifdef __MATH_BUILTIN_CONSTANTS
89#define HUGE_VAL __builtin_huge_val()
90#else
91#define HUGE_VAL (__infinity.__ud)
92#endif
93#endif
94#endif /* USE_STL */
95
96#if __ISO_C_VISIBLE >= 1999
97#ifndef USE_STL
98#define FP_ILOGB0 (-INT_MAX)
99#define FP_ILOGBNAN INT_MAX
100
101#ifdef __MATH_BUILTIN_CONSTANTS
102#define HUGE_VALF __builtin_huge_valf()
103#define HUGE_VALL __builtin_huge_vall()
104#define INFINITY __builtin_inff()
105#define NAN __builtin_nanf("")
106#else
107#define HUGE_VALF (float)HUGE_VAL
108#define HUGE_VALL (long double)HUGE_VAL
109#define INFINITY HUGE_VALF
110#define NAN (__nan.__uf)
111#endif /* __MATH_BUILTIN_CONSTANTS */
112
113#define MATH_ERRNO 1
114#define MATH_ERREXCEPT 2
115#define math_errhandling MATH_ERREXCEPT
116#define FP_FAST_FMAF 1
117#ifdef __ia64__
118#define FP_FAST_FMA 1
119#define FP_FAST_FMAL 1
120#endif
121
122/* Symbolic constants to classify floating point numbers. */
123#define FP_INFINITE 0x01
124#define FP_NAN 0x02
125#define FP_NORMAL 0x04
126#define FP_SUBNORMAL 0x08
127#define FP_ZERO 0x10
128#endif /* USE_STL */
129
130#define c_fpclassify(x) \
131 ((sizeof (x) == sizeof (float)) ? __fpclassifyf(x) \
132 : __fpclassifyd(x) )
133
134#define c_isfinite(x) \
135 ((sizeof (x) == sizeof (float)) ? __isfinitef(x) \
136 : __isfinite(x))
137#define c_isinf(x) \
138 ((sizeof (x) == sizeof (float)) ? __isinff(x) \
139 : __isinf(x))
140#define c_isnan(x) \
141 ((sizeof (x) == sizeof (float)) ? __isnanf(x) \
142 : __isnan(x))
143#define c_isnormal(x) \
144 ((sizeof (x) == sizeof (float)) ? __isnormalf(x) \
145 : __isnormal(x))
146
147#ifdef __MATH_BUILTIN_RELOPS
148#define isgreater(x, y) __builtin_isgreater((x), (y))
149#define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y))
150#define isless(x, y) __builtin_isless((x), (y))
151#define islessequal(x, y) __builtin_islessequal((x), (y))
152#define islessgreater(x, y) __builtin_islessgreater((x), (y))
153#define isunordered(x, y) __builtin_isunordered((x), (y))
154#else
155#define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
156#define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
157#define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
158#define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
159#define islessgreater(x, y) (!isunordered((x), (y)) && \
160 ((x) > (y) || (y) > (x)))
161#define isunordered(x, y) (isnan(x) || isnan(y))
162#endif /* __MATH_BUILTIN_RELOPS */
163
164#define signbit(x) \
165 ((sizeof (x) == sizeof (float)) ? __signbitf(x) \
166 : __signbit(x))
167
168//VBS
169//typedef __double_t double_t;
170//typedef __float_t float_t;
171#endif /* __ISO_C_VISIBLE >= 1999 */
172
173/*
174 * XOPEN/SVID
175 */
176#if __BSD_VISIBLE || __XSI_VISIBLE
177#define M_E 2.7182818284590452354 /* e */
178#define M_LOG2E 1.4426950408889634074 /* log 2e */
179#define M_LOG10E 0.43429448190325182765 /* log 10e */
180#define M_LN2 0.69314718055994530942 /* log e2 */
181#define M_LN10 2.30258509299404568402 /* log e10 */
182#define M_PI 3.14159265358979323846 /* pi */
183#define M_PI_2 1.57079632679489661923 /* pi/2 */
184#define M_PI_4 0.78539816339744830962 /* pi/4 */
185#define M_1_PI 0.31830988618379067154 /* 1/pi */
186#define M_2_PI 0.63661977236758134308 /* 2/pi */
187#define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
188#define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
189#define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
190
191#define MAXFLOAT ((float)3.40282346638528860e+38)
192
193#ifndef OPENLIBM_ONLY_THREAD_SAFE
194 extern int signgam; // TODO
195#endif
196#endif /* __BSD_VISIBLE || __XSI_VISIBLE */
197
198#if __BSD_VISIBLE
199#if 0
200/* Old value from 4.4BSD-Lite openlibm.h; this is probably better. */
201#define HUGE HUGE_VAL
202#else
203#define HUGE MAXFLOAT
204#endif
205#endif /* __BSD_VISIBLE */
206
207/*
208 * Most of these functions depend on the ing mode and have the side
209 * effect of raising floating-point exceptions, so they are not declared
210 * as __pure2. In C99, FENV_ACCESS affects the purity of these functions.
211 */
212
213#if defined(__cplusplus)
214extern "C" {
215#endif
216/* Symbol present when OpenLibm is used. */
217int isopenlibm(void);
218
219/*
220 * ANSI/POSIX
221 */
225 int __isfinite(double) __pure2;
226 int __isinf(double) __pure2;
227 int __isinff(float) __pure2;
228 int __isnan(double) __pure2;
229 int __isnanf(float) __pure2;
231 int __isnormal(double) __pure2;
232 int __signbit(double) __pure2;
233 int __signbitf(float) __pure2;
234
235double c_acos(double);
236double c_asin(double);
237double c_atan(double);
238double c_atan2(double, double);
239double c_cos(double);
240double c_sin(double);
241double c_tan(double);
242
243double c_cosh(double);
244double c_sinh(double);
245double c_tanh(double);
246
247double c_exp(double);
248double c_frexp(double, int *); /* fundamentally !__pure2 */
249double c_ldexp(double, int);
250double c_log(double);
251double c_log10(double);
252double c_modf(double, double *); /* fundamentally !__pure2 */
253
254double c_pow(double, double);
255double c_sqrt(double);
256
257double c_fabs(double) __pure2;
258double c_floor(double);
259double c_fmod(double, double);
260
261/*
262 * These functions are not in C90.
263 */
264#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE
265double c_acosh(double);
266double c_asinh(double);
267double c_atanh(double);
268double c_erf(double);
269double c_erfc(double);
270double c_expm1(double);
271double c_hypot(double, double);
272int c_ilogb(double) __pure2;
273double c_log1p(double);
274double c_log2(double);
275double c_logb(double);
276double c_nan(const char *) __pure2;
277double c_nextafter(double, double);
278double c_remainder(double, double);
279double c_remquo(double, double, int *);
280double c_rint(double);
281#endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
282
283#if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999
284double c_copysign(double, double) __pure2;
285double c_fdim(double, double);
286double c_scalbln(double, long);
287double c_scalbn(double, int);
288double c_trunc(double);
289#endif
290
291/* float versions of ANSI/POSIX functions */
292#if __ISO_C_VISIBLE >= 1999
293 float c_acosf(float);
294 float c_asinf(float);
295 float c_atanf(float);
296 float c_atan2f(float, float);
297 float c_cosf(float);
298 float c_sinf(float);
299 float c_tanf(float);
300
301 float c_coshf(float);
302 float c_sinhf(float);
303 float c_tanhf(float);
304
305 float c_expf(float);
306 float c_expm1f(float);
307 float c_frexpf(float, int *); /* fundamentally !__pure2 */
308 int c_ilogbf(float) __pure2;
309 float c_ldexpf(float, int);
310 float c_log10f(float);
311 float c_log1pf(float);
312 float c_log2f(float);
313 float c_logf(float);
314 float c_modff(float, float *); /* fundamentally !__pure2 */
315
316 float c_powf(float, float);
317 float c_sqrtf(float);
318
319 float c_fabsf(float) __pure2;
320 float c_floorf(float);
321 float c_fmodf(float, float);
322
323 float c_erff(float);
324 float c_erfcf(float);
325 float c_hypotf(float, float);
326
327 float c_acoshf(float);
328 float c_asinhf(float);
329 float c_atanhf(float);
330 float c_logbf(float);
331 float c_copysignf(float, float) __pure2;
332 float c_nanf(const char *) __pure2;
333 float c_nextafterf(float, float);
334 float c_remainderf(float, float);
335 float c_remquof(float, float, int *);
336 float c_rintf(float);
337 float c_scalblnf(float, long);
338 float c_scalbnf(float, int);
339 float c_truncf(float);
340
341 float c_fdimf(float, float);
342
343#endif
344
345#if defined(__cplusplus)
346}
347#endif
348
349#endif /* !OPENLIBM_MATH_H */
350
int __fpclassifyd(double) __pure2
double c_asin(double)
float c_sinf(float)
int __isfinitef(float) __pure2
float c_fabsf(float) __pure2
double c_frexp(double, int *)
float c_hypotf(float, float)
float c_expf(float)
int __isnanf(float) __pure2
double c_remquo(double, double, int *)
float c_copysignf(float, float) __pure2
double c_ldexp(double, int)
double c_cos(double)
#define __pure2
double c_modf(double, double *)
double c_atan(double)
float c_atan2f(float, float)
double c_fabs(double) __pure2
int c_ilogb(double) __pure2
double c_nan(const char *) __pure2
double c_nextafter(double, double)
int __signbitf(float) __pure2
const union __nan_un __nan
float c_fmodf(float, float)
double c_cosh(double)
float c_scalbnf(float, int)
double c_tan(double)
float c_tanhf(float)
int c_ilogbf(float) __pure2
float c_fdimf(float, float)
double c_log1p(double)
double c_asinh(double)
float c_expm1f(float)
float c_truncf(float)
double c_hypot(double, double)
double c_pow(double, double)
float c_erff(float)
float c_sinhf(float)
double c_atan2(double, double)
float c_cosf(float)
float c_acoshf(float)
float c_log1pf(float)
double c_scalbn(double, int)
double c_sqrt(double)
double c_exp(double)
int __signbit(double) __pure2
double c_erfc(double)
int __isnan(double) __pure2
float c_ldexpf(float, int)
const union __infinity_un __infinity
float c_modff(float, float *)
double c_acosh(double)
float c_coshf(float)
float c_asinhf(float)
int __isnormal(double) __pure2
double c_fdim(double, double)
double c_scalbln(double, long)
int __isfinite(double) __pure2
double c_trunc(double)
int __isinf(double) __pure2
int isopenlibm(void)
float c_remquof(float, float, int *)
float c_logf(float)
float c_floorf(float)
double c_acos(double)
double c_sin(double)
double c_sinh(double)
double c_erf(double)
float c_nanf(const char *) __pure2
float c_log2f(float)
float c_remainderf(float, float)
double c_log(double)
int __isinff(float) __pure2
float c_scalblnf(float, long)
int __isnormalf(float) __pure2
double c_floor(double)
double c_logb(double)
float c_powf(float, float)
double c_expm1(double)
float c_logbf(float)
float c_atanf(float)
float c_erfcf(float)
double c_tanh(double)
float c_asinf(float)
int __fpclassifyf(float) __pure2
float c_tanf(float)
float c_frexpf(float, int *)
double c_log10(double)
float c_sqrtf(float)
double c_remainder(double, double)
float c_nextafterf(float, float)
double c_log2(double)
double c_rint(double)
float c_log10f(float)
double c_copysign(double, double) __pure2
float c_rintf(float)
float c_atanhf(float)
float c_acosf(float)
double c_atanh(double)
double c_fmod(double, double)
unsigned char __uc[8]
unsigned char __uc[sizeof(float)]