New port "boehm-gc". It is a drop-in garbage collector for C and C++

programs.

Submitted by:	Mike McGaughey <mmcg@heraclitus.cs.monash.edu.au>
This commit is contained in:
John Polstra 1996-11-16 01:51:39 +00:00
parent c2f25d23fd
commit 221c169fee
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4500
7 changed files with 216 additions and 0 deletions

24
devel/boehm-gc/Makefile Normal file
View File

@ -0,0 +1,24 @@
# New ports collection makefile for: boehm-gc
# Version required: 4.10
# Date created: 15 November 1996
# Whom: Mike McGaughey <mmcg@cs.monash.edu.au>
#
# $Id$
#
DISTNAME= gc4.10
PKGNAME= boehm-gc-4.10
CATEGORIES= devel
MASTER_SITES= ftp://ftp.parc.xerox.com/pub/gc/
MAINTAINER= mmcg@cs.monash.edu.au
WRKSRC= ${WRKDIR}/gc
MAN3= gc.3
ALL_TARGET= FreeBSD-pkg-all
INSTALL_TARGET= FreeBSD-pkg-install
MAKE_ENV+= CP="${CP}"
MAKE_ENV+= INSTALL_DATA="${INSTALL_DATA}"
MAKE_ENV+= INSTALL_MAN="${INSTALL_MAN}"
.include <bsd.port.mk>

1
devel/boehm-gc/distinfo Normal file
View File

@ -0,0 +1 @@
MD5 (gc4.10.tar.gz) = 8281966ed48e630d64f0ebc00f68d617

View File

