openlibm_math.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511
  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. * from: @(#)fdlibm.h 5.1 93/09/24
  13. * $FreeBSD$
  14. */
  15. #ifndef _MATH_H_
  16. #define _MATH_H_
  17. #include <sys/cdefs.h>
  18. #include <sys/_types.h>
  19. #include <machine/_limits.h>
  20. /*
  21. * ANSI/POSIX
  22. */
  23. extern const union __infinity_un {
  24. unsigned char __uc[8];
  25. double __ud;
  26. } __infinity;
  27. extern const union __nan_un {
  28. unsigned char __uc[sizeof(float)];
  29. float __uf;
  30. } __nan;
  31. /* VBS
  32. #if __GNUC_PREREQ__(3, 3) || (defined(__INTEL_COMPILER) && __INTEL_COMPILER >= 800)
  33. #define __MATH_BUILTIN_CONSTANTS
  34. #endif
  35. #if __GNUC_PREREQ__(3, 0) && !defined(__INTEL_COMPILER)
  36. #define __MATH_BUILTIN_RELOPS
  37. #endif
  38. */
  39. #ifdef __MATH_BUILTIN_CONSTANTS
  40. #define HUGE_VAL __builtin_huge_val()
  41. #else
  42. #define HUGE_VAL (__infinity.__ud)
  43. #endif
  44. #if __ISO_C_VISIBLE >= 1999
  45. #define FP_ILOGB0 (-__INT_MAX)
  46. #define FP_ILOGBNAN __INT_MAX
  47. #ifdef __MATH_BUILTIN_CONSTANTS
  48. #define HUGE_VALF __builtin_huge_valf()
  49. #define HUGE_VALL __builtin_huge_vall()
  50. #define INFINITY __builtin_inff()
  51. #define NAN __builtin_nanf("")
  52. #else
  53. #define HUGE_VALF (float)HUGE_VAL
  54. #define HUGE_VALL (long double)HUGE_VAL
  55. #define INFINITY HUGE_VALF
  56. #define NAN (__nan.__uf)
  57. #endif /* __MATH_BUILTIN_CONSTANTS */
  58. #define MATH_ERRNO 1
  59. #define MATH_ERREXCEPT 2
  60. #define math_errhandling MATH_ERREXCEPT
  61. #define FP_FAST_FMAF 1
  62. /* Symbolic constants to classify floating point numbers. */
  63. #define FP_INFINITE 0x01
  64. #define FP_NAN 0x02
  65. #define FP_NORMAL 0x04
  66. #define FP_SUBNORMAL 0x08
  67. #define FP_ZERO 0x10
  68. #if (__STDC_VERSION__ >= 201112L && defined(__clang__)) || \
  69. __has_extension(c_generic_selections)
  70. #define __fp_type_select(x, f, d, ld) _Generic((x), \
  71. float: f(x), \
  72. double: d(x), \
  73. long double: ld(x), \
  74. volatile float: f(x), \
  75. volatile double: d(x), \
  76. volatile long double: ld(x), \
  77. volatile const float: f(x), \
  78. volatile const double: d(x), \
  79. volatile const long double: ld(x), \
  80. const float: f(x), \
  81. const double: d(x), \
  82. const long double: ld(x))
  83. #elif __GNUC_PREREQ__(3, 1) && !defined(__cplusplus)
  84. #define __fp_type_select(x, f, d, ld) __builtin_choose_expr( \
  85. __builtin_types_compatible_p(__typeof(x), long double), ld(x), \
  86. __builtin_choose_expr( \
  87. __builtin_types_compatible_p(__typeof(x), double), d(x), \
  88. __builtin_choose_expr( \
  89. __builtin_types_compatible_p(__typeof(x), float), f(x), (void)0)))
  90. #else
  91. #define __fp_type_select(x, f, d, ld) \
  92. ((sizeof(x) == sizeof(float)) ? f(x) \
  93. : (sizeof(x) == sizeof(double)) ? d(x) \
  94. : ld(x))
  95. #endif
  96. #define fpclassify(x) \
  97. __fp_type_select(x, __fpclassifyf, __fpclassifyd, __fpclassifyl)
  98. #define isfinite(x) __fp_type_select(x, __isfinitef, __isfinite, __isfinitel)
  99. #define isinf(x) __fp_type_select(x, __isinff, __isinf, __isinfl)
  100. #define isnan(x) \
  101. __fp_type_select(x, __inline_isnanf, __inline_isnan, __inline_isnanl)
  102. #define isnormal(x) __fp_type_select(x, __isnormalf, __isnormal, __isnormall)
  103. #ifdef __MATH_BUILTIN_RELOPS
  104. #define isgreater(x, y) __builtin_isgreater((x), (y))
  105. #define isgreaterequal(x, y) __builtin_isgreaterequal((x), (y))
  106. #define isless(x, y) __builtin_isless((x), (y))
  107. #define islessequal(x, y) __builtin_islessequal((x), (y))
  108. #define islessgreater(x, y) __builtin_islessgreater((x), (y))
  109. #define isunordered(x, y) __builtin_isunordered((x), (y))
  110. #else
  111. #define isgreater(x, y) (!isunordered((x), (y)) && (x) > (y))
  112. #define isgreaterequal(x, y) (!isunordered((x), (y)) && (x) >= (y))
  113. #define isless(x, y) (!isunordered((x), (y)) && (x) < (y))
  114. #define islessequal(x, y) (!isunordered((x), (y)) && (x) <= (y))
  115. #define islessgreater(x, y) (!isunordered((x), (y)) && \
  116. ((x) > (y) || (y) > (x)))
  117. #define isunordered(x, y) (isnan(x) || isnan(y))
  118. #endif /* __MATH_BUILTIN_RELOPS */
  119. #define signbit(x) __fp_type_select(x, __signbitf, __signbit, __signbitl)
  120. typedef __double_t double_t;
  121. typedef __float_t float_t;
  122. #endif /* __ISO_C_VISIBLE >= 1999 */
  123. /*
  124. * XOPEN/SVID
  125. */
  126. #if __BSD_VISIBLE || __XSI_VISIBLE
  127. #define M_E 2.7182818284590452354 /* e */
  128. #define M_LOG2E 1.4426950408889634074 /* log 2e */
  129. #define M_LOG10E 0.43429448190325182765 /* log 10e */
  130. #define M_LN2 0.69314718055994530942 /* log e2 */
  131. #define M_LN10 2.30258509299404568402 /* log e10 */
  132. #define M_PI 3.14159265358979323846 /* pi */
  133. #define M_PI_2 1.57079632679489661923 /* pi/2 */
  134. #define M_PI_4 0.78539816339744830962 /* pi/4 */
  135. #define M_1_PI 0.31830988618379067154 /* 1/pi */
  136. #define M_2_PI 0.63661977236758134308 /* 2/pi */
  137. #define M_2_SQRTPI 1.12837916709551257390 /* 2/sqrt(pi) */
  138. #define M_SQRT2 1.41421356237309504880 /* sqrt(2) */
  139. #define M_SQRT1_2 0.70710678118654752440 /* 1/sqrt(2) */
  140. #define MAXFLOAT ((float)3.40282346638528860e+38)
  141. extern int signgam;
  142. #endif /* __BSD_VISIBLE || __XSI_VISIBLE */
  143. #if __BSD_VISIBLE
  144. #if 0
  145. /* Old value from 4.4BSD-Lite math.h; this is probably better. */
  146. #define HUGE HUGE_VAL
  147. #else
  148. #define HUGE MAXFLOAT
  149. #endif
  150. #endif /* __BSD_VISIBLE */
  151. /*
  152. * Most of these functions depend on the rounding mode and have the side
  153. * effect of raising floating-point exceptions, so they are not declared
  154. * as __pure2. In C99, FENV_ACCESS affects the purity of these functions.
  155. */
  156. __BEGIN_DECLS
  157. /*
  158. * ANSI/POSIX
  159. */
  160. int __fpclassifyd(double) __pure2;
  161. int __fpclassifyf(float) __pure2;
  162. int __fpclassifyl(long double) __pure2;
  163. int __isfinitef(float) __pure2;
  164. int __isfinite(double) __pure2;
  165. int __isfinitel(long double) __pure2;
  166. int __isinff(float) __pure2;
  167. int __isinf(double) __pure2;
  168. int __isinfl(long double) __pure2;
  169. int __isnormalf(float) __pure2;
  170. int __isnormal(double) __pure2;
  171. int __isnormall(long double) __pure2;
  172. int __signbit(double) __pure2;
  173. int __signbitf(float) __pure2;
  174. int __signbitl(long double) __pure2;
  175. static __inline int
  176. __inline_isnan(__const double __x)
  177. {
  178. return (__x != __x);
  179. }
  180. static __inline int
  181. __inline_isnanf(__const float __x)
  182. {
  183. return (__x != __x);
  184. }
  185. static __inline int
  186. __inline_isnanl(__const long double __x)
  187. {
  188. return (__x != __x);
  189. }
  190. /*
  191. * Version 2 of the Single UNIX Specification (UNIX98) defined isnan() and
  192. * isinf() as functions taking double. C99, and the subsequent POSIX revisions
  193. * (SUSv3, POSIX.1-2001, define it as a macro that accepts any real floating
  194. * point type. If we are targeting SUSv2 and C99 or C11 (or C++11) then we
  195. * expose the newer definition, assuming that the language spec takes
  196. * precedence over the operating system interface spec.
  197. */
  198. #if __XSI_VISIBLE > 0 && __XSI_VISIBLE < 600 && __ISO_C_VISIBLE < 1999
  199. #undef isinf
  200. #undef isnan
  201. int isinf(double);
  202. int isnan(double);
  203. #endif
  204. double acos(double);
  205. double asin(double);
  206. double atan(double);
  207. double atan2(double, double);
  208. double cos(double);
  209. double sin(double);
  210. double tan(double);
  211. double cosh(double);
  212. double sinh(double);
  213. double tanh(double);
  214. double exp(double);
  215. double frexp(double, int *); /* fundamentally !__pure2 */
  216. double ldexp(double, int);
  217. double log(double);
  218. double log10(double);
  219. double modf(double, double *); /* fundamentally !__pure2 */
  220. double pow(double, double);
  221. double sqrt(double);
  222. double ceil(double);
  223. double fabs(double) __pure2;
  224. double floor(double);
  225. double fmod(double, double);
  226. /*
  227. * These functions are not in C90.
  228. */
  229. #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE
  230. double acosh(double);
  231. double asinh(double);
  232. double atanh(double);
  233. double cbrt(double);
  234. double erf(double);
  235. double erfc(double);
  236. double exp2(double);
  237. double expm1(double);
  238. double fma(double, double, double);
  239. double hypot(double, double);
  240. int ilogb(double) __pure2;
  241. double lgamma(double);
  242. long long llrint(double);
  243. long long llround(double);
  244. double log1p(double);
  245. double log2(double);
  246. double logb(double);
  247. long lrint(double);
  248. long lround(double);
  249. double nan(const char *) __pure2;
  250. double nextafter(double, double);
  251. double remainder(double, double);
  252. double remquo(double, double, int *);
  253. double rint(double);
  254. #endif /* __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999 || __XSI_VISIBLE */
  255. #if __BSD_VISIBLE || __XSI_VISIBLE
  256. double j0(double);
  257. double j1(double);
  258. double jn(int, double);
  259. double y0(double);
  260. double y1(double);
  261. double yn(int, double);
  262. #if __XSI_VISIBLE <= 500 || __BSD_VISIBLE
  263. double gamma(double);
  264. #endif
  265. #if __XSI_VISIBLE <= 600 || __BSD_VISIBLE
  266. double scalb(double, double);
  267. #endif
  268. #endif /* __BSD_VISIBLE || __XSI_VISIBLE */
  269. #if __BSD_VISIBLE || __ISO_C_VISIBLE >= 1999
  270. double copysign(double, double) __pure2;
  271. double fdim(double, double);
  272. double fmax(double, double) __pure2;
  273. double fmin(double, double) __pure2;
  274. double nearbyint(double);
  275. double round(double);
  276. double scalbln(double, long);
  277. double scalbn(double, int);
  278. double tgamma(double);
  279. double trunc(double);
  280. #endif
  281. /*
  282. * BSD math library entry points
  283. */
  284. #if __BSD_VISIBLE
  285. double drem(double, double);
  286. int finite(double) __pure2;
  287. int isnanf(float) __pure2;
  288. /*
  289. * Reentrant version of gamma & lgamma; passes signgam back by reference
  290. * as the second argument; user must allocate space for signgam.
  291. */
  292. double gamma_r(double, int *);
  293. double lgamma_r(double, int *);
  294. /*
  295. * IEEE Test Vector
  296. */
  297. double significand(double);
  298. #endif /* __BSD_VISIBLE */
  299. /* float versions of ANSI/POSIX functions */
  300. #if __ISO_C_VISIBLE >= 1999
  301. float acosf(float);
  302. float asinf(float);
  303. float atanf(float);
  304. float atan2f(float, float);
  305. float cosf(float);
  306. float sinf(float);
  307. float tanf(float);
  308. float coshf(float);
  309. float sinhf(float);
  310. float tanhf(float);
  311. float exp2f(float);
  312. float expf(float);
  313. float expm1f(float);
  314. float frexpf(float, int *); /* fundamentally !__pure2 */
  315. int ilogbf(float) __pure2;
  316. float ldexpf(float, int);
  317. float log10f(float);
  318. float log1pf(float);
  319. float log2f(float);
  320. float logf(float);
  321. float modff(float, float *); /* fundamentally !__pure2 */
  322. float powf(float, float);
  323. float sqrtf(float);
  324. float ceilf(float);
  325. float fabsf(float) __pure2;
  326. float floorf(float);
  327. float fmodf(float, float);
  328. float roundf(float);
  329. float erff(float);
  330. float erfcf(float);
  331. float hypotf(float, float);
  332. float lgammaf(float);
  333. float tgammaf(float);
  334. float acoshf(float);
  335. float asinhf(float);
  336. float atanhf(float);
  337. float cbrtf(float);
  338. float logbf(float);
  339. float copysignf(float, float) __pure2;
  340. long long llrintf(float);
  341. long long llroundf(float);
  342. long lrintf(float);
  343. long lroundf(float);
  344. float nanf(const char *) __pure2;
  345. float nearbyintf(float);
  346. float nextafterf(float, float);
  347. float remainderf(float, float);
  348. float remquof(float, float, int *);
  349. float rintf(float);
  350. float scalblnf(float, long);
  351. float scalbnf(float, int);
  352. float truncf(float);
  353. float fdimf(float, float);
  354. float fmaf(float, float, float);
  355. float fmaxf(float, float) __pure2;
  356. float fminf(float, float) __pure2;
  357. #endif
  358. /*
  359. * float versions of BSD math library entry points
  360. */
  361. #if __BSD_VISIBLE
  362. float dremf(float, float);
  363. int finitef(float) __pure2;
  364. float gammaf(float);
  365. float j0f(float);
  366. float j1f(float);
  367. float jnf(int, float);
  368. float scalbf(float, float);
  369. float y0f(float);
  370. float y1f(float);
  371. float ynf(int, float);
  372. /*
  373. * Float versions of reentrant version of gamma & lgamma; passes
  374. * signgam back by reference as the second argument; user must
  375. * allocate space for signgam.
  376. */
  377. float gammaf_r(float, int *);
  378. float lgammaf_r(float, int *);
  379. /*
  380. * float version of IEEE Test Vector
  381. */
  382. float significandf(float);
  383. #endif /* __BSD_VISIBLE */
  384. /*
  385. * long double versions of ISO/POSIX math functions
  386. */
  387. #if __ISO_C_VISIBLE >= 1999
  388. long double acoshl(long double);
  389. long double acosl(long double);
  390. long double asinhl(long double);
  391. long double asinl(long double);
  392. long double atan2l(long double, long double);
  393. long double atanhl(long double);
  394. long double atanl(long double);
  395. long double cbrtl(long double);
  396. long double ceill(long double);
  397. long double copysignl(long double, long double) __pure2;
  398. long double coshl(long double);
  399. long double cosl(long double);
  400. long double erfcl(long double);
  401. long double erfl(long double);
  402. long double exp2l(long double);
  403. long double expl(long double);
  404. long double expm1l(long double);
  405. long double fabsl(long double) __pure2;
  406. long double fdiml(long double, long double);
  407. long double floorl(long double);
  408. long double fmal(long double, long double, long double);
  409. long double fmaxl(long double, long double) __pure2;
  410. long double fminl(long double, long double) __pure2;
  411. long double fmodl(long double, long double);
  412. long double frexpl(long double value, int *); /* fundamentally !__pure2 */
  413. long double hypotl(long double, long double);
  414. int ilogbl(long double) __pure2;
  415. long double ldexpl(long double, int);
  416. long double lgammal(long double);
  417. long long llrintl(long double);
  418. long long llroundl(long double);
  419. long double log10l(long double);
  420. long double log1pl(long double);
  421. long double log2l(long double);
  422. long double logbl(long double);
  423. long double logl(long double);
  424. long lrintl(long double);
  425. long lroundl(long double);
  426. long double modfl(long double, long double *); /* fundamentally !__pure2 */
  427. long double nanl(const char *) __pure2;
  428. long double nearbyintl(long double);
  429. long double nextafterl(long double, long double);
  430. double nexttoward(double, long double);
  431. float nexttowardf(float, long double);
  432. long double nexttowardl(long double, long double);
  433. long double powl(long double, long double);
  434. long double remainderl(long double, long double);
  435. long double remquol(long double, long double, int *);
  436. long double rintl(long double);
  437. long double roundl(long double);
  438. long double scalblnl(long double, long);
  439. long double scalbnl(long double, int);
  440. long double sinhl(long double);
  441. long double sinl(long double);
  442. long double sqrtl(long double);
  443. long double tanhl(long double);
  444. long double tanl(long double);
  445. long double tgammal(long double);
  446. long double truncl(long double);
  447. #endif /* __ISO_C_VISIBLE >= 1999 */
  448. #if __BSD_VISIBLE
  449. long double lgammal_r(long double, int *);
  450. #endif
  451. __END_DECLS
  452. #endif /* !_MATH_H_ */