Home | History | Annotate | only in /device/linaro/bootloader/edk2/StdLib/LibC/Softfloat
Up to higher level directory
NameDateSize
Arm/05-Oct-2017
bits32/05-Oct-2017
bits64/05-Oct-2017
eqdf2.c05-Oct-20171K
eqsf2.c05-Oct-20171K
eqtf2.c05-Oct-20171.1K
fpgetmask.c05-Oct-20172K
fpgetround.c05-Oct-20172K
fpgetsticky.c05-Oct-20172K
fpsetmask.c05-Oct-20172.2K
fpsetround.c05-Oct-20172.2K
fpsetsticky.c05-Oct-20172.2K
gedf2.c05-Oct-20171K
gesf2.c05-Oct-20171K
getf2.c05-Oct-20171.1K
gexf2.c05-Oct-20171.1K
gtdf2.c05-Oct-20171K
gtsf2.c05-Oct-20171K
gttf2.c05-Oct-20171.1K
gtxf2.c05-Oct-20171.1K
ledf2.c05-Oct-20171K
lesf2.c05-Oct-20171K
letf2.c05-Oct-20171.1K
ltdf2.c05-Oct-20171K
ltsf2.c05-Oct-20171K
lttf2.c05-Oct-20171.1K
Makefile.inc05-Oct-20171.4K
nedf2.c05-Oct-20171K
negdf2.c05-Oct-20171K
negsf2.c05-Oct-20171K
negtf2.c05-Oct-20171.1K
negxf2.c05-Oct-20171.1K
nesf2.c05-Oct-20171K
netf2.c05-Oct-20171.1K
nexf2.c05-Oct-20171.1K
README.NetBSD05-Oct-2017375
README.txt05-Oct-20171.7K
softfloat-for-gcc.h05-Oct-20178.5K
softfloat-history.txt05-Oct-20171.8K
softfloat-source.txt05-Oct-201717.1K
softfloat-specialize05-Oct-201717.3K
Softfloat.inf05-Oct-20172K
softfloat.txt05-Oct-201716.6K
templates/05-Oct-2017
timesoftfloat.c05-Oct-201783.6K
timesoftfloat.txt05-Oct-20176.5K
unorddf2.c05-Oct-20171.3K
unordsf2.c05-Oct-20171.3K
unordtf2.c05-Oct-20171.3K

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