NameDateSize

..17-May-201943

bits32/H17-May-20194

bits64/H17-May-20194

eqdf2.cH A D17-May-2019468

eqsf2.cH A D17-May-2019468

eqtf2.cH A D17-May-2019508

fpgetmask.cH A D17-May-20191.9 KiB

fpgetround.cH A D17-May-20191.9 KiB

fpgetsticky.cH A D17-May-20191.9 KiB

fpsetmask.cH A D17-May-20192 KiB

fpsetround.cH A D17-May-20192 KiB

fpsetsticky.cH A D17-May-20192 KiB

gedf2.cH A D17-May-2019474

gesf2.cH A D17-May-2019474

getf2.cH A D17-May-2019516

gexf2.cH A D17-May-2019512

gtdf2.cH A D17-May-2019463

gtsf2.cH A D17-May-2019463

gttf2.cH A D17-May-2019505

gtxf2.cH A D17-May-2019501

ledf2.cH A D17-May-2019474

lesf2.cH A D17-May-2019474

letf2.cH A D17-May-2019516

ltdf2.cH A D17-May-2019467

ltsf2.cH A D17-May-2019467

lttf2.cH A D17-May-2019509

Makefile.incH A D17-May-2019879

nedf2.cH A D17-May-2019465

negdf2.cH A D17-May-2019475

negsf2.cH A D17-May-2019456

negtf2.cH A D17-May-2019526

negxf2.cH A D17-May-2019498

nesf2.cH A D17-May-2019465

netf2.cH A D17-May-2019507

nexf2.cH A D17-May-2019503

README.NetBSDH A D17-May-2019459

README.txtH A D17-May-20191.7 KiB

softfloat-for-gcc.hH A D17-May-20195.3 KiB

softfloat-history.txtH A D17-May-20191.9 KiB

softfloat-source.txtH A D17-May-201916.8 KiB

softfloat-specializeH A D17-May-201916.5 KiB

softfloat.txtH A D17-May-201916.3 KiB

Symbol.mapH A D17-May-2019594

templates/H17-May-20195

timesoftfloat.cH A D17-May-201981 KiB

timesoftfloat.txtH A D17-May-20196.4 KiB

unorddf2.cH A D17-May-2019685

unordsf2.cH A D17-May-2019685

README.NetBSD

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

README.txt

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