blob: ee01d6f5b75baa286f38595f6f490a3c4e02c6af [file] [log] [blame]
Elliott Hughesa0ee0782013-01-30 19:06:37 -08001/*
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
Elliott Hughesa0ee0782013-01-30 19:06:37 -080012/*
13 * Float version of e_log10.c. See the latter for most comments.
14 */
15
16#include "math.h"
17#include "math_private.h"
18#include "k_logf.h"
19
20static const float
21two25 = 3.3554432000e+07, /* 0x4c000000 */
22ivln10hi = 4.3432617188e-01, /* 0x3ede6000 */
23ivln10lo = -3.1689971365e-05, /* 0xb804ead9 */
24log10_2hi = 3.0102920532e-01, /* 0x3e9a2080 */
25log10_2lo = 7.9034151668e-07; /* 0x355427db */
26
27static const float zero = 0.0;
Elliott Hughes78419462013-06-12 16:37:58 -070028static volatile float vzero = 0.0;
Elliott Hughesa0ee0782013-01-30 19:06:37 -080029
30float
Elliott Hughes4088e3a2023-08-03 13:33:56 -070031log10f(float x)
Elliott Hughesa0ee0782013-01-30 19:06:37 -080032{
33 float f,hfsq,hi,lo,r,y;
34 int32_t i,k,hx;
35
36 GET_FLOAT_WORD(hx,x);
37
38 k=0;
39 if (hx < 0x00800000) { /* x < 2**-126 */
40 if ((hx&0x7fffffff)==0)
Elliott Hughes78419462013-06-12 16:37:58 -070041 return -two25/vzero; /* log(+-0)=-inf */
Elliott Hughesa0ee0782013-01-30 19:06:37 -080042 if (hx<0) return (x-x)/zero; /* log(-#) = NaN */
43 k -= 25; x *= two25; /* subnormal number, scale up x */
44 GET_FLOAT_WORD(hx,x);
45 }
46 if (hx >= 0x7f800000) return x+x;
47 if (hx == 0x3f800000)
48 return zero; /* log(1) = +0 */
49 k += (hx>>23)-127;
50 hx &= 0x007fffff;
51 i = (hx+(0x4afb0d))&0x800000;
52 SET_FLOAT_WORD(x,hx|(i^0x3f800000)); /* normalize x or x/2 */
53 k += (i>>23);
54 y = (float)k;
55 f = x - (float)1.0;
56 hfsq = (float)0.5*f*f;
57 r = k_log1pf(f);
58
59 /* See e_log2f.c and e_log2.c for details. */
60 if (sizeof(float_t) > sizeof(float))
61 return (r - hfsq + f) * ((float_t)ivln10lo + ivln10hi) +
62 y * ((float_t)log10_2lo + log10_2hi);
63 hi = f - hfsq;
64 GET_FLOAT_WORD(hx,hi);
65 SET_FLOAT_WORD(hi,hx&0xfffff000);
66 lo = (f - hi) - hfsq + r;
67 return y*log10_2lo + (lo+hi)*ivln10lo + lo*ivln10hi + hi*ivln10hi +
68 y*log10_2hi;
69}