summaryrefslogtreecommitdiffstats
path: root/lib/libm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Fix declaration of S1 by swapping misplaced ',' and ';'.tb2019-10-301-2/+2
| | | | | | | 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
* More Version 1 AT&T UNIX history.schwarze2019-09-061-2/+7
| | | | | | 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>.
* repair confusing "} if" indentation as suggested by deraadt@naddy2019-04-012-2/+4
|
* Remove FBSDID.kevlo2019-03-152-8/+2
| | | | ok deraadt@
* Setting and getting the rounding mode on our arm64 FPU has not workedpatrick2019-03-121-9/+14
| | | | | | | | | | | | | | 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@
* I am retiring my old email address; replace it with my OpenBSD one.millert2019-01-253-9/+9
|
* Remove the unused leftovers of the 4.4BSD libm, which was only usednaddy2018-07-1834-6185/+1
| | | | | | | 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@
* Add missing retguard checkmortimer2018-07-081-1/+2
| | | | ok deraadt
* Add retguard macros to libm assembly.mortimer2018-07-0343-43/+135
| | | | ok deraadt
* improve markup quality in the cases found by the new "--" style messageschwarze2018-03-161-5/+5
|
* Since most (if not all) ARMv8 hardware doesn't actually support trapping ofkettenis2018-03-161-20/+4
| | | | | | | floating-point exceptions, simplify the functions that control the exception masks just like we did on armv7. ok tom@
* Gah, rintl() is used internally, so add a macro for the fourth possiblity,guenther2018-03-122-2/+7
| | | | | | | a cloning a non-standard, long double function which _is_ used from the matching plain double function build failured pointed out by deraadt@
* Make the binding of rintl, significand, and significandf consistentlyguenther2018-03-125-5/+9
| | | | | | 'weak' in the static libm.a ok deraadt@
* Add cvs tag, copyright, and licenseguenther2018-03-123-0/+49
|
* Fix build of sincosl on machines where long double == doubleguenther2018-03-123-4/+8
| | | | ok deraadt@
* Implement sicos(3), sincosf(3) and sincosl(3). These functions are commonkettenis2018-03-1012-6/+629
| | | | | | | extensions and modern compilers (such as clang) will use them to optimize separate calculations of sine and cosine. ok tom@, patrick@, deraadt@, jmc@
* Remove CFLAGS+=-mfloat-abi=softfp that I accidentally committed.kettenis2018-02-281-3/+1
|
* Change floating-point mode/environment control functions to operate onkettenis2018-02-282-40/+82
| | | | | | | | | | 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@
* Constants which can go into .rodataderaadt2018-02-052-2/+4
|
* Xr; from jan staryjmc2017-09-271-2/+3
|
* For exceptional cases of mathematical formulae that can't reasonablyschwarze2017-08-262-18/+23
| | | | | | be represented otherwise, use eqn(7). Idea originally from bentley@, feedback and OK bentley@, OK tb@, and no objection from jmc@.
* Use 0xcc trapsleds instead of default/nop/0xcc in BTC alignmentsderaadt2017-08-193-13/+9
| | | | don't bother with .text before ENTRY()
* Nuke whitespace foolish enough to expose itself during the greatkrw2017-01-2114-28/+28
| | | | "warning:" rectification.
* Implement gcc suggestion of extra parentheses. No functional change.krw2017-01-201-2/+2
| | | | ok guenther@
* Add support for AArch64. Based on FreeBSD's msun header, modifiedpatrick2017-01-112-2/+289
| | | | to look and feel like our code.
* copysign and copysignf are used within libm, so declare them accordingly.naddy2016-12-224-10/+14
| | | | | | | Required if the compiler doesn't replace them with builtins (e.g. clang on amd64). ok kettenis@ guenther@ i386 sync requested by guenther@
* Reduce libm's exports and make internal calls go direct.guenther2016-09-12293-563/+1511
| | | | | | All dependencies on libc are now via reserved/standardized names. ok kettenis@ millert@ deraadt@
* Per fpclassify(3): isinff(), isnanf(), finite(), and finitef() are deprecatedguenther2016-09-1225-81/+81
| | | | | | in favor of isinf(), isnan(), and isfinite(). ok tb@ martynas@
* Use fe*() routines from <fenv.h> instead of fp*() routines from <ieeefp.h>guenther2016-09-121-10/+11
| | | | ok tb@ martynas@
* remove references to sparctedu2016-09-011-3/+1
|
* retire the sparc library codetedu2016-09-011-336/+0
|
* Use \(mi instead of - for the mathematical minus sign as recommended bytb2016-06-011-7/+7
| | | | | | | 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
* more hppa64 cleaningderaadt2016-05-121-370/+0
|
* remove hppa64 port, which we never got going beyond broken single users.deraadt2016-05-111-3/+1
| | | | | | 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
* minor cleanup;jmc2016-04-272-6/+6
|
* Remove predefined strings from libm pages.tb2016-04-2621-128/+103
| | | | With lots of help, input and tweaks and finally ok schwarze@
* for some time now mandoc has not required MLINKS to functionjmc2016-03-301-202/+1
| | | | | | | | | | | | 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
* Fix markup problem introduced in the previous commit. Solution andtb2016-03-121-6/+5
| | | | explanations provided by schwarze@.
* Remove VAX-specific bits of libm manpages.tb2016-03-106-304/+17
| | | | ok jmc@
* no need for SUBDIR now that vax is gone; ok deraadtjmc2016-03-101-3/+1
|
* remove Xr to infnan, a trickily hidden (from me anyway) vax page;jmc2016-03-105-20/+14
|
* more pieces of vaxderaadt2016-03-109-1846/+0
|
* We are done providing support for the vax.deraadt2016-03-092-32/+2
| | | | lots of agreement.
* Fix wrong answer if the imaginary part is zero.shadchin2015-12-183-3/+9
| | | | | | NetBSD also turn off this piece of code. ok tb@
* Fix behavior csqrt, should beshadchin2015-12-183-6/+6
| | | | | | | | | | | 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@
* update NAME section to include all documented functions,jmc2015-11-102-6/+10
| | | | | | or otherwise change Dt to reflect the name of an existing function; feedback/ok schwarze
* From FreeBSD 23397:shadchin2015-11-061-7/+7
| | | | | | | | | | | | | Fixed wrong magic numbers in scaling. hypotf() was very broken for large and small values: hypotf(2.3819765e+38, 2.0416943e+38) was NaN instead of 3.1372484e+38 hypotf(-3.4028235e+38, 3.3886450e+38) was NaN instead of Inf hypotf(-2.8025969e-45, -2.8025969e-45) was 0 instead of 4.2038954e-45 Found by: ucbtest ok miod@
* Move s_signgam.c to PURE_SRCS, so that it also gets built on vax.miod2015-09-181-3/+3
|
* use .Va for global variables, and .Vt where the type is includedschwarze2015-09-141-9/+9
|
* Avoid left-shifting a negative integer, which is undefined. Replacenaddy2015-08-201-3/+3
| | | | | it with the intended value, in a defined way. From FreeBSD (Dimitry Andric). ok miod@ deraadt@ kettenis@