Name Date Size #Lines LOC

..--

bits32/H05-Sep-2024-2,9952,233

bits64/H05-Sep-2024-6,3444,621

templates/H05-Sep-2024-805542

Makefile.incHD05-Sep-2024887 3524

README.NetBSDHD05-Sep-2024367 96

README.txtHD05-Sep-20241.6 KiB4027

Symbol.mapHD05-Sep-2024676 5552

eqdf2.cHD05-Sep-2024368 2110

eqsf2.cHD05-Sep-2024368 2110

eqtf2.cHD05-Sep-2024411 2312

fpgetmask.cHD05-Sep-20241.9 KiB5416

fpgetround.cHD05-Sep-20241.9 KiB5416

fpgetsticky.cHD05-Sep-20241.9 KiB5416

fpsetmask.cHD05-Sep-20241.9 KiB5719

fpsetround.cHD05-Sep-20241.9 KiB5719

fpsetsticky.cHD05-Sep-20242 KiB5719

gedf2.cHD05-Sep-2024374 2110

gesf2.cHD05-Sep-2024374 2110

getf2.cHD05-Sep-2024419 2512

gexf2.cHD05-Sep-2024415 2412

gtdf2.cHD05-Sep-2024363 2110

gtsf2.cHD05-Sep-2024363 2110

gttf2.cHD05-Sep-2024408 2512

gtxf2.cHD05-Sep-2024404 2412

ledf2.cHD05-Sep-2024374 2110

lesf2.cHD05-Sep-2024374 2110

letf2.cHD05-Sep-2024419 2512

ltdf2.cHD05-Sep-2024367 2110

ltsf2.cHD05-Sep-2024367 2110

lttf2.cHD05-Sep-2024412 2512

nedf2.cHD05-Sep-2024365 2110

negdf2.cHD05-Sep-2024374 2110

negsf2.cHD05-Sep-2024355 2110

negtf2.cHD05-Sep-2024428 2613

negxf2.cHD05-Sep-2024400 2412

nesf2.cHD05-Sep-2024365 2110

netf2.cHD05-Sep-2024410 2512

nexf2.cHD05-Sep-2024406 2412

softfloat-for-gcc.hHD05-Sep-20245.2 KiB169133

softfloat-history.txtHD05-Sep-20241.8 KiB5334

softfloat-source.txtHD05-Sep-202416.7 KiB384291

softfloat-specializeHD05-Sep-202416.4 KiB521438

softfloat.txtHD05-Sep-202416.2 KiB373279

timesoftfloat.cHD05-Sep-202480.9 KiB2,6382,412

timesoftfloat.txtHD05-Sep-20246.3 KiB150109

unorddf2.cHD05-Sep-2024582 2510

unordsf2.cHD05-Sep-2024582 2510

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