Name Date Size #Lines LOC

..--

bits32/H26-Jul-2015-2,9982,235

bits64/H26-Jul-2015-6,3474,623

templates/H26-Jul-2015-808543

Makefile.incHD26-Jul-2015801 3120

README.NetBSDHD26-Jul-2015377 107

README.txtHD26-Jul-20151.6 KiB4128

Symbol.mapHD26-Jul-2015518 4239

eqdf2.cHD26-Jul-2015392 2311

eqsf2.cHD26-Jul-2015392 2311

eqtf2.cHD26-Jul-2015435 2513

fpgetmask.cHD26-Jul-20151.9 KiB5417

fpgetround.cHD26-Jul-20151.9 KiB5417

fpgetsticky.cHD26-Jul-20151.9 KiB5417

fpsetmask.cHD26-Jul-20151.9 KiB5720

fpsetround.cHD26-Jul-20151.9 KiB5720

fpsetsticky.cHD26-Jul-20151.9 KiB5720

gedf2.cHD26-Jul-2015398 2311

gesf2.cHD26-Jul-2015398 2311

getf2.cHD26-Jul-2015443 2713

gexf2.cHD26-Jul-2015439 2613

gtdf2.cHD26-Jul-2015387 2311

gtsf2.cHD26-Jul-2015387 2311

gttf2.cHD26-Jul-2015432 2713

gtxf2.cHD26-Jul-2015428 2613

ledf2.cHD26-Jul-2015398 2311

lesf2.cHD26-Jul-2015398 2311

letf2.cHD26-Jul-2015443 2713

ltdf2.cHD26-Jul-2015391 2311

ltsf2.cHD26-Jul-2015391 2311

lttf2.cHD26-Jul-2015436 2713

nedf2.cHD26-Jul-2015389 2311

negdf2.cHD26-Jul-2015398 2311

negsf2.cHD26-Jul-2015379 2311

negtf2.cHD26-Jul-2015452 2814

negxf2.cHD26-Jul-2015424 2613

nesf2.cHD26-Jul-2015389 2311

netf2.cHD26-Jul-2015434 2713

nexf2.cHD26-Jul-2015430 2613

softfloat-for-gcc.hHD26-Jul-20155.2 KiB170133

softfloat-history.txtHD26-Jul-20151.8 KiB5435

softfloat-source.txtHD26-Jul-201516.7 KiB385292

softfloat-specializeHD26-Jul-201516.4 KiB522439

softfloat.txtHD26-Jul-201516.3 KiB374280

timesoftfloat.cHD26-Jul-201580.9 KiB2,6402,413

timesoftfloat.txtHD26-Jul-20156.3 KiB151110

unorddf2.cHD26-Jul-2015606 2711

unordsf2.cHD26-Jul-2015606 2711

README.NetBSD

1$NetBSD: README.NetBSD,v 1.2 2002/05/21 23:51:05 bjh21 Exp $
2$FreeBSD$
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$
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