30c3de1ffb
* BCC_MAKEFILE: Merge with GC 6.3alpha1 release. * ChangeLog: Likewise. * Makefile.am: Likewise. * Makefile.direct: Likewise. * Makefile.dj: Likewise. * allchblk.c: Likewise. * alloc.c: Likewise. * backgraph.c: Likewise. * configure.host: Likewise. * configure.in: Likewise. * dbg_mlc.c: Likewise. * dyn_load.c: Likewise. * finalize.c: Likewise. * gc_cpp.cc: Likewise. * gc_dlopen.c: Likewise. * gcj_mlc.c: Likewise. * if_mach.c: Likewise. * mach_dep.c: Likewise. * malloc.c: Likewise. * mallocx.c: Likewise. * mark.c: Likewise. * mark_rts.c: Likewise. * misc.c: Likewise. * os_dep.c: Likewise. * ptr_chck.c: Likewise. * reclaim.c: Likewise. * solaris_pthreads.c: Likewise. * solaris_threads.c: Likewise. * sparc_mach_dep.S: Likewise. * threadlibs.c: Likewise. * typd_mlc.c: Likewise. * version.h: Likewise. * win32_threads.c: Likewise. * Mac_files/MacOS_Test_config.h: Likewise. * Mac_files/MacOS_config.h: Likewise. * cord/cordbscs.c: Likewise. * cord/cordprnt.c: Likewise. * cord/de_win.c: Likewise. * doc/README: Likewise. * doc/README.MacOSX: Likewise. * doc/README.changes: Likewise. * doc/README.environment: Likewise. * doc/README.ews4800: Likewise. * doc/README.linux: Likewise. * doc/README.macros: Likewise. * doc/README.win32: Likewise. * doc/debugging.html: Likewise. * doc/gcdescr.html: Likewise. * doc/tree.html: Likewise. * include/Makefile.in: Likewise. * include/gc.h: Likewise. * include/gc_cpp.h: Likewise. * include/gc_local_alloc.h: Likewise. * include/gc_mark.h: Likewise. * include/gc_pthread_redirects.h: Likewise. * include/gc_typed.h: Likewise. * include/new_gc_alloc.h: Likewise. * include/private/dbg_mlc.h: Likewise. * include/private/gc_hdrs.h: Likewise. * include/private/gc_locks.h: Likewise. * include/private/gc_pmark.h: Likewise. * include/private/gc_priv.h: Likewise. * include/private/gcconfig.h: Likewise. * include/private/solaris_threads.h: Likewise. * include/private/specific.h: Likewise. * tests/test.c: Likewise. * tests/test_cpp.cc: Likewise. * configure: Rebuild. * Makefile.in: Rebuild. * mips_sgi_mach_dep.s: Add. * alpha_mach_dep.s: Remove. * irix_threads.c: Remove. * linux_threads.c: Remove. * mips_sgi_mach_dep.S: Remove. * missing: Remove. * powerpc_macosx_mach_dep.s: Remove. * doc/Makefile.am: Remove. * doc/Makefile.in: Remove. From-SVN: r69880
133 lines
4.4 KiB
Plaintext
133 lines
4.4 KiB
Plaintext
See README.alpha for Linux on DEC AXP info.
|
|
|
|
This file applies mostly to Linux/Intel IA32. Ports to Linux on an M68K, IA64,
|
|
SPARC, MIPS, Alpha and PowerPC are also integrated. They should behave
|
|
similarly, except that the PowerPC port lacks incremental GC support, and
|
|
it is unknown to what extent the Linux threads code is functional.
|
|
See below for M68K specific notes.
|
|
|
|
Incremental GC is generally supported.
|
|
|
|
Dynamic libraries are supported on an ELF system. A static executable
|
|
should be linked with the gcc option "-Wl,-defsym,_DYNAMIC=0".
|
|
|
|
The collector appears to work reliably with Linux threads, but beware
|
|
of older versions of glibc and gdb.
|
|
|
|
The garbage collector uses SIGPWR and SIGXCPU if it is used with
|
|
Linux threads. These should not be touched by the client program.
|
|
|
|
To use threads, you need to abide by the following requirements:
|
|
|
|
1) You need to use LinuxThreads (which are included in libc6).
|
|
|
|
The collector relies on some implementation details of the LinuxThreads
|
|
package. It is unlikely that this code will work on other
|
|
pthread implementations (in particular it will *not* work with
|
|
MIT pthreads).
|
|
|
|
2) You must compile the collector with -DGC_LINUX_THREADS and -D_REENTRANT
|
|
specified in the Makefile.
|
|
|
|
3a) Every file that makes thread calls should define GC_LINUX_THREADS and
|
|
_REENTRANT and then include gc.h. Gc.h redefines some of the
|
|
pthread primitives as macros which also provide the collector with
|
|
information it requires.
|
|
|
|
3b) A new alternative to (3a) is to build the collector and compile GC clients
|
|
with -DGC_USE_LD_WRAP, and to link the final program with
|
|
|
|
(for ld) --wrap read --wrap dlopen --wrap pthread_create \
|
|
--wrap pthread_join --wrap pthread_detach \
|
|
--wrap pthread_sigmask --wrap sleep
|
|
|
|
(for gcc) -Wl,--wrap -Wl,read -Wl,--wrap -Wl,dlopen -Wl,--wrap \
|
|
-Wl,pthread_create -Wl,--wrap -Wl,pthread_join -Wl,--wrap \
|
|
-Wl,pthread_detach -Wl,--wrap -Wl,pthread_sigmask \
|
|
-Wl,--wrap -Wl,sleep
|
|
|
|
In any case, _REENTRANT should be defined during compilation.
|
|
|
|
4) Dlopen() disables collection during its execution. (It can't run
|
|
concurrently with the collector, since the collector looks at its
|
|
data structures. It can't acquire the allocator lock, since arbitrary
|
|
user startup code may run as part of dlopen().) Under unusual
|
|
conditions, this may cause unexpected heap growth.
|
|
|
|
5) The combination of GC_LINUX_THREADS, REDIRECT_MALLOC, and incremental
|
|
collection fails in seemingly random places. This hasn't been tracked
|
|
down yet, but is perhaps not completely astonishing. The thread package
|
|
uses malloc, and thus can presumably get SIGSEGVs while inside the
|
|
package. There is no real guarantee that signals are handled properly
|
|
at that point.
|
|
|
|
6) Thread local storage may not be viewed as part of the root set by the
|
|
collector. This probably depends on the linuxthreads version. For the
|
|
time being, any collectable memory referenced by thread local storage should
|
|
also be referenced from elsewhere, or be allocated as uncollectable.
|
|
(This is really a bug that should be fixed somehow.)
|
|
|
|
|
|
M68K LINUX:
|
|
(From Richard Zidlicky)
|
|
The bad news is that it can crash every linux-m68k kernel on a 68040,
|
|
so an additional test is needed somewhere on startup. I have meanwhile
|
|
patches to correct the problem in 68040 buserror handler but it is not
|
|
yet in any standard kernel.
|
|
|
|
Here is a simple test program to detect whether the kernel has the
|
|
problem. It could be run as a separate check in configure or tested
|
|
upon startup. If it fails (return !0) than mprotect can't be used
|
|
on that system.
|
|
|
|
/*
|
|
* test for bug that may crash 68040 based Linux
|
|
*/
|
|
|
|
#include <sys/mman.h>
|
|
#include <signal.h>
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
|
|
char *membase;
|
|
int pagesize=4096;
|
|
int pageshift=12;
|
|
int x_taken=0;
|
|
|
|
int sighandler(int sig)
|
|
{
|
|
mprotect(membase,pagesize,PROT_READ|PROT_WRITE);
|
|
x_taken=1;
|
|
}
|
|
|
|
main()
|
|
{
|
|
long l;
|
|
|
|
signal(SIGSEGV,sighandler);
|
|
l=(long)mmap(NULL,pagesize,PROT_READ,MAP_PRIVATE | MAP_ANON,-1,0);
|
|
if (l==-1)
|
|
{
|
|
perror("mmap/malloc");
|
|
abort();
|
|
}
|
|
membase=(char*)l;
|
|
*(long*)(membase+sizeof(long))=123456789;
|
|
if (*(long*)(membase+sizeof(long)) != 123456789 )
|
|
{
|
|
fprintf(stderr,"writeback failed !\n");
|
|
exit(1);
|
|
}
|
|
if (!x_taken)
|
|
{
|
|
fprintf(stderr,"exception not taken !\n");
|
|
exit(1);
|
|
}
|
|
fprintf(stderr,"vmtest Ok\n");
|
|
exit(0);
|
|
}
|
|
|
|
|