- 17 3月, 2012 5 次提交
-
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
this is necessary to support archs where fenv is incomplete or unavailable (presently arm). fma, fmal, and the lrint family should work perfectly fine with this change; fmaf is slightly broken with respect to rounding as it depends on non-default rounding modes to do its work.
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
otherwise, the standard C lgamma function will clobber a symbol in the namespace reserved for the application.
-
由 Rich Felker 提交于
standard functions cannot depend on nonstandard symbols
-
- 16 3月, 2012 2 次提交
-
-
由 Rich Felker 提交于
a double precision nan, when converted to extended (80-bit) precision, will never end in 0x400, since the corresponding bits do not exist in the original double precision value. thus there's no need to waste time and code size on this check.
-
由 Rich Felker 提交于
-
- 15 3月, 2012 4 次提交
-
-
由 nsz 提交于
long double and float bessel functions are no longer xsi extensions
-
由 nsz 提交于
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
the fsqrt opcode is correctly rounded, but only in the fpu's selected precision mode, which is 80-bit extended precision. to get a correctly rounded double precision output, we check for the only corner cases where two-step rounding could give different results than one-step (extended-precision mantissa ending in 0x400) and adjust the mantissa slightly in the opposite direction of the rounding which the fpu already did (reported in the c1 flag of the fpu status word). this should have near-zero cost in the non-corner cases and at worst very low cost. note that in order for sqrt() to get used when compiling with gcc, the broken, non-conformant builtin sqrt must be disabled.
-
- 14 3月, 2012 4 次提交
-
-
由 Rich Felker 提交于
-
由 nsz 提交于
-
由 nsz 提交于
-
由 nsz 提交于
-
- 13 3月, 2012 3 次提交
-
-
由 nsz 提交于
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
thanks to the hard work of Szabolcs Nagy (nsz), identifying the best (from correctness and license standpoint) implementations from freebsd and openbsd and cleaning them up! musl should now fully support c99 float and long double math functions, and has near-complete complex math support. tgmath should also work (fully on gcc-compatible compilers, and mostly on any c99 compiler). based largely on commit 0376d44a890fea261506f1fc63833e7a686dca19 from nsz's libm git repo, with some additions (dummy versions of a few missing long double complex functions, etc.) by me. various cleanups still need to be made, including re-adding (if they're correct) some asm functions that were dropped.
-
- 01 7月, 2011 2 次提交
-
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
this should not be necessary - the invalid bit patterns cannot be created except through type punning. however, some broken gnu software is passing them to printf and triggering dangerous stack-smashing, so let's catch them anyway...
-
- 27 6月, 2011 2 次提交
-
-
由 Rich Felker 提交于
-
由 Rich Felker 提交于
-
- 15 2月, 2011 1 次提交
-
-
由 Nicholas J. Kain 提交于
-
- 12 2月, 2011 1 次提交
-
-
由 Rich Felker 提交于
-