summaryrefslogtreecommitdiffstats
path: root/lib/libm/arch (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* fenv for amd64; from matthew@martynas2011-04-211-0/+423
| | | | feedback & ok guenther@, matthew@
* fenv for hppamartynas2011-04-211-0/+355
|
* fenv for m68kmartynas2011-04-201-0/+360
|
* typo in a commentderaadt2010-06-031-2/+2
|
* Tweak inline asm to prevent gcc4 from optimizing away crucial bits of it.kettenis2010-05-058-24/+24
| | | | ok miod@
* Provide assembly version of sqrtl(3).kettenis2009-11-061-0/+12
| | | | ok pirofti@
* Provide assembly version of sqrtl(3).kettenis2009-11-051-0/+12
| | | | ok otto@
* rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andderaadt2009-10-2714-56/+0
| | | | | | | unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms
* round, roundf, trunc, truncf for hppa; ok kettenis@martynas2009-07-154-0/+108
|
* floor(3) should round towards -inf instead of towards zero.kettenis2009-06-302-6/+4
| | | | ok martynas@, deraadt@
* fix scalbn, scalbnf, frexpf on amd64. don't use double argmartynas2009-04-252-10/+16
| | | | | | | | | | float/double prologue/epilogue, since the second argument is not float/double. were never working properly (always returned inf). actually, should help other math funcs (like pow) too, since they use it internally tested by kurt@; devel/boost fp regresses are working better now. ok kurt@
* alias and give frexpf symbol external linkage to scalbnf; this wasmartynas2009-04-212-2/+8
| | | | | | | | overriden by md source. spotted by kurt@ actually; on amd64 scalbnf, scalbn (and therefore now frexpf) have always been broken since second argument is not float. fix is under reviewal / will be committed separately ok kurt@, kettenis@, millert@. tested by kurt@
* lrint, llrint, lrintf, llrintf for amd64. ok kettenis@, oga@martynas2009-04-104-0/+48
|
* missing rcs ids; spacingmartynas2009-04-084-18/+19
|
* remove i386/x86_64 ifdefs. i386 lives @ i387. miod@ agreesmartynas2009-04-0811-183/+10
| | | | object code matches so this got to be oki
* implement and use sqrt, sqrtf & fabsf in hardware; since it'smartynas2009-04-053-0/+85
| | | | faster that way. tested by myself. discussed w/ & ok miod@, millert@
* spacemartynas2008-12-125-13/+13
|
* use sys/cdefs.h; pointed out by theomartynas2008-12-102-4/+4
|
* alias fabsl to fabs on these archsmartynas2008-12-096-33/+15
|
* - 80-bit and quad precision trigonometric and other mostmartynas2008-12-0915-153/+222
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | important functions: acosl, asinl, atanl, atan2l, cosl, sinl, tanl, exp2l, frexpl, ilogbl, ldexpl, logbl, scalbnl, fabsl, hypotl, powl, sqrtl, rintl, copysignl, nanl, fdiml, fmaxl, fminl. mostly taken from freebsd, needed alot of changes to adapt. note, these are all c versions; and are quite slow when architectures have, e.g. sqrt. assembly versions will be added afterwards - make them .weak/__weak_alias to the double precision versions on other archs - no need to have two finites. finite() and finitef() are non-standard 3BSD obsolete versions of isfinite. remove from libm. make them weak_alias in libc to __isfinite and __isfinitef instead. similarly make 3BSD obsolete versions of isinf, isinff, isnan, isnanf weak_aliases to C99's __isinf, __isinff, __isnan, __isnanf - remove unused infinity.c. the c library has infinities for each supported platform - use STRICT_ASSIGN cast hack for _kernel_rem_pio2, so that the double version has a chance of working on i386 with extra precision - avoid storing multiple copies of the pi/2 array, since it won't vary - bump major due to removed finite/finitef. although they will be in libc, which anything is linked to, minor bump might be enough ok millert@. tested by sthen@, jsg@, ajacoutot@, kili@, naddy@
* float math functions: copysignf and logbf. ok millert@martynas2008-11-201-1/+35
|
* - noieee_src: adapt complex versions of the functions it alreadymartynas2008-10-071-3/+2
| | | | | supports (which is all, except the float ones) ok millert@
* remove d_cbrt, dcbrt, d_sqrt. ok millert@martynas2008-09-162-16/+7
|
* remove z_abs. ok millert@martynas2008-09-131-9/+1
|
* - replace dtoa w/ David's gdtoa, version 2008-03-15martynas2008-09-0741-82/+82
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - provide proper dtoa locks - use the real strtof implementation - add strtold, __hdtoa, __hldtoa - add %a/%A support - don't lose precision in printf, don't round to double anymore - implement extended-precision versions of libc functions: fpclassify, isnan, isinf, signbit, isnormal, isfinite, now that the ieee.h is fixed - separate vax versions of strtof, and __hdtoa - add complex math support. added functions: cacos, casin, catan, ccos, csin, ctan, cacosh, casinh, catanh, ccosh, csinh, ctanh, cexp, clog, cabs, cpow, csqrt, carg, cimag, conj, cproj, creal, cacosf, casinf, catanf, ccosf, csinf, ctanf, cacoshf, casinhf, catanhf, ccoshf, csinhf, ctanhf, cexpf, clogf, cabsf, cpowf, csqrtf, cargf, cimagf, conjf, cprojf, crealf - add fdim, fmax, fmin - add log2. (adapted implementation e_log.c. could be more acruate & faster, but it's good enough for now) - remove wrappers & cruft in libm, supposed to work-around mistakes in SVID, etc.; use ieee versions. fixes issues in python 2.6 for djm@ - make _digittoint static - proper definitions for i386, and amd64 in ieee.h - sh, powerpc don't really have extended-precision - add missing definitions for mips64 (quad), m{6,8}k (96-bit) float.h for LDBL_* - merge lead to frac for m{6,8}k, for gdtoa to work properly - add FRAC*BITS & EXT_TO_ARRAY32 definitions in ieee.h, for hdtoa&ldtoa to use - add EXT_IMPLICIT_NBIT definition, which indicates implicit normalization bit - add regression tests for libc: fpclassify and printf - arith.h & gd_qnan.h definitions - update ieee.h: hppa doesn't have quad-precision, hppa64 does - add missing prototypes to gdtoaimp - on 64-bit platforms make sure gdtoa doesn't use a long when it really wants an int - etc., what i may have forgotten... - bump libm major, due to removed&changed symbols - no libc bump, since this is riding on djm's libc major crank from a day ago discussed with / requested by / testing theo, sthen@, djm@, jsg@, merdely@, jsing@, tedu@, brad@, jakemsr@, and others. looks good to millert@ parts of the diff ok kettenis@ this commit does not include: - man page changes
* - remove isinff, isnanf. this has been moved to libcmartynas2008-07-244-91/+1
| | | | | | | | | | | - remove never-enabled signbit. libc has is now - add C99 implementations, from freebsd, for nan(), nanf() (needed to write _digittoint for it), exp2(), exp2f(), remquo(), remquof(), needed STRICT_ASSIGN macro for math_private.h - bump major man pages will follow exp2{,f} has been requested by chl@ ok millert@
* First pass at removing clauses 3 and 4 from NetBSD licenses.ray2008-06-262-16/+2
| | | | | | | | | Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
* cleaning up, no functional changesmartynas2008-06-214-24/+24
| | | | | | | - no support for National 32000, removing ns32000/national ifdefs maze - remove tahoe defs - ansify looks fine to millert@; who also noticed rint removal
* add isinff and isnanf. no objection millert@martynas2008-06-121-1/+21
|
* use ALTENTRY; was ok millert@martynas2008-06-121-4/+2
|
* drem{,f} are aliases for remainder{,f}, so:martynas2008-06-111-4/+7
| | | | | | | | | | - document and mlink drem{,f} - drem->remainder on noieee, and make drem an alias - finite returns integer, n_support.c - general n_support.c ansification and cleanup - drem is now an ALTENTRY for remainder, in n_support.S help with man page from jmc@ and millert@ ok millert@
* Use proper *ENTRY macros with symbolic register save masks, sprinklemiod2008-05-219-140/+94
| | | | | | | | | | _C_LABEL and _ASM_LABEL, and add $OpenBSD$ RCS Ids. Include <sys/errno.h> and use its values directly, instead of using .set directives (which grow the individual .o files even) Also, replace `$' in internal (but non static) symbols with `_', and prefix those with `__'.
* amd64 version of __signbit() (pedro sized quad floats... really just IEEEjason2007-06-011-0/+19
| | | | extended padded to 16 bytes)
* add __signbitl() for 68881 (not used yet)jason2007-06-011-0/+19
|
* add __signbitl for i387 (not used yet)jason2007-06-011-0/+19
|
* add __signbit/__signbitf/__signbitl (all the same) for vax (not used yet,jason2007-05-311-0/+19
| | | | but coming soon to a <math.h> near you).
* netbsd: stack sanity, leave the return PC alonemartynas2007-04-201-3/+3
| | | | ok kettenis@
* Move llrint.c, llrintf.c, lrint.c and lrintf.c to s_llrint.c, s_llrintf.c,kettenis2006-09-254-0/+138
| | | | | | s_lrint.c and s_lrintf.c, and add i387-specific assembler versions. ok deraadt@, otto@
* New amd64 exp(3).kettenis2006-03-191-0/+101
| | | | tested by steven@, ok otto@
* Remove amd64 code.kettenis2006-03-181-31/+1
| | | | ok otto@
* amd64 asm code is not correct for exp(+/-Inf), so until somebodyotto2006-03-141-129/+0
| | | | | comes up with a correct asm version, use the C version of exp(3). ok steven@ kettenis@
* avoid ' which confuses make dependderaadt2005-11-231-1/+1
|
* Fix exp(3) for arg Inf and -Inf. From NetBSD; PR 4578. ok deraadt@otto2005-11-151-13/+105
|
* Add missing $OpenBSD$ tags.espie2005-08-02107-286/+107
| | | | | | Zap wasteful RCSID("$NetBSD$") okay deraadt@
* Improve the accuracy of log1p function on i387 for small values of x.canacar2005-03-071-9/+56
| | | | From NetBSD, ok miod@
* pull in r1.8 from NetBSD, drochner: "amd64: stack sanity, leave thedhartmei2005-03-011-2/+2
| | | | return PC alone", via hugh@
* Fix a typo and get good results in the process, fixes PR 3830 and passesmiod2004-07-221-1/+1
| | | | Perl's regression test; ok art@
* evil pastomickey2004-05-221-2/+2
|
* we now use the cvs repository copied amd64 setderaadt2004-02-2842-1322/+0
|
* add libm parts for amd64; much from netbsd, integration by mickey.deraadt2004-02-0884-0/+2644
| | | | | | Instead of mixing the i387 & xmm register components, we decide to explicitly seperate them. libm is already confusing enough as it is, thank you very much