2 * Copyright 1988, 1989 Hans-J. Boehm, Alan J. Demers
3 * Copyright (c) 1991-1996 by Xerox Corporation. All rights reserved.
4 * Copyright (c) 1998 by Silicon Graphics. All rights reserved.
5 * Copyright (c) 1999 by Hewlett-Packard Company. All rights reserved.
7 * THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY EXPRESSED
8 * OR IMPLIED. ANY USE IS AT YOUR OWN RISK.
10 * Permission is hereby granted to use or copy this program
11 * for any purpose, provided the above notices are retained on all copies.
12 * Permission to modify the code and to distribute modified code is granted,
13 * provided the above notices are retained, and a notice that the code was
14 * modified is included with the above copyright notice.
19 # include "private/gc_priv.h"
22 # if !defined(MACOS) && !defined(MSWINCE)
24 # include <sys/types.h>
28 * Separate free lists are maintained for different sized objects
30 * The call GC_allocobj(i,k) ensures that the freelist for
31 * kind k objects of size i points to a non-empty
32 * free list. It returns a pointer to the first entry on the free list.
33 * In a single-threaded world, GC_allocobj may be called to allocate
34 * an object of (small) size i as follows:
36 * opp = &(GC_objfreelist[i]);
37 * if (*opp == 0) GC_allocobj(i, NORMAL);
39 * *opp = obj_link(ptr);
41 * Note that this is very fast if the free list is non-empty; it should
42 * only involve the execution of 4 or 5 simple instructions.
43 * All composite objects on freelists are cleared, except for
48 * The allocator uses GC_allochblk to allocate large chunks of objects.
49 * These chunks all start on addresses which are multiples of
50 * HBLKSZ. Each allocated chunk has an associated header,
51 * which can be located quickly based on the address of the chunk.
52 * (See headers.c for details.)
53 * This makes it possible to check quickly whether an
54 * arbitrary address corresponds to an object administered by the
58 word GC_non_gc_bytes
= 0; /* Number of bytes not intended to be collected */
63 int GC_incremental
= 0; /* By default, stop the world. */
66 int GC_parallel
= FALSE
; /* By default, parallel GC is off. */
68 int GC_full_freq
= 19; /* Every 20th collection is a full */
69 /* collection, whether we need it */
72 GC_bool GC_need_full_gc
= FALSE
;
73 /* Need full GC do to heap growth. */
76 GC_bool GC_world_stopped
= FALSE
;
77 # define IF_THREADS(x) x
79 # define IF_THREADS(x)
82 word GC_used_heap_size_after_full
= 0;
84 char * GC_copyright
[] =
85 {"Copyright 1988,1989 Hans-J. Boehm and Alan J. Demers ",
86 "Copyright (c) 1991-1995 by Xerox Corporation. All rights reserved. ",
87 "Copyright (c) 1996-1998 by Silicon Graphics. All rights reserved. ",
88 "Copyright (c) 1999-2001 by Hewlett-Packard Company. All rights reserved. ",
89 "THIS MATERIAL IS PROVIDED AS IS, WITH ABSOLUTELY NO WARRANTY",
90 " EXPRESSED OR IMPLIED. ANY USE IS AT YOUR OWN RISK.",
91 "See source code for details." };
95 /* some more variables */
97 extern signed_word GC_mem_found
; /* Number of reclaimed longwords */
98 /* after garbage collection */
100 GC_bool GC_dont_expand
= 0;
102 word GC_free_space_divisor
= 3;
104 extern GC_bool
GC_collection_in_progress();
105 /* Collection is in progress, or was abandoned. */
107 extern GC_bool GC_print_back_height
;
109 int GC_never_stop_func
GC_PROTO((void)) { return(0); }
111 unsigned long GC_time_limit
= TIME_LIMIT
;
113 CLOCK_TYPE GC_start_time
; /* Time at which we stopped world. */
114 /* used only in GC_timeout_stop_func. */
116 int GC_n_attempts
= 0; /* Number of attempts at finishing */
117 /* collection within GC_time_limit. */
119 #if defined(SMALL_CONFIG) || defined(NO_CLOCK)
120 # define GC_timeout_stop_func GC_never_stop_func
122 int GC_timeout_stop_func
GC_PROTO((void))
124 CLOCK_TYPE current_time
;
125 static unsigned count
= 0;
126 unsigned long time_diff
;
128 if ((count
++ & 3) != 0) return(0);
130 GET_TIME(current_time
);
131 time_diff
= MS_TIME_DIFF(current_time
,GC_start_time
);
132 if (time_diff
>= GC_time_limit
) {
134 if (GC_print_stats
) {
135 GC_printf0("Abandoning stopped marking after ");
136 GC_printf1("%lu msecs", (unsigned long)time_diff
);
137 GC_printf1("(attempt %d)\n", (unsigned long) GC_n_attempts
);
145 #endif /* !SMALL_CONFIG */
147 /* Return the minimum number of words that must be allocated between */
148 /* collections to amortize the collection cost. */
149 static word
min_words_allocd()
152 /* We punt, for now. */
153 register signed_word stack_size
= 10000;
156 register signed_word stack_size
= (ptr_t
)(&dummy
) - GC_stackbottom
;
158 word total_root_size
; /* includes double stack size, */
159 /* since the stack is expensive */
161 word scan_size
; /* Estimate of memory to be scanned */
162 /* during normal GC. */
164 if (stack_size
< 0) stack_size
= -stack_size
;
165 total_root_size
= 2 * stack_size
+ GC_root_size
;
166 scan_size
= BYTES_TO_WORDS(GC_heapsize
- GC_large_free_bytes
167 + (GC_large_free_bytes
>> 2)
168 /* use a bit more of large empty heap */
170 if (TRUE_INCREMENTAL
) {
171 return scan_size
/ (2 * GC_free_space_divisor
);
173 return scan_size
/ GC_free_space_divisor
;
177 /* Return the number of words allocated, adjusted for explicit storage */
178 /* management, etc.. This number is used in deciding when to trigger */
180 word
GC_adj_words_allocd()
182 register signed_word result
;
183 register signed_word expl_managed
=
184 BYTES_TO_WORDS((long)GC_non_gc_bytes
185 - (long)GC_non_gc_bytes_at_gc
);
187 /* Don't count what was explicitly freed, or newly allocated for */
188 /* explicit management. Note that deallocating an explicitly */
189 /* managed object should not alter result, assuming the client */
190 /* is playing by the rules. */
191 result
= (signed_word
)GC_words_allocd
192 - (signed_word
)GC_mem_freed
193 + (signed_word
)GC_finalizer_mem_freed
- expl_managed
;
194 if (result
> (signed_word
)GC_words_allocd
) {
195 result
= GC_words_allocd
;
196 /* probably client bug or unfortunate scheduling */
198 result
+= GC_words_finalized
;
199 /* We count objects enqueued for finalization as though they */
200 /* had been reallocated this round. Finalization is user */
201 /* visible progress. And if we don't count this, we have */
202 /* stability problems for programs that finalize all objects. */
203 result
+= GC_words_wasted
;
204 /* This doesn't reflect useful work. But if there is lots of */
205 /* new fragmentation, the same is probably true of the heap, */
206 /* and the collection will be correspondingly cheaper. */
207 if (result
< (signed_word
)(GC_words_allocd
>> 3)) {
208 /* Always count at least 1/8 of the allocations. We don't want */
209 /* to collect too infrequently, since that would inhibit */
210 /* coalescing of free storage blocks. */
211 /* This also makes us partially robust against client bugs. */
212 return(GC_words_allocd
>> 3);
219 /* Clear up a few frames worth of garbage left at the top of the stack. */
220 /* This is used to prevent us from accidentally treating garbade left */
221 /* on the stack by other parts of the collector as roots. This */
222 /* differs from the code in misc.c, which actually tries to keep the */
223 /* stack clear of long-lived, client-generated garbage. */
224 void GC_clear_a_few_frames()
230 for (i
= 0; i
< NWORDS
; i
++) frames
[i
] = 0;
233 /* Have we allocated enough to amortize a collection? */
234 GC_bool
GC_should_collect()
236 return(GC_adj_words_allocd() >= min_words_allocd());
240 void GC_notify_full_gc()
242 if (GC_start_call_back
!= (void (*) GC_PROTO((void)))0) {
243 (*GC_start_call_back
)();
247 GC_bool GC_is_full_gc
= FALSE
;
250 * Initiate a garbage collection if appropriate.
252 * between partial, full, and stop-world collections.
253 * Assumes lock held, signals disabled.
257 static int n_partial_gcs
= 0;
259 if (GC_should_collect()) {
260 if (!GC_incremental
) {
265 # ifdef PARALLEL_MARK
266 GC_wait_for_reclaim();
268 if (GC_need_full_gc
|| n_partial_gcs
>= GC_full_freq
) {
270 if (GC_print_stats
) {
272 "***>Full mark for collection %lu after %ld allocd bytes\n",
273 (unsigned long) GC_gc_no
+1,
274 (long)WORDS_TO_BYTES(GC_words_allocd
));
277 GC_promote_black_lists();
278 (void)GC_reclaim_all((GC_stop_func
)0, TRUE
);
282 GC_is_full_gc
= TRUE
;
287 /* We try to mark with the world stopped. */
288 /* If we run out of time, this turns into */
289 /* incremental marking. */
291 if (GC_time_limit
!= GC_TIME_UNLIMITED
) { GET_TIME(GC_start_time
); }
293 if (GC_stopped_mark(GC_time_limit
== GC_TIME_UNLIMITED
?
294 GC_never_stop_func
: GC_timeout_stop_func
)) {
295 # ifdef SAVE_CALL_CHAIN
296 GC_save_callers(GC_last_stack
);
298 GC_finish_collection();
300 if (!GC_is_full_gc
) {
301 /* Count this as the first attempt */
310 * Stop the world garbage collection. Assumes lock held, signals disabled.
311 * If stop_func is not GC_never_stop_func, then abort if stop_func returns TRUE.
312 * Return TRUE if we successfully completed the collection.
314 GC_bool
GC_try_to_collect_inner(stop_func
)
315 GC_stop_func stop_func
;
318 CLOCK_TYPE start_time
, current_time
;
320 if (GC_dont_gc
) return FALSE
;
321 if (GC_incremental
&& GC_collection_in_progress()) {
323 if (GC_print_stats
) {
325 "GC_try_to_collect_inner: finishing collection in progress\n");
327 # endif /* CONDPRINT */
328 /* Just finish collection already in progress. */
329 while(GC_collection_in_progress()) {
330 if (stop_func()) return(FALSE
);
331 GC_collect_a_little_inner(1);
334 if (stop_func
== GC_never_stop_func
) GC_notify_full_gc();
336 if (GC_print_stats
) {
337 if (GC_print_stats
) GET_TIME(start_time
);
339 "Initiating full world-stop collection %lu after %ld allocd bytes\n",
340 (unsigned long) GC_gc_no
+1,
341 (long)WORDS_TO_BYTES(GC_words_allocd
));
344 GC_promote_black_lists();
345 /* Make sure all blocks have been reclaimed, so sweep routines */
346 /* don't see cleared mark bits. */
347 /* If we're guaranteed to finish, then this is unnecessary. */
348 /* In the find_leak case, we have to finish to guarantee that */
349 /* previously unmarked objects are not reported as leaks. */
350 # ifdef PARALLEL_MARK
351 GC_wait_for_reclaim();
353 if ((GC_find_leak
|| stop_func
!= GC_never_stop_func
)
354 && !GC_reclaim_all(stop_func
, FALSE
)) {
355 /* Aborted. So far everything is still consistent. */
358 GC_invalidate_mark_state(); /* Flush mark stack. */
360 # ifdef SAVE_CALL_CHAIN
361 GC_save_callers(GC_last_stack
);
363 GC_is_full_gc
= TRUE
;
364 if (!GC_stopped_mark(stop_func
)) {
365 if (!GC_incremental
) {
366 /* We're partially done and have no way to complete or use */
367 /* current work. Reestablish invariants as cheaply as */
369 GC_invalidate_mark_state();
370 GC_unpromote_black_lists();
371 } /* else we claim the world is already still consistent. We'll */
372 /* finish incrementally. */
375 GC_finish_collection();
376 # if defined(CONDPRINT)
377 if (GC_print_stats
) {
378 GET_TIME(current_time
);
379 GC_printf1("Complete collection took %lu msecs\n",
380 MS_TIME_DIFF(current_time
,start_time
));
389 * Perform n units of garbage collection work. A unit is intended to touch
390 * roughly GC_RATE pages. Every once in a while, we do more than that.
391 * This needa to be a fairly large number with our current incremental
392 * GC strategy, since otherwise we allocate too much during GC, and the
393 * cleanup gets expensive.
396 # define MAX_PRIOR_ATTEMPTS 1
397 /* Maximum number of prior attempts at world stop marking */
398 /* A value of 1 means that we finish the second time, no matter */
399 /* how long it takes. Doesn't count the initial root scan */
402 int GC_deficit
= 0; /* The number of extra calls to GC_mark_some */
403 /* that we have made. */
405 void GC_collect_a_little_inner(n
)
410 if (GC_dont_gc
) return;
411 if (GC_incremental
&& GC_collection_in_progress()) {
412 for (i
= GC_deficit
; i
< GC_RATE
*n
; i
++) {
413 if (GC_mark_some((ptr_t
)0)) {
414 /* Need to finish a collection */
415 # ifdef SAVE_CALL_CHAIN
416 GC_save_callers(GC_last_stack
);
418 # ifdef PARALLEL_MARK
419 GC_wait_for_reclaim();
421 if (GC_n_attempts
< MAX_PRIOR_ATTEMPTS
422 && GC_time_limit
!= GC_TIME_UNLIMITED
) {
423 GET_TIME(GC_start_time
);
424 if (!GC_stopped_mark(GC_timeout_stop_func
)) {
429 (void)GC_stopped_mark(GC_never_stop_func
);
431 GC_finish_collection();
435 if (GC_deficit
> 0) GC_deficit
-= GC_RATE
*n
;
436 if (GC_deficit
< 0) GC_deficit
= 0;
442 int GC_collect_a_little
GC_PROTO(())
449 GC_collect_a_little_inner(1);
450 result
= (int)GC_collection_in_progress();
453 if (!result
&& GC_debugging_started
) GC_print_all_smashed();
458 * Assumes lock is held, signals are disabled.
460 * If stop_func() ever returns TRUE, we may fail and return FALSE.
461 * Increment GC_gc_no if we succeed.
463 GC_bool
GC_stopped_mark(stop_func
)
464 GC_stop_func stop_func
;
468 # if defined(PRINTTIMES) || defined(CONDPRINT)
469 CLOCK_TYPE start_time
, current_time
;
473 GET_TIME(start_time
);
475 # if defined(CONDPRINT) && !defined(PRINTTIMES)
476 if (GC_print_stats
) GET_TIME(start_time
);
478 # if defined(REGISTER_LIBRARIES_EARLY)
479 GC_cond_register_dynamic_libraries();
482 IF_THREADS(GC_world_stopped
= TRUE
);
484 if (GC_print_stats
) {
485 GC_printf1("--> Marking for collection %lu ",
486 (unsigned long) GC_gc_no
+ 1);
487 GC_printf2("after %lu allocd bytes + %lu wasted bytes\n",
488 (unsigned long) WORDS_TO_BYTES(GC_words_allocd
),
489 (unsigned long) WORDS_TO_BYTES(GC_words_wasted
));
492 # ifdef MAKE_BACK_GRAPH
493 if (GC_print_back_height
) {
494 GC_build_back_graph();
498 /* Mark from all roots. */
499 /* Minimize junk left in my registers and on the stack */
500 GC_clear_a_few_frames();
501 GC_noop(0,0,0,0,0,0);
504 if ((*stop_func
)()) {
506 if (GC_print_stats
) {
507 GC_printf0("Abandoned stopped marking after ");
508 GC_printf1("%lu iterations\n",
512 GC_deficit
= i
; /* Give the mutator a chance. */
513 IF_THREADS(GC_world_stopped
= FALSE
);
517 if (GC_mark_some((ptr_t
)(&dummy
))) break;
522 GC_printf2("Collection %lu reclaimed %ld bytes",
523 (unsigned long) GC_gc_no
- 1,
524 (long)WORDS_TO_BYTES(GC_mem_found
));
527 if (GC_print_stats
) {
528 GC_printf1("Collection %lu finished", (unsigned long) GC_gc_no
- 1);
531 # endif /* !PRINTSTATS */
533 if (GC_print_stats
) {
534 GC_printf1(" ---> heapsize = %lu bytes\n",
535 (unsigned long) GC_heapsize
);
536 /* Printf arguments may be pushed in funny places. Clear the */
540 # endif /* CONDPRINT */
542 /* Check all debugged objects for consistency */
543 if (GC_debugging_started
) {
547 IF_THREADS(GC_world_stopped
= FALSE
);
550 GET_TIME(current_time
);
551 GC_printf1("World-stopped marking took %lu msecs\n",
552 MS_TIME_DIFF(current_time
,start_time
));
555 if (GC_print_stats
) {
556 GET_TIME(current_time
);
557 GC_printf1("World-stopped marking took %lu msecs\n",
558 MS_TIME_DIFF(current_time
,start_time
));
565 /* Set all mark bits for the free list whose first entry is q */
567 void GC_set_fl_marks(ptr_t q
)
569 void GC_set_fl_marks(q
)
574 struct hblk
* h
, * last_h
= 0;
578 for (p
= q
; p
!= 0; p
= obj_link(p
)){
584 word_no
= (((word
*)p
) - ((word
*)h
));
585 set_mark_bit_from_hdr(hhdr
, word_no
);
589 /* Clear all mark bits for the free list whose first entry is q */
590 /* Decrement GC_mem_found by number of words on free list. */
592 void GC_clear_fl_marks(ptr_t q
)
594 void GC_clear_fl_marks(q
)
599 struct hblk
* h
, * last_h
= 0;
603 for (p
= q
; p
!= 0; p
= obj_link(p
)){
609 word_no
= (((word
*)p
) - ((word
*)h
));
610 clear_mark_bit_from_hdr(hhdr
, word_no
);
612 GC_mem_found
-= hhdr
-> hb_sz
;
617 /* Finish up a collection. Assumes lock is held, signals are disabled, */
618 /* but the world is otherwise running. */
619 void GC_finish_collection()
622 CLOCK_TYPE start_time
;
623 CLOCK_TYPE finalize_time
;
624 CLOCK_TYPE done_time
;
626 GET_TIME(start_time
);
627 finalize_time
= start_time
;
633 # if defined(LINUX) && defined(__ELF__) && !defined(SMALL_CONFIG)
634 if (getenv("GC_PRINT_ADDRESS_MAP") != 0) {
635 GC_print_address_map();
640 /* Mark all objects on the free list. All objects should be */
641 /* marked when we're done. */
643 register word size
; /* current object size */
647 for (kind
= 0; kind
< GC_n_kinds
; kind
++) {
648 for (size
= 1; size
<= MAXOBJSZ
; size
++) {
649 q
= GC_obj_kinds
[kind
].ok_freelist
[size
];
650 if (q
!= 0) GC_set_fl_marks(q
);
654 GC_start_reclaim(TRUE
);
655 /* The above just checks; it doesn't really reclaim anything. */
659 # ifdef STUBBORN_ALLOC
660 GC_clean_changing_list();
664 GET_TIME(finalize_time
);
667 if (GC_print_back_height
) {
668 # ifdef MAKE_BACK_GRAPH
669 GC_traverse_back_graph();
671 # ifndef SMALL_CONFIG
672 GC_err_printf0("Back height not available: "
673 "Rebuild collector with -DMAKE_BACK_GRAPH\n");
678 /* Clear free list mark bits, in case they got accidentally marked */
679 /* (or GC_find_leak is set and they were intentionally marked). */
680 /* Also subtract memory remaining from GC_mem_found count. */
681 /* Note that composite objects on free list are cleared. */
682 /* Thus accidentally marking a free list is not a problem; only */
683 /* objects on the list itself will be marked, and that's fixed here. */
685 register word size
; /* current object size */
686 register ptr_t q
; /* pointer to current object */
689 for (kind
= 0; kind
< GC_n_kinds
; kind
++) {
690 for (size
= 1; size
<= MAXOBJSZ
; size
++) {
691 q
= GC_obj_kinds
[kind
].ok_freelist
[size
];
692 if (q
!= 0) GC_clear_fl_marks(q
);
699 GC_printf1("Bytes recovered before sweep - f.l. count = %ld\n",
700 (long)WORDS_TO_BYTES(GC_mem_found
));
702 /* Reconstruct free lists to contain everything not marked */
703 GC_start_reclaim(FALSE
);
705 GC_used_heap_size_after_full
= USED_HEAP_SIZE
;
706 GC_need_full_gc
= FALSE
;
709 BYTES_TO_WORDS(USED_HEAP_SIZE
- GC_used_heap_size_after_full
)
710 > min_words_allocd();
715 "Immediately reclaimed %ld bytes in heap of size %lu bytes",
716 (long)WORDS_TO_BYTES(GC_mem_found
),
717 (unsigned long)GC_heapsize
);
719 GC_printf1("(%lu unmapped)", GC_unmapped_bytes
);
722 "\n%lu (atomic) + %lu (composite) collectable bytes in use\n",
723 (unsigned long)WORDS_TO_BYTES(GC_atomic_in_use
),
724 (unsigned long)WORDS_TO_BYTES(GC_composite_in_use
));
728 GC_is_full_gc
= FALSE
;
729 /* Reset or increment counters for next cycle */
730 GC_words_allocd_before_gc
+= GC_words_allocd
;
731 GC_non_gc_bytes_at_gc
= GC_non_gc_bytes
;
735 GC_finalizer_mem_freed
= 0;
742 GC_printf2("Finalize + initiate sweep took %lu + %lu msecs\n",
743 MS_TIME_DIFF(finalize_time
,start_time
),
744 MS_TIME_DIFF(done_time
,finalize_time
));
748 /* Externally callable routine to invoke full, stop-world collection */
749 # if defined(__STDC__) || defined(__cplusplus)
750 int GC_try_to_collect(GC_stop_func stop_func
)
752 int GC_try_to_collect(stop_func
)
753 GC_stop_func stop_func
;
759 if (GC_debugging_started
) GC_print_all_smashed();
760 GC_INVOKE_FINALIZERS();
764 if (!GC_is_initialized
) GC_init_inner();
765 /* Minimize junk left in my registers */
766 GC_noop(0,0,0,0,0,0);
767 result
= (int)GC_try_to_collect_inner(stop_func
);
772 if (GC_debugging_started
) GC_print_all_smashed();
773 GC_INVOKE_FINALIZERS();
778 void GC_gcollect
GC_PROTO(())
780 (void)GC_try_to_collect(GC_never_stop_func
);
781 if (GC_have_errors
) GC_print_all_errors();
784 word GC_n_heap_sects
= 0; /* Number of sections currently in heap. */
787 * Use the chunk of memory starting at p of size bytes as part of the heap.
788 * Assumes p is HBLKSIZE aligned, and bytes is a multiple of HBLKSIZE.
790 void GC_add_to_heap(p
, bytes
)
797 if (GC_n_heap_sects
>= MAX_HEAP_SECTS
) {
798 ABORT("Too many heap sections: Increase MAXHINCR or MAX_HEAP_SECTS");
800 phdr
= GC_install_header(p
);
802 /* This is extremely unlikely. Can't add it. This will */
803 /* almost certainly result in a 0 return from the allocator, */
804 /* which is entirely appropriate. */
807 GC_heap_sects
[GC_n_heap_sects
].hs_start
= (ptr_t
)p
;
808 GC_heap_sects
[GC_n_heap_sects
].hs_bytes
= bytes
;
810 words
= BYTES_TO_WORDS(bytes
);
811 phdr
-> hb_sz
= words
;
812 phdr
-> hb_map
= (unsigned char *)1; /* A value != GC_invalid_map */
813 phdr
-> hb_flags
= 0;
815 GC_heapsize
+= bytes
;
816 if ((ptr_t
)p
<= (ptr_t
)GC_least_plausible_heap_addr
817 || GC_least_plausible_heap_addr
== 0) {
818 GC_least_plausible_heap_addr
= (GC_PTR
)((ptr_t
)p
- sizeof(word
));
819 /* Making it a little smaller than necessary prevents */
820 /* us from getting a false hit from the variable */
821 /* itself. There's some unintentional reflection */
824 if ((ptr_t
)p
+ bytes
>= (ptr_t
)GC_greatest_plausible_heap_addr
) {
825 GC_greatest_plausible_heap_addr
= (GC_PTR
)((ptr_t
)p
+ bytes
);
829 # if !defined(NO_DEBUGGING)
830 void GC_print_heap_sects()
834 GC_printf1("Total heap size: %lu\n", (unsigned long) GC_heapsize
);
835 for (i
= 0; i
< GC_n_heap_sects
; i
++) {
836 unsigned long start
= (unsigned long) GC_heap_sects
[i
].hs_start
;
837 unsigned long len
= (unsigned long) GC_heap_sects
[i
].hs_bytes
;
841 GC_printf3("Section %ld from 0x%lx to 0x%lx ", (unsigned long)i
,
842 start
, (unsigned long)(start
+ len
));
843 for (h
= (struct hblk
*)start
; h
< (struct hblk
*)(start
+ len
); h
++) {
844 if (GC_is_black_listed(h
, HBLKSIZE
)) nbl
++;
846 GC_printf2("%lu/%lu blacklisted\n", (unsigned long)nbl
,
847 (unsigned long)(len
/HBLKSIZE
));
852 GC_PTR GC_least_plausible_heap_addr
= (GC_PTR
)ONES
;
853 GC_PTR GC_greatest_plausible_heap_addr
= 0;
858 return(x
> y
? x
: y
);
864 return(x
< y
? x
: y
);
867 # if defined(__STDC__) || defined(__cplusplus)
868 void GC_set_max_heap_size(GC_word n
)
870 void GC_set_max_heap_size(n
)
877 GC_word GC_max_retries
= 0;
880 * this explicitly increases the size of the heap. It is used
881 * internally, but may also be invoked from GC_expand_hp by the user.
882 * The argument is in units of HBLKSIZE.
883 * Tiny values of n are rounded up.
884 * Returns FALSE on failure.
886 GC_bool
GC_expand_hp_inner(n
)
891 word expansion_slop
; /* Number of bytes by which we expect the */
892 /* heap to expand soon. */
894 if (n
< MINHINCR
) n
= MINHINCR
;
895 bytes
= n
* HBLKSIZE
;
896 /* Make sure bytes is a multiple of GC_page_size */
898 word mask
= GC_page_size
- 1;
903 if (GC_max_heapsize
!= 0 && GC_heapsize
+ bytes
> GC_max_heapsize
) {
904 /* Exceeded self-imposed limit */
907 space
= GET_MEM(bytes
);
910 if (GC_print_stats
) {
911 GC_printf1("Failed to expand heap by %ld bytes\n",
912 (unsigned long)bytes
);
918 if (GC_print_stats
) {
919 GC_printf2("Increasing heap size by %lu after %lu allocated bytes\n",
920 (unsigned long)bytes
,
921 (unsigned long)WORDS_TO_BYTES(GC_words_allocd
));
923 GC_printf1("Root size = %lu\n", GC_root_size
);
924 GC_print_block_list(); GC_print_hblkfreelist();
929 expansion_slop
= 8 * WORDS_TO_BYTES(min_words_allocd());
930 if (5 * HBLKSIZE
* MAXHINCR
> expansion_slop
) {
931 expansion_slop
= 5 * HBLKSIZE
* MAXHINCR
;
933 if (GC_last_heap_addr
== 0 && !((word
)space
& SIGNB
)
934 || GC_last_heap_addr
!= 0 && GC_last_heap_addr
< (ptr_t
)space
) {
935 /* Assume the heap is growing up */
936 GC_greatest_plausible_heap_addr
=
937 GC_max(GC_greatest_plausible_heap_addr
,
938 (ptr_t
)space
+ bytes
+ expansion_slop
);
940 /* Heap is growing down */
941 GC_least_plausible_heap_addr
=
942 GC_min(GC_least_plausible_heap_addr
,
943 (ptr_t
)space
- expansion_slop
);
945 GC_prev_heap_addr
= GC_last_heap_addr
;
946 GC_last_heap_addr
= (ptr_t
)space
;
947 GC_add_to_heap(space
, bytes
);
951 /* Really returns a bool, but it's externally visible, so that's clumsy. */
952 /* Arguments is in bytes. */
953 # if defined(__STDC__) || defined(__cplusplus)
954 int GC_expand_hp(size_t bytes
)
956 int GC_expand_hp(bytes
)
965 if (!GC_is_initialized
) GC_init_inner();
966 result
= (int)GC_expand_hp_inner(divHBLKSZ((word
)bytes
));
967 if (result
) GC_requested_heapsize
+= bytes
;
973 unsigned GC_fail_count
= 0;
974 /* How many consecutive GC/expansion failures? */
975 /* Reset by GC_allochblk. */
977 GC_bool
GC_collect_or_expand(needed_blocks
, ignore_off_page
)
979 GC_bool ignore_off_page
;
981 if (!GC_incremental
&& !GC_dont_gc
&&
982 (GC_dont_expand
&& GC_words_allocd
> 0 || GC_should_collect())) {
985 word blocks_to_get
= GC_heapsize
/(HBLKSIZE
*GC_free_space_divisor
)
988 if (blocks_to_get
> MAXHINCR
) {
991 if (ignore_off_page
) {
994 slop
= 2*divHBLKSZ(BL_LIMIT
);
995 if (slop
> needed_blocks
) slop
= needed_blocks
;
997 if (needed_blocks
+ slop
> MAXHINCR
) {
998 blocks_to_get
= needed_blocks
+ slop
;
1000 blocks_to_get
= MAXHINCR
;
1003 if (!GC_expand_hp_inner(blocks_to_get
)
1004 && !GC_expand_hp_inner(needed_blocks
)) {
1005 if (GC_fail_count
++ < GC_max_retries
) {
1006 WARN("Out of Memory! Trying to continue ...\n", 0);
1007 GC_gcollect_inner();
1009 # if !defined(AMIGA) || !defined(GC_AMIGA_FASTALLOC)
1010 WARN("Out of Memory! Returning NIL!\n", 0);
1016 if (GC_fail_count
&& GC_print_stats
) {
1017 GC_printf0("Memory available again ...\n");
1026 * Make sure the object free list for sz is not empty.
1027 * Return a pointer to the first object on the free list.
1028 * The object MUST BE REMOVED FROM THE FREE LIST BY THE CALLER.
1029 * Assumes we hold the allocator lock and signals are disabled.
1032 ptr_t
GC_allocobj(sz
, kind
)
1036 ptr_t
* flh
= &(GC_obj_kinds
[kind
].ok_freelist
[sz
]);
1037 GC_bool tried_minor
= FALSE
;
1039 if (sz
== 0) return(0);
1043 /* Do our share of marking work */
1044 if(TRUE_INCREMENTAL
) GC_collect_a_little_inner(1);
1045 /* Sweep blocks for objects of this size */
1046 GC_continue_reclaim(sz
, kind
);
1049 GC_new_hblk(sz
, kind
);
1053 if (GC_incremental
&& GC_time_limit
== GC_TIME_UNLIMITED
1054 && ! tried_minor
) {
1055 GC_collect_a_little_inner(1);
1058 if (!GC_collect_or_expand((word
)1,FALSE
)) {
1066 /* Successful allocation; reset failure count. */