[BACK]Return to alloc.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc

Diff for /OpenXM_contrib2/asir2000/gc/alloc.c between version 1.3 and 1.4

version 1.3, 2000/12/01 09:26:10 version 1.4, 2001/04/20 07:39:18
Line 16 
Line 16 
  */   */
   
   
 # include "gc_priv.h"  # include "private/gc_priv.h"
   
 # include <stdio.h>  # include <stdio.h>
 # ifndef MACOS  # if !defined(MACOS) && !defined(MSWINCE)
 #   include <signal.h>  #   include <signal.h>
 #   include <sys/types.h>  #   include <sys/types.h>
 # endif  # endif
Line 62  word GC_non_gc_bytes = 0;  /* Number of bytes not inte
Line 62  word GC_non_gc_bytes = 0;  /* Number of bytes not inte
 word GC_gc_no = 0;  word GC_gc_no = 0;
   
 #ifndef SMALL_CONFIG  #ifndef SMALL_CONFIG
   int GC_incremental = 0;    /* By default, stop the world.     */    int GC_incremental = 0;  /* By default, stop the world.       */
 #endif  #endif
   
   int GC_parallel = FALSE;   /* By default, parallel GC is off.   */
   
 int GC_full_freq = 19;     /* Every 20th collection is a full   */  int GC_full_freq = 19;     /* Every 20th collection is a full   */
                            /* collection, whether we need it    */                             /* collection, whether we need it    */
                            /* or not.                           */                             /* or not.                           */
Line 78  char * GC_copyright[] =
Line 80  char * GC_copyright[] =
 {"Copyright 1988,1989 Hans-J. Boehm and Alan J. Demers ",  {"Copyright 1988,1989 Hans-J. Boehm and Alan J. Demers ",
 "Copyright (c) 1991-1995 by Xerox Corporation.  All rights reserved. ",  "Copyright (c) 1991-1995 by Xerox Corporation.  All rights reserved. ",
 "Copyright (c) 1996-1998 by Silicon Graphics.  All rights reserved. ",  "Copyright (c) 1996-1998 by Silicon Graphics.  All rights reserved. ",
   "Copyright (c) 1999-2000 by Hewlett-Packard Company.  All rights reserved. ",
 "THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY",  "THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY",
 " EXPRESSED OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.",  " EXPRESSED OR IMPLIED.  ANY USE IS AT YOUR OWN RISK.",
 "See source code for details." };  "See source code for details." };
