History log of /src/lib/libc/arch/i386/gen/Makefile.inc |
Revision | | Date | Author | Comments |
1.30 |
| 26-Apr-2019 |
maya | Unify signbitl implementations. (Unclear why they were different, it was only the comments that differed)
Add a comment describing why the generic version works for both 80-bit and 128-bit double.
|
1.29 |
| 15-Jul-2015 |
pooka | branches: 1.29.16; Don't include sigtramp or foocontext routines in rumprun mode. They won't work (since a rump kernel does not provide NetBSD _lwp syscalls nor signals), but they cause unwanted symbols to be pulled in when the resulting libc is linked.
problem reported by Robert Gifford on rumpkernel-users
|
1.28 |
| 15-Jul-2015 |
pooka | Remove "objects built from C sources" comments. Everyone can see they're built from C sources because the source files end in .c (???)
|
1.27 |
| 26-Mar-2011 |
christos | add fpgetprec/fpsetprec
|
1.26 |
| 06-Dec-2009 |
uebayasi | Rename ${SRCS.{alpha,arm,...}.gen} to ${LSRCS.{alpha,arm,...}.gen} because they ended up in ${LSRCS}, not ${SRCS}. ${SRCS.*} namespace will be used for more useful things. No functional changes intended.
|
1.25 |
| 27-Jun-2006 |
drochner | Build just the compatibility versions of frexp()/ldexp()/modf(), the real implementation is in libm.
|
1.24 |
| 06-Oct-2005 |
dogcow | restore missing .S sources that disappeared in the last commit.
|
1.23 |
| 05-Oct-2005 |
christos | _setjmp and _longjmp are not compat functions. Noticed by Havard Eidnes
|
1.22 |
| 13-Sep-2005 |
christos | compat core reorg.
|
1.21 |
| 15-Apr-2005 |
kleink | Push back the descriptions of NaN formats, and descriptions of the distinction between signalling NaNs and quiet NaNs back into the machine-dependent headers; treat the implementation of __nanf in the same spirit.
IEEE 754 leaves the distinction between signalling NaNs and quiet NANs to the implementation, and unlike our headers used to suggest they're not identical in the interpretation of the fraction's MSb; in due course, make those of hppa, mips, sh3, and sh5 reflect reality.
|
1.20 |
| 04-Mar-2004 |
kleink | branches: 1.20.6; * Turn isinf(3) and isnan(3) into C99-style macros. * Make it possible for ports to override these (i.e., VAX). * Remove isnanl(), which was internal to libc only.
|
1.19 |
| 15-Jan-2004 |
kleink | Add C99 fpclassify(), isfinite(), isnormal(), and signbit() macros.
|
1.18 |
| 25-Oct-2003 |
kleink | Add __infinityf and __infinityl, float respectively long double analogs of __infinity.
|
1.17 |
| 24-Oct-2003 |
kleink | * Since there is no single portable IEEE 754 format for a long double, keep a common implementation of isinfl() and isnanl() to be used by platforms where `long double' == `double'; move others into machine-dependent code. * In due course, consider __VFP_FP__ on arm.
|
1.16 |
| 01-Aug-2003 |
lukem | Rework how dependency generation is performed:
* DPSRCS contains extra dependencies, but is _NOT_ added to CLEANFILES. This is a change of behaviour. If a Makefile wants the clean semantics it must specifically append to CLEANFILES. Resolves PR toolchain/5204.
* To recap: .d (depend) files are generated for all files in SRCS and DPSRCS that have a suffix of: .c .m .s .S .C .cc .cpp .cxx
* If YHEADER is set, automatically add the .y->.h to DPSRCS & CLEANFILES
* Ensure that ${OBJS} ${POBJS} ${LOBJS} ${SOBJS} *.d depend upon ${DPSRCS}
* Deprecate the (short lived) DEPENDSRCS
Update the various Makefiles to these new semantics; generally either adding to CLEANFILES (because DPSRCS doesn't do that anymore), or replacing specific .o dependencies with DPSRCS entries.
Tested with "make -j 8 distribution" and "make distribution".
|
1.15 |
| 17-May-2003 |
thorpej | Build _isinfl() and _isnanl().
|
1.14 |
| 12-May-2003 |
kleink | Rename ieee754_function.c to function_ieee754.c, following the convention used in exec_format.c, loadfile_format.c, subsys_machdep.c etc. Per discussion with Christos.
|
1.13 |
| 18-Jan-2003 |
thorpej | Merge the nathanw_sa branch.
|
1.12 |
| 19-Feb-2002 |
simonb | Clean up some rampant code duplication wrt ieee number handling: - Add alignment-safe double and float unions. - Use the above for the __infinity and __nan constants on all architectures that use the standard ieee754 representation of those constants. - Add a single copy of various ieee754 math functions (frexp, isinf, isnan, ldexp and modf) that had numerous duplicates among the arch-specific directories. - Use the above functions on all architectures where the generic C versions where used. Architectures that had local assembly routines are untouched (for those functions only).
|
1.11 |
| 13-Dec-2000 |
matt | branches: 1.11.2; Add __syscall.S back to sys/Makefile.inc. Remove from arch/i386/gen/ Makefile.inc. If your architecture doesn't have __syscall.S, *add it*.
|
1.10 |
| 13-Dec-2000 |
matt | Add __syscall.S to arch/i386/gen/Makefile.inc along with all the other sys .S files. Remove from arch/i386/Makefile.inc since it doesn't belong there.
|
1.9 |
| 23-Dec-1999 |
kleink | C99: Define a NAN macro in <math.h> which evaulates to a constant expression of a single-precision quiet NaN; only to be defined on platforms that do support this value.
|
1.8 |
| 29-Aug-1999 |
mycroft | Separate isnan() into a separate module, and make isinf()/isnan() use ieee.h.
|
1.7 |
| 15-Jan-1999 |
bouyer | Move the bswap functions from libutil to libc (this bups the minor of libc and the major of libutil). For little-endian architectures merge the bnswap() assembly versions with nto* and hton* using symbols aliasing. Use symbol renaming for the bswap function in this case to avoid namespace pollution. Declare bswap* in machine/bswap.h, not machine/endian.h. For little-endian machines, common code for inline macros go in machine/byte_swap.h Sync libkern with libc. Adjust #include in kernel sources for machine/bswap.h.
|
1.6 |
| 26-Sep-1998 |
christos | Add setjmp versioned bits (from Jason). XXX: Someone needs to make setjmp/longjmp save and restore the signal stack!
|
1.5 |
| 05-Nov-1997 |
cgd | lint stubs for assembly routines.
|
1.4 |
| 09-Apr-1995 |
mycroft | branches: 1.4.10; Add fpset{mask,round,sticky}().
|
1.3 |
| 07-Apr-1995 |
jtc | Added flt_rounds, fpget{round,mask,sticky}.
|
1.2 |
| 25-Feb-1995 |
cgd | don't forget inifinity.c
|
1.1 |
| 25-Feb-1995 |
cgd | need these for new gen/Makefile
|
1.4.10.1 |
| 08-Nov-1997 |
veego | pull up changes from the trunk (approved by perry) from cgd: >lint stubs for assembly routines.
|
1.11.2.4 |
| 22-Mar-2002 |
nathanw | Catch up to -current.
|
1.11.2.3 |
| 08-Mar-2002 |
nathanw | Catch up to -current.
|
1.11.2.2 |
| 13-Jul-2001 |
nathanw | Make userlevel-only *context functions part of libpthread rather than libc.
|
1.11.2.1 |
| 05-Mar-2001 |
nathanw | User-level support for LWPs and scheduler activations. SVR4-style ucontext code by Klaus Klein.
|
1.20.6.1 |
| 19-Apr-2005 |
tron | Pull up revision 1.21 (requested by kleink in ticket #163): Push back the descriptions of NaN formats, and descriptions of the distinction between signalling NaNs and quiet NaNs back into the machine-dependent headers; treat the implementation of __nanf in the same spirit. IEEE 754 leaves the distinction between signalling NaNs and quiet NANs to the implementation, and unlike our headers used to suggest they're not identical in the interpretation of the fraction's MSb; in due course, make those of hppa, mips, sh3, and sh5 reflect reality.
|
1.29.16.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|