Name Date Size #Lines LOC

..15-Mar-2024-

bits32/H02-Nov-2023-2,9942,232

bits64/H02-Nov-2023-6,3434,620

templates/H17-Aug-2023-805542

Makefile.incH A D17-Aug-2023887 3524

README.NetBSDH A D17-Aug-2023367 96

README.txtH A D17-Aug-20231.6 KiB4027

Symbol.mapH A D15-Mar-2024584 4644

eqdf2.cH A D02-Nov-2023345 209

eqsf2.cH A D02-Nov-2023345 209

eqtf2.cH A D02-Nov-2023388 2211

fpgetmask.cH A D15-Mar-20241.8 KiB4812

fpgetround.cH A D02-Nov-20231.9 KiB5315

fpgetsticky.cH A D15-Mar-20241.8 KiB4812

fpsetmask.cH A D02-Nov-20231.9 KiB5618

fpsetround.cH A D02-Nov-20231.9 KiB5618

fpsetsticky.cH A D02-Nov-20231.9 KiB5618

gedf2.cH A D02-Nov-2023351 209

gesf2.cH A D02-Nov-2023351 209

getf2.cH A D02-Nov-2023396 2411

gexf2.cH A D02-Nov-2023392 2311

gtdf2.cH A D02-Nov-2023340 209

gtsf2.cH A D02-Nov-2023340 209

gttf2.cH A D02-Nov-2023385 2411

gtxf2.cH A D02-Nov-2023381 2311

ledf2.cH A D02-Nov-2023351 209

lesf2.cH A D02-Nov-2023351 209

letf2.cH A D02-Nov-2023396 2411

ltdf2.cH A D02-Nov-2023344 209

ltsf2.cH A D02-Nov-2023344 209

lttf2.cH A D02-Nov-2023389 2411

nedf2.cH A D02-Nov-2023342 209

negdf2.cH A D02-Nov-2023351 209

negsf2.cH A D02-Nov-2023332 209

negtf2.cH A D02-Nov-2023405 2512

negxf2.cH A D02-Nov-2023377 2311

nesf2.cH A D02-Nov-2023342 209

netf2.cH A D02-Nov-2023387 2411

nexf2.cH A D02-Nov-2023383 2311

softfloat-for-gcc.hH A D17-Aug-20235.2 KiB169133

softfloat-history.txtH A D17-Aug-20231.8 KiB5334

softfloat-source.txtH A D17-Aug-202316.7 KiB384291

softfloat-specializeH A D17-Aug-202316.4 KiB521438

softfloat.txtH A D17-Aug-202316.2 KiB373279

timesoftfloat.cH A D02-Nov-202380.9 KiB2,6372,411

timesoftfloat.txtH A D17-Aug-20236.3 KiB150109

unorddf2.cH A D02-Nov-2023559 249

unordsf2.cH A D02-Nov-2023559 249

README.NetBSD

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

README.txt

1$NetBSD: README.txt,v 1.1 2000/06/06 08:15:02 bjh21 Exp $
2
3Package Overview for SoftFloat Release 2a
4
5John R. Hauser
61998 December 13
7
8
9SoftFloat is a software implementation of floating-point that conforms to
10the IEC/IEEE Standard for Binary Floating-Point Arithmetic.  SoftFloat is
11distributed in the form of C source code.  Compiling the SoftFloat sources
12generates 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
20The 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
27Other files in the package comprise the source code for SoftFloat.
28
29Please be aware that some work is involved in porting this software to other
30targets.  It is not just a matter of getting `make' to complete without
31error messages.  I would have written the code that way if I could, but
32there are fundamental differences between systems that I can't make go away.
33You should not attempt to compile SoftFloat without first reading both
34`softfloat.txt' and `softfloat-source.txt'.
35
36At the time of this writing, the most up-to-date information about
37SoftFloat and the latest release can be found at the Web page `http://
38HTTP.CS.Berkeley.EDU/~jhauser/arithmetic/SoftFloat.html'.
39
40