Home | History | Annotate | only in /src/lib/libc/softfloat
Up to higher level directory
NameDateSize
bits32/09-Nov-2022
bits64/17-Sep-2025
eqdf2.c06-Jun-2000513
eqsf2.c06-Jun-2000513
eqtf2.c17-Jan-2011555
fpgetmask.c11-Sep-20252.1K
fpgetround.c28-Apr-20082K
fpgetsticky.c28-Apr-20082K
fpsetmask.c10-Jan-20132.1K
fpsetround.c10-Jan-20132.1K
fpsetsticky.c10-Jan-20132.1K
gedf2.c06-Jun-2000519
gesf2.c06-Jun-2000519
getf2.c17-Jan-2011563
gexf2.c27-Sep-2004557
gtdf2.c06-Jun-2000508
gtsf2.c06-Jun-2000508
gttf2.c17-Jan-2011552
gtxf2.c27-Sep-2004546
ledf2.c06-Jun-2000519
lesf2.c06-Jun-2000519
letf2.c17-Jan-2011563
ltdf2.c06-Jun-2000512
ltsf2.c06-Jun-2000512
lttf2.c17-Jan-2011556
Makefile.fenv.inc10-Sep-2025274
Makefile.inc11-Sep-20251.2K
nedf2.c06-Jun-2000510
negdf2.c06-Jun-2000520
negsf2.c06-Jun-2000501
negtf2.c17-Jan-2011573
negxf2.c27-Sep-2004543
nesf2.c06-Jun-2000510
netf2.c17-Jan-2011554
nexf2.c27-Sep-2004548
README.NetBSD21-May-2002367
README.txt06-Jun-20001.6K
softfloat-for-gcc.h01-Aug-20136.2K
softfloat-history.txt06-Jun-20001.8K
softfloat-source.txt24-Nov-200616.7K
softfloat-specialize17-Sep-202519.2K
softfloat.txt24-Nov-200616.2K
templates/09-Nov-2022
timesoftfloat.c06-Jun-200081K
timesoftfloat.txt19-Jun-20236.3K
unorddf2.c06-May-2003733
unordsf2.c06-May-2003733
unordtf2.c30-Jan-2014771

README.NetBSD

      1 $NetBSD: README.NetBSD,v 1.2 2002/05/21 23:51:05 bjh21 Exp $
      2 
      3 This is a modified version of part of John Hauser's SoftFloat 2a package.
      4 This version has been heavily modified to support its use with GCC to
      5 implement built-in floating-point operations, but compiling
      6 softfloat.c without SOFTFLOAT_FOR_GCC defined should get you the same
      7 results as from the original.
      8 
      9 

README.txt

      1 $NetBSD: README.txt,v 1.1 2000/06/06 08:15:02 bjh21 Exp $
      2 
      3 Package Overview for SoftFloat Release 2a
      4 
      5 John R. Hauser
      6 1998 December 13
      7 
      8 
      9 SoftFloat is a software implementation of floating-point that conforms to
     10 the IEC/IEEE Standard for Binary Floating-Point Arithmetic.  SoftFloat is
     11 distributed in the form of C source code.  Compiling the SoftFloat sources
     12 generates two things:
     13 
     14 -- A SoftFloat object file (typically `softfloat.o') containing the complete
     15    set of IEC/IEEE floating-point routines.
     16 
     17 -- A `timesoftfloat' program for evaluating the speed of the SoftFloat
     18    routines.  (The SoftFloat module is linked into this program.)
     19 
     20 The SoftFloat package is documented in four text files:
     21 
     22    softfloat.txt          Documentation for using the SoftFloat functions.
     23    softfloat-source.txt   Documentation for compiling SoftFloat.
     24    softfloat-history.txt  History of major changes to SoftFloat.
     25    timesoftfloat.txt      Documentation for using `timesoftfloat'.
     26 
     27 Other files in the package comprise the source code for SoftFloat.
     28 
     29 Please be aware that some work is involved in porting this software to other
     30 targets.  It is not just a matter of getting `make' to complete without
     31 error messages.  I would have written the code that way if I could, but
     32 there are fundamental differences between systems that I can't make go away.
     33 You should not attempt to compile SoftFloat without first reading both
     34 `softfloat.txt' and `softfloat-source.txt'.
     35 
     36 At the time of this writing, the most up-to-date information about
     37 SoftFloat and the latest release can be found at the Web page `http://
     38 HTTP.CS.Berkeley.EDU/~jhauser/arithmetic/SoftFloat.html'.
     39 
     40