@ -0,0 +1,90 @@
*** Makefile.orig Mon Feb 19 09:45:47 1996
--- Makefile Fri Nov 15 14:19:11 1996
***************
*** 13,19 ****
# The above doesn't work with gas, which doesn't run cpp.
# Define AS as `gcc -c -x assembler-with-cpp' instead.
! CFLAGS= -O -DNO_SIGNALS -DALL_INTERIOR_POINTERS -DSILENT
# Setjmp_test may yield overly optimistic results when compiled
# without optimization.
--- 13,45 ----
# The above doesn't work with gas, which doesn't run cpp.
# Define AS as `gcc -c -x assembler-with-cpp' instead.
! # We want this to be a drop-in linkable library, hence the -DREDIRECT.
! # The new c++-t and c++-nt (test and notest) are because we don't want
! # to fill anyone's log with leak messages! - MMCG
!
! CFLAGS= -O -DNO_SIGNALS -DALL_INTERIOR_POINTERS -DSILENT \
! -DREDIRECT_MALLOC=GC_malloc
!
! LEAKFLAGS=$(CFLAGS) -DFIND_LEAK
!
! all: gc.a gctest
!
! FreeBSD-pkg-all: fbsd-libgc.a fbsd-libleak.a
!
! fbsd-libgc.a:
! make CFLAGS="$(CFLAGS)" clean c++-t
! mv gc.a fbsd-libgc.a
!
! fbsd-libleak.a:
! make CFLAGS="$(LEAKFLAGS)" clean c++-nt
! mv gc.a fbsd-libleak.a
!
! FreeBSD-pkg-install: FreeBSD-pkg-all
! ${CP} fbsd-libgc.a libgc.a
! ${CP} fbsd-libleak.a libleak.a
! ${INSTALL_DATA} libleak.a libgc.a ${PREFIX}/lib
! ${INSTALL_DATA} gc.h gc_cpp.h ${PREFIX}/include
! ${INSTALL_MAN} gc.man ${PREFIX}/man/man3/gc.3
# Setjmp_test may yield overly optimistic results when compiled
# without optimization.
***************
*** 124,131 ****
# not time-critical anyway.
# Set SPECIALCFLAGS to -q nodirect_code on Encore.
- all: gc.a gctest
-
pcr: PCR-Makefile gc_private.h gc_hdrs.h gc.h config.h mach_dep.o $(SRCS)
make -f PCR-Makefile depend
make -f PCR-Makefile
--- 150,155 ----
***************
*** 170,182 ****
./if_mach SPARC SUNOS5 $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a -lthread -ldl
./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a
c++: gc_cpp.o $(srcdir)/gc_cpp.h test_cpp
rm -f on_sparc_sunos5
./if_mach SPARC SUNOS5 touch on_sparc_sunos5
./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
./if_not_there on_sparc_sunos5 $(AR) ru gc.a gc_cpp.o
./if_not_there on_sparc_sunos5 $(RANLIB) gc.a || cat /dev/null
- ./test_cpp 1
dyn_load_sunos53.o: dyn_load.c
$(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@
--- 194,211 ----
./if_mach SPARC SUNOS5 $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a -lthread -ldl
./if_not_there test_cpp $(CXX) $(CXXFLAGS) -o test_cpp $(srcdir)/test_cpp.cc gc_cpp.o gc.a
+ c++-t: c++
+ ./test_cpp 1
+
+ c++-nt: c++
+ @echo "Use ./test_cpp 1 to test the leak library"
+
c++: gc_cpp.o $(srcdir)/gc_cpp.h test_cpp
rm -f on_sparc_sunos5
./if_mach SPARC SUNOS5 touch on_sparc_sunos5
./if_mach SPARC SUNOS5 $(AR) rus gc.a gc_cpp.o
./if_not_there on_sparc_sunos5 $(AR) ru gc.a gc_cpp.o
./if_not_there on_sparc_sunos5 $(RANLIB) gc.a || cat /dev/null
dyn_load_sunos53.o: dyn_load.c
$(CC) $(CFLAGS) -DSUNOS53_SHARED_LIB -c $(srcdir)/dyn_load.c -o $@

View File

@ -0,0 +1,72 @@
*** gc.man.orig Fri Nov 15 08:56:14 1996
--- gc.man Fri Nov 15 09:30:14 1996
***************
*** 9,15 ****
... malloc(...) ...
.br
.sp
! cc ... gc.a
.LP
.SH DESCRIPTION
.I GC_malloc
--- 9,17 ----
... malloc(...) ...
.br
.sp
! cc ... -lgc
! .sp
! cc ... -lleak
.LP
.SH DESCRIPTION
.I GC_malloc
***************
*** 67,72 ****
--- 69,116 ----
This may temporarily write protect pages in the heap. See the README file for more information on how this interacts with system calls that write to the heap.
.LP
Other facilities not discussed here include limited facilities to support incremental collection on machines without appropriate VM support, provisions for providing more explicit object layout information to the garbage collector, more direct support for ``weak'' pointers, support for ``abortable'' garbage collections during idle time, etc.
+ .LP
+ .SH "PORT INFORMATION"
+ .LP
+ In this (FreeBSD package) installation,
+ .I gc.h
+ and
+ .I gc_cpp.h
+ will probably be found in
+ .I /usr/local/include,
+ and the libraries in
+ .I /usr/local/lib.
+ .LP
+ These libraries have been compiled as drop-in replacements
+ for malloc and free (which is to say, all malloc
+ calls will allocate garbage-collectable data).
+ There is no need to include "gc.h" in your C files unless you want
+ access to the debugging (and other) functions defined there,
+ or unless you want to explicitly use
+ .I GC_malloc_uncollectable
+ for some allocations.
+ Just link against them whenever you want either garbage
+ collection or leak detection.
+ .LP
+ The C++ header file, "gc_cpp.h",
+ .I is
+ necessary for C++ programs, to obtain the appropriate
+ definitions of the
+ .I new
+ and
+ .I delete
+ operators.
+ The comments in both of these header files presently
+ provide far better documentation
+ for the package than this man page;
+ look there for more information.
+ .LP
+ Both libraries are compiled without (explicit) support
+ for the experimental
+ .I gc
+ extension of
+ .I g++.
+ This may or may not make a difference.
.LP
.SH "SEE ALSO"
The README and gc.h files in the distribution. More detailed definitions of the functions exported by the collector are given there. (The above list is not complete.)

View File

@ -0,0 +1 @@
Garbage collection and memory leak detection for C and C++.

23
devel/boehm-gc/pkg-descr Normal file
View File

@ -0,0 +1,23 @@
The Boehm-Weiser garbage collection package, for C and C++ -
garbage collection and memory leak detection libraries.
A garbage collector is something which automatically frees malloc'd
memory for you by working out what parts of memory your program
no longer has pointers to. As a result, garbage collectors can also
inform you of memory leaks (if they find memory they can free, it means
you have lost all of your pointers to it, but you didn't free it).
This package has two libraries and some include files:
libgc.a - a garbage collection library, replaces malloc/free/new/delete/etc
with versions that do automatic garbage collection
libleak.a - a leak detection library, which is just libgc.a compiled with
different switches.
C programs may be linked against either of these, and should run (with
GC or leak detection) without change. C++ programs must include a header
to use garbage collection, though leak detection should work without
such source code modifications. See the man page and header files.
-- Mike McGaughey <mmcg@cs.monash.edu.au>
ps: garbage collection is addictive.

5
devel/boehm-gc/pkg-plist Normal file
View File

@ -0,0 +1,5 @@
include/gc.h
include/gc_cpp.h
lib/libgc.a
lib/libleak.a
man/man3/gc.3.gz