Name Date Size #Lines LOC

..--

MakefileH A D07-May-2024559 2415

Makefile.listH A D07-May-2024677 2310

Readme.NetBSDH A D12-May-2000756 3225

e_acos.SH A D07-May-2024516 2514

e_acosf.SH A D07-May-2024482 2312

e_asin.SH A D07-May-2024516 2514

e_asinf.SH A D07-May-2024482 2312

e_atanh.SH A D07-May-2024520 2514

e_atanhf.SH A D07-May-2024486 2312

e_cosh.SH A D07-May-2024516 2514

e_coshf.SH A D07-May-2024482 2312

e_exp.SH A D07-May-2024512 2514

e_expf.SH A D07-May-2024478 2312

e_log.SH A D07-May-2024512 2514

e_log10.SH A D07-May-2024520 2514

e_log10f.SH A D07-May-2024486 2312

e_logf.SH A D07-May-2024478 2312

e_sinh.SH A D07-May-2024516 2514

e_sinhf.SH A D07-May-2024482 2312

e_sqrt.SH A D07-May-2024516 2514

e_sqrtf.SH A D07-May-2024482 2312

fplsp.hexH A D16-May-2000103.2 KiB2,0482,045

fplsp_wrap.SH A D07-May-2024287 163

k_tan.SH A D07-May-2024241 110

k_tanf.SH A D07-May-2024242 110

makeas.shH A D07-May-20244.8 KiB238177

makeoffs.awkH A D16-May-2000233 109

s_atan.SH A D07-May-2024513 2715

s_atanf.SH A D07-May-2024481 2513

s_cos.SH A D07-May-2024507 2715

s_cosf.SH A D07-May-2024475 2513

s_expm1.SH A D07-May-2024519 2715

s_expm1f.SH A D07-May-2024487 2513

s_log1p.SH A D07-May-2024519 2715

s_log1pf.SH A D07-May-2024487 2513

s_logb.SH A D07-May-2024513 2715

s_logbf.SH A D07-May-2024481 2513

s_sin.SH A D07-May-2024507 2715

s_sinf.SH A D07-May-2024475 2513

s_tan.SH A D07-May-2024507 2715

s_tanf.SH A D07-May-2024475 2513

s_tanh.SH A D07-May-2024513 2715

s_tanhf.SH A D07-May-2024481 2513

Readme.NetBSD

1- Import new Motorola 060SP packages in /sys/arch/m68k/060SP first.
2- if you had to change something in here, "make clean" here
3- commit Makefile Readme.NetBSD makeas.sh makeoffs.awk
4- "make" here
5- commit this directory
6     ----------------------------------------------------------------------
7Method:
8
9Out of the table, we create a wrapper for fplsp.S. It contains:
10
11Single precision:
12
13	movl	sp@(4),sp@-			4
14	bsr	_060fplsp+theoffset		4
15	fmovs	fp0,sp@				4
16	movel	sp@+,d0				4
17	rts					2
18	(18 bytes)
19
20Double precision:
21
22	movl	sp@(4+0),sp@-			4
23	movl	sp@(8+4),sp@-			4
24	bsr	_060fplsp+theoffset		4
25	fmovd	fp0,sp@				4
26	movel	sp@+,d0				4
27	movel	sp@+,d1				4
28	rts					2
29	(26 bytes)
30
31For __SVR4_ABI, the code is much shorter... it reduces to a single jbra.
32