• Home
Name Date Size #Lines LOC

..--

Arm/03-May-2024-464156

bits32/03-May-2024-3,0052,242

bits64/03-May-2024-6,3494,625

templates/03-May-2024-805542

Makefile.incD03-May-20241.4 KiB4332

README.NetBSDD03-May-2024375 96

README.txtD03-May-20241.7 KiB4027

Softfloat.infD03-May-20242 KiB7565

eqdf2.cD03-May-20241 KiB3913

eqsf2.cD03-May-20241 KiB3913

eqtf2.cD03-May-20241.1 KiB4115

fpgetmask.cD03-May-20242 KiB5619

fpgetround.cD03-May-20242 KiB5619

fpgetsticky.cD03-May-20242 KiB5619

fpsetmask.cD03-May-20242.2 KiB6125

fpsetround.cD03-May-20242.2 KiB6125

fpsetsticky.cD03-May-20242.2 KiB6125

gedf2.cD03-May-20241 KiB3913

gesf2.cD03-May-20241 KiB3913

getf2.cD03-May-20241.1 KiB4115

gexf2.cD03-May-20241.1 KiB4015

gtdf2.cD03-May-20241 KiB3713

gtsf2.cD03-May-20241 KiB3713

gttf2.cD03-May-20241.1 KiB4115

gtxf2.cD03-May-20241.1 KiB4015

ledf2.cD03-May-20241 KiB3713

lesf2.cD03-May-20241 KiB3713

letf2.cD03-May-20241.1 KiB4115

ltdf2.cD03-May-20241 KiB3713

ltsf2.cD03-May-20241 KiB3713

lttf2.cD03-May-20241.1 KiB4115

nedf2.cD03-May-20241 KiB3713

negdf2.cD03-May-20241 KiB3713

negsf2.cD03-May-20241 KiB3713

negtf2.cD03-May-20241.1 KiB4216

negxf2.cD03-May-20241.1 KiB4015

nesf2.cD03-May-20241 KiB3713

netf2.cD03-May-20241.1 KiB4115

nexf2.cD03-May-20241.1 KiB4015

softfloat-for-gcc.hD03-May-20248.5 KiB243164

softfloat-history.txtD03-May-20241.8 KiB5334

softfloat-source.txtD03-May-202417.1 KiB384291

softfloat-specializeD03-May-202417.3 KiB530446

softfloat.txtD03-May-202416.6 KiB373279

timesoftfloat.cD03-May-202483.6 KiB2,6422,415

timesoftfloat.txtD03-May-20246.5 KiB150109

unorddf2.cD03-May-20241.3 KiB4113

unordsf2.cD03-May-20241.3 KiB4113

unordtf2.cD03-May-20241.3 KiB4515

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