summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/k_tanf.c
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2005-11-21 04:57:12 +0000
committerbde <bde@FreeBSD.org>2005-11-21 04:57:12 +0000
commitd8a5fc0b49835059d3f35f4b6e105b9c360dac79 (patch)
tree45bbeec89e517c4e748f40746486e2deedeb4076 /lib/msun/src/k_tanf.c
parent3b3fcd18bf398cd942cf88cb7f5cc7a6aae1a25a (diff)
downloadFreeBSD-src-d8a5fc0b49835059d3f35f4b6e105b9c360dac79.zip
FreeBSD-src-d8a5fc0b49835059d3f35f4b6e105b9c360dac79.tar.gz
Mess up the "kernel" float trig function .c files with ifdefs so that
they can be #included in other .c files to give inline functions, and use them to inline the functions in most callers (not in e_lgammaf_r.c). __kernel_tanf() is too large and complicated for gcc to inline very well. An athlons, this gives a speed increase under favourable pipeline conditions of about 10% overall (larger for AXP, smaller for A64). E.g., on AXP, sinf() on uniformly distributed args in [-2Pi, 2Pi] now takes 30-56 cycles; it used to take 45-61 cycles; hardware fsin takes 65-129.
Diffstat (limited to 'lib/msun/src/k_tanf.c')
-rw-r--r--lib/msun/src/k_tanf.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/msun/src/k_tanf.c b/lib/msun/src/k_tanf.c
index 377db78..cc498d5 100644
--- a/lib/msun/src/k_tanf.c
+++ b/lib/msun/src/k_tanf.c
@@ -12,9 +12,11 @@
* ====================================================
*/
+#ifndef INLINE_KERNEL_TANF
#ifndef lint
static char rcsid[] = "$FreeBSD$";
#endif
+#endif
#include "math.h"
#include "math_private.h"
@@ -32,6 +34,9 @@ T[] = {
0xeaf97e.0p-31, /* 0.0071708550677 */
};
+#ifdef INLINE_KERNEL_TANF
+extern inline
+#endif
float
__kernel_tanf(float x, float y, int iy)
{
OpenPOWER on IntegriCloud