NameDateSize

..07-Mar-20184 KiB

axp.1.MakefileH A D18-May-2017117

axp.2.MakefileH A D18-May-2017117

axp.cH A D18-May-20173.8 KiB

axp.hH A D18-May-20174.2 KiB

axp.MakefileH A D18-May-201739

axp.READMEH A D18-May-2017469

axp.sH A D18-May-20174 KiB

axp_b.sH A D18-May-20171.6 KiB

default.MakefileH A D18-May-201789

hppa-cnx.MakefileH A D18-May-2017408

hppa.hH A D18-May-20176.3 KiB

hppa.MakefileH A D18-May-2017413

hppa.sH A D18-May-20177.9 KiB

hppa_b.sH A D18-May-20175.9 KiB

i386.hH A D18-May-20173.7 KiB

i386.READMEH A D18-May-2017207

i386.sH A D18-May-20173.6 KiB

i386_b.sH A D18-May-2017718

iX86_64.hH A D18-May-20173.9 KiB

iX86_64.sH A D18-May-20172.2 KiB

ksr1.hH A D18-May-20175.6 KiB

ksr1.MakefileH A D18-May-201748

ksr1.sH A D18-May-201711.9 KiB

ksr1_b.sH A D18-May-20171 KiB

m88k.cH A D18-May-20173.4 KiB

m88k.hH A D18-May-20174.5 KiB

m88k.MakefileH A D18-May-2017108

m88k.sH A D18-May-20173.9 KiB

m88k_b.sH A D18-May-20172 KiB

mips-irix5.sH A D18-May-20175.7 KiB

mips.hH A D18-May-20174.1 KiB

mips.sH A D18-May-20175 KiB

mips_b.sH A D18-May-20171.3 KiB

null.cH A D18-May-2017623

null.READMEH A D18-May-20170

null.sH A D18-May-2017491

powerpc.cH A D18-May-20172.1 KiB

powerpc.READMEH A D18-May-2017639

powerpc_mach.hH A D18-May-201726.3 KiB

powerpc_mach.sH A D18-May-201717.6 KiB

powerpc_mach_b.sH A D18-May-20173.1 KiB

powerpc_sys5.hH A D18-May-201723.7 KiB

powerpc_sys5.sH A D18-May-201717.6 KiB

powerpc_sys5_b.sH A D18-May-20173.3 KiB

pthreads.MakefileH A D18-May-20171.6 KiB

solaris.READMEH A D18-May-2017458

sparc.hH A D18-May-20173.7 KiB

sparc.sH A D18-May-20174.9 KiB

sparc_b.sH A D18-May-20171.5 KiB

vax.hH A D18-May-20173.6 KiB

vax.sH A D18-May-20171.9 KiB

vax_b.sH A D18-May-20171.3 KiB

axp.README

1The handling of varargs is platform-dependent.  Assar Westerlund
2stared at the problem for a while and deduces the following table:
3
4vers / compiler         cc              gcc
5----------------------------------------------------------------------
61.3                     a0, offset      __base, __offset
72.0                     _a0, _offset    __base, __offset
8
9The current code should handle both cc and gcc versions, provided
10you configure for the correct compiler.
11

i386.README

1Note that some machines want labels to have leading underscores,
2while others (e.g. System V) do not.  Thus, several labels appear
3duplicated except for the leading underscore, e.g.
4
5	_qt_cswap:
6	qt_cswap:
7
8

powerpc.README

1
2PowerPC assembly support
3
4
51) MacOS X, Darwin, MKLinux and other systems based on Mach kernel ABI:
6
7	- Configuration command: ./config powerpc-darwin
8
9	- See documentation inside powerpc_mach.h, powerpc_mach.s, powerpc.c.
10
11
122) LinuxPPC, and other systems based on System V ABI:
13
14	- Configuration command: ./config powerpc
15
16	- See documentation inside powerpc_sys5.h, powerpc_sys5.s, powerpc.c.
17
18
19Marco Bucci <marco.bucci@inwind.it>
20December 2002
21
22
23 * This software is largely based on the original PowerPC-Linux porting
24 * developed by Ken Aaker <kenaaker@silverbacksystems.com>
25 *
26 * Marco Bucci <marco.bucci@inwind.it>
27 * December 2002
28

solaris.README

1Solaris 2.x is like System V (maybe it *is* System V?) and is different
2from older versions in that it uses no leading underscore for variable
3and function names.  That is, the old convention was:
4
5	foo(){}
6
7got compiled as
8
9		.globl	_foo
10	_foo:
11
12and is now compiled as
13
14		.globl	foo
15	foo:
16
17The `config' script should fix up the older (leading underscore) versions
18of the machine-dependent files to use the newer (no leading underscore)
19calling conventions.
20