Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-07-09 | The fegetexceptflag() function should not have a DEF_STD. | Mark Kettenis | |
Brings arm64 in line with all the other architectures. ok millert@ | |||
2020-06-28 | Add powerpc64 support. | Mark Kettenis | |
2020-06-28 | Add powerpc64 fenv bits; copied from powerpc. From drahn@ | Mark Kettenis | |
2020-02-08 | correct Research Unix edition "appeared in" use in HISTORY | Jonathan Gray | |
Starting from "Combined Table of Contents" in Doug McIlroy's "A Research UNIX Reader" a table of which edition manuals appeared in. Checked against manuals from bitsavers/TUHS and source from TUHS where available. Ingo points out there are cases where something is included but not documented until a later release. bcd(6) v6 v7 printf(3) v2 v4 abort(3) v5 v6 system(3) v6 v7 fmod(3) v5 v6 ok schwarze@ | |||
2019-10-30 | Fix declaration of S1 by swapping misplaced ',' and ';'. | Theo Buehler | |
This is inside !(defined(__amd64__) || defined(__i386__)), while the file is only used on those two architectures. "Free commit! No strings attached! No hidden tricks!" from miod | |||
2019-09-06 | More Version 1 AT&T UNIX history. | Ingo Schwarze | |
This became possible because copies of the original v1 manuals have shown up on the Internet some time ago. Reminded by Sevan Janiyan <venture37 at geeklan dot co dot uk>. | |||
2019-04-01 | repair confusing "} if" indentation as suggested by deraadt@ | Christian Weisgerber | |
2019-03-15 | Remove FBSDID. | Kevin Lo | |
ok deraadt@ | |||
2019-03-12 | Setting and getting the rounding mode on our arm64 FPU has not worked | Patrick Wildt | |
in libm since the rounding mode is in fpcr, not fpsr. Since both FPU registers are 32-bit we can store them in the 64-bit fenv_t to make handling the bits easier. While there add FE_DENORMAL, which also exists on x86. Also make sure that whenever we are being passed an exception mask, we only allow the bits that are supported by hardware. Found by regression tests Debugged with Moritz Buhl ok kettenis@ | |||
2019-01-25 | I am retiring my old email address; replace it with my OpenBSD one. | Todd C. Miller | |
2018-07-18 | Remove the unused leftovers of the 4.4BSD libm, which was only used | Christian Weisgerber | |
on non-IEEE platforms. Since the VAX port was discontinued, all our remaining architectures use IEEE floating point, as will any future ones. ok millert@ tb@ | |||
2018-07-08 | Add missing retguard check | mortimer | |
ok deraadt | |||
2018-07-03 | Add retguard macros to libm assembly. | mortimer | |
ok deraadt | |||
2018-03-16 | improve markup quality in the cases found by the new "--" style message | Ingo Schwarze | |
2018-03-16 | Since most (if not all) ARMv8 hardware doesn't actually support trapping of | Mark Kettenis | |
floating-point exceptions, simplify the functions that control the exception masks just like we did on armv7. ok tom@ | |||
2018-03-12 | Gah, rintl() is used internally, so add a macro for the fourth possiblity, | Philip Guenther | |
a cloning a non-standard, long double function which _is_ used from the matching plain double function build failured pointed out by deraadt@ | |||
2018-03-12 | Make the binding of rintl, significand, and significandf consistently | Philip Guenther | |
'weak' in the static libm.a ok deraadt@ | |||
2018-03-12 | Add cvs tag, copyright, and license | Philip Guenther | |
2018-03-12 | Fix build of sincosl on machines where long double == double | Philip Guenther | |
ok deraadt@ | |||
2018-03-10 | Implement sicos(3), sincosf(3) and sincosl(3). These functions are common | Mark Kettenis | |
extensions and modern compilers (such as clang) will use them to optimize separate calculations of sine and cosine. ok tom@, patrick@, deraadt@, jmc@ | |||
2018-02-28 | Remove CFLAGS+=-mfloat-abi=softfp that I accidentally committed. | Mark Kettenis | |
2018-02-28 | Change floating-point mode/environment control functions to operate on | Mark Kettenis | |
both the hardfloat (FPU registers) and softfloat (software) state. This makes these functions work correctly when mixing hardfloat and softfloat code. Disable trapping for softfloat since most (if not all) ARMv7 and ARMv8 hardware that is on the market doesn't support trapping of floating-point exceptions. ok patrick@ | |||
2018-02-05 | Constants which can go into .rodata | Theo de Raadt | |
2017-09-27 | Xr; from jan stary | Jason McIntyre | |
2017-08-26 | For exceptional cases of mathematical formulae that can't reasonably | Ingo Schwarze | |
be represented otherwise, use eqn(7). Idea originally from bentley@, feedback and OK bentley@, OK tb@, and no objection from jmc@. | |||
2017-08-19 | Use 0xcc trapsleds instead of default/nop/0xcc in BTC alignments | Theo de Raadt | |
don't bother with .text before ENTRY() | |||
2017-01-21 | Nuke whitespace foolish enough to expose itself during the great | Kenneth R Westerback | |
"warning:" rectification. | |||
2017-01-20 | Implement gcc suggestion of extra parentheses. No functional change. | Kenneth R Westerback | |
ok guenther@ | |||
2017-01-11 | Add support for AArch64. Based on FreeBSD's msun header, modified | Patrick Wildt | |
to look and feel like our code. | |||
2016-12-22 | copysign and copysignf are used within libm, so declare them accordingly. | Christian Weisgerber | |
Required if the compiler doesn't replace them with builtins (e.g. clang on amd64). ok kettenis@ guenther@ i386 sync requested by guenther@ | |||
2016-09-12 | Reduce libm's exports and make internal calls go direct. | Philip Guenther | |
All dependencies on libc are now via reserved/standardized names. ok kettenis@ millert@ deraadt@ | |||
2016-09-12 | Per fpclassify(3): isinff(), isnanf(), finite(), and finitef() are deprecated | Philip Guenther | |
in favor of isinf(), isnan(), and isfinite(). ok tb@ martynas@ | |||
2016-09-12 | Use fe*() routines from <fenv.h> instead of fp*() routines from <ieeefp.h> | Philip Guenther | |
ok tb@ martynas@ | |||
2016-09-01 | remove references to sparc | Ted Unangst | |
2016-09-01 | retire the sparc library code | Ted Unangst | |
2016-06-01 | Use \(mi instead of - for the mathematical minus sign as recommended by | Theo Buehler | |
mandoc_char(7). While there, use some spacing around the arithmetic operations to make the more complicated formulas a bit easier to read. looks good to kettenis, no objection from schwarze | |||
2016-05-12 | more hppa64 cleaning | Theo de Raadt | |
2016-05-11 | remove hppa64 port, which we never got going beyond broken single users. | Theo de Raadt | |
hppa reverse-stack gives us a valuable test case, but most developers don't have a 2nd one to proceed further with this. ok kettenis | |||
2016-04-27 | minor cleanup; | Jason McIntyre | |
2016-04-26 | Remove predefined strings from libm pages. | Theo Buehler | |
With lots of help, input and tweaks and finally ok schwarze@ | |||
2016-03-30 | for some time now mandoc has not required MLINKS to function | Jason McIntyre | |
correctly - logically complete that now by removing MLINKS from base; authors need only to ensure there is an entry in NAME for any function/ util being added. MLINKS will still work, and remain for perl to ease upgrades; ok nicm (curses) bcook (ssl) ok schwarze, who provided a lot of feedback and assistance ok tb natano jung | |||
2016-03-12 | Fix markup problem introduced in the previous commit. Solution and | tb | |
explanations provided by schwarze@. | |||
2016-03-10 | Remove VAX-specific bits of libm manpages. | tb | |
ok jmc@ | |||
2016-03-10 | no need for SUBDIR now that vax is gone; ok deraadt | Jason McIntyre | |
2016-03-10 | remove Xr to infnan, a trickily hidden (from me anyway) vax page; | Jason McIntyre | |
2016-03-10 | more pieces of vax | Theo de Raadt | |
2016-03-09 | We are done providing support for the vax. | Theo de Raadt | |
lots of agreement. | |||
2015-12-18 | Fix wrong answer if the imaginary part is zero. | Alexandr Shadchin | |
NetBSD also turn off this piece of code. ok tb@ | |||
2015-12-18 | Fix behavior csqrt, should be | Alexandr Shadchin | |
csqrt(conj(z)) == conj(csqrt(z)) Before csqrt(-4.0 + -0.0i) = 0.0 + 2.0j but should be csqrt(-4.0 + -0.0i) = 0.0 - 2.0j ok tb@, also discussed with daniel@ | |||
2015-11-10 | update NAME section to include all documented functions, | Jason McIntyre | |
or otherwise change Dt to reflect the name of an existing function; feedback/ok schwarze |