Line 118  int GC_n_attempts = 0;  /* Number of attempts at finis
Line 121  int GC_n_attempts = 0;  /* Number of attempts at finis
     GET_TIME(current_time);      GET_TIME(current_time);
     time_diff = MS_TIME_DIFF(current_time,GC_start_time);      time_diff = MS_TIME_DIFF(current_time,GC_start_time);
     if (time_diff >= TIME_LIMIT) {      if (time_diff >= TIME_LIMIT) {
 #       ifdef PRINTSTATS  #       ifdef CONDPRINT
             if (GC_print_stats) {
             GC_printf0("Abandoning stopped marking after ");              GC_printf0("Abandoning stopped marking after ");
             GC_printf1("%lu msecs", (unsigned long)time_diff);              GC_printf1("%lu msecs", (unsigned long)time_diff);
             GC_printf1("(attempt %d)\n", (unsigned long) GC_n_attempts);              GC_printf1("(attempt %d)\n", (unsigned long) GC_n_attempts);
             }
 #       endif  #       endif
         return(1);          return(1);
     }      }
Line 223  GC_bool GC_should_collect()
Line 228  GC_bool GC_should_collect()
   
 void GC_notify_full_gc()  void GC_notify_full_gc()
 {  {
     if (GC_start_call_back != (void (*)())0) {      if (GC_start_call_back != (void (*) GC_PROTO((void)))0) {
         (*GC_start_call_back)();          (*GC_start_call_back)();
     }      }
 }  }
Line 247  void GC_maybe_gc()
Line 252  void GC_maybe_gc()
             n_partial_gcs = 0;              n_partial_gcs = 0;
             return;              return;
         } else if (GC_need_full_gc || n_partial_gcs >= GC_full_freq) {          } else if (GC_need_full_gc || n_partial_gcs >= GC_full_freq) {
 #           ifdef PRINTSTATS  #           ifdef CONDPRINT
               GC_printf2(                if (GC_print_stats) {
                 "***>Full mark for collection %lu after %ld allocd bytes\n",                  GC_printf2(
                 (unsigned long) GC_gc_no+1,                    "***>Full mark for collection %lu after %ld allocd bytes\n",
                 (long)WORDS_TO_BYTES(GC_words_allocd));                    (unsigned long) GC_gc_no+1,
                     (long)WORDS_TO_BYTES(GC_words_allocd));
                 }
 #           endif  #           endif
             GC_promote_black_lists();              GC_promote_black_lists();
   #           ifdef PARALLEL_MARK
                   GC_wait_for_reclaim();
   #           endif
             (void)GC_reclaim_all((GC_stop_func)0, TRUE);              (void)GC_reclaim_all((GC_stop_func)0, TRUE);
             GC_clear_marks();              GC_clear_marks();
             n_partial_gcs = 0;              n_partial_gcs = 0;
Line 289  GC_bool GC_try_to_collect_inner(stop_func)
Line 299  GC_bool GC_try_to_collect_inner(stop_func)
 GC_stop_func stop_func;  GC_stop_func stop_func;
 {  {
     if (GC_incremental && GC_collection_in_progress()) {      if (GC_incremental && GC_collection_in_progress()) {
 #   ifdef PRINTSTATS  #   ifdef CONDPRINT
         if (GC_print_stats) {
         GC_printf0(          GC_printf0(
             "GC_try_to_collect_inner: finishing collection in progress\n");              "GC_try_to_collect_inner: finishing collection in progress\n");
 #    endif /* PRINTSTATS */        }
   #   endif /* CONDPRINT */
       /* Just finish collection already in progress.    */        /* Just finish collection already in progress.    */
         while(GC_collection_in_progress()) {          while(GC_collection_in_progress()) {
             if (stop_func()) return(FALSE);              if (stop_func()) return(FALSE);
             GC_collect_a_little_inner(1);              GC_collect_a_little_inner(1);
         }          }
     }      }
 #   ifdef PRINTSTATS  #   ifdef CONDPRINT
         if (GC_print_stats) {
         GC_printf2(          GC_printf2(
            "Initiating full world-stop collection %lu after %ld allocd bytes\n",             "Initiating full world-stop collection %lu after %ld allocd bytes\n",
            (unsigned long) GC_gc_no+1,             (unsigned long) GC_gc_no+1,
            (long)WORDS_TO_BYTES(GC_words_allocd));             (long)WORDS_TO_BYTES(GC_words_allocd));
         }
 #   endif  #   endif
     GC_promote_black_lists();      GC_promote_black_lists();
     /* Make sure all blocks have been reclaimed, so sweep routines      */      /* Make sure all blocks have been reclaimed, so sweep routines      */
