home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Unix / developer / gc.README < prev    next >
Encoding:
Text File  |  1993-10-06  |  3.9 KB  |  79 lines

  1. I VERY preliminary port of the Xerox garbage collector to NeXTSTEP.
  2. Jason Jobe
  3. jjobe@andi.org, jjobe@mrj.com
  4.  
  5. Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
  6. Copyright (c) 1991-1993 by Xerox Corporation.  All rights reserved.
  7.  
  8. THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
  9. OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.
  10.  
  11. Permission is hereby granted to copy this garbage collector for any purpose,
  12. provided the above notices are retained on all copies.
  13.  
  14.  
  15. This is version 3.2.  Note that functions were renamed since version 1.9
  16. to make naming consistent with PCR collectors.
  17.  
  18.  
  19. GENERAL DESCRIPTION
  20.  
  21.   This is a garbage colecting storage allocator that is intended to be
  22. used as a plug-in replacement for C's malloc.
  23.  
  24.   Since the collector does not require pointers to be tagged, it does not
  25. attempt to ensure that all inaccessible storage is reclaimed.  However,
  26. in our experience, it is typically more successful at reclaiming unused
  27. memory than most C programs using explicit deallocation.  Unlike manually
  28. introduced leaks, the amount of unreclaimed memory typically stays
  29. bounded.
  30.  
  31.   In the following, an "object" is defined to be a region of memory allocated
  32. by the routines described below.  
  33.  
  34.   Any objects not intended to be collected must be pointed to either
  35. from other such accessible objects, or from the registers,
  36. stack, data, or statically allocated bss segments.  Pointers from
  37. the stack or registers may point to anywhere inside an object.
  38. However, it is usually assumed that all pointers originating in the
  39. heap point to the beginning of an object.  (This does
  40. not disallow interior pointers; it simply requires that there must be a
  41. pointer to the beginning of every accessible object, in addition to any
  42. interior pointers.)  There are two facilities for altering this behavior.
  43. The macro ALL_INTERIOR_POINTERS may be defined in gc_private.h to
  44. cause any pointer into an object to retain the object.  A routine
  45. GC_register_displacement is provided to allow for more controlled
  46. interior pointer use in the heap.  Defining ALL_INTERIOR_POINTERS
  47. is somewhat dangerous.  See gc_private.h for details.  The routine
  48. GC_register_displacement is described in gc.h.
  49.  
  50.   Note that pointers inside memory allocated by the standard "malloc" are not
  51. seen by the garbage collector.  Thus objects pointed to only from such a
  52. region may be prematurely deallocated.  It is thus suggested that the
  53. standard "malloc" be used only for memory regions, such as I/O buffers, that
  54. are guaranteed not to contain pointers.  Pointers in C language automatic,
  55. static, or register variables, are correctly recognized.
  56.  
  57.   The collector does not generally know how to find pointers in data
  58. areas that are associated with dynamic libraries.  This is easy to
  59. remedy IF you know how to find those data areas on your operating
  60. system (see GC_add_roots).  Code for doing this under SunOS4.X only is
  61. included (see dynamic_load.c).  (Note that it includes a special version
  62. of dlopen, GC_dlopen, that should be called instead of the standard one.
  63. By default, this is not compiled in, since it requires the -ldl library.)
  64. Note that the garbage collector does not need to be informed of shared
  65. read-only data.  However if the shared library mechanism can introduce
  66. discontiguous data areas that may contain pointers, then the collector does
  67. need to be informed.
  68.  
  69.   Signal processing for most signals is normally deferred during collection,
  70. and during uninterruptible parts of the allocation process.  Unlike
  71. standard ANSI C mallocs, it is intended to be safe to invoke malloc
  72. from a signal handler while another malloc is in progress, provided
  73. the original malloc is not restarted.  (Empirically, many UNIX
  74. applications already asssume this.)  The allocator/collector can
  75. also be configured for thread-safe operation.  (Full signal safety can
  76. also be acheived, but only at the cost of two system calls per malloc,
  77. which is usually unacceptable.)
  78.  
  79.