math.h 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. /****************************************************************************/
  2. /* math.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1997-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /****************************************************************************/
  37. #ifndef __math__
  38. #define __math__
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-6.3") /* standard types required for standard headers */
  41. #pragma CHECK_MISRA("-19.1") /* #includes required for implementation */
  42. #pragma CHECK_MISRA("-19.7") /* macros required for implementation */
  43. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  44. #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */
  45. #define HUGE_VALF (__INFINITY__)
  46. #define HUGE_VAL ((double)__INFINITY__)
  47. #define HUGE_VALL ((long double)__INFINITY__)
  48. #define NAN (__NAN__)
  49. #define INFINITY (__INFINITY__)
  50. #define MATH_ERRNO 1
  51. #define MATH_ERREXCEPT 2
  52. #define math_errhandling (MATH_ERRNO)
  53. #include <linkage.h>
  54. #include <elfnames.h>
  55. /****************************************************************************/
  56. /* TYPE GENERIC MACROS */
  57. /****************************************************************************/
  58. #define _TG_CALL(i, f, d, l) \
  59. ( \
  60. sizeof(i) == sizeof(double) ? \
  61. (d)(i) \
  62. : sizeof(i) == sizeof(float) ? \
  63. (f)(i) \
  64. : (l)(i) \
  65. )
  66. #ifdef __cplusplus
  67. //----------------------------------------------------------------------------
  68. // <cmath> IS RECOMMENDED OVER <math.h>. <math.h> IS PROVIDED FOR
  69. // COMPATIBILITY WITH C AND THIS USAGE IS DEPRECATED IN C++
  70. //----------------------------------------------------------------------------
  71. extern "C" namespace std {
  72. #endif
  73. _CODE_ACCESS double sqrt (double x);
  74. _CODE_ACCESS double exp (double x);
  75. _CODE_ACCESS double log (double x);
  76. _CODE_ACCESS double log10(double x);
  77. _CODE_ACCESS double pow (double x, double y);
  78. _CODE_ACCESS double sin (double x);
  79. _CODE_ACCESS double cos (double x);
  80. _CODE_ACCESS double tan (double x);
  81. _CODE_ACCESS double asin (double x);
  82. _CODE_ACCESS double acos (double x);
  83. _CODE_ACCESS double atan (double x);
  84. _CODE_ACCESS double atan2(double y, double x);
  85. _CODE_ACCESS double sinh (double x);
  86. _CODE_ACCESS double cosh (double x);
  87. _CODE_ACCESS double tanh (double x);
  88. _IDECL double ceil (double x);
  89. _IDECL double floor(double x);
  90. #pragma diag_push
  91. #pragma CHECK_MISRA("-16.4") /* false positives due to builtin declarations */
  92. _CODE_ACCESS double fabs (double x);
  93. #pragma diag_pop
  94. _CODE_ACCESS double ldexp(double x, int n);
  95. _CODE_ACCESS double frexp(double x, int *_exp);
  96. _CODE_ACCESS double modf (double x, double *ip);
  97. _CODE_ACCESS double fmod (double x, double y);
  98. #if defined (__cplusplus)
  99. #define _STD_NS std::
  100. #else
  101. #define _STD_NS
  102. #endif
  103. _CODE_ACCESS double log1p(double x);
  104. _CODE_ACCESS double hypot(double x, double y);
  105. _CODE_ACCESS double copysign(double x, double y);
  106. _CODE_ACCESS int _signbitf(float x);
  107. _CODE_ACCESS int _signbit(double x);
  108. _CODE_ACCESS int _signbitl(long double x);
  109. #define signbit(x) (_TG_CALL((x), _STD_NS _signbitf, \
  110. _STD_NS _signbit, \
  111. _STD_NS _signbitl))
  112. /* An inline version of fmod that works for limited domain only */
  113. /* See comments in implementation below */
  114. _IDECL double _FMOD(double x, double y);
  115. /* these present in many linked images, so we'll tell you about them. */
  116. _CODE_ACCESS double _nround(double x); /* round-to-nearest */
  117. _CODE_ACCESS double _trunc(double x); /* truncate towards 0 */
  118. #ifdef __cplusplus
  119. } /* extern "C" namespace std */
  120. #endif /* __cplusplus */
  121. /* the ANSI-optional *f and *l routines */
  122. #include <mathf.h>
  123. #include <mathl.h>
  124. #include <linkage.h>
  125. #ifdef __cplusplus
  126. extern "C" namespace std {
  127. #endif
  128. /* ------------------------------------------------- */
  129. /* Routines below are an addition to ANSI math.h */
  130. /* Some (noted with "9x" in comment) will become ANSI*/
  131. /* once C9x is approved. */
  132. /* ------------------------------------------------- */
  133. _CODE_ACCESS double rsqrt(double x); /* == 1/sqrt(x) but *MUCH* faster */
  134. _CODE_ACCESS double exp2 (double x); /*9x mathematically equiv to pow(2.0 ,x) */
  135. _CODE_ACCESS double exp10(double x); /* mathematically equiv to pow(10.0,x) */
  136. _CODE_ACCESS double log2 (double x); /*9x mathematically equiv to log(x)/log(2.0)*/
  137. _CODE_ACCESS double powi(double x, int i); /* equiv to pow(x,(double)i) */
  138. _CODE_ACCESS double cot (double x);
  139. _CODE_ACCESS double acot (double x);
  140. _CODE_ACCESS double acot2(double x, double y);
  141. _CODE_ACCESS double coth (double x);
  142. _CODE_ACCESS double asinh(double x); /* 9x */
  143. _CODE_ACCESS double acosh(double x); /* 9x */
  144. _CODE_ACCESS double atanh(double x); /* 9x */
  145. _CODE_ACCESS double acoth(double x);
  146. #ifndef __INLINE_ISINF__
  147. #define __INLINE_ISINF__ 0
  148. #endif
  149. #if __INLINE_ISINF__
  150. _IDECL int __isinf(double x);
  151. #else
  152. _CODE_ACCESS int __isinf(double x);
  153. #endif
  154. _IDECL int __isnan(volatile double x);
  155. _IDECL int __isfinite(double x);
  156. _IDECL int __isnormal(double x);
  157. _CODE_ACCESS int __fpclassify(double x);
  158. #define isinf(x) (sizeof(x) == sizeof(double) ? __isinf(x) : \
  159. sizeof(x) == sizeof(float) ? __isinff(x) : __isinfl(x))
  160. #define isnan(x) (sizeof(x) == sizeof(double) ? __isnan(x) : \
  161. sizeof(x) == sizeof(float) ? __isnanf(x) : __isnanl(x))
  162. #define isfinite(x) (sizeof(x) == sizeof(double) ? __isfinite(x) : \
  163. sizeof(x) == sizeof(float) ? __isfinitef(x) : \
  164. __isfinitel(x))
  165. #define isnormal(x) (sizeof(x) == sizeof(double) ? __isnormal(x) : \
  166. sizeof(x) == sizeof(float) ? __isnormalf(x) : \
  167. __isnormall(x))
  168. #define fpclassify(x) (sizeof(x) == sizeof(double) ? __fpclassify(x) : \
  169. sizeof(x) == sizeof(float) ? __fpclassifyf(x) : \
  170. __fpclassifyl(x))
  171. #pragma diag_push
  172. /* keep macros as direct #defines and not function-like macros or function
  173. names surrounded by parentheses to support all original supported use cases
  174. including taking their address through the macros and prefixing with
  175. namespace macros */
  176. #pragma CHECK_MISRA("-19.4")
  177. #define round _nround /* 9x round-to-nearest */
  178. #define trunc _trunc /* 9x truncate towards 0 */
  179. #pragma diag_pop
  180. /*Definitions of classification macros used in fp_classify
  181. We do not support subnormal numbers yet, but the classification exists for
  182. when they are supported */
  183. #define FP_INFINITE 1
  184. #define FP_NAN 2
  185. #define FP_NORMAL 3
  186. #define FP_ZERO 4
  187. #define FP_SUBNORMAL 5
  188. #ifdef __cplusplus
  189. } /* extern "C" namespace std */
  190. #endif /* __cplusplus */
  191. #ifdef _INLINE
  192. #pragma diag_push /* functions */
  193. /* MISRA exceptions to avoid changing inline versions of the functions that
  194. would be linked in instead of included inline at different mf levels */
  195. /* these functions are very well-tested, stable, and efficient; it would
  196. introduce a high risk to implement new, separate MISRA versions just for the
  197. inline headers */
  198. #pragma CHECK_MISRA("-5.7") /* keep names intact */
  199. #pragma CHECK_MISRA("-8.5") /* need to define inline functions */
  200. #pragma CHECK_MISRA("-9.1") /* false positives on use after indirect assign */
  201. #pragma CHECK_MISRA("-10.1") /* use implicit casts */
  202. #pragma CHECK_MISRA("-10.2") /* use implicit casts */
  203. #pragma CHECK_MISRA("-12.1") /* avoid changing expressions */
  204. #pragma CHECK_MISRA("-12.2") /* avoid changing expressions */
  205. #pragma CHECK_MISRA("-12.4") /* avoid changing expressions */
  206. #pragma CHECK_MISRA("-12.5") /* avoid changing expressions */
  207. #pragma CHECK_MISRA("-13.3") /* need FP compares */
  208. #pragma CHECK_MISRA("-14.7") /* use multiple return points */
  209. #pragma CHECK_MISRA("-14.9") /* use non-compound statements */
  210. #pragma diag_suppress 551 /* false positives on use after indirect assign */
  211. /****************************************************************************/
  212. /* Inline versions of floor, ceil, fmod */
  213. /****************************************************************************/
  214. #ifdef __cplusplus
  215. namespace std {
  216. #endif
  217. static __inline double floor(double x)
  218. {
  219. double y;
  220. return (modf(x, &y) < 0 ? y - 1 : y);
  221. }
  222. static __inline double ceil(double x)
  223. {
  224. double y;
  225. return (modf(x, &y) > 0 ? y + 1 : y);
  226. }
  227. /*
  228. The implementation below does not work correctly for all cases.
  229. Consider the case of fmod(Big, 3), for any Big > 2**(MANT_DIG+2).
  230. The correct result is one of 0,1, or 2.
  231. But the implementation below will *always* return 0
  232. because the quotient is only an approximation.
  233. */
  234. static __inline double _FMOD(double x, double y)
  235. {
  236. double d = fabs(x);
  237. if (d - fabs(y) == d) return (0);
  238. modf(x/y, &d);
  239. return (x - d * y);
  240. }
  241. #if __INLINE_ISINF__
  242. #ifndef REAL_TO_REALNUM
  243. #error isinf can only be inlined in the compilation of the rts
  244. #endif
  245. static __inline int __isinf(double x)
  246. {
  247. realnum _x;
  248. REAL_TO_REALNUM(x, _x);
  249. return _x.exp == (REAL_EMAX + 1) && (_x.mantissa << 1) == 0;
  250. }
  251. #endif /* __INLINE_ISINF___ */
  252. #pragma diag_suppress 681
  253. static __inline int __isnan(volatile double x)
  254. {
  255. return x != x;
  256. }
  257. #pragma diag_default 681
  258. static __inline int __isfinite(double x)
  259. {
  260. return (!__isinf(x) && !__isnan(x));
  261. }
  262. static __inline int __isnormal(double x)
  263. {
  264. return (__isfinite(x) && x != 0.0);
  265. }
  266. #ifdef __cplusplus
  267. } /* namespace std */
  268. #endif /* __cplusplus */
  269. #pragma diag_pop
  270. #endif /* _INLINE */
  271. /*******************************************************************************/
  272. /* CQ35082 : Overloaded version of math functions for float and long double */
  273. /* removed from here, and include in cmath instead (see Section 26.5 */
  274. /* of C++ standard for details). Thus cpp_inline_math.h is now */
  275. /* included in cmath . */
  276. /*******************************************************************************/
  277. #pragma diag_pop
  278. #endif /* __math__ */
  279. #pragma diag_push
  280. /* using declarations must occur outside header guard to support including both
  281. C and C++-wrapped version of header; see _CPP_STYLE_HEADER check */
  282. /* this code is for C++ mode only and thus also not relevant for MISRA */
  283. #pragma CHECK_MISRA("-19.15")
  284. #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
  285. using std::sqrt;
  286. using std::exp;
  287. using std::log;
  288. using std::log10;
  289. using std::pow;
  290. using std::sin;
  291. using std::cos;
  292. using std::tan;
  293. using std::asin;
  294. using std::acos;
  295. using std::atan;
  296. using std::atan2;
  297. using std::sinh;
  298. using std::cosh;
  299. using std::tanh;
  300. using std::ceil;
  301. using std::floor;
  302. using std::fabs;
  303. using std::ldexp;
  304. using std::frexp;
  305. using std::modf;
  306. using std::fmod;
  307. using std::hypot;
  308. using std::log1p;
  309. using std::copysign;
  310. using std::rsqrt;
  311. using std::exp2;
  312. using std::exp10;
  313. using std::log2;
  314. using std::powi;
  315. using std::cot;
  316. using std::acot;
  317. using std::acot2;
  318. using std::coth;
  319. using std::asinh;
  320. using std::acosh;
  321. using std::atanh;
  322. using std::acoth;
  323. #endif /* _CPP_STYLE_HEADER */
  324. #if defined(__cplusplus)
  325. using std::__isnan;
  326. using std::__isinf;
  327. using std::__isfinite;
  328. using std::__isnormal;
  329. using std::__fpclassify;
  330. using std::_nround; /* round-to-nearest */
  331. using std::_trunc;
  332. #endif /* __cplusplus */
  333. #pragma diag_pop