Line 311  GC_stop_func stop_func;
Line 325  GC_stop_func stop_func;
     /* If we're guaranteed to finish, then this is unnecessary.         */      /* If we're guaranteed to finish, then this is unnecessary.         */
     /* In the find_leak case, we have to finish to guarantee that       */      /* In the find_leak case, we have to finish to guarantee that       */
     /* previously unmarked objects are not reported as leaks.           */      /* previously unmarked objects are not reported as leaks.           */
         if ((GC_find_leak || stop_func != GC_never_stop_func)  #       ifdef PARALLEL_MARK
               GC_wait_for_reclaim();
   #       endif
           if ((GC_find_leak || stop_func != GC_never_stop_func)
             && !GC_reclaim_all(stop_func, FALSE)) {              && !GC_reclaim_all(stop_func, FALSE)) {
             /* Aborted.  So far everything is still consistent. */              /* Aborted.  So far everything is still consistent. */
             return(FALSE);              return(FALSE);
Line 413  GC_stop_func stop_func;
Line 430  GC_stop_func stop_func;
 {  {
     register int i;      register int i;
     int dummy;      int dummy;
 #   ifdef PRINTSTATS  #   ifdef PRINTTIMES
         CLOCK_TYPE start_time, current_time;          CLOCK_TYPE start_time, current_time;
 #   endif  #   endif
   
     STOP_WORLD();      STOP_WORLD();
         GC_timerstart();      GC_timerstart();
 #   ifdef PRINTSTATS  #   ifdef PRINTTIMES
         GET_TIME(start_time);          GET_TIME(start_time);
   #   endif
   #   ifdef CONDPRINT
         if (GC_print_stats) {
         GC_printf1("--> Marking for collection %lu ",          GC_printf1("--> Marking for collection %lu ",
                    (unsigned long) GC_gc_no + 1);                     (unsigned long) GC_gc_no + 1);
         GC_printf2("after %lu allocd bytes + %lu wasted bytes\n",          GC_printf2("after %lu allocd bytes + %lu wasted bytes\n",
                    (unsigned long) WORDS_TO_BYTES(GC_words_allocd),                     (unsigned long) WORDS_TO_BYTES(GC_words_allocd),
                    (unsigned long) WORDS_TO_BYTES(GC_words_wasted));                     (unsigned long) WORDS_TO_BYTES(GC_words_wasted));
         }
 #   endif  #   endif
   
     /* Mark from all roots.  */      /* Mark from all roots.  */
Line 435  GC_stop_func stop_func;
Line 456  GC_stop_func stop_func;
         GC_initiate_gc();          GC_initiate_gc();
         for(i = 0;;i++) {          for(i = 0;;i++) {
             if ((*stop_func)()) {              if ((*stop_func)()) {
 #                   ifdef PRINTSTATS  #                   ifdef CONDPRINT
                         if (GC_print_stats) {
                         GC_printf0("Abandoned stopped marking after ");                          GC_printf0("Abandoned stopped marking after ");
                         GC_printf1("%lu iterations\n",                          GC_printf1("%lu iterations\n",
                                    (unsigned long)i);                                     (unsigned long)i);
                         }
 #                   endif  #                   endif
                         GC_timerstop();                          GC_timerstop();
                     GC_deficit = i; /* Give the mutator a chance. */                      GC_deficit = i; /* Give the mutator a chance. */
Line 453  GC_stop_func stop_func;
Line 476  GC_stop_func stop_func;
       GC_printf2("Collection %lu reclaimed %ld bytes",        GC_printf2("Collection %lu reclaimed %ld bytes",
                   (unsigned long) GC_gc_no - 1,                    (unsigned long) GC_gc_no - 1,
                   (long)WORDS_TO_BYTES(GC_mem_found));                    (long)WORDS_TO_BYTES(GC_mem_found));
       GC_printf1(" ---> heapsize = %lu bytes\n",  #   else
                 (unsigned long) GC_heapsize);  #     ifdef CONDPRINT
       /* Printf arguments may be pushed in funny places.  Clear the     */          if (GC_print_stats) {
       /* space.                                                         */            GC_printf1("Collection %lu finished", (unsigned long) GC_gc_no - 1);
       GC_printf0("");          }
 #   endif  #     endif
   #   endif /* !PRINTSTATS */
   #   ifdef CONDPRINT
         if (GC_print_stats) {
           GC_printf1(" ---> heapsize = %lu bytes\n",
                      (unsigned long) GC_heapsize);
           /* Printf arguments may be pushed in funny places.  Clear the   */
           /* space.                                                       */
           GC_printf0("");
         }
   #   endif  /* CONDPRINT  */
   
     /* Check all debugged objects for consistency */      /* Check all debugged objects for consistency */
         if (GC_debugging_started) {          if (GC_debugging_started) {
Line 493  void GC_finish_collection()
Line 526  void GC_finish_collection()
 #   ifdef GATHERSTATS  #   ifdef GATHERSTATS
         GC_mem_found = 0;          GC_mem_found = 0;
 #   endif  #   endif
   #   if defined(LINUX) && defined(__ELF__) && !defined(SMALL_CONFIG)
           if (getenv("GC_PRINT_ADDRESS_MAP") != 0) {
             GC_print_address_map();
           }
   #   endif
     if (GC_find_leak) {      if (GC_find_leak) {
       /* Mark all objects on the free list.  All objects should be */        /* Mark all objects on the free list.  All objects should be */
       /* marked when we're done.                                   */        /* marked when we're done.                                   */
Line 669  word bytes;
Line 707  word bytes;
     GC_heap_sects[GC_n_heap_sects].hs_start = (ptr_t)p;      GC_heap_sects[GC_n_heap_sects].hs_start = (ptr_t)p;
     GC_heap_sects[GC_n_heap_sects].hs_bytes = bytes;      GC_heap_sects[GC_n_heap_sects].hs_bytes = bytes;
     GC_n_heap_sects++;      GC_n_heap_sects++;
     words = BYTES_TO_WORDS(bytes - HDR_BYTES);      words = BYTES_TO_WORDS(bytes);
     phdr -> hb_sz = words;      phdr -> hb_sz = words;
     phdr -> hb_map = (char *)1;   /* A value != GC_invalid_map  */      phdr -> hb_map = (unsigned char *)1;   /* A value != GC_invalid_map */
     phdr -> hb_flags = 0;      phdr -> hb_flags = 0;
     GC_freehblk(p);      GC_freehblk(p);
     GC_heapsize += bytes;      GC_heapsize += bytes;
     if ((ptr_t)p <= GC_least_plausible_heap_addr      if ((ptr_t)p <= (ptr_t)GC_least_plausible_heap_addr
         || GC_least_plausible_heap_addr == 0) {          || GC_least_plausible_heap_addr == 0) {
         GC_least_plausible_heap_addr = (ptr_t)p - sizeof(word);          GC_least_plausible_heap_addr = (GC_PTR)((ptr_t)p - sizeof(word));
                 /* Making it a little smaller than necessary prevents   */                  /* Making it a little smaller than necessary prevents   */
                 /* us from getting a false hit from the variable        */                  /* us from getting a false hit from the variable        */
                 /* itself.  There's some unintentional reflection       */                  /* itself.  There's some unintentional reflection       */
                 /* here.                                                */                  /* here.                                                */
     }      }
     if ((ptr_t)p + bytes >= GC_greatest_plausible_heap_addr) {      if ((ptr_t)p + bytes >= (ptr_t)GC_greatest_plausible_heap_addr) {
         GC_greatest_plausible_heap_addr = (ptr_t)p + bytes;          GC_greatest_plausible_heap_addr = (GC_PTR)((ptr_t)p + bytes);
     }      }
 }  }
   
Line 711  void GC_print_heap_sects()
Line 749  void GC_print_heap_sects()
 }  }
 # endif  # endif
   
 ptr_t GC_least_plausible_heap_addr = (ptr_t)ONES;  GC_PTR GC_least_plausible_heap_addr = (GC_PTR)ONES;
 ptr_t GC_greatest_plausible_heap_addr = 0;  GC_PTR GC_greatest_plausible_heap_addr = 0;
   
 ptr_t GC_max(x,y)  ptr_t GC_max(x,y)
 ptr_t x, y;  ptr_t x, y;
Line 768  word n;
Line 806  word n;
     }      }
     space = GET_MEM(bytes);      space = GET_MEM(bytes);
     if( space == 0 ) {      if( space == 0 ) {
   #       ifdef CONDPRINT
             if (GC_print_stats) {
               GC_printf1("Failed to expand heap by %ld bytes\n",
                          (unsigned long)bytes);
             }
   #       endif
         return(FALSE);          return(FALSE);
     }      }
 #   ifdef PRINTSTATS  #   ifdef CONDPRINT
         if (GC_print_stats) {
         GC_printf2("Increasing heap size by %lu after %lu allocated bytes\n",          GC_printf2("Increasing heap size by %lu after %lu allocated bytes\n",
                    (unsigned long)bytes,                     (unsigned long)bytes,
                    (unsigned long)WORDS_TO_BYTES(GC_words_allocd));                     (unsigned long)WORDS_TO_BYTES(GC_words_allocd));
Line 779  word n;
Line 824  word n;
           GC_print_block_list(); GC_print_hblkfreelist();            GC_print_block_list(); GC_print_hblkfreelist();
           GC_printf0("\n");            GC_printf0("\n");
 #       endif  #       endif
         }
 #   endif  #   endif
     expansion_slop = 8 * WORDS_TO_BYTES(min_words_allocd());      expansion_slop = 8 * WORDS_TO_BYTES(min_words_allocd());
     if (5 * HBLKSIZE * MAXHINCR > expansion_slop) {      if (5 * HBLKSIZE * MAXHINCR > expansion_slop) {
Line 865  GC_bool ignore_off_page;
Line 911  GC_bool ignore_off_page;
             GC_notify_full_gc();              GC_notify_full_gc();
             GC_gcollect_inner();              GC_gcollect_inner();
         } else {          } else {
             WARN("Out of Memory!  Returning NIL!\n", 0);  #           if !defined(AMIGA) || !defined(GC_AMIGA_FASTALLOC)
                 WARN("Out of Memory!  Returning NIL!\n", 0);
   #           endif
             return(FALSE);              return(FALSE);
         }          }
       } else {        } else {
 #         ifdef PRINTSTATS  #         ifdef CONDPRINT
             if (GC_fail_count) {              if (GC_fail_count && GC_print_stats) {
               GC_printf0("Memory available again ...\n");                GC_printf0("Memory available again ...\n");
             }              }
 #         endif  #         endif

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>