2 * GENerational Conservative Garbage Collector for SBCL
6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
17 * For a review of garbage collection techniques (e.g. generational
18 * GC) and terminology (e.g. "scavenging") see Paul R. Wilson,
19 * "Uniprocessor Garbage Collection Techniques". As of 20000618, this
20 * had been accepted for _ACM Computing Surveys_ and was available
21 * as a PostScript preprint through
22 * <http://www.cs.utexas.edu/users/oops/papers.html>
24 * <ftp://ftp.cs.utexas.edu/pub/garbage/bigsurv.ps>.
37 #include "interrupt.h"
42 #include "gc-internal.h"
44 #include "pseudo-atomic.h"
46 #include "genesis/vector.h"
47 #include "genesis/weak-pointer.h"
48 #include "genesis/fdefn.h"
49 #include "genesis/simple-fun.h"
51 #include "genesis/hash-table.h"
52 #include "genesis/instance.h"
53 #include "genesis/layout.h"
55 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
56 #include "genesis/cons.h"
59 /* forward declarations */
60 page_index_t gc_find_freeish_pages(page_index_t *restart_page_ptr, long nbytes,
68 /* Generations 0-5 are normal collected generations, 6 is only used as
69 * scratch space by the collector, and should never get collected.
72 SCRATCH_GENERATION = PSEUDO_STATIC_GENERATION+1,
76 /* Should we use page protection to help avoid the scavenging of pages
77 * that don't have pointers to younger generations? */
78 boolean enable_page_protection = 1;
80 /* the minimum size (in bytes) for a large object*/
81 #if (GENCGC_ALLOC_GRANULARITY >= PAGE_BYTES) && (GENCGC_ALLOC_GRANULARITY >= GENCGC_CARD_BYTES)
82 os_vm_size_t large_object_size = 4 * GENCGC_ALLOC_GRANULARITY;
83 #elif (GENCGC_CARD_BYTES >= PAGE_BYTES) && (GENCGC_CARD_BYTES >= GENCGC_ALLOC_GRANULARITY)
84 os_vm_size_t large_object_size = 4 * GENCGC_CARD_BYTES;
86 os_vm_size_t large_object_size = 4 * PAGE_BYTES;
89 /* Largest allocation seen since last GC. */
90 os_vm_size_t large_allocation = 0;
97 /* the verbosity level. All non-error messages are disabled at level 0;
98 * and only a few rare messages are printed at level 1. */
100 boolean gencgc_verbose = 1;
102 boolean gencgc_verbose = 0;
105 /* FIXME: At some point enable the various error-checking things below
106 * and see what they say. */
108 /* We hunt for pointers to old-space, when GCing generations >= verify_gen.
109 * Set verify_gens to HIGHEST_NORMAL_GENERATION + 1 to disable this kind of
111 generation_index_t verify_gens = HIGHEST_NORMAL_GENERATION + 1;
113 /* Should we do a pre-scan verify of generation 0 before it's GCed? */
114 boolean pre_verify_gen_0 = 0;
116 /* Should we check for bad pointers after gc_free_heap is called
117 * from Lisp PURIFY? */
118 boolean verify_after_free_heap = 0;
120 /* Should we print a note when code objects are found in the dynamic space
121 * during a heap verify? */
122 boolean verify_dynamic_code_check = 0;
124 /* Should we check code objects for fixup errors after they are transported? */
125 boolean check_code_fixups = 0;
127 /* Should we check that newly allocated regions are zero filled? */
128 boolean gencgc_zero_check = 0;
130 /* Should we check that the free space is zero filled? */
131 boolean gencgc_enable_verify_zero_fill = 0;
133 /* Should we check that free pages are zero filled during gc_free_heap
134 * called after Lisp PURIFY? */
135 boolean gencgc_zero_check_during_free_heap = 0;
137 /* When loading a core, don't do a full scan of the memory for the
138 * memory region boundaries. (Set to true by coreparse.c if the core
139 * contained a pagetable entry).
141 boolean gencgc_partial_pickup = 0;
143 /* If defined, free pages are read-protected to ensure that nothing
147 /* #define READ_PROTECT_FREE_PAGES */
151 * GC structures and variables
154 /* the total bytes allocated. These are seen by Lisp DYNAMIC-USAGE. */
155 os_vm_size_t bytes_allocated = 0;
156 os_vm_size_t auto_gc_trigger = 0;
158 /* the source and destination generations. These are set before a GC starts
160 generation_index_t from_space;
161 generation_index_t new_space;
163 /* Set to 1 when in GC */
164 boolean gc_active_p = 0;
166 /* should the GC be conservative on stack. If false (only right before
167 * saving a core), don't scan the stack / mark pages dont_move. */
168 static boolean conservative_stack = 1;
170 /* An array of page structures is allocated on gc initialization.
171 * This helps to quickly map between an address and its page structure.
172 * page_table_pages is set from the size of the dynamic space. */
173 page_index_t page_table_pages;
174 struct page *page_table;
176 static inline boolean page_allocated_p(page_index_t page) {
177 return (page_table[page].allocated != FREE_PAGE_FLAG);
180 static inline boolean page_no_region_p(page_index_t page) {
181 return !(page_table[page].allocated & OPEN_REGION_PAGE_FLAG);
184 static inline boolean page_allocated_no_region_p(page_index_t page) {
185 return ((page_table[page].allocated & (UNBOXED_PAGE_FLAG | BOXED_PAGE_FLAG))
186 && page_no_region_p(page));
189 static inline boolean page_free_p(page_index_t page) {
190 return (page_table[page].allocated == FREE_PAGE_FLAG);
193 static inline boolean page_boxed_p(page_index_t page) {
194 return (page_table[page].allocated & BOXED_PAGE_FLAG);
197 static inline boolean code_page_p(page_index_t page) {
198 return (page_table[page].allocated & CODE_PAGE_FLAG);
201 static inline boolean page_boxed_no_region_p(page_index_t page) {
202 return page_boxed_p(page) && page_no_region_p(page);
205 static inline boolean page_unboxed_p(page_index_t page) {
206 /* Both flags set == boxed code page */
207 return ((page_table[page].allocated & UNBOXED_PAGE_FLAG)
208 && !page_boxed_p(page));
211 static inline boolean protect_page_p(page_index_t page, generation_index_t generation) {
212 return (page_boxed_no_region_p(page)
213 && (page_table[page].bytes_used != 0)
214 && !page_table[page].dont_move
215 && (page_table[page].gen == generation));
218 /* To map addresses to page structures the address of the first page
220 static void *heap_base = NULL;
222 /* Calculate the start address for the given page number. */
224 page_address(page_index_t page_num)
226 return (heap_base + (page_num * GENCGC_CARD_BYTES));
229 /* Calculate the address where the allocation region associated with
230 * the page starts. */
232 page_region_start(page_index_t page_index)
234 return page_address(page_index)-page_table[page_index].region_start_offset;
237 /* Find the page index within the page_table for the given
238 * address. Return -1 on failure. */
240 find_page_index(void *addr)
242 if (addr >= heap_base) {
243 page_index_t index = ((pointer_sized_uint_t)addr -
244 (pointer_sized_uint_t)heap_base) / GENCGC_CARD_BYTES;
245 if (index < page_table_pages)
252 npage_bytes(page_index_t npages)
254 gc_assert(npages>=0);
255 return ((os_vm_size_t)npages)*GENCGC_CARD_BYTES;
258 /* Check that X is a higher address than Y and return offset from Y to
260 static inline os_vm_size_t
261 void_diff(void *x, void *y)
264 return (pointer_sized_uint_t)x - (pointer_sized_uint_t)y;
267 /* a structure to hold the state of a generation
269 * CAUTION: If you modify this, make sure to touch up the alien
270 * definition in src/code/gc.lisp accordingly. ...or better yes,
271 * deal with the FIXME there...
275 /* the first page that gc_alloc() checks on its next call */
276 page_index_t alloc_start_page;
278 /* the first page that gc_alloc_unboxed() checks on its next call */
279 page_index_t alloc_unboxed_start_page;
281 /* the first page that gc_alloc_large (boxed) considers on its next
282 * call. (Although it always allocates after the boxed_region.) */
283 page_index_t alloc_large_start_page;
285 /* the first page that gc_alloc_large (unboxed) considers on its
286 * next call. (Although it always allocates after the
287 * current_unboxed_region.) */
288 page_index_t alloc_large_unboxed_start_page;
290 /* the bytes allocated to this generation */
291 os_vm_size_t bytes_allocated;
293 /* the number of bytes at which to trigger a GC */
294 os_vm_size_t gc_trigger;
296 /* to calculate a new level for gc_trigger */
297 os_vm_size_t bytes_consed_between_gc;
299 /* the number of GCs since the last raise */
302 /* the number of GCs to run on the generations before raising objects to the
304 int number_of_gcs_before_promotion;
306 /* the cumulative sum of the bytes allocated to this generation. It is
307 * cleared after a GC on this generations, and update before new
308 * objects are added from a GC of a younger generation. Dividing by
309 * the bytes_allocated will give the average age of the memory in
310 * this generation since its last GC. */
311 os_vm_size_t cum_sum_bytes_allocated;
313 /* a minimum average memory age before a GC will occur helps
314 * prevent a GC when a large number of new live objects have been
315 * added, in which case a GC could be a waste of time */
316 double minimum_age_before_gc;
319 /* an array of generation structures. There needs to be one more
320 * generation structure than actual generations as the oldest
321 * generation is temporarily raised then lowered. */
322 struct generation generations[NUM_GENERATIONS];
324 /* the oldest generation that is will currently be GCed by default.
325 * Valid values are: 0, 1, ... HIGHEST_NORMAL_GENERATION
327 * The default of HIGHEST_NORMAL_GENERATION enables GC on all generations.
329 * Setting this to 0 effectively disables the generational nature of
330 * the GC. In some applications generational GC may not be useful
331 * because there are no long-lived objects.
333 * An intermediate value could be handy after moving long-lived data
334 * into an older generation so an unnecessary GC of this long-lived
335 * data can be avoided. */
336 generation_index_t gencgc_oldest_gen_to_gc = HIGHEST_NORMAL_GENERATION;
338 /* The maximum free page in the heap is maintained and used to update
339 * ALLOCATION_POINTER which is used by the room function to limit its
340 * search of the heap. XX Gencgc obviously needs to be better
341 * integrated with the Lisp code. */
342 page_index_t last_free_page;
344 #ifdef LISP_FEATURE_SB_THREAD
345 /* This lock is to prevent multiple threads from simultaneously
346 * allocating new regions which overlap each other. Note that the
347 * majority of GC is single-threaded, but alloc() may be called from
348 * >1 thread at a time and must be thread-safe. This lock must be
349 * seized before all accesses to generations[] or to parts of
350 * page_table[] that other threads may want to see */
351 static pthread_mutex_t free_pages_lock = PTHREAD_MUTEX_INITIALIZER;
352 /* This lock is used to protect non-thread-local allocation. */
353 static pthread_mutex_t allocation_lock = PTHREAD_MUTEX_INITIALIZER;
356 extern os_vm_size_t gencgc_release_granularity;
357 os_vm_size_t gencgc_release_granularity = GENCGC_RELEASE_GRANULARITY;
359 extern os_vm_size_t gencgc_alloc_granularity;
360 os_vm_size_t gencgc_alloc_granularity = GENCGC_ALLOC_GRANULARITY;
364 * miscellaneous heap functions
367 /* Count the number of pages which are write-protected within the
368 * given generation. */
370 count_write_protect_generation_pages(generation_index_t generation)
372 page_index_t i, count = 0;
374 for (i = 0; i < last_free_page; i++)
375 if (page_allocated_p(i)
376 && (page_table[i].gen == generation)
377 && (page_table[i].write_protected == 1))
382 /* Count the number of pages within the given generation. */
384 count_generation_pages(generation_index_t generation)
387 page_index_t count = 0;
389 for (i = 0; i < last_free_page; i++)
390 if (page_allocated_p(i)
391 && (page_table[i].gen == generation))
398 count_dont_move_pages(void)
401 page_index_t count = 0;
402 for (i = 0; i < last_free_page; i++) {
403 if (page_allocated_p(i)
404 && (page_table[i].dont_move != 0)) {
412 /* Work through the pages and add up the number of bytes used for the
413 * given generation. */
415 count_generation_bytes_allocated (generation_index_t gen)
418 os_vm_size_t result = 0;
419 for (i = 0; i < last_free_page; i++) {
420 if (page_allocated_p(i)
421 && (page_table[i].gen == gen))
422 result += page_table[i].bytes_used;
427 /* Return the average age of the memory in a generation. */
429 generation_average_age(generation_index_t gen)
431 if (generations[gen].bytes_allocated == 0)
435 ((double)generations[gen].cum_sum_bytes_allocated)
436 / ((double)generations[gen].bytes_allocated);
440 write_generation_stats(FILE *file)
442 generation_index_t i;
444 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
445 #define FPU_STATE_SIZE 27
446 int fpu_state[FPU_STATE_SIZE];
447 #elif defined(LISP_FEATURE_PPC)
448 #define FPU_STATE_SIZE 32
449 long long fpu_state[FPU_STATE_SIZE];
452 /* This code uses the FP instructions which may be set up for Lisp
453 * so they need to be saved and reset for C. */
456 /* Print the heap stats. */
458 " Gen StaPg UbSta LaSta LUbSt Boxed Unboxed LB LUB !move Alloc Waste Trig WP GCs Mem-age\n");
460 for (i = 0; i < SCRATCH_GENERATION; i++) {
462 page_index_t boxed_cnt = 0;
463 page_index_t unboxed_cnt = 0;
464 page_index_t large_boxed_cnt = 0;
465 page_index_t large_unboxed_cnt = 0;
466 page_index_t pinned_cnt=0;
468 for (j = 0; j < last_free_page; j++)
469 if (page_table[j].gen == i) {
471 /* Count the number of boxed pages within the given
473 if (page_boxed_p(j)) {
474 if (page_table[j].large_object)
479 if(page_table[j].dont_move) pinned_cnt++;
480 /* Count the number of unboxed pages within the given
482 if (page_unboxed_p(j)) {
483 if (page_table[j].large_object)
490 gc_assert(generations[i].bytes_allocated
491 == count_generation_bytes_allocated(i));
493 " %1d: %5ld %5ld %5ld %5ld",
495 generations[i].alloc_start_page,
496 generations[i].alloc_unboxed_start_page,
497 generations[i].alloc_large_start_page,
498 generations[i].alloc_large_unboxed_start_page);
500 " %5"PAGE_INDEX_FMT" %5"PAGE_INDEX_FMT" %5"PAGE_INDEX_FMT
501 " %5"PAGE_INDEX_FMT" %5"PAGE_INDEX_FMT,
502 boxed_cnt, unboxed_cnt, large_boxed_cnt,
503 large_unboxed_cnt, pinned_cnt);
508 " %4"PAGE_INDEX_FMT" %3d %7.4f\n",
509 generations[i].bytes_allocated,
510 (npage_bytes(count_generation_pages(i)) - generations[i].bytes_allocated),
511 generations[i].gc_trigger,
512 count_write_protect_generation_pages(i),
513 generations[i].num_gc,
514 generation_average_age(i));
516 fprintf(file," Total bytes allocated = %"OS_VM_SIZE_FMT"\n", bytes_allocated);
517 fprintf(file," Dynamic-space-size bytes = %"OS_VM_SIZE_FMT"\n", dynamic_space_size);
519 fpu_restore(fpu_state);
523 write_heap_exhaustion_report(FILE *file, long available, long requested,
524 struct thread *thread)
527 "Heap exhausted during %s: %ld bytes available, %ld requested.\n",
528 gc_active_p ? "garbage collection" : "allocation",
531 write_generation_stats(file);
532 fprintf(file, "GC control variables:\n");
533 fprintf(file, " *GC-INHIBIT* = %s\n *GC-PENDING* = %s\n",
534 SymbolValue(GC_INHIBIT,thread)==NIL ? "false" : "true",
535 (SymbolValue(GC_PENDING, thread) == T) ?
536 "true" : ((SymbolValue(GC_PENDING, thread) == NIL) ?
537 "false" : "in progress"));
538 #ifdef LISP_FEATURE_SB_THREAD
539 fprintf(file, " *STOP-FOR-GC-PENDING* = %s\n",
540 SymbolValue(STOP_FOR_GC_PENDING,thread)==NIL ? "false" : "true");
545 print_generation_stats(void)
547 write_generation_stats(stderr);
550 extern char* gc_logfile;
551 char * gc_logfile = NULL;
554 log_generation_stats(char *logfile, char *header)
557 FILE * log = fopen(logfile, "a");
559 fprintf(log, "%s\n", header);
560 write_generation_stats(log);
563 fprintf(stderr, "Could not open gc logfile: %s\n", logfile);
570 report_heap_exhaustion(long available, long requested, struct thread *th)
573 FILE * log = fopen(gc_logfile, "a");
575 write_heap_exhaustion_report(log, available, requested, th);
578 fprintf(stderr, "Could not open gc logfile: %s\n", gc_logfile);
582 /* Always to stderr as well. */
583 write_heap_exhaustion_report(stderr, available, requested, th);
587 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
588 void fast_bzero(void*, size_t); /* in <arch>-assem.S */
591 /* Zero the pages from START to END (inclusive), but use mmap/munmap instead
592 * if zeroing it ourselves, i.e. in practice give the memory back to the
593 * OS. Generally done after a large GC.
595 void zero_pages_with_mmap(page_index_t start, page_index_t end) {
597 void *addr = page_address(start), *new_addr;
598 os_vm_size_t length = npage_bytes(1+end-start);
603 gc_assert(length >= gencgc_release_granularity);
604 gc_assert((length % gencgc_release_granularity) == 0);
606 os_invalidate(addr, length);
607 new_addr = os_validate(addr, length);
608 if (new_addr == NULL || new_addr != addr) {
609 lose("remap_free_pages: page moved, 0x%08x ==> 0x%08x",
613 for (i = start; i <= end; i++) {
614 page_table[i].need_to_zero = 0;
618 /* Zero the pages from START to END (inclusive). Generally done just after
619 * a new region has been allocated.
622 zero_pages(page_index_t start, page_index_t end) {
626 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
627 fast_bzero(page_address(start), npage_bytes(1+end-start));
629 bzero(page_address(start), npage_bytes(1+end-start));
635 zero_and_mark_pages(page_index_t start, page_index_t end) {
638 zero_pages(start, end);
639 for (i = start; i <= end; i++)
640 page_table[i].need_to_zero = 0;
643 /* Zero the pages from START to END (inclusive), except for those
644 * pages that are known to already zeroed. Mark all pages in the
645 * ranges as non-zeroed.
648 zero_dirty_pages(page_index_t start, page_index_t end) {
651 for (i = start; i <= end; i++) {
652 if (!page_table[i].need_to_zero) continue;
653 for (j = i+1; (j <= end) && (page_table[j].need_to_zero); j++);
658 for (i = start; i <= end; i++) {
659 page_table[i].need_to_zero = 1;
665 * To support quick and inline allocation, regions of memory can be
666 * allocated and then allocated from with just a free pointer and a
667 * check against an end address.
669 * Since objects can be allocated to spaces with different properties
670 * e.g. boxed/unboxed, generation, ages; there may need to be many
671 * allocation regions.
673 * Each allocation region may start within a partly used page. Many
674 * features of memory use are noted on a page wise basis, e.g. the
675 * generation; so if a region starts within an existing allocated page
676 * it must be consistent with this page.
678 * During the scavenging of the newspace, objects will be transported
679 * into an allocation region, and pointers updated to point to this
680 * allocation region. It is possible that these pointers will be
681 * scavenged again before the allocation region is closed, e.g. due to
682 * trans_list which jumps all over the place to cleanup the list. It
683 * is important to be able to determine properties of all objects
684 * pointed to when scavenging, e.g to detect pointers to the oldspace.
685 * Thus it's important that the allocation regions have the correct
686 * properties set when allocated, and not just set when closed. The
687 * region allocation routines return regions with the specified
688 * properties, and grab all the pages, setting their properties
689 * appropriately, except that the amount used is not known.
691 * These regions are used to support quicker allocation using just a
692 * free pointer. The actual space used by the region is not reflected
693 * in the pages tables until it is closed. It can't be scavenged until
696 * When finished with the region it should be closed, which will
697 * update the page tables for the actual space used returning unused
698 * space. Further it may be noted in the new regions which is
699 * necessary when scavenging the newspace.
701 * Large objects may be allocated directly without an allocation
702 * region, the page tables are updated immediately.
704 * Unboxed objects don't contain pointers to other objects and so
705 * don't need scavenging. Further they can't contain pointers to
706 * younger generations so WP is not needed. By allocating pages to
707 * unboxed objects the whole page never needs scavenging or
708 * write-protecting. */
710 /* We are only using two regions at present. Both are for the current
711 * newspace generation. */
712 struct alloc_region boxed_region;
713 struct alloc_region unboxed_region;
715 /* The generation currently being allocated to. */
716 static generation_index_t gc_alloc_generation;
718 static inline page_index_t
719 generation_alloc_start_page(generation_index_t generation, int page_type_flag, int large)
722 if (UNBOXED_PAGE_FLAG == page_type_flag) {
723 return generations[generation].alloc_large_unboxed_start_page;
724 } else if (BOXED_PAGE_FLAG & page_type_flag) {
725 /* Both code and data. */
726 return generations[generation].alloc_large_start_page;
728 lose("bad page type flag: %d", page_type_flag);
731 if (UNBOXED_PAGE_FLAG == page_type_flag) {
732 return generations[generation].alloc_unboxed_start_page;
733 } else if (BOXED_PAGE_FLAG & page_type_flag) {
734 /* Both code and data. */
735 return generations[generation].alloc_start_page;
737 lose("bad page_type_flag: %d", page_type_flag);
743 set_generation_alloc_start_page(generation_index_t generation, int page_type_flag, int large,
747 if (UNBOXED_PAGE_FLAG == page_type_flag) {
748 generations[generation].alloc_large_unboxed_start_page = page;
749 } else if (BOXED_PAGE_FLAG & page_type_flag) {
750 /* Both code and data. */
751 generations[generation].alloc_large_start_page = page;
753 lose("bad page type flag: %d", page_type_flag);
756 if (UNBOXED_PAGE_FLAG == page_type_flag) {
757 generations[generation].alloc_unboxed_start_page = page;
758 } else if (BOXED_PAGE_FLAG & page_type_flag) {
759 /* Both code and data. */
760 generations[generation].alloc_start_page = page;
762 lose("bad page type flag: %d", page_type_flag);
767 /* Find a new region with room for at least the given number of bytes.
769 * It starts looking at the current generation's alloc_start_page. So
770 * may pick up from the previous region if there is enough space. This
771 * keeps the allocation contiguous when scavenging the newspace.
773 * The alloc_region should have been closed by a call to
774 * gc_alloc_update_page_tables(), and will thus be in an empty state.
776 * To assist the scavenging functions write-protected pages are not
777 * used. Free pages should not be write-protected.
779 * It is critical to the conservative GC that the start of regions be
780 * known. To help achieve this only small regions are allocated at a
783 * During scavenging, pointers may be found to within the current
784 * region and the page generation must be set so that pointers to the
785 * from space can be recognized. Therefore the generation of pages in
786 * the region are set to gc_alloc_generation. To prevent another
787 * allocation call using the same pages, all the pages in the region
788 * are allocated, although they will initially be empty.
791 gc_alloc_new_region(long nbytes, int page_type_flag, struct alloc_region *alloc_region)
793 page_index_t first_page;
794 page_index_t last_page;
795 os_vm_size_t bytes_found;
801 "/alloc_new_region for %d bytes from gen %d\n",
802 nbytes, gc_alloc_generation));
805 /* Check that the region is in a reset state. */
806 gc_assert((alloc_region->first_page == 0)
807 && (alloc_region->last_page == -1)
808 && (alloc_region->free_pointer == alloc_region->end_addr));
809 ret = thread_mutex_lock(&free_pages_lock);
811 first_page = generation_alloc_start_page(gc_alloc_generation, page_type_flag, 0);
812 last_page=gc_find_freeish_pages(&first_page, nbytes, page_type_flag);
813 bytes_found=(GENCGC_CARD_BYTES - page_table[first_page].bytes_used)
814 + npage_bytes(last_page-first_page);
816 /* Set up the alloc_region. */
817 alloc_region->first_page = first_page;
818 alloc_region->last_page = last_page;
819 alloc_region->start_addr = page_table[first_page].bytes_used
820 + page_address(first_page);
821 alloc_region->free_pointer = alloc_region->start_addr;
822 alloc_region->end_addr = alloc_region->start_addr + bytes_found;
824 /* Set up the pages. */
826 /* The first page may have already been in use. */
827 if (page_table[first_page].bytes_used == 0) {
828 page_table[first_page].allocated = page_type_flag;
829 page_table[first_page].gen = gc_alloc_generation;
830 page_table[first_page].large_object = 0;
831 page_table[first_page].region_start_offset = 0;
834 gc_assert(page_table[first_page].allocated == page_type_flag);
835 page_table[first_page].allocated |= OPEN_REGION_PAGE_FLAG;
837 gc_assert(page_table[first_page].gen == gc_alloc_generation);
838 gc_assert(page_table[first_page].large_object == 0);
840 for (i = first_page+1; i <= last_page; i++) {
841 page_table[i].allocated = page_type_flag;
842 page_table[i].gen = gc_alloc_generation;
843 page_table[i].large_object = 0;
844 /* This may not be necessary for unboxed regions (think it was
846 page_table[i].region_start_offset =
847 void_diff(page_address(i),alloc_region->start_addr);
848 page_table[i].allocated |= OPEN_REGION_PAGE_FLAG ;
850 /* Bump up last_free_page. */
851 if (last_page+1 > last_free_page) {
852 last_free_page = last_page+1;
853 /* do we only want to call this on special occasions? like for
855 set_alloc_pointer((lispobj)page_address(last_free_page));
857 ret = thread_mutex_unlock(&free_pages_lock);
860 #ifdef READ_PROTECT_FREE_PAGES
861 os_protect(page_address(first_page),
862 npage_bytes(1+last_page-first_page),
866 /* If the first page was only partial, don't check whether it's
867 * zeroed (it won't be) and don't zero it (since the parts that
868 * we're interested in are guaranteed to be zeroed).
870 if (page_table[first_page].bytes_used) {
874 zero_dirty_pages(first_page, last_page);
876 /* we can do this after releasing free_pages_lock */
877 if (gencgc_zero_check) {
879 for (p = (word_t *)alloc_region->start_addr;
880 p < (word_t *)alloc_region->end_addr; p++) {
882 lose("The new region is not zero at %p (start=%p, end=%p).\n",
883 p, alloc_region->start_addr, alloc_region->end_addr);
889 /* If the record_new_objects flag is 2 then all new regions created
892 * If it's 1 then then it is only recorded if the first page of the
893 * current region is <= new_areas_ignore_page. This helps avoid
894 * unnecessary recording when doing full scavenge pass.
896 * The new_object structure holds the page, byte offset, and size of
897 * new regions of objects. Each new area is placed in the array of
898 * these structures pointer to by new_areas. new_areas_index holds the
899 * offset into new_areas.
901 * If new_area overflows NUM_NEW_AREAS then it stops adding them. The
902 * later code must detect this and handle it, probably by doing a full
903 * scavenge of a generation. */
904 #define NUM_NEW_AREAS 512
905 static int record_new_objects = 0;
906 static page_index_t new_areas_ignore_page;
912 static struct new_area (*new_areas)[];
913 static size_t new_areas_index;
914 size_t max_new_areas;
916 /* Add a new area to new_areas. */
918 add_new_area(page_index_t first_page, size_t offset, size_t size)
920 size_t new_area_start, c;
923 /* Ignore if full. */
924 if (new_areas_index >= NUM_NEW_AREAS)
927 switch (record_new_objects) {
931 if (first_page > new_areas_ignore_page)
940 new_area_start = npage_bytes(first_page) + offset;
942 /* Search backwards for a prior area that this follows from. If
943 found this will save adding a new area. */
944 for (i = new_areas_index-1, c = 0; (i >= 0) && (c < 8); i--, c++) {
946 npage_bytes((*new_areas)[i].page)
947 + (*new_areas)[i].offset
948 + (*new_areas)[i].size;
950 "/add_new_area S1 %d %d %d %d\n",
951 i, c, new_area_start, area_end));*/
952 if (new_area_start == area_end) {
954 "/adding to [%d] %d %d %d with %d %d %d:\n",
956 (*new_areas)[i].page,
957 (*new_areas)[i].offset,
958 (*new_areas)[i].size,
962 (*new_areas)[i].size += size;
967 (*new_areas)[new_areas_index].page = first_page;
968 (*new_areas)[new_areas_index].offset = offset;
969 (*new_areas)[new_areas_index].size = size;
971 "/new_area %d page %d offset %d size %d\n",
972 new_areas_index, first_page, offset, size));*/
975 /* Note the max new_areas used. */
976 if (new_areas_index > max_new_areas)
977 max_new_areas = new_areas_index;
980 /* Update the tables for the alloc_region. The region may be added to
983 * When done the alloc_region is set up so that the next quick alloc
984 * will fail safely and thus a new region will be allocated. Further
985 * it is safe to try to re-update the page table of this reset
988 gc_alloc_update_page_tables(int page_type_flag, struct alloc_region *alloc_region)
991 page_index_t first_page;
992 page_index_t next_page;
993 os_vm_size_t bytes_used;
994 os_vm_size_t region_size;
995 os_vm_size_t byte_cnt;
996 page_bytes_t orig_first_page_bytes_used;
1000 first_page = alloc_region->first_page;
1002 /* Catch an unused alloc_region. */
1003 if ((first_page == 0) && (alloc_region->last_page == -1))
1006 next_page = first_page+1;
1008 ret = thread_mutex_lock(&free_pages_lock);
1009 gc_assert(ret == 0);
1010 if (alloc_region->free_pointer != alloc_region->start_addr) {
1011 /* some bytes were allocated in the region */
1012 orig_first_page_bytes_used = page_table[first_page].bytes_used;
1014 gc_assert(alloc_region->start_addr ==
1015 (page_address(first_page)
1016 + page_table[first_page].bytes_used));
1018 /* All the pages used need to be updated */
1020 /* Update the first page. */
1022 /* If the page was free then set up the gen, and
1023 * region_start_offset. */
1024 if (page_table[first_page].bytes_used == 0)
1025 gc_assert(page_table[first_page].region_start_offset == 0);
1026 page_table[first_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
1028 gc_assert(page_table[first_page].allocated & page_type_flag);
1029 gc_assert(page_table[first_page].gen == gc_alloc_generation);
1030 gc_assert(page_table[first_page].large_object == 0);
1034 /* Calculate the number of bytes used in this page. This is not
1035 * always the number of new bytes, unless it was free. */
1037 if ((bytes_used = void_diff(alloc_region->free_pointer,
1038 page_address(first_page)))
1039 >GENCGC_CARD_BYTES) {
1040 bytes_used = GENCGC_CARD_BYTES;
1043 page_table[first_page].bytes_used = bytes_used;
1044 byte_cnt += bytes_used;
1047 /* All the rest of the pages should be free. We need to set
1048 * their region_start_offset pointer to the start of the
1049 * region, and set the bytes_used. */
1051 page_table[next_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
1052 gc_assert(page_table[next_page].allocated & page_type_flag);
1053 gc_assert(page_table[next_page].bytes_used == 0);
1054 gc_assert(page_table[next_page].gen == gc_alloc_generation);
1055 gc_assert(page_table[next_page].large_object == 0);
1057 gc_assert(page_table[next_page].region_start_offset ==
1058 void_diff(page_address(next_page),
1059 alloc_region->start_addr));
1061 /* Calculate the number of bytes used in this page. */
1063 if ((bytes_used = void_diff(alloc_region->free_pointer,
1064 page_address(next_page)))>GENCGC_CARD_BYTES) {
1065 bytes_used = GENCGC_CARD_BYTES;
1068 page_table[next_page].bytes_used = bytes_used;
1069 byte_cnt += bytes_used;
1074 region_size = void_diff(alloc_region->free_pointer,
1075 alloc_region->start_addr);
1076 bytes_allocated += region_size;
1077 generations[gc_alloc_generation].bytes_allocated += region_size;
1079 gc_assert((byte_cnt- orig_first_page_bytes_used) == region_size);
1081 /* Set the generations alloc restart page to the last page of
1083 set_generation_alloc_start_page(gc_alloc_generation, page_type_flag, 0, next_page-1);
1085 /* Add the region to the new_areas if requested. */
1086 if (BOXED_PAGE_FLAG & page_type_flag)
1087 add_new_area(first_page,orig_first_page_bytes_used, region_size);
1091 "/gc_alloc_update_page_tables update %d bytes to gen %d\n",
1093 gc_alloc_generation));
1096 /* There are no bytes allocated. Unallocate the first_page if
1097 * there are 0 bytes_used. */
1098 page_table[first_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
1099 if (page_table[first_page].bytes_used == 0)
1100 page_table[first_page].allocated = FREE_PAGE_FLAG;
1103 /* Unallocate any unused pages. */
1104 while (next_page <= alloc_region->last_page) {
1105 gc_assert(page_table[next_page].bytes_used == 0);
1106 page_table[next_page].allocated = FREE_PAGE_FLAG;
1109 ret = thread_mutex_unlock(&free_pages_lock);
1110 gc_assert(ret == 0);
1112 /* alloc_region is per-thread, we're ok to do this unlocked */
1113 gc_set_region_empty(alloc_region);
1116 static inline void *gc_quick_alloc(long nbytes);
1118 /* Allocate a possibly large object. */
1120 gc_alloc_large(long nbytes, int page_type_flag, struct alloc_region *alloc_region)
1123 page_index_t first_page, next_page, last_page;
1124 page_bytes_t orig_first_page_bytes_used;
1125 os_vm_size_t byte_cnt;
1126 os_vm_size_t bytes_used;
1129 ret = thread_mutex_lock(&free_pages_lock);
1130 gc_assert(ret == 0);
1132 first_page = generation_alloc_start_page(gc_alloc_generation, page_type_flag, 1);
1133 if (first_page <= alloc_region->last_page) {
1134 first_page = alloc_region->last_page+1;
1137 last_page=gc_find_freeish_pages(&first_page,nbytes, page_type_flag);
1139 gc_assert(first_page > alloc_region->last_page);
1141 set_generation_alloc_start_page(gc_alloc_generation, page_type_flag, 1, last_page);
1143 /* Set up the pages. */
1144 orig_first_page_bytes_used = page_table[first_page].bytes_used;
1146 /* If the first page was free then set up the gen, and
1147 * region_start_offset. */
1148 if (page_table[first_page].bytes_used == 0) {
1149 page_table[first_page].allocated = page_type_flag;
1150 page_table[first_page].gen = gc_alloc_generation;
1151 page_table[first_page].region_start_offset = 0;
1152 page_table[first_page].large_object = 1;
1155 gc_assert(page_table[first_page].allocated == page_type_flag);
1156 gc_assert(page_table[first_page].gen == gc_alloc_generation);
1157 gc_assert(page_table[first_page].large_object == 1);
1161 /* Calc. the number of bytes used in this page. This is not
1162 * always the number of new bytes, unless it was free. */
1164 if ((bytes_used = nbytes+orig_first_page_bytes_used) > GENCGC_CARD_BYTES) {
1165 bytes_used = GENCGC_CARD_BYTES;
1168 page_table[first_page].bytes_used = bytes_used;
1169 byte_cnt += bytes_used;
1171 next_page = first_page+1;
1173 /* All the rest of the pages should be free. We need to set their
1174 * region_start_offset pointer to the start of the region, and set
1175 * the bytes_used. */
1177 gc_assert(page_free_p(next_page));
1178 gc_assert(page_table[next_page].bytes_used == 0);
1179 page_table[next_page].allocated = page_type_flag;
1180 page_table[next_page].gen = gc_alloc_generation;
1181 page_table[next_page].large_object = 1;
1183 page_table[next_page].region_start_offset =
1184 npage_bytes(next_page-first_page) - orig_first_page_bytes_used;
1186 /* Calculate the number of bytes used in this page. */
1188 bytes_used=(nbytes+orig_first_page_bytes_used)-byte_cnt;
1189 if (bytes_used > GENCGC_CARD_BYTES) {
1190 bytes_used = GENCGC_CARD_BYTES;
1193 page_table[next_page].bytes_used = bytes_used;
1194 page_table[next_page].write_protected=0;
1195 page_table[next_page].dont_move=0;
1196 byte_cnt += bytes_used;
1200 gc_assert((byte_cnt-orig_first_page_bytes_used) == nbytes);
1202 bytes_allocated += nbytes;
1203 generations[gc_alloc_generation].bytes_allocated += nbytes;
1205 /* Add the region to the new_areas if requested. */
1206 if (BOXED_PAGE_FLAG & page_type_flag)
1207 add_new_area(first_page,orig_first_page_bytes_used,nbytes);
1209 /* Bump up last_free_page */
1210 if (last_page+1 > last_free_page) {
1211 last_free_page = last_page+1;
1212 set_alloc_pointer((lispobj)(page_address(last_free_page)));
1214 ret = thread_mutex_unlock(&free_pages_lock);
1215 gc_assert(ret == 0);
1217 #ifdef READ_PROTECT_FREE_PAGES
1218 os_protect(page_address(first_page),
1219 npage_bytes(1+last_page-first_page),
1223 zero_dirty_pages(first_page, last_page);
1225 return page_address(first_page);
1228 static page_index_t gencgc_alloc_start_page = -1;
1231 gc_heap_exhausted_error_or_lose (long available, long requested)
1233 struct thread *thread = arch_os_get_current_thread();
1234 /* Write basic information before doing anything else: if we don't
1235 * call to lisp this is a must, and even if we do there is always
1236 * the danger that we bounce back here before the error has been
1237 * handled, or indeed even printed.
1239 report_heap_exhaustion(available, requested, thread);
1240 if (gc_active_p || (available == 0)) {
1241 /* If we are in GC, or totally out of memory there is no way
1242 * to sanely transfer control to the lisp-side of things.
1244 lose("Heap exhausted, game over.");
1247 /* FIXME: assert free_pages_lock held */
1248 (void)thread_mutex_unlock(&free_pages_lock);
1249 gc_assert(get_pseudo_atomic_atomic(thread));
1250 clear_pseudo_atomic_atomic(thread);
1251 if (get_pseudo_atomic_interrupted(thread))
1252 do_pending_interrupt();
1253 /* Another issue is that signalling HEAP-EXHAUSTED error leads
1254 * to running user code at arbitrary places, even in a
1255 * WITHOUT-INTERRUPTS which may lead to a deadlock without
1256 * running out of the heap. So at this point all bets are
1258 if (SymbolValue(INTERRUPTS_ENABLED,thread) == NIL)
1259 corruption_warning_and_maybe_lose
1260 ("Signalling HEAP-EXHAUSTED in a WITHOUT-INTERRUPTS.");
1261 funcall2(StaticSymbolFunction(HEAP_EXHAUSTED_ERROR),
1262 alloc_number(available), alloc_number(requested));
1263 lose("HEAP-EXHAUSTED-ERROR fell through");
1268 gc_find_freeish_pages(page_index_t *restart_page_ptr, long bytes,
1271 page_index_t most_bytes_found_from = 0, most_bytes_found_to = 0;
1272 page_index_t first_page, last_page, restart_page = *restart_page_ptr;
1273 os_vm_size_t nbytes = bytes;
1274 os_vm_size_t nbytes_goal = nbytes;
1275 os_vm_size_t bytes_found = 0;
1276 os_vm_size_t most_bytes_found = 0;
1277 boolean small_object = nbytes < GENCGC_CARD_BYTES;
1278 /* FIXME: assert(free_pages_lock is held); */
1280 if (nbytes_goal < gencgc_alloc_granularity)
1281 nbytes_goal = gencgc_alloc_granularity;
1283 /* Toggled by gc_and_save for heap compaction, normally -1. */
1284 if (gencgc_alloc_start_page != -1) {
1285 restart_page = gencgc_alloc_start_page;
1288 /* FIXME: This is on bytes instead of nbytes pending cleanup of
1289 * long from the interface. */
1290 gc_assert(bytes>=0);
1291 /* Search for a page with at least nbytes of space. We prefer
1292 * not to split small objects on multiple pages, to reduce the
1293 * number of contiguous allocation regions spaning multiple
1294 * pages: this helps avoid excessive conservativism.
1296 * For other objects, we guarantee that they start on their own
1299 first_page = restart_page;
1300 while (first_page < page_table_pages) {
1302 if (page_free_p(first_page)) {
1303 gc_assert(0 == page_table[first_page].bytes_used);
1304 bytes_found = GENCGC_CARD_BYTES;
1305 } else if (small_object &&
1306 (page_table[first_page].allocated == page_type_flag) &&
1307 (page_table[first_page].large_object == 0) &&
1308 (page_table[first_page].gen == gc_alloc_generation) &&
1309 (page_table[first_page].write_protected == 0) &&
1310 (page_table[first_page].dont_move == 0)) {
1311 bytes_found = GENCGC_CARD_BYTES - page_table[first_page].bytes_used;
1312 if (bytes_found < nbytes) {
1313 if (bytes_found > most_bytes_found)
1314 most_bytes_found = bytes_found;
1323 gc_assert(page_table[first_page].write_protected == 0);
1324 for (last_page = first_page+1;
1325 ((last_page < page_table_pages) &&
1326 page_free_p(last_page) &&
1327 (bytes_found < nbytes_goal));
1329 bytes_found += GENCGC_CARD_BYTES;
1330 gc_assert(0 == page_table[last_page].bytes_used);
1331 gc_assert(0 == page_table[last_page].write_protected);
1334 if (bytes_found > most_bytes_found) {
1335 most_bytes_found = bytes_found;
1336 most_bytes_found_from = first_page;
1337 most_bytes_found_to = last_page;
1339 if (bytes_found >= nbytes_goal)
1342 first_page = last_page;
1345 bytes_found = most_bytes_found;
1346 restart_page = first_page + 1;
1348 /* Check for a failure */
1349 if (bytes_found < nbytes) {
1350 gc_assert(restart_page >= page_table_pages);
1351 gc_heap_exhausted_error_or_lose(most_bytes_found, nbytes);
1354 gc_assert(most_bytes_found_to);
1355 *restart_page_ptr = most_bytes_found_from;
1356 return most_bytes_found_to-1;
1359 /* Allocate bytes. All the rest of the special-purpose allocation
1360 * functions will eventually call this */
1363 gc_alloc_with_region(long nbytes,int page_type_flag, struct alloc_region *my_region,
1366 void *new_free_pointer;
1368 if (nbytes>=large_object_size)
1369 return gc_alloc_large(nbytes, page_type_flag, my_region);
1371 /* Check whether there is room in the current alloc region. */
1372 new_free_pointer = my_region->free_pointer + nbytes;
1374 /* fprintf(stderr, "alloc %d bytes from %p to %p\n", nbytes,
1375 my_region->free_pointer, new_free_pointer); */
1377 if (new_free_pointer <= my_region->end_addr) {
1378 /* If so then allocate from the current alloc region. */
1379 void *new_obj = my_region->free_pointer;
1380 my_region->free_pointer = new_free_pointer;
1382 /* Unless a `quick' alloc was requested, check whether the
1383 alloc region is almost empty. */
1385 void_diff(my_region->end_addr,my_region->free_pointer) <= 32) {
1386 /* If so, finished with the current region. */
1387 gc_alloc_update_page_tables(page_type_flag, my_region);
1388 /* Set up a new region. */
1389 gc_alloc_new_region(32 /*bytes*/, page_type_flag, my_region);
1392 return((void *)new_obj);
1395 /* Else not enough free space in the current region: retry with a
1398 gc_alloc_update_page_tables(page_type_flag, my_region);
1399 gc_alloc_new_region(nbytes, page_type_flag, my_region);
1400 return gc_alloc_with_region(nbytes, page_type_flag, my_region,0);
1403 /* these are only used during GC: all allocation from the mutator calls
1404 * alloc() -> gc_alloc_with_region() with the appropriate per-thread
1407 static inline void *
1408 gc_quick_alloc(long nbytes)
1410 return gc_general_alloc(nbytes, BOXED_PAGE_FLAG, ALLOC_QUICK);
1413 static inline void *
1414 gc_alloc_unboxed(long nbytes)
1416 return gc_general_alloc(nbytes, UNBOXED_PAGE_FLAG, 0);
1419 static inline void *
1420 gc_quick_alloc_unboxed(long nbytes)
1422 return gc_general_alloc(nbytes, UNBOXED_PAGE_FLAG, ALLOC_QUICK);
1425 /* Copy a large object. If the object is in a large object region then
1426 * it is simply promoted, else it is copied. If it's large enough then
1427 * it's copied to a large object region.
1429 * Bignums and vectors may have shrunk. If the object is not copied
1430 * the space needs to be reclaimed, and the page_tables corrected. */
1432 general_copy_large_object(lispobj object, long nwords, boolean boxedp)
1436 page_index_t first_page;
1438 gc_assert(is_lisp_pointer(object));
1439 gc_assert(from_space_p(object));
1440 gc_assert((nwords & 0x01) == 0);
1442 if ((nwords > 1024*1024) && gencgc_verbose) {
1443 FSHOW((stderr, "/general_copy_large_object: %d bytes\n",
1444 nwords*N_WORD_BYTES));
1447 /* Check whether it's a large object. */
1448 first_page = find_page_index((void *)object);
1449 gc_assert(first_page >= 0);
1451 if (page_table[first_page].large_object) {
1452 /* Promote the object. Note: Unboxed objects may have been
1453 * allocated to a BOXED region so it may be necessary to
1454 * change the region to UNBOXED. */
1455 os_vm_size_t remaining_bytes;
1456 os_vm_size_t bytes_freed;
1457 page_index_t next_page;
1458 page_bytes_t old_bytes_used;
1460 /* FIXME: This comment is somewhat stale.
1462 * Note: Any page write-protection must be removed, else a
1463 * later scavenge_newspace may incorrectly not scavenge these
1464 * pages. This would not be necessary if they are added to the
1465 * new areas, but let's do it for them all (they'll probably
1466 * be written anyway?). */
1468 gc_assert(page_table[first_page].region_start_offset == 0);
1469 next_page = first_page;
1470 remaining_bytes = nwords*N_WORD_BYTES;
1472 while (remaining_bytes > GENCGC_CARD_BYTES) {
1473 gc_assert(page_table[next_page].gen == from_space);
1474 gc_assert(page_table[next_page].large_object);
1475 gc_assert(page_table[next_page].region_start_offset ==
1476 npage_bytes(next_page-first_page));
1477 gc_assert(page_table[next_page].bytes_used == GENCGC_CARD_BYTES);
1478 /* Should have been unprotected by unprotect_oldspace()
1479 * for boxed objects, and after promotion unboxed ones
1480 * should not be on protected pages at all. */
1481 gc_assert(!page_table[next_page].write_protected);
1484 gc_assert(page_boxed_p(next_page));
1486 gc_assert(page_allocated_no_region_p(next_page));
1487 page_table[next_page].allocated = UNBOXED_PAGE_FLAG;
1489 page_table[next_page].gen = new_space;
1491 remaining_bytes -= GENCGC_CARD_BYTES;
1495 /* Now only one page remains, but the object may have shrunk so
1496 * there may be more unused pages which will be freed. */
1498 /* Object may have shrunk but shouldn't have grown - check. */
1499 gc_assert(page_table[next_page].bytes_used >= remaining_bytes);
1501 page_table[next_page].gen = new_space;
1504 gc_assert(page_boxed_p(next_page));
1506 page_table[next_page].allocated = UNBOXED_PAGE_FLAG;
1508 /* Adjust the bytes_used. */
1509 old_bytes_used = page_table[next_page].bytes_used;
1510 page_table[next_page].bytes_used = remaining_bytes;
1512 bytes_freed = old_bytes_used - remaining_bytes;
1514 /* Free any remaining pages; needs care. */
1516 while ((old_bytes_used == GENCGC_CARD_BYTES) &&
1517 (page_table[next_page].gen == from_space) &&
1518 /* FIXME: It is not obvious to me why this is necessary
1519 * as a loop condition: it seems to me that the
1520 * region_start_offset test should be sufficient, but
1521 * experimentally that is not the case. --NS
1524 page_boxed_p(next_page) :
1525 page_allocated_no_region_p(next_page)) &&
1526 page_table[next_page].large_object &&
1527 (page_table[next_page].region_start_offset ==
1528 npage_bytes(next_page - first_page))) {
1529 /* Checks out OK, free the page. Don't need to both zeroing
1530 * pages as this should have been done before shrinking the
1531 * object. These pages shouldn't be write-protected, even if
1532 * boxed they should be zero filled. */
1533 gc_assert(page_table[next_page].write_protected == 0);
1535 old_bytes_used = page_table[next_page].bytes_used;
1536 page_table[next_page].allocated = FREE_PAGE_FLAG;
1537 page_table[next_page].bytes_used = 0;
1538 bytes_freed += old_bytes_used;
1542 if ((bytes_freed > 0) && gencgc_verbose) {
1544 "/general_copy_large_object bytes_freed=%"OS_VM_SIZE_FMT"\n",
1548 generations[from_space].bytes_allocated -= nwords*N_WORD_BYTES
1550 generations[new_space].bytes_allocated += nwords*N_WORD_BYTES;
1551 bytes_allocated -= bytes_freed;
1553 /* Add the region to the new_areas if requested. */
1555 add_new_area(first_page,0,nwords*N_WORD_BYTES);
1560 /* Get tag of object. */
1561 tag = lowtag_of(object);
1563 /* Allocate space. */
1564 new = gc_general_alloc(nwords*N_WORD_BYTES,
1565 (boxedp ? BOXED_PAGE_FLAG : UNBOXED_PAGE_FLAG),
1568 /* Copy the object. */
1569 memcpy(new,native_pointer(object),nwords*N_WORD_BYTES);
1571 /* Return Lisp pointer of new object. */
1572 return ((lispobj) new) | tag;
1577 copy_large_object(lispobj object, long nwords)
1579 return general_copy_large_object(object, nwords, 1);
1583 copy_large_unboxed_object(lispobj object, long nwords)
1585 return general_copy_large_object(object, nwords, 0);
1588 /* to copy unboxed objects */
1590 copy_unboxed_object(lispobj object, long nwords)
1592 return gc_general_copy_object(object, nwords, UNBOXED_PAGE_FLAG);
1597 * code and code-related objects
1600 static lispobj trans_fun_header(lispobj object);
1601 static lispobj trans_boxed(lispobj object);
1604 /* Scan a x86 compiled code object, looking for possible fixups that
1605 * have been missed after a move.
1607 * Two types of fixups are needed:
1608 * 1. Absolute fixups to within the code object.
1609 * 2. Relative fixups to outside the code object.
1611 * Currently only absolute fixups to the constant vector, or to the
1612 * code area are checked. */
1614 sniff_code_object(struct code *code, os_vm_size_t displacement)
1616 #ifdef LISP_FEATURE_X86
1617 long nheader_words, ncode_words, nwords;
1618 os_vm_address_t constants_start_addr = NULL, constants_end_addr, p;
1619 os_vm_address_t code_start_addr, code_end_addr;
1620 os_vm_address_t code_addr = (os_vm_address_t)code;
1621 int fixup_found = 0;
1623 if (!check_code_fixups)
1626 FSHOW((stderr, "/sniffing code: %p, %lu\n", code, displacement));
1628 ncode_words = fixnum_value(code->code_size);
1629 nheader_words = HeaderValue(*(lispobj *)code);
1630 nwords = ncode_words + nheader_words;
1632 constants_start_addr = code_addr + 5*N_WORD_BYTES;
1633 constants_end_addr = code_addr + nheader_words*N_WORD_BYTES;
1634 code_start_addr = code_addr + nheader_words*N_WORD_BYTES;
1635 code_end_addr = code_addr + nwords*N_WORD_BYTES;
1637 /* Work through the unboxed code. */
1638 for (p = code_start_addr; p < code_end_addr; p++) {
1639 void *data = *(void **)p;
1640 unsigned d1 = *((unsigned char *)p - 1);
1641 unsigned d2 = *((unsigned char *)p - 2);
1642 unsigned d3 = *((unsigned char *)p - 3);
1643 unsigned d4 = *((unsigned char *)p - 4);
1645 unsigned d5 = *((unsigned char *)p - 5);
1646 unsigned d6 = *((unsigned char *)p - 6);
1649 /* Check for code references. */
1650 /* Check for a 32 bit word that looks like an absolute
1651 reference to within the code adea of the code object. */
1652 if ((data >= (void*)(code_start_addr-displacement))
1653 && (data < (void*)(code_end_addr-displacement))) {
1654 /* function header */
1656 && (((unsigned)p - 4 - 4*HeaderValue(*((unsigned *)p-1))) ==
1658 /* Skip the function header */
1662 /* the case of PUSH imm32 */
1666 "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1667 p, d6, d5, d4, d3, d2, d1, data));
1668 FSHOW((stderr, "/PUSH $0x%.8x\n", data));
1670 /* the case of MOV [reg-8],imm32 */
1672 && (d2==0x40 || d2==0x41 || d2==0x42 || d2==0x43
1673 || d2==0x45 || d2==0x46 || d2==0x47)
1677 "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1678 p, d6, d5, d4, d3, d2, d1, data));
1679 FSHOW((stderr, "/MOV [reg-8],$0x%.8x\n", data));
1681 /* the case of LEA reg,[disp32] */
1682 if ((d2 == 0x8d) && ((d1 & 0xc7) == 5)) {
1685 "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1686 p, d6, d5, d4, d3, d2, d1, data));
1687 FSHOW((stderr,"/LEA reg,[$0x%.8x]\n", data));
1691 /* Check for constant references. */
1692 /* Check for a 32 bit word that looks like an absolute
1693 reference to within the constant vector. Constant references
1695 if ((data >= (void*)(constants_start_addr-displacement))
1696 && (data < (void*)(constants_end_addr-displacement))
1697 && (((unsigned)data & 0x3) == 0)) {
1702 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1703 p, d6, d5, d4, d3, d2, d1, data));
1704 FSHOW((stderr,"/MOV eax,0x%.8x\n", data));
1707 /* the case of MOV m32,EAX */
1711 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1712 p, d6, d5, d4, d3, d2, d1, data));
1713 FSHOW((stderr, "/MOV 0x%.8x,eax\n", data));
1716 /* the case of CMP m32,imm32 */
1717 if ((d1 == 0x3d) && (d2 == 0x81)) {
1720 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1721 p, d6, d5, d4, d3, d2, d1, data));
1723 FSHOW((stderr, "/CMP 0x%.8x,immed32\n", data));
1726 /* Check for a mod=00, r/m=101 byte. */
1727 if ((d1 & 0xc7) == 5) {
1732 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1733 p, d6, d5, d4, d3, d2, d1, data));
1734 FSHOW((stderr,"/CMP 0x%.8x,reg\n", data));
1736 /* the case of CMP reg32,m32 */
1740 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1741 p, d6, d5, d4, d3, d2, d1, data));
1742 FSHOW((stderr, "/CMP reg32,0x%.8x\n", data));
1744 /* the case of MOV m32,reg32 */
1748 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1749 p, d6, d5, d4, d3, d2, d1, data));
1750 FSHOW((stderr, "/MOV 0x%.8x,reg32\n", data));
1752 /* the case of MOV reg32,m32 */
1756 "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1757 p, d6, d5, d4, d3, d2, d1, data));
1758 FSHOW((stderr, "/MOV reg32,0x%.8x\n", data));
1760 /* the case of LEA reg32,m32 */
1764 "abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1765 p, d6, d5, d4, d3, d2, d1, data));
1766 FSHOW((stderr, "/LEA reg32,0x%.8x\n", data));
1772 /* If anything was found, print some information on the code
1776 "/compiled code object at %x: header words = %d, code words = %d\n",
1777 code, nheader_words, ncode_words));
1779 "/const start = %x, end = %x\n",
1780 constants_start_addr, constants_end_addr));
1782 "/code start = %x, end = %x\n",
1783 code_start_addr, code_end_addr));
1789 gencgc_apply_code_fixups(struct code *old_code, struct code *new_code)
1791 /* x86-64 uses pc-relative addressing instead of this kludge */
1792 #ifndef LISP_FEATURE_X86_64
1793 long nheader_words, ncode_words, nwords;
1794 os_vm_address_t constants_start_addr, constants_end_addr;
1795 os_vm_address_t code_start_addr, code_end_addr;
1796 os_vm_address_t code_addr = (os_vm_address_t)new_code;
1797 os_vm_address_t old_addr = (os_vm_address_t)old_code;
1798 os_vm_size_t displacement = code_addr - old_addr;
1799 lispobj fixups = NIL;
1800 struct vector *fixups_vector;
1802 ncode_words = fixnum_value(new_code->code_size);
1803 nheader_words = HeaderValue(*(lispobj *)new_code);
1804 nwords = ncode_words + nheader_words;
1806 "/compiled code object at %x: header words = %d, code words = %d\n",
1807 new_code, nheader_words, ncode_words)); */
1808 constants_start_addr = code_addr + 5*N_WORD_BYTES;
1809 constants_end_addr = code_addr + nheader_words*N_WORD_BYTES;
1810 code_start_addr = code_addr + nheader_words*N_WORD_BYTES;
1811 code_end_addr = code_addr + nwords*N_WORD_BYTES;
1814 "/const start = %x, end = %x\n",
1815 constants_start_addr,constants_end_addr));
1817 "/code start = %x; end = %x\n",
1818 code_start_addr,code_end_addr));
1821 /* The first constant should be a pointer to the fixups for this
1822 code objects. Check. */
1823 fixups = new_code->constants[0];
1825 /* It will be 0 or the unbound-marker if there are no fixups (as
1826 * will be the case if the code object has been purified, for
1827 * example) and will be an other pointer if it is valid. */
1828 if ((fixups == 0) || (fixups == UNBOUND_MARKER_WIDETAG) ||
1829 !is_lisp_pointer(fixups)) {
1830 /* Check for possible errors. */
1831 if (check_code_fixups)
1832 sniff_code_object(new_code, displacement);
1837 fixups_vector = (struct vector *)native_pointer(fixups);
1839 /* Could be pointing to a forwarding pointer. */
1840 /* FIXME is this always in from_space? if so, could replace this code with
1841 * forwarding_pointer_p/forwarding_pointer_value */
1842 if (is_lisp_pointer(fixups) &&
1843 (find_page_index((void*)fixups_vector) != -1) &&
1844 (fixups_vector->header == 0x01)) {
1845 /* If so, then follow it. */
1846 /*SHOW("following pointer to a forwarding pointer");*/
1848 (struct vector *)native_pointer((lispobj)fixups_vector->length);
1851 /*SHOW("got fixups");*/
1853 if (widetag_of(fixups_vector->header) == SIMPLE_ARRAY_WORD_WIDETAG) {
1854 /* Got the fixups for the code block. Now work through the vector,
1855 and apply a fixup at each address. */
1856 long length = fixnum_value(fixups_vector->length);
1858 for (i = 0; i < length; i++) {
1859 long offset = fixups_vector->data[i];
1860 /* Now check the current value of offset. */
1861 os_vm_address_t old_value = *(os_vm_address_t *)(code_start_addr + offset);
1863 /* If it's within the old_code object then it must be an
1864 * absolute fixup (relative ones are not saved) */
1865 if ((old_value >= old_addr)
1866 && (old_value < (old_addr + nwords*N_WORD_BYTES)))
1867 /* So add the dispacement. */
1868 *(os_vm_address_t *)(code_start_addr + offset) =
1869 old_value + displacement;
1871 /* It is outside the old code object so it must be a
1872 * relative fixup (absolute fixups are not saved). So
1873 * subtract the displacement. */
1874 *(os_vm_address_t *)(code_start_addr + offset) =
1875 old_value - displacement;
1878 /* This used to just print a note to stderr, but a bogus fixup seems to
1879 * indicate real heap corruption, so a hard hailure is in order. */
1880 lose("fixup vector %p has a bad widetag: %d\n",
1881 fixups_vector, widetag_of(fixups_vector->header));
1884 /* Check for possible errors. */
1885 if (check_code_fixups) {
1886 sniff_code_object(new_code,displacement);
1893 trans_boxed_large(lispobj object)
1896 unsigned long length;
1898 gc_assert(is_lisp_pointer(object));
1900 header = *((lispobj *) native_pointer(object));
1901 length = HeaderValue(header) + 1;
1902 length = CEILING(length, 2);
1904 return copy_large_object(object, length);
1907 /* Doesn't seem to be used, delete it after the grace period. */
1910 trans_unboxed_large(lispobj object)
1913 unsigned long length;
1915 gc_assert(is_lisp_pointer(object));
1917 header = *((lispobj *) native_pointer(object));
1918 length = HeaderValue(header) + 1;
1919 length = CEILING(length, 2);
1921 return copy_large_unboxed_object(object, length);
1929 /* XX This is a hack adapted from cgc.c. These don't work too
1930 * efficiently with the gencgc as a list of the weak pointers is
1931 * maintained within the objects which causes writes to the pages. A
1932 * limited attempt is made to avoid unnecessary writes, but this needs
1934 #define WEAK_POINTER_NWORDS \
1935 CEILING((sizeof(struct weak_pointer) / sizeof(lispobj)), 2)
1938 scav_weak_pointer(lispobj *where, lispobj object)
1940 /* Since we overwrite the 'next' field, we have to make
1941 * sure not to do so for pointers already in the list.
1942 * Instead of searching the list of weak_pointers each
1943 * time, we ensure that next is always NULL when the weak
1944 * pointer isn't in the list, and not NULL otherwise.
1945 * Since we can't use NULL to denote end of list, we
1946 * use a pointer back to the same weak_pointer.
1948 struct weak_pointer * wp = (struct weak_pointer*)where;
1950 if (NULL == wp->next) {
1951 wp->next = weak_pointers;
1953 if (NULL == wp->next)
1957 /* Do not let GC scavenge the value slot of the weak pointer.
1958 * (That is why it is a weak pointer.) */
1960 return WEAK_POINTER_NWORDS;
1965 search_read_only_space(void *pointer)
1967 lispobj *start = (lispobj *) READ_ONLY_SPACE_START;
1968 lispobj *end = (lispobj *) SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0);
1969 if ((pointer < (void *)start) || (pointer >= (void *)end))
1971 return (gc_search_space(start,
1972 (((lispobj *)pointer)+2)-start,
1973 (lispobj *) pointer));
1977 search_static_space(void *pointer)
1979 lispobj *start = (lispobj *)STATIC_SPACE_START;
1980 lispobj *end = (lispobj *)SymbolValue(STATIC_SPACE_FREE_POINTER,0);
1981 if ((pointer < (void *)start) || (pointer >= (void *)end))
1983 return (gc_search_space(start,
1984 (((lispobj *)pointer)+2)-start,
1985 (lispobj *) pointer));
1988 /* a faster version for searching the dynamic space. This will work even
1989 * if the object is in a current allocation region. */
1991 search_dynamic_space(void *pointer)
1993 page_index_t page_index = find_page_index(pointer);
1996 /* The address may be invalid, so do some checks. */
1997 if ((page_index == -1) || page_free_p(page_index))
1999 start = (lispobj *)page_region_start(page_index);
2000 return (gc_search_space(start,
2001 (((lispobj *)pointer)+2)-start,
2002 (lispobj *)pointer));
2005 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
2007 /* Is there any possibility that pointer is a valid Lisp object
2008 * reference, and/or something else (e.g. subroutine call return
2009 * address) which should prevent us from moving the referred-to thing?
2010 * This is called from preserve_pointers() */
2012 possibly_valid_dynamic_space_pointer(lispobj *pointer)
2014 lispobj *start_addr;
2016 /* Find the object start address. */
2017 if ((start_addr = search_dynamic_space(pointer)) == NULL) {
2021 return looks_like_valid_lisp_pointer_p(pointer, start_addr);
2024 #endif // defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
2026 /* Adjust large bignum and vector objects. This will adjust the
2027 * allocated region if the size has shrunk, and move unboxed objects
2028 * into unboxed pages. The pages are not promoted here, and the
2029 * promoted region is not added to the new_regions; this is really
2030 * only designed to be called from preserve_pointer(). Shouldn't fail
2031 * if this is missed, just may delay the moving of objects to unboxed
2032 * pages, and the freeing of pages. */
2034 maybe_adjust_large_object(lispobj *where)
2036 page_index_t first_page;
2037 page_index_t next_page;
2040 unsigned long remaining_bytes;
2041 unsigned long bytes_freed;
2042 unsigned long old_bytes_used;
2046 /* Check whether it's a vector or bignum object. */
2047 switch (widetag_of(where[0])) {
2048 case SIMPLE_VECTOR_WIDETAG:
2049 boxed = BOXED_PAGE_FLAG;
2051 case BIGNUM_WIDETAG:
2052 case SIMPLE_BASE_STRING_WIDETAG:
2053 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
2054 case SIMPLE_CHARACTER_STRING_WIDETAG:
2056 case SIMPLE_BIT_VECTOR_WIDETAG:
2057 case SIMPLE_ARRAY_NIL_WIDETAG:
2058 case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
2059 case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
2060 case SIMPLE_ARRAY_UNSIGNED_BYTE_7_WIDETAG:
2061 case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
2062 case SIMPLE_ARRAY_UNSIGNED_BYTE_15_WIDETAG:
2063 case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
2065 case SIMPLE_ARRAY_UNSIGNED_FIXNUM_WIDETAG:
2067 case SIMPLE_ARRAY_UNSIGNED_BYTE_31_WIDETAG:
2068 case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
2069 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG
2070 case SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG:
2072 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG
2073 case SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG:
2075 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
2076 case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
2078 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
2079 case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
2082 case SIMPLE_ARRAY_FIXNUM_WIDETAG:
2084 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
2085 case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
2087 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG
2088 case SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG:
2090 case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
2091 case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
2092 #ifdef SIMPLE_ARRAY_LONG_FLOAT_WIDETAG
2093 case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
2095 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
2096 case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
2098 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
2099 case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
2101 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
2102 case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
2104 boxed = UNBOXED_PAGE_FLAG;
2110 /* Find its current size. */
2111 nwords = (sizetab[widetag_of(where[0])])(where);
2113 first_page = find_page_index((void *)where);
2114 gc_assert(first_page >= 0);
2116 /* Note: Any page write-protection must be removed, else a later
2117 * scavenge_newspace may incorrectly not scavenge these pages.
2118 * This would not be necessary if they are added to the new areas,
2119 * but lets do it for them all (they'll probably be written
2122 gc_assert(page_table[first_page].region_start_offset == 0);
2124 next_page = first_page;
2125 remaining_bytes = nwords*N_WORD_BYTES;
2126 while (remaining_bytes > GENCGC_CARD_BYTES) {
2127 gc_assert(page_table[next_page].gen == from_space);
2128 gc_assert(page_allocated_no_region_p(next_page));
2129 gc_assert(page_table[next_page].large_object);
2130 gc_assert(page_table[next_page].region_start_offset ==
2131 npage_bytes(next_page-first_page));
2132 gc_assert(page_table[next_page].bytes_used == GENCGC_CARD_BYTES);
2134 page_table[next_page].allocated = boxed;
2136 /* Shouldn't be write-protected at this stage. Essential that the
2138 gc_assert(!page_table[next_page].write_protected);
2139 remaining_bytes -= GENCGC_CARD_BYTES;
2143 /* Now only one page remains, but the object may have shrunk so
2144 * there may be more unused pages which will be freed. */
2146 /* Object may have shrunk but shouldn't have grown - check. */
2147 gc_assert(page_table[next_page].bytes_used >= remaining_bytes);
2149 page_table[next_page].allocated = boxed;
2150 gc_assert(page_table[next_page].allocated ==
2151 page_table[first_page].allocated);
2153 /* Adjust the bytes_used. */
2154 old_bytes_used = page_table[next_page].bytes_used;
2155 page_table[next_page].bytes_used = remaining_bytes;
2157 bytes_freed = old_bytes_used - remaining_bytes;
2159 /* Free any remaining pages; needs care. */
2161 while ((old_bytes_used == GENCGC_CARD_BYTES) &&
2162 (page_table[next_page].gen == from_space) &&
2163 page_allocated_no_region_p(next_page) &&
2164 page_table[next_page].large_object &&
2165 (page_table[next_page].region_start_offset ==
2166 npage_bytes(next_page - first_page))) {
2167 /* It checks out OK, free the page. We don't need to both zeroing
2168 * pages as this should have been done before shrinking the
2169 * object. These pages shouldn't be write protected as they
2170 * should be zero filled. */
2171 gc_assert(page_table[next_page].write_protected == 0);
2173 old_bytes_used = page_table[next_page].bytes_used;
2174 page_table[next_page].allocated = FREE_PAGE_FLAG;
2175 page_table[next_page].bytes_used = 0;
2176 bytes_freed += old_bytes_used;
2180 if ((bytes_freed > 0) && gencgc_verbose) {
2182 "/maybe_adjust_large_object() freed %d\n",
2186 generations[from_space].bytes_allocated -= bytes_freed;
2187 bytes_allocated -= bytes_freed;
2192 /* Take a possible pointer to a Lisp object and mark its page in the
2193 * page_table so that it will not be relocated during a GC.
2195 * This involves locating the page it points to, then backing up to
2196 * the start of its region, then marking all pages dont_move from there
2197 * up to the first page that's not full or has a different generation
2199 * It is assumed that all the page static flags have been cleared at
2200 * the start of a GC.
2202 * It is also assumed that the current gc_alloc() region has been
2203 * flushed and the tables updated. */
2206 preserve_pointer(void *addr)
2208 page_index_t addr_page_index = find_page_index(addr);
2209 page_index_t first_page;
2211 unsigned int region_allocation;
2213 /* quick check 1: Address is quite likely to have been invalid. */
2214 if ((addr_page_index == -1)
2215 || page_free_p(addr_page_index)
2216 || (page_table[addr_page_index].bytes_used == 0)
2217 || (page_table[addr_page_index].gen != from_space)
2218 /* Skip if already marked dont_move. */
2219 || (page_table[addr_page_index].dont_move != 0))
2221 gc_assert(!(page_table[addr_page_index].allocated&OPEN_REGION_PAGE_FLAG));
2222 /* (Now that we know that addr_page_index is in range, it's
2223 * safe to index into page_table[] with it.) */
2224 region_allocation = page_table[addr_page_index].allocated;
2226 /* quick check 2: Check the offset within the page.
2229 if (((unsigned long)addr & (GENCGC_CARD_BYTES - 1)) >
2230 page_table[addr_page_index].bytes_used)
2233 /* Filter out anything which can't be a pointer to a Lisp object
2234 * (or, as a special case which also requires dont_move, a return
2235 * address referring to something in a CodeObject). This is
2236 * expensive but important, since it vastly reduces the
2237 * probability that random garbage will be bogusly interpreted as
2238 * a pointer which prevents a page from moving.
2240 * This only needs to happen on x86oids, where this is used for
2241 * conservative roots. Non-x86oid systems only ever call this
2242 * function on known-valid lisp objects. */
2243 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
2244 if (!(code_page_p(addr_page_index)
2245 || (is_lisp_pointer((lispobj)addr) &&
2246 possibly_valid_dynamic_space_pointer(addr))))
2250 /* Find the beginning of the region. Note that there may be
2251 * objects in the region preceding the one that we were passed a
2252 * pointer to: if this is the case, we will write-protect all the
2253 * previous objects' pages too. */
2256 /* I think this'd work just as well, but without the assertions.
2257 * -dan 2004.01.01 */
2258 first_page = find_page_index(page_region_start(addr_page_index))
2260 first_page = addr_page_index;
2261 while (page_table[first_page].region_start_offset != 0) {
2263 /* Do some checks. */
2264 gc_assert(page_table[first_page].bytes_used == GENCGC_CARD_BYTES);
2265 gc_assert(page_table[first_page].gen == from_space);
2266 gc_assert(page_table[first_page].allocated == region_allocation);
2270 /* Adjust any large objects before promotion as they won't be
2271 * copied after promotion. */
2272 if (page_table[first_page].large_object) {
2273 maybe_adjust_large_object(page_address(first_page));
2274 /* If a large object has shrunk then addr may now point to a
2275 * free area in which case it's ignored here. Note it gets
2276 * through the valid pointer test above because the tail looks
2278 if (page_free_p(addr_page_index)
2279 || (page_table[addr_page_index].bytes_used == 0)
2280 /* Check the offset within the page. */
2281 || (((unsigned long)addr & (GENCGC_CARD_BYTES - 1))
2282 > page_table[addr_page_index].bytes_used)) {
2284 "weird? ignore ptr 0x%x to freed area of large object\n",
2288 /* It may have moved to unboxed pages. */
2289 region_allocation = page_table[first_page].allocated;
2292 /* Now work forward until the end of this contiguous area is found,
2293 * marking all pages as dont_move. */
2294 for (i = first_page; ;i++) {
2295 gc_assert(page_table[i].allocated == region_allocation);
2297 /* Mark the page static. */
2298 page_table[i].dont_move = 1;
2300 /* Move the page to the new_space. XX I'd rather not do this
2301 * but the GC logic is not quite able to copy with the static
2302 * pages remaining in the from space. This also requires the
2303 * generation bytes_allocated counters be updated. */
2304 page_table[i].gen = new_space;
2305 generations[new_space].bytes_allocated += page_table[i].bytes_used;
2306 generations[from_space].bytes_allocated -= page_table[i].bytes_used;
2308 /* It is essential that the pages are not write protected as
2309 * they may have pointers into the old-space which need
2310 * scavenging. They shouldn't be write protected at this
2312 gc_assert(!page_table[i].write_protected);
2314 /* Check whether this is the last page in this contiguous block.. */
2315 if ((page_table[i].bytes_used < GENCGC_CARD_BYTES)
2316 /* ..or it is CARD_BYTES and is the last in the block */
2318 || (page_table[i+1].bytes_used == 0) /* next page free */
2319 || (page_table[i+1].gen != from_space) /* diff. gen */
2320 || (page_table[i+1].region_start_offset == 0))
2324 /* Check that the page is now static. */
2325 gc_assert(page_table[addr_page_index].dont_move != 0);
2328 /* If the given page is not write-protected, then scan it for pointers
2329 * to younger generations or the top temp. generation, if no
2330 * suspicious pointers are found then the page is write-protected.
2332 * Care is taken to check for pointers to the current gc_alloc()
2333 * region if it is a younger generation or the temp. generation. This
2334 * frees the caller from doing a gc_alloc_update_page_tables(). Actually
2335 * the gc_alloc_generation does not need to be checked as this is only
2336 * called from scavenge_generation() when the gc_alloc generation is
2337 * younger, so it just checks if there is a pointer to the current
2340 * We return 1 if the page was write-protected, else 0. */
2342 update_page_write_prot(page_index_t page)
2344 generation_index_t gen = page_table[page].gen;
2347 void **page_addr = (void **)page_address(page);
2348 long num_words = page_table[page].bytes_used / N_WORD_BYTES;
2350 /* Shouldn't be a free page. */
2351 gc_assert(page_allocated_p(page));
2352 gc_assert(page_table[page].bytes_used != 0);
2354 /* Skip if it's already write-protected, pinned, or unboxed */
2355 if (page_table[page].write_protected
2356 /* FIXME: What's the reason for not write-protecting pinned pages? */
2357 || page_table[page].dont_move
2358 || page_unboxed_p(page))
2361 /* Scan the page for pointers to younger generations or the
2362 * top temp. generation. */
2364 for (j = 0; j < num_words; j++) {
2365 void *ptr = *(page_addr+j);
2366 page_index_t index = find_page_index(ptr);
2368 /* Check that it's in the dynamic space */
2370 if (/* Does it point to a younger or the temp. generation? */
2371 (page_allocated_p(index)
2372 && (page_table[index].bytes_used != 0)
2373 && ((page_table[index].gen < gen)
2374 || (page_table[index].gen == SCRATCH_GENERATION)))
2376 /* Or does it point within a current gc_alloc() region? */
2377 || ((boxed_region.start_addr <= ptr)
2378 && (ptr <= boxed_region.free_pointer))
2379 || ((unboxed_region.start_addr <= ptr)
2380 && (ptr <= unboxed_region.free_pointer))) {
2387 /* Write-protect the page. */
2388 /*FSHOW((stderr, "/write-protecting page %d gen %d\n", page, gen));*/
2390 os_protect((void *)page_addr,
2392 OS_VM_PROT_READ|OS_VM_PROT_EXECUTE);
2394 /* Note the page as protected in the page tables. */
2395 page_table[page].write_protected = 1;
2401 /* Scavenge all generations from FROM to TO, inclusive, except for
2402 * new_space which needs special handling, as new objects may be
2403 * added which are not checked here - use scavenge_newspace generation.
2405 * Write-protected pages should not have any pointers to the
2406 * from_space so do need scavenging; thus write-protected pages are
2407 * not always scavenged. There is some code to check that these pages
2408 * are not written; but to check fully the write-protected pages need
2409 * to be scavenged by disabling the code to skip them.
2411 * Under the current scheme when a generation is GCed the younger
2412 * generations will be empty. So, when a generation is being GCed it
2413 * is only necessary to scavenge the older generations for pointers
2414 * not the younger. So a page that does not have pointers to younger
2415 * generations does not need to be scavenged.
2417 * The write-protection can be used to note pages that don't have
2418 * pointers to younger pages. But pages can be written without having
2419 * pointers to younger generations. After the pages are scavenged here
2420 * they can be scanned for pointers to younger generations and if
2421 * there are none the page can be write-protected.
2423 * One complication is when the newspace is the top temp. generation.
2425 * Enabling SC_GEN_CK scavenges the write-protected pages and checks
2426 * that none were written, which they shouldn't be as they should have
2427 * no pointers to younger generations. This breaks down for weak
2428 * pointers as the objects contain a link to the next and are written
2429 * if a weak pointer is scavenged. Still it's a useful check. */
2431 scavenge_generations(generation_index_t from, generation_index_t to)
2434 page_index_t num_wp = 0;
2438 /* Clear the write_protected_cleared flags on all pages. */
2439 for (i = 0; i < page_table_pages; i++)
2440 page_table[i].write_protected_cleared = 0;
2443 for (i = 0; i < last_free_page; i++) {
2444 generation_index_t generation = page_table[i].gen;
2446 && (page_table[i].bytes_used != 0)
2447 && (generation != new_space)
2448 && (generation >= from)
2449 && (generation <= to)) {
2450 page_index_t last_page,j;
2451 int write_protected=1;
2453 /* This should be the start of a region */
2454 gc_assert(page_table[i].region_start_offset == 0);
2456 /* Now work forward until the end of the region */
2457 for (last_page = i; ; last_page++) {
2459 write_protected && page_table[last_page].write_protected;
2460 if ((page_table[last_page].bytes_used < GENCGC_CARD_BYTES)
2461 /* Or it is CARD_BYTES and is the last in the block */
2462 || (!page_boxed_p(last_page+1))
2463 || (page_table[last_page+1].bytes_used == 0)
2464 || (page_table[last_page+1].gen != generation)
2465 || (page_table[last_page+1].region_start_offset == 0))
2468 if (!write_protected) {
2469 scavenge(page_address(i),
2470 ((unsigned long)(page_table[last_page].bytes_used
2471 + npage_bytes(last_page-i)))
2474 /* Now scan the pages and write protect those that
2475 * don't have pointers to younger generations. */
2476 if (enable_page_protection) {
2477 for (j = i; j <= last_page; j++) {
2478 num_wp += update_page_write_prot(j);
2481 if ((gencgc_verbose > 1) && (num_wp != 0)) {
2483 "/write protected %d pages within generation %d\n",
2484 num_wp, generation));
2492 /* Check that none of the write_protected pages in this generation
2493 * have been written to. */
2494 for (i = 0; i < page_table_pages; i++) {
2495 if (page_allocated_p(i)
2496 && (page_table[i].bytes_used != 0)
2497 && (page_table[i].gen == generation)
2498 && (page_table[i].write_protected_cleared != 0)) {
2499 FSHOW((stderr, "/scavenge_generation() %d\n", generation));
2501 "/page bytes_used=%d region_start_offset=%lu dont_move=%d\n",
2502 page_table[i].bytes_used,
2503 page_table[i].region_start_offset,
2504 page_table[i].dont_move));
2505 lose("write to protected page %d in scavenge_generation()\n", i);
2512 /* Scavenge a newspace generation. As it is scavenged new objects may
2513 * be allocated to it; these will also need to be scavenged. This
2514 * repeats until there are no more objects unscavenged in the
2515 * newspace generation.
2517 * To help improve the efficiency, areas written are recorded by
2518 * gc_alloc() and only these scavenged. Sometimes a little more will be
2519 * scavenged, but this causes no harm. An easy check is done that the
2520 * scavenged bytes equals the number allocated in the previous
2523 * Write-protected pages are not scanned except if they are marked
2524 * dont_move in which case they may have been promoted and still have
2525 * pointers to the from space.
2527 * Write-protected pages could potentially be written by alloc however
2528 * to avoid having to handle re-scavenging of write-protected pages
2529 * gc_alloc() does not write to write-protected pages.
2531 * New areas of objects allocated are recorded alternatively in the two
2532 * new_areas arrays below. */
2533 static struct new_area new_areas_1[NUM_NEW_AREAS];
2534 static struct new_area new_areas_2[NUM_NEW_AREAS];
2536 /* Do one full scan of the new space generation. This is not enough to
2537 * complete the job as new objects may be added to the generation in
2538 * the process which are not scavenged. */
2540 scavenge_newspace_generation_one_scan(generation_index_t generation)
2545 "/starting one full scan of newspace generation %d\n",
2547 for (i = 0; i < last_free_page; i++) {
2548 /* Note that this skips over open regions when it encounters them. */
2550 && (page_table[i].bytes_used != 0)
2551 && (page_table[i].gen == generation)
2552 && ((page_table[i].write_protected == 0)
2553 /* (This may be redundant as write_protected is now
2554 * cleared before promotion.) */
2555 || (page_table[i].dont_move == 1))) {
2556 page_index_t last_page;
2559 /* The scavenge will start at the region_start_offset of
2562 * We need to find the full extent of this contiguous
2563 * block in case objects span pages.
2565 * Now work forward until the end of this contiguous area
2566 * is found. A small area is preferred as there is a
2567 * better chance of its pages being write-protected. */
2568 for (last_page = i; ;last_page++) {
2569 /* If all pages are write-protected and movable,
2570 * then no need to scavenge */
2571 all_wp=all_wp && page_table[last_page].write_protected &&
2572 !page_table[last_page].dont_move;
2574 /* Check whether this is the last page in this
2575 * contiguous block */
2576 if ((page_table[last_page].bytes_used < GENCGC_CARD_BYTES)
2577 /* Or it is CARD_BYTES and is the last in the block */
2578 || (!page_boxed_p(last_page+1))
2579 || (page_table[last_page+1].bytes_used == 0)
2580 || (page_table[last_page+1].gen != generation)
2581 || (page_table[last_page+1].region_start_offset == 0))
2585 /* Do a limited check for write-protected pages. */
2587 long nwords = (((unsigned long)
2588 (page_table[last_page].bytes_used
2589 + npage_bytes(last_page-i)
2590 + page_table[i].region_start_offset))
2592 new_areas_ignore_page = last_page;
2594 scavenge(page_region_start(i), nwords);
2601 "/done with one full scan of newspace generation %d\n",
2605 /* Do a complete scavenge of the newspace generation. */
2607 scavenge_newspace_generation(generation_index_t generation)
2611 /* the new_areas array currently being written to by gc_alloc() */
2612 struct new_area (*current_new_areas)[] = &new_areas_1;
2613 size_t current_new_areas_index;
2615 /* the new_areas created by the previous scavenge cycle */
2616 struct new_area (*previous_new_areas)[] = NULL;
2617 size_t previous_new_areas_index;
2619 /* Flush the current regions updating the tables. */
2620 gc_alloc_update_all_page_tables();
2622 /* Turn on the recording of new areas by gc_alloc(). */
2623 new_areas = current_new_areas;
2624 new_areas_index = 0;
2626 /* Don't need to record new areas that get scavenged anyway during
2627 * scavenge_newspace_generation_one_scan. */
2628 record_new_objects = 1;
2630 /* Start with a full scavenge. */
2631 scavenge_newspace_generation_one_scan(generation);
2633 /* Record all new areas now. */
2634 record_new_objects = 2;
2636 /* Give a chance to weak hash tables to make other objects live.
2637 * FIXME: The algorithm implemented here for weak hash table gcing
2638 * is O(W^2+N) as Bruno Haible warns in
2639 * http://www.haible.de/bruno/papers/cs/weak/WeakDatastructures-writeup.html
2640 * see "Implementation 2". */
2641 scav_weak_hash_tables();
2643 /* Flush the current regions updating the tables. */
2644 gc_alloc_update_all_page_tables();
2646 /* Grab new_areas_index. */
2647 current_new_areas_index = new_areas_index;
2650 "The first scan is finished; current_new_areas_index=%d.\n",
2651 current_new_areas_index));*/
2653 while (current_new_areas_index > 0) {
2654 /* Move the current to the previous new areas */
2655 previous_new_areas = current_new_areas;
2656 previous_new_areas_index = current_new_areas_index;
2658 /* Scavenge all the areas in previous new areas. Any new areas
2659 * allocated are saved in current_new_areas. */
2661 /* Allocate an array for current_new_areas; alternating between
2662 * new_areas_1 and 2 */
2663 if (previous_new_areas == &new_areas_1)
2664 current_new_areas = &new_areas_2;
2666 current_new_areas = &new_areas_1;
2668 /* Set up for gc_alloc(). */
2669 new_areas = current_new_areas;
2670 new_areas_index = 0;
2672 /* Check whether previous_new_areas had overflowed. */
2673 if (previous_new_areas_index >= NUM_NEW_AREAS) {
2675 /* New areas of objects allocated have been lost so need to do a
2676 * full scan to be sure! If this becomes a problem try
2677 * increasing NUM_NEW_AREAS. */
2678 if (gencgc_verbose) {
2679 SHOW("new_areas overflow, doing full scavenge");
2682 /* Don't need to record new areas that get scavenged
2683 * anyway during scavenge_newspace_generation_one_scan. */
2684 record_new_objects = 1;
2686 scavenge_newspace_generation_one_scan(generation);
2688 /* Record all new areas now. */
2689 record_new_objects = 2;
2691 scav_weak_hash_tables();
2693 /* Flush the current regions updating the tables. */
2694 gc_alloc_update_all_page_tables();
2698 /* Work through previous_new_areas. */
2699 for (i = 0; i < previous_new_areas_index; i++) {
2700 page_index_t page = (*previous_new_areas)[i].page;
2701 size_t offset = (*previous_new_areas)[i].offset;
2702 size_t size = (*previous_new_areas)[i].size / N_WORD_BYTES;
2703 gc_assert((*previous_new_areas)[i].size % N_WORD_BYTES == 0);
2704 scavenge(page_address(page)+offset, size);
2707 scav_weak_hash_tables();
2709 /* Flush the current regions updating the tables. */
2710 gc_alloc_update_all_page_tables();
2713 current_new_areas_index = new_areas_index;
2716 "The re-scan has finished; current_new_areas_index=%d.\n",
2717 current_new_areas_index));*/
2720 /* Turn off recording of areas allocated by gc_alloc(). */
2721 record_new_objects = 0;
2726 /* Check that none of the write_protected pages in this generation
2727 * have been written to. */
2728 for (i = 0; i < page_table_pages; i++) {
2729 if (page_allocated_p(i)
2730 && (page_table[i].bytes_used != 0)
2731 && (page_table[i].gen == generation)
2732 && (page_table[i].write_protected_cleared != 0)
2733 && (page_table[i].dont_move == 0)) {
2734 lose("write protected page %d written to in scavenge_newspace_generation\ngeneration=%d dont_move=%d\n",
2735 i, generation, page_table[i].dont_move);
2742 /* Un-write-protect all the pages in from_space. This is done at the
2743 * start of a GC else there may be many page faults while scavenging
2744 * the newspace (I've seen drive the system time to 99%). These pages
2745 * would need to be unprotected anyway before unmapping in
2746 * free_oldspace; not sure what effect this has on paging.. */
2748 unprotect_oldspace(void)
2751 void *region_addr = 0;
2752 void *page_addr = 0;
2753 unsigned long region_bytes = 0;
2755 for (i = 0; i < last_free_page; i++) {
2756 if (page_allocated_p(i)
2757 && (page_table[i].bytes_used != 0)
2758 && (page_table[i].gen == from_space)) {
2760 /* Remove any write-protection. We should be able to rely
2761 * on the write-protect flag to avoid redundant calls. */
2762 if (page_table[i].write_protected) {
2763 page_table[i].write_protected = 0;
2764 page_addr = page_address(i);
2767 region_addr = page_addr;
2768 region_bytes = GENCGC_CARD_BYTES;
2769 } else if (region_addr + region_bytes == page_addr) {
2770 /* Region continue. */
2771 region_bytes += GENCGC_CARD_BYTES;
2773 /* Unprotect previous region. */
2774 os_protect(region_addr, region_bytes, OS_VM_PROT_ALL);
2775 /* First page in new region. */
2776 region_addr = page_addr;
2777 region_bytes = GENCGC_CARD_BYTES;
2783 /* Unprotect last region. */
2784 os_protect(region_addr, region_bytes, OS_VM_PROT_ALL);
2788 /* Work through all the pages and free any in from_space. This
2789 * assumes that all objects have been copied or promoted to an older
2790 * generation. Bytes_allocated and the generation bytes_allocated
2791 * counter are updated. The number of bytes freed is returned. */
2792 static unsigned long
2795 unsigned long bytes_freed = 0;
2796 page_index_t first_page, last_page;
2801 /* Find a first page for the next region of pages. */
2802 while ((first_page < last_free_page)
2803 && (page_free_p(first_page)
2804 || (page_table[first_page].bytes_used == 0)
2805 || (page_table[first_page].gen != from_space)))
2808 if (first_page >= last_free_page)
2811 /* Find the last page of this region. */
2812 last_page = first_page;
2815 /* Free the page. */
2816 bytes_freed += page_table[last_page].bytes_used;
2817 generations[page_table[last_page].gen].bytes_allocated -=
2818 page_table[last_page].bytes_used;
2819 page_table[last_page].allocated = FREE_PAGE_FLAG;
2820 page_table[last_page].bytes_used = 0;
2821 /* Should already be unprotected by unprotect_oldspace(). */
2822 gc_assert(!page_table[last_page].write_protected);
2825 while ((last_page < last_free_page)
2826 && page_allocated_p(last_page)
2827 && (page_table[last_page].bytes_used != 0)
2828 && (page_table[last_page].gen == from_space));
2830 #ifdef READ_PROTECT_FREE_PAGES
2831 os_protect(page_address(first_page),
2832 npage_bytes(last_page-first_page),
2835 first_page = last_page;
2836 } while (first_page < last_free_page);
2838 bytes_allocated -= bytes_freed;
2843 /* Print some information about a pointer at the given address. */
2845 print_ptr(lispobj *addr)
2847 /* If addr is in the dynamic space then out the page information. */
2848 page_index_t pi1 = find_page_index((void*)addr);
2851 fprintf(stderr," %p: page %d alloc %d gen %d bytes_used %d offset %lu dont_move %d\n",
2854 page_table[pi1].allocated,
2855 page_table[pi1].gen,
2856 page_table[pi1].bytes_used,
2857 page_table[pi1].region_start_offset,
2858 page_table[pi1].dont_move);
2859 fprintf(stderr," %x %x %x %x (%x) %x %x %x %x\n",
2873 is_in_stack_space(lispobj ptr)
2875 /* For space verification: Pointers can be valid if they point
2876 * to a thread stack space. This would be faster if the thread
2877 * structures had page-table entries as if they were part of
2878 * the heap space. */
2880 for_each_thread(th) {
2881 if ((th->control_stack_start <= (lispobj *)ptr) &&
2882 (th->control_stack_end >= (lispobj *)ptr)) {
2890 verify_space(lispobj *start, size_t words)
2892 int is_in_dynamic_space = (find_page_index((void*)start) != -1);
2893 int is_in_readonly_space =
2894 (READ_ONLY_SPACE_START <= (unsigned long)start &&
2895 (unsigned long)start < SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0));
2899 lispobj thing = *(lispobj*)start;
2901 if (is_lisp_pointer(thing)) {
2902 page_index_t page_index = find_page_index((void*)thing);
2903 long to_readonly_space =
2904 (READ_ONLY_SPACE_START <= thing &&
2905 thing < SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0));
2906 long to_static_space =
2907 (STATIC_SPACE_START <= thing &&
2908 thing < SymbolValue(STATIC_SPACE_FREE_POINTER,0));
2910 /* Does it point to the dynamic space? */
2911 if (page_index != -1) {
2912 /* If it's within the dynamic space it should point to a used
2913 * page. XX Could check the offset too. */
2914 if (page_allocated_p(page_index)
2915 && (page_table[page_index].bytes_used == 0))
2916 lose ("Ptr %p @ %p sees free page.\n", thing, start);
2917 /* Check that it doesn't point to a forwarding pointer! */
2918 if (*((lispobj *)native_pointer(thing)) == 0x01) {
2919 lose("Ptr %p @ %p sees forwarding ptr.\n", thing, start);
2921 /* Check that its not in the RO space as it would then be a
2922 * pointer from the RO to the dynamic space. */
2923 if (is_in_readonly_space) {
2924 lose("ptr to dynamic space %p from RO space %x\n",
2927 /* Does it point to a plausible object? This check slows
2928 * it down a lot (so it's commented out).
2930 * "a lot" is serious: it ate 50 minutes cpu time on
2931 * my duron 950 before I came back from lunch and
2934 * FIXME: Add a variable to enable this
2937 if (!possibly_valid_dynamic_space_pointer((lispobj *)thing)) {
2938 lose("ptr %p to invalid object %p\n", thing, start);
2942 extern void funcallable_instance_tramp;
2943 /* Verify that it points to another valid space. */
2944 if (!to_readonly_space && !to_static_space
2945 && (thing != (lispobj)&funcallable_instance_tramp)
2946 && !is_in_stack_space(thing)) {
2947 lose("Ptr %p @ %p sees junk.\n", thing, start);
2951 if (!(fixnump(thing))) {
2953 switch(widetag_of(*start)) {
2956 case SIMPLE_VECTOR_WIDETAG:
2958 case COMPLEX_WIDETAG:
2959 case SIMPLE_ARRAY_WIDETAG:
2960 case COMPLEX_BASE_STRING_WIDETAG:
2961 #ifdef COMPLEX_CHARACTER_STRING_WIDETAG
2962 case COMPLEX_CHARACTER_STRING_WIDETAG:
2964 case COMPLEX_VECTOR_NIL_WIDETAG:
2965 case COMPLEX_BIT_VECTOR_WIDETAG:
2966 case COMPLEX_VECTOR_WIDETAG:
2967 case COMPLEX_ARRAY_WIDETAG:
2968 case CLOSURE_HEADER_WIDETAG:
2969 case FUNCALLABLE_INSTANCE_HEADER_WIDETAG:
2970 case VALUE_CELL_HEADER_WIDETAG:
2971 case SYMBOL_HEADER_WIDETAG:
2972 case CHARACTER_WIDETAG:
2973 #if N_WORD_BITS == 64
2974 case SINGLE_FLOAT_WIDETAG:
2976 case UNBOUND_MARKER_WIDETAG:
2981 case INSTANCE_HEADER_WIDETAG:
2984 long ntotal = HeaderValue(thing);
2985 lispobj layout = ((struct instance *)start)->slots[0];
2990 nuntagged = ((struct layout *)
2991 native_pointer(layout))->n_untagged_slots;
2992 verify_space(start + 1,
2993 ntotal - fixnum_value(nuntagged));
2997 case CODE_HEADER_WIDETAG:
2999 lispobj object = *start;
3001 long nheader_words, ncode_words, nwords;
3003 struct simple_fun *fheaderp;
3005 code = (struct code *) start;
3007 /* Check that it's not in the dynamic space.
3008 * FIXME: Isn't is supposed to be OK for code
3009 * objects to be in the dynamic space these days? */
3010 if (is_in_dynamic_space
3011 /* It's ok if it's byte compiled code. The trace
3012 * table offset will be a fixnum if it's x86
3013 * compiled code - check.
3015 * FIXME: #^#@@! lack of abstraction here..
3016 * This line can probably go away now that
3017 * there's no byte compiler, but I've got
3018 * too much to worry about right now to try
3019 * to make sure. -- WHN 2001-10-06 */
3020 && fixnump(code->trace_table_offset)
3021 /* Only when enabled */
3022 && verify_dynamic_code_check) {
3024 "/code object at %p in the dynamic space\n",
3028 ncode_words = fixnum_value(code->code_size);
3029 nheader_words = HeaderValue(object);
3030 nwords = ncode_words + nheader_words;
3031 nwords = CEILING(nwords, 2);
3032 /* Scavenge the boxed section of the code data block */
3033 verify_space(start + 1, nheader_words - 1);
3035 /* Scavenge the boxed section of each function
3036 * object in the code data block. */
3037 fheaderl = code->entry_points;
3038 while (fheaderl != NIL) {
3040 (struct simple_fun *) native_pointer(fheaderl);
3041 gc_assert(widetag_of(fheaderp->header) ==
3042 SIMPLE_FUN_HEADER_WIDETAG);
3043 verify_space(&fheaderp->name, 1);
3044 verify_space(&fheaderp->arglist, 1);
3045 verify_space(&fheaderp->type, 1);
3046 fheaderl = fheaderp->next;
3052 /* unboxed objects */
3053 case BIGNUM_WIDETAG:
3054 #if N_WORD_BITS != 64
3055 case SINGLE_FLOAT_WIDETAG:
3057 case DOUBLE_FLOAT_WIDETAG:
3058 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
3059 case LONG_FLOAT_WIDETAG:
3061 #ifdef COMPLEX_SINGLE_FLOAT_WIDETAG
3062 case COMPLEX_SINGLE_FLOAT_WIDETAG:
3064 #ifdef COMPLEX_DOUBLE_FLOAT_WIDETAG
3065 case COMPLEX_DOUBLE_FLOAT_WIDETAG:
3067 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
3068 case COMPLEX_LONG_FLOAT_WIDETAG:
3070 case SIMPLE_BASE_STRING_WIDETAG:
3071 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
3072 case SIMPLE_CHARACTER_STRING_WIDETAG:
3074 case SIMPLE_BIT_VECTOR_WIDETAG:
3075 case SIMPLE_ARRAY_NIL_WIDETAG:
3076 case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
3077 case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
3078 case SIMPLE_ARRAY_UNSIGNED_BYTE_7_WIDETAG:
3079 case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
3080 case SIMPLE_ARRAY_UNSIGNED_BYTE_15_WIDETAG:
3081 case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
3083 case SIMPLE_ARRAY_UNSIGNED_FIXNUM_WIDETAG:
3085 case SIMPLE_ARRAY_UNSIGNED_BYTE_31_WIDETAG:
3086 case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
3087 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG
3088 case SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG:
3090 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG
3091 case SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG:
3093 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
3094 case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
3096 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
3097 case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
3100 case SIMPLE_ARRAY_FIXNUM_WIDETAG:
3102 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
3103 case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
3105 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG
3106 case SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG:
3108 case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
3109 case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
3110 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
3111 case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
3113 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
3114 case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
3116 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
3117 case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
3119 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
3120 case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
3123 case WEAK_POINTER_WIDETAG:
3124 #ifdef NO_TLS_VALUE_MARKER_WIDETAG
3125 case NO_TLS_VALUE_MARKER_WIDETAG:
3127 count = (sizetab[widetag_of(*start)])(start);
3131 lose("Unhandled widetag %p at %p\n",
3132 widetag_of(*start), start);
3144 /* FIXME: It would be nice to make names consistent so that
3145 * foo_size meant size *in* *bytes* instead of size in some
3146 * arbitrary units. (Yes, this caused a bug, how did you guess?:-)
3147 * Some counts of lispobjs are called foo_count; it might be good
3148 * to grep for all foo_size and rename the appropriate ones to
3150 long read_only_space_size =
3151 (lispobj*)SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0)
3152 - (lispobj*)READ_ONLY_SPACE_START;
3153 long static_space_size =
3154 (lispobj*)SymbolValue(STATIC_SPACE_FREE_POINTER,0)
3155 - (lispobj*)STATIC_SPACE_START;
3157 for_each_thread(th) {
3158 long binding_stack_size =
3159 (lispobj*)get_binding_stack_pointer(th)
3160 - (lispobj*)th->binding_stack_start;
3161 verify_space(th->binding_stack_start, binding_stack_size);
3163 verify_space((lispobj*)READ_ONLY_SPACE_START, read_only_space_size);
3164 verify_space((lispobj*)STATIC_SPACE_START , static_space_size);
3168 verify_generation(generation_index_t generation)
3172 for (i = 0; i < last_free_page; i++) {
3173 if (page_allocated_p(i)
3174 && (page_table[i].bytes_used != 0)
3175 && (page_table[i].gen == generation)) {
3176 page_index_t last_page;
3177 int region_allocation = page_table[i].allocated;
3179 /* This should be the start of a contiguous block */
3180 gc_assert(page_table[i].region_start_offset == 0);
3182 /* Need to find the full extent of this contiguous block in case
3183 objects span pages. */
3185 /* Now work forward until the end of this contiguous area is
3187 for (last_page = i; ;last_page++)
3188 /* Check whether this is the last page in this contiguous
3190 if ((page_table[last_page].bytes_used < GENCGC_CARD_BYTES)
3191 /* Or it is CARD_BYTES and is the last in the block */
3192 || (page_table[last_page+1].allocated != region_allocation)
3193 || (page_table[last_page+1].bytes_used == 0)
3194 || (page_table[last_page+1].gen != generation)
3195 || (page_table[last_page+1].region_start_offset == 0))
3198 verify_space(page_address(i),
3200 (page_table[last_page].bytes_used
3201 + npage_bytes(last_page-i)))
3208 /* Check that all the free space is zero filled. */
3210 verify_zero_fill(void)
3214 for (page = 0; page < last_free_page; page++) {
3215 if (page_free_p(page)) {
3216 /* The whole page should be zero filled. */
3217 long *start_addr = (long *)page_address(page);
3220 for (i = 0; i < size; i++) {
3221 if (start_addr[i] != 0) {
3222 lose("free page not zero at %x\n", start_addr + i);
3226 long free_bytes = GENCGC_CARD_BYTES - page_table[page].bytes_used;
3227 if (free_bytes > 0) {
3228 long *start_addr = (long *)((unsigned long)page_address(page)
3229 + page_table[page].bytes_used);
3230 long size = free_bytes / N_WORD_BYTES;
3232 for (i = 0; i < size; i++) {
3233 if (start_addr[i] != 0) {
3234 lose("free region not zero at %x\n", start_addr + i);
3242 /* External entry point for verify_zero_fill */
3244 gencgc_verify_zero_fill(void)
3246 /* Flush the alloc regions updating the tables. */
3247 gc_alloc_update_all_page_tables();
3248 SHOW("verifying zero fill");
3253 verify_dynamic_space(void)
3255 generation_index_t i;
3257 for (i = 0; i <= HIGHEST_NORMAL_GENERATION; i++)
3258 verify_generation(i);
3260 if (gencgc_enable_verify_zero_fill)
3264 /* Write-protect all the dynamic boxed pages in the given generation. */
3266 write_protect_generation_pages(generation_index_t generation)
3270 gc_assert(generation < SCRATCH_GENERATION);
3272 for (start = 0; start < last_free_page; start++) {
3273 if (protect_page_p(start, generation)) {
3277 /* Note the page as protected in the page tables. */
3278 page_table[start].write_protected = 1;
3280 for (last = start + 1; last < last_free_page; last++) {
3281 if (!protect_page_p(last, generation))
3283 page_table[last].write_protected = 1;
3286 page_start = (void *)page_address(start);
3288 os_protect(page_start,
3289 npage_bytes(last - start),
3290 OS_VM_PROT_READ | OS_VM_PROT_EXECUTE);
3296 if (gencgc_verbose > 1) {
3298 "/write protected %d of %d pages in generation %d\n",
3299 count_write_protect_generation_pages(generation),
3300 count_generation_pages(generation),
3305 #if defined(LISP_FEATURE_SB_THREAD) && (defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64))
3307 preserve_context_registers (os_context_t *c)
3310 /* On Darwin the signal context isn't a contiguous block of memory,
3311 * so just preserve_pointering its contents won't be sufficient.
3313 #if defined(LISP_FEATURE_DARWIN)
3314 #if defined LISP_FEATURE_X86
3315 preserve_pointer((void*)*os_context_register_addr(c,reg_EAX));
3316 preserve_pointer((void*)*os_context_register_addr(c,reg_ECX));
3317 preserve_pointer((void*)*os_context_register_addr(c,reg_EDX));
3318 preserve_pointer((void*)*os_context_register_addr(c,reg_EBX));
3319 preserve_pointer((void*)*os_context_register_addr(c,reg_ESI));
3320 preserve_pointer((void*)*os_context_register_addr(c,reg_EDI));
3321 preserve_pointer((void*)*os_context_pc_addr(c));
3322 #elif defined LISP_FEATURE_X86_64
3323 preserve_pointer((void*)*os_context_register_addr(c,reg_RAX));
3324 preserve_pointer((void*)*os_context_register_addr(c,reg_RCX));
3325 preserve_pointer((void*)*os_context_register_addr(c,reg_RDX));
3326 preserve_pointer((void*)*os_context_register_addr(c,reg_RBX));
3327 preserve_pointer((void*)*os_context_register_addr(c,reg_RSI));
3328 preserve_pointer((void*)*os_context_register_addr(c,reg_RDI));
3329 preserve_pointer((void*)*os_context_register_addr(c,reg_R8));
3330 preserve_pointer((void*)*os_context_register_addr(c,reg_R9));
3331 preserve_pointer((void*)*os_context_register_addr(c,reg_R10));
3332 preserve_pointer((void*)*os_context_register_addr(c,reg_R11));
3333 preserve_pointer((void*)*os_context_register_addr(c,reg_R12));
3334 preserve_pointer((void*)*os_context_register_addr(c,reg_R13));
3335 preserve_pointer((void*)*os_context_register_addr(c,reg_R14));
3336 preserve_pointer((void*)*os_context_register_addr(c,reg_R15));
3337 preserve_pointer((void*)*os_context_pc_addr(c));
3339 #error "preserve_context_registers needs to be tweaked for non-x86 Darwin"
3342 for(ptr = ((void **)(c+1))-1; ptr>=(void **)c; ptr--) {
3343 preserve_pointer(*ptr);
3348 /* Garbage collect a generation. If raise is 0 then the remains of the
3349 * generation are not raised to the next generation. */
3351 garbage_collect_generation(generation_index_t generation, int raise)
3353 unsigned long bytes_freed;
3355 unsigned long static_space_size;
3358 gc_assert(generation <= HIGHEST_NORMAL_GENERATION);
3360 /* The oldest generation can't be raised. */
3361 gc_assert((generation != HIGHEST_NORMAL_GENERATION) || (raise == 0));
3363 /* Check if weak hash tables were processed in the previous GC. */
3364 gc_assert(weak_hash_tables == NULL);
3366 /* Initialize the weak pointer list. */
3367 weak_pointers = NULL;
3369 /* When a generation is not being raised it is transported to a
3370 * temporary generation (NUM_GENERATIONS), and lowered when
3371 * done. Set up this new generation. There should be no pages
3372 * allocated to it yet. */
3374 gc_assert(generations[SCRATCH_GENERATION].bytes_allocated == 0);
3377 /* Set the global src and dest. generations */
3378 from_space = generation;
3380 new_space = generation+1;
3382 new_space = SCRATCH_GENERATION;
3384 /* Change to a new space for allocation, resetting the alloc_start_page */
3385 gc_alloc_generation = new_space;
3386 generations[new_space].alloc_start_page = 0;
3387 generations[new_space].alloc_unboxed_start_page = 0;
3388 generations[new_space].alloc_large_start_page = 0;
3389 generations[new_space].alloc_large_unboxed_start_page = 0;
3391 /* Before any pointers are preserved, the dont_move flags on the
3392 * pages need to be cleared. */
3393 for (i = 0; i < last_free_page; i++)
3394 if(page_table[i].gen==from_space)
3395 page_table[i].dont_move = 0;
3397 /* Un-write-protect the old-space pages. This is essential for the
3398 * promoted pages as they may contain pointers into the old-space
3399 * which need to be scavenged. It also helps avoid unnecessary page
3400 * faults as forwarding pointers are written into them. They need to
3401 * be un-protected anyway before unmapping later. */
3402 unprotect_oldspace();
3404 /* Scavenge the stacks' conservative roots. */
3406 /* there are potentially two stacks for each thread: the main
3407 * stack, which may contain Lisp pointers, and the alternate stack.
3408 * We don't ever run Lisp code on the altstack, but it may
3409 * host a sigcontext with lisp objects in it */
3411 /* what we need to do: (1) find the stack pointer for the main
3412 * stack; scavenge it (2) find the interrupt context on the
3413 * alternate stack that might contain lisp values, and scavenge
3416 /* we assume that none of the preceding applies to the thread that
3417 * initiates GC. If you ever call GC from inside an altstack
3418 * handler, you will lose. */
3420 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
3421 /* And if we're saving a core, there's no point in being conservative. */
3422 if (conservative_stack) {
3423 for_each_thread(th) {
3425 void **esp=(void **)-1;
3426 #ifdef LISP_FEATURE_SB_THREAD
3428 if(th==arch_os_get_current_thread()) {
3429 /* Somebody is going to burn in hell for this, but casting
3430 * it in two steps shuts gcc up about strict aliasing. */
3431 esp = (void **)((void *)&raise);
3434 free=fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,th));
3435 for(i=free-1;i>=0;i--) {
3436 os_context_t *c=th->interrupt_contexts[i];
3437 esp1 = (void **) *os_context_register_addr(c,reg_SP);
3438 if (esp1>=(void **)th->control_stack_start &&
3439 esp1<(void **)th->control_stack_end) {
3440 if(esp1<esp) esp=esp1;
3441 preserve_context_registers(c);
3446 esp = (void **)((void *)&raise);
3448 for (ptr = ((void **)th->control_stack_end)-1; ptr >= esp; ptr--) {
3449 preserve_pointer(*ptr);
3454 /* Non-x86oid systems don't have "conservative roots" as such, but
3455 * the same mechanism is used for objects pinned for use by alien
3457 for_each_thread(th) {
3458 lispobj pin_list = SymbolTlValue(PINNED_OBJECTS,th);
3459 while (pin_list != NIL) {
3460 struct cons *list_entry =
3461 (struct cons *)native_pointer(pin_list);
3462 preserve_pointer(list_entry->car);
3463 pin_list = list_entry->cdr;
3469 if (gencgc_verbose > 1) {
3470 long num_dont_move_pages = count_dont_move_pages();
3472 "/non-movable pages due to conservative pointers = %d (%d bytes)\n",
3473 num_dont_move_pages,
3474 npage_bytes(num_dont_move_pages));
3478 /* Scavenge all the rest of the roots. */
3480 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
3482 * If not x86, we need to scavenge the interrupt context(s) and the
3487 for_each_thread(th) {
3488 scavenge_interrupt_contexts(th);
3489 scavenge_control_stack(th);
3492 /* Scrub the unscavenged control stack space, so that we can't run
3493 * into any stale pointers in a later GC (this is done by the
3494 * stop-for-gc handler in the other threads). */
3495 scrub_control_stack();
3499 /* Scavenge the Lisp functions of the interrupt handlers, taking
3500 * care to avoid SIG_DFL and SIG_IGN. */
3501 for (i = 0; i < NSIG; i++) {
3502 union interrupt_handler handler = interrupt_handlers[i];
3503 if (!ARE_SAME_HANDLER(handler.c, SIG_IGN) &&
3504 !ARE_SAME_HANDLER(handler.c, SIG_DFL)) {
3505 scavenge((lispobj *)(interrupt_handlers + i), 1);
3508 /* Scavenge the binding stacks. */
3511 for_each_thread(th) {
3512 long len= (lispobj *)get_binding_stack_pointer(th) -
3513 th->binding_stack_start;
3514 scavenge((lispobj *) th->binding_stack_start,len);
3515 #ifdef LISP_FEATURE_SB_THREAD
3516 /* do the tls as well */
3517 len=(SymbolValue(FREE_TLS_INDEX,0) >> WORD_SHIFT) -
3518 (sizeof (struct thread))/(sizeof (lispobj));
3519 scavenge((lispobj *) (th+1),len);
3524 /* The original CMU CL code had scavenge-read-only-space code
3525 * controlled by the Lisp-level variable
3526 * *SCAVENGE-READ-ONLY-SPACE*. It was disabled by default, and it
3527 * wasn't documented under what circumstances it was useful or
3528 * safe to turn it on, so it's been turned off in SBCL. If you
3529 * want/need this functionality, and can test and document it,
3530 * please submit a patch. */
3532 if (SymbolValue(SCAVENGE_READ_ONLY_SPACE) != NIL) {
3533 unsigned long read_only_space_size =
3534 (lispobj*)SymbolValue(READ_ONLY_SPACE_FREE_POINTER) -
3535 (lispobj*)READ_ONLY_SPACE_START;
3537 "/scavenge read only space: %d bytes\n",
3538 read_only_space_size * sizeof(lispobj)));
3539 scavenge( (lispobj *) READ_ONLY_SPACE_START, read_only_space_size);
3543 /* Scavenge static space. */
3545 (lispobj *)SymbolValue(STATIC_SPACE_FREE_POINTER,0) -
3546 (lispobj *)STATIC_SPACE_START;
3547 if (gencgc_verbose > 1) {
3549 "/scavenge static space: %d bytes\n",
3550 static_space_size * sizeof(lispobj)));
3552 scavenge( (lispobj *) STATIC_SPACE_START, static_space_size);
3554 /* All generations but the generation being GCed need to be
3555 * scavenged. The new_space generation needs special handling as
3556 * objects may be moved in - it is handled separately below. */
3557 scavenge_generations(generation+1, PSEUDO_STATIC_GENERATION);
3559 /* Finally scavenge the new_space generation. Keep going until no
3560 * more objects are moved into the new generation */
3561 scavenge_newspace_generation(new_space);
3563 /* FIXME: I tried reenabling this check when debugging unrelated
3564 * GC weirdness ca. sbcl-0.6.12.45, and it failed immediately.
3565 * Since the current GC code seems to work well, I'm guessing that
3566 * this debugging code is just stale, but I haven't tried to
3567 * figure it out. It should be figured out and then either made to
3568 * work or just deleted. */
3569 #define RESCAN_CHECK 0
3571 /* As a check re-scavenge the newspace once; no new objects should
3574 os_vm_size_t old_bytes_allocated = bytes_allocated;
3575 os_vm_size_t bytes_allocated;
3577 /* Start with a full scavenge. */
3578 scavenge_newspace_generation_one_scan(new_space);
3580 /* Flush the current regions, updating the tables. */
3581 gc_alloc_update_all_page_tables();
3583 bytes_allocated = bytes_allocated - old_bytes_allocated;
3585 if (bytes_allocated != 0) {
3586 lose("Rescan of new_space allocated %d more bytes.\n",
3592 scan_weak_hash_tables();
3593 scan_weak_pointers();
3595 /* Flush the current regions, updating the tables. */
3596 gc_alloc_update_all_page_tables();
3598 /* Free the pages in oldspace, but not those marked dont_move. */
3599 bytes_freed = free_oldspace();
3601 /* If the GC is not raising the age then lower the generation back
3602 * to its normal generation number */
3604 for (i = 0; i < last_free_page; i++)
3605 if ((page_table[i].bytes_used != 0)
3606 && (page_table[i].gen == SCRATCH_GENERATION))
3607 page_table[i].gen = generation;
3608 gc_assert(generations[generation].bytes_allocated == 0);
3609 generations[generation].bytes_allocated =
3610 generations[SCRATCH_GENERATION].bytes_allocated;
3611 generations[SCRATCH_GENERATION].bytes_allocated = 0;
3614 /* Reset the alloc_start_page for generation. */
3615 generations[generation].alloc_start_page = 0;
3616 generations[generation].alloc_unboxed_start_page = 0;
3617 generations[generation].alloc_large_start_page = 0;
3618 generations[generation].alloc_large_unboxed_start_page = 0;
3620 if (generation >= verify_gens) {
3621 if (gencgc_verbose) {
3625 verify_dynamic_space();
3628 /* Set the new gc trigger for the GCed generation. */
3629 generations[generation].gc_trigger =
3630 generations[generation].bytes_allocated
3631 + generations[generation].bytes_consed_between_gc;
3634 generations[generation].num_gc = 0;
3636 ++generations[generation].num_gc;
3640 /* Update last_free_page, then SymbolValue(ALLOCATION_POINTER). */
3642 update_dynamic_space_free_pointer(void)
3644 page_index_t last_page = -1, i;
3646 for (i = 0; i < last_free_page; i++)
3647 if (page_allocated_p(i) && (page_table[i].bytes_used != 0))
3650 last_free_page = last_page+1;
3652 set_alloc_pointer((lispobj)(page_address(last_free_page)));
3653 return 0; /* dummy value: return something ... */
3657 remap_page_range (page_index_t from, page_index_t to)
3659 /* There's a mysterious Solaris/x86 problem with using mmap
3660 * tricks for memory zeroing. See sbcl-devel thread
3661 * "Re: patch: standalone executable redux".
3663 #if defined(LISP_FEATURE_SUNOS)
3664 zero_and_mark_pages(from, to);
3667 release_granularity = gencgc_release_granularity/GENCGC_CARD_BYTES,
3668 release_mask = release_granularity-1,
3670 aligned_from = (from+release_mask)&~release_mask,
3671 aligned_end = (end&~release_mask);
3673 if (aligned_from < aligned_end) {
3674 zero_pages_with_mmap(aligned_from, aligned_end-1);
3675 if (aligned_from != from)
3676 zero_and_mark_pages(from, aligned_from-1);
3677 if (aligned_end != end)
3678 zero_and_mark_pages(aligned_end, end-1);
3680 zero_and_mark_pages(from, to);
3686 remap_free_pages (page_index_t from, page_index_t to, int forcibly)
3688 page_index_t first_page, last_page;
3691 return remap_page_range(from, to);
3693 for (first_page = from; first_page <= to; first_page++) {
3694 if (page_allocated_p(first_page) ||
3695 (page_table[first_page].need_to_zero == 0))
3698 last_page = first_page + 1;
3699 while (page_free_p(last_page) &&
3700 (last_page <= to) &&
3701 (page_table[last_page].need_to_zero == 1))
3704 remap_page_range(first_page, last_page-1);
3706 first_page = last_page;
3710 generation_index_t small_generation_limit = 1;
3712 /* GC all generations newer than last_gen, raising the objects in each
3713 * to the next older generation - we finish when all generations below
3714 * last_gen are empty. Then if last_gen is due for a GC, or if
3715 * last_gen==NUM_GENERATIONS (the scratch generation? eh?) we GC that
3716 * too. The valid range for last_gen is: 0,1,...,NUM_GENERATIONS.
3718 * We stop collecting at gencgc_oldest_gen_to_gc, even if this is less than
3719 * last_gen (oh, and note that by default it is NUM_GENERATIONS-1) */
3721 collect_garbage(generation_index_t last_gen)
3723 generation_index_t gen = 0, i;
3724 int raise, more = 0;
3726 /* The largest value of last_free_page seen since the time
3727 * remap_free_pages was called. */
3728 static page_index_t high_water_mark = 0;
3730 FSHOW((stderr, "/entering collect_garbage(%d)\n", last_gen));
3731 log_generation_stats(gc_logfile, "=== GC Start ===");
3735 if (last_gen > HIGHEST_NORMAL_GENERATION+1) {
3737 "/collect_garbage: last_gen = %d, doing a level 0 GC\n",
3742 /* Flush the alloc regions updating the tables. */
3743 gc_alloc_update_all_page_tables();
3745 /* Verify the new objects created by Lisp code. */
3746 if (pre_verify_gen_0) {
3747 FSHOW((stderr, "pre-checking generation 0\n"));
3748 verify_generation(0);
3751 if (gencgc_verbose > 1)
3752 print_generation_stats();
3755 /* Collect the generation. */
3757 if (more || (gen >= gencgc_oldest_gen_to_gc)) {
3758 /* Never raise the oldest generation. Never raise the extra generation
3759 * collected due to more-flag. */
3765 || (generations[gen].num_gc >= generations[gen].number_of_gcs_before_promotion);
3766 /* If we would not normally raise this one, but we're
3767 * running low on space in comparison to the object-sizes
3768 * we've been seeing, raise it and collect the next one
3770 if (!raise && gen == last_gen) {
3771 more = (2*large_allocation) >= (dynamic_space_size - bytes_allocated);
3776 if (gencgc_verbose > 1) {
3778 "starting GC of generation %d with raise=%d alloc=%d trig=%d GCs=%d\n",
3781 generations[gen].bytes_allocated,
3782 generations[gen].gc_trigger,
3783 generations[gen].num_gc));
3786 /* If an older generation is being filled, then update its
3789 generations[gen+1].cum_sum_bytes_allocated +=
3790 generations[gen+1].bytes_allocated;
3793 garbage_collect_generation(gen, raise);
3795 /* Reset the memory age cum_sum. */
3796 generations[gen].cum_sum_bytes_allocated = 0;
3798 if (gencgc_verbose > 1) {
3799 FSHOW((stderr, "GC of generation %d finished:\n", gen));
3800 print_generation_stats();
3804 } while ((gen <= gencgc_oldest_gen_to_gc)
3805 && ((gen < last_gen)
3808 && (generations[gen].bytes_allocated
3809 > generations[gen].gc_trigger)
3810 && (generation_average_age(gen)
3811 > generations[gen].minimum_age_before_gc))));
3813 /* Now if gen-1 was raised all generations before gen are empty.
3814 * If it wasn't raised then all generations before gen-1 are empty.
3816 * Now objects within this gen's pages cannot point to younger
3817 * generations unless they are written to. This can be exploited
3818 * by write-protecting the pages of gen; then when younger
3819 * generations are GCed only the pages which have been written
3824 gen_to_wp = gen - 1;
3826 /* There's not much point in WPing pages in generation 0 as it is
3827 * never scavenged (except promoted pages). */
3828 if ((gen_to_wp > 0) && enable_page_protection) {
3829 /* Check that they are all empty. */
3830 for (i = 0; i < gen_to_wp; i++) {
3831 if (generations[i].bytes_allocated)
3832 lose("trying to write-protect gen. %d when gen. %d nonempty\n",
3835 write_protect_generation_pages(gen_to_wp);
3838 /* Set gc_alloc() back to generation 0. The current regions should
3839 * be flushed after the above GCs. */
3840 gc_assert((boxed_region.free_pointer - boxed_region.start_addr) == 0);
3841 gc_alloc_generation = 0;
3843 /* Save the high-water mark before updating last_free_page */
3844 if (last_free_page > high_water_mark)
3845 high_water_mark = last_free_page;
3847 update_dynamic_space_free_pointer();
3849 /* Update auto_gc_trigger. Make sure we trigger the next GC before
3850 * running out of heap! */
3851 if (bytes_consed_between_gcs <= (dynamic_space_size - bytes_allocated))
3852 auto_gc_trigger = bytes_allocated + bytes_consed_between_gcs;
3854 auto_gc_trigger = bytes_allocated + (dynamic_space_size - bytes_allocated)/2;
3857 fprintf(stderr,"Next gc when %"OS_VM_SIZE_FMT" bytes have been consed\n",
3860 /* If we did a big GC (arbitrarily defined as gen > 1), release memory
3863 if (gen > small_generation_limit) {
3864 if (last_free_page > high_water_mark)
3865 high_water_mark = last_free_page;
3866 remap_free_pages(0, high_water_mark, 0);
3867 high_water_mark = 0;
3871 large_allocation = 0;
3873 log_generation_stats(gc_logfile, "=== GC End ===");
3874 SHOW("returning from collect_garbage");
3877 /* This is called by Lisp PURIFY when it is finished. All live objects
3878 * will have been moved to the RO and Static heaps. The dynamic space
3879 * will need a full re-initialization. We don't bother having Lisp
3880 * PURIFY flush the current gc_alloc() region, as the page_tables are
3881 * re-initialized, and every page is zeroed to be sure. */
3885 page_index_t page, last_page;
3887 if (gencgc_verbose > 1) {
3888 SHOW("entering gc_free_heap");
3891 for (page = 0; page < page_table_pages; page++) {
3892 /* Skip free pages which should already be zero filled. */
3893 if (page_allocated_p(page)) {
3895 for (last_page = page;
3896 (last_page < page_table_pages) && page_allocated_p(last_page);
3898 /* Mark the page free. The other slots are assumed invalid
3899 * when it is a FREE_PAGE_FLAG and bytes_used is 0 and it
3900 * should not be write-protected -- except that the
3901 * generation is used for the current region but it sets
3903 page_table[page].allocated = FREE_PAGE_FLAG;
3904 page_table[page].bytes_used = 0;
3905 page_table[page].write_protected = 0;
3908 #ifndef LISP_FEATURE_WIN32 /* Pages already zeroed on win32? Not sure
3909 * about this change. */
3910 page_start = (void *)page_address(page);
3911 os_protect(page_start, npage_bytes(last_page-page), OS_VM_PROT_ALL);
3912 remap_free_pages(page, last_page-1, 1);
3915 } else if (gencgc_zero_check_during_free_heap) {
3916 /* Double-check that the page is zero filled. */
3919 gc_assert(page_free_p(page));
3920 gc_assert(page_table[page].bytes_used == 0);
3921 page_start = (long *)page_address(page);
3922 for (i=0; i<GENCGC_CARD_BYTES/sizeof(long); i++) {
3923 if (page_start[i] != 0) {
3924 lose("free region not zero at %x\n", page_start + i);
3930 bytes_allocated = 0;
3932 /* Initialize the generations. */
3933 for (page = 0; page < NUM_GENERATIONS; page++) {
3934 generations[page].alloc_start_page = 0;
3935 generations[page].alloc_unboxed_start_page = 0;
3936 generations[page].alloc_large_start_page = 0;
3937 generations[page].alloc_large_unboxed_start_page = 0;
3938 generations[page].bytes_allocated = 0;
3939 generations[page].gc_trigger = 2000000;
3940 generations[page].num_gc = 0;
3941 generations[page].cum_sum_bytes_allocated = 0;
3944 if (gencgc_verbose > 1)
3945 print_generation_stats();
3947 /* Initialize gc_alloc(). */
3948 gc_alloc_generation = 0;
3950 gc_set_region_empty(&boxed_region);
3951 gc_set_region_empty(&unboxed_region);
3954 set_alloc_pointer((lispobj)((char *)heap_base));
3956 if (verify_after_free_heap) {
3957 /* Check whether purify has left any bad pointers. */
3958 FSHOW((stderr, "checking after free_heap\n"));
3968 /* Compute the number of pages needed for the dynamic space.
3969 * Dynamic space size should be aligned on page size. */
3970 page_table_pages = dynamic_space_size/GENCGC_CARD_BYTES;
3971 gc_assert(dynamic_space_size == npage_bytes(page_table_pages));
3973 /* Default nursery size to 5% of the total dynamic space size,
3975 bytes_consed_between_gcs = dynamic_space_size/(os_vm_size_t)20;
3976 if (bytes_consed_between_gcs < (1024*1024))
3977 bytes_consed_between_gcs = 1024*1024;
3979 /* The page_table must be allocated using "calloc" to initialize
3980 * the page structures correctly. There used to be a separate
3981 * initialization loop (now commented out; see below) but that was
3982 * unnecessary and did hurt startup time. */
3983 page_table = calloc(page_table_pages, sizeof(struct page));
3984 gc_assert(page_table);
3987 scavtab[WEAK_POINTER_WIDETAG] = scav_weak_pointer;
3988 transother[SIMPLE_ARRAY_WIDETAG] = trans_boxed_large;
3990 heap_base = (void*)DYNAMIC_SPACE_START;
3992 /* The page structures are initialized implicitly when page_table
3993 * is allocated with "calloc" above. Formerly we had the following
3994 * explicit initialization here (comments converted to C99 style
3995 * for readability as C's block comments don't nest):
3997 * // Initialize each page structure.
3998 * for (i = 0; i < page_table_pages; i++) {
3999 * // Initialize all pages as free.
4000 * page_table[i].allocated = FREE_PAGE_FLAG;
4001 * page_table[i].bytes_used = 0;
4003 * // Pages are not write-protected at startup.
4004 * page_table[i].write_protected = 0;
4007 * Without this loop the image starts up much faster when dynamic
4008 * space is large -- which it is on 64-bit platforms already by
4009 * default -- and when "calloc" for large arrays is implemented
4010 * using copy-on-write of a page of zeroes -- which it is at least
4011 * on Linux. In this case the pages that page_table_pages is stored
4012 * in are mapped and cleared not before the corresponding part of
4013 * dynamic space is used. For example, this saves clearing 16 MB of
4014 * memory at startup if the page size is 4 KB and the size of
4015 * dynamic space is 4 GB.
4016 * FREE_PAGE_FLAG must be 0 for this to work correctly which is
4017 * asserted below: */
4019 /* Compile time assertion: If triggered, declares an array
4020 * of dimension -1 forcing a syntax error. The intent of the
4021 * assignment is to avoid an "unused variable" warning. */
4022 char assert_free_page_flag_0[(FREE_PAGE_FLAG) ? -1 : 1];
4023 assert_free_page_flag_0[0] = assert_free_page_flag_0[0];
4026 bytes_allocated = 0;
4028 /* Initialize the generations.
4030 * FIXME: very similar to code in gc_free_heap(), should be shared */
4031 for (i = 0; i < NUM_GENERATIONS; i++) {
4032 generations[i].alloc_start_page = 0;
4033 generations[i].alloc_unboxed_start_page = 0;
4034 generations[i].alloc_large_start_page = 0;
4035 generations[i].alloc_large_unboxed_start_page = 0;
4036 generations[i].bytes_allocated = 0;
4037 generations[i].gc_trigger = 2000000;
4038 generations[i].num_gc = 0;
4039 generations[i].cum_sum_bytes_allocated = 0;
4040 /* the tune-able parameters */
4041 generations[i].bytes_consed_between_gc
4042 = bytes_consed_between_gcs/(os_vm_size_t)HIGHEST_NORMAL_GENERATION;
4043 generations[i].number_of_gcs_before_promotion = 1;
4044 generations[i].minimum_age_before_gc = 0.75;
4047 /* Initialize gc_alloc. */
4048 gc_alloc_generation = 0;
4049 gc_set_region_empty(&boxed_region);
4050 gc_set_region_empty(&unboxed_region);
4055 /* Pick up the dynamic space from after a core load.
4057 * The ALLOCATION_POINTER points to the end of the dynamic space.
4061 gencgc_pickup_dynamic(void)
4063 page_index_t page = 0;
4064 void *alloc_ptr = (void *)get_alloc_pointer();
4065 lispobj *prev=(lispobj *)page_address(page);
4066 generation_index_t gen = PSEUDO_STATIC_GENERATION;
4068 lispobj *first,*ptr= (lispobj *)page_address(page);
4070 if (!gencgc_partial_pickup || page_allocated_p(page)) {
4071 /* It is possible, though rare, for the saved page table
4072 * to contain free pages below alloc_ptr. */
4073 page_table[page].gen = gen;
4074 page_table[page].bytes_used = GENCGC_CARD_BYTES;
4075 page_table[page].large_object = 0;
4076 page_table[page].write_protected = 0;
4077 page_table[page].write_protected_cleared = 0;
4078 page_table[page].dont_move = 0;
4079 page_table[page].need_to_zero = 1;
4082 if (!gencgc_partial_pickup) {
4083 page_table[page].allocated = BOXED_PAGE_FLAG;
4084 first=gc_search_space(prev,(ptr+2)-prev,ptr);
4087 page_table[page].region_start_offset =
4088 page_address(page) - (void *)prev;
4091 } while (page_address(page) < alloc_ptr);
4093 last_free_page = page;
4095 generations[gen].bytes_allocated = npage_bytes(page);
4096 bytes_allocated = npage_bytes(page);
4098 gc_alloc_update_all_page_tables();
4099 write_protect_generation_pages(gen);
4103 gc_initialize_pointers(void)
4105 gencgc_pickup_dynamic();
4109 /* alloc(..) is the external interface for memory allocation. It
4110 * allocates to generation 0. It is not called from within the garbage
4111 * collector as it is only external uses that need the check for heap
4112 * size (GC trigger) and to disable the interrupts (interrupts are
4113 * always disabled during a GC).
4115 * The vops that call alloc(..) assume that the returned space is zero-filled.
4116 * (E.g. the most significant word of a 2-word bignum in MOVE-FROM-UNSIGNED.)
4118 * The check for a GC trigger is only performed when the current
4119 * region is full, so in most cases it's not needed. */
4121 static inline lispobj *
4122 general_alloc_internal(long nbytes, int page_type_flag, struct alloc_region *region,
4123 struct thread *thread)
4125 #ifndef LISP_FEATURE_WIN32
4126 lispobj alloc_signal;
4129 void *new_free_pointer;
4130 os_vm_size_t trigger_bytes = 0;
4132 gc_assert(nbytes>0);
4134 /* Check for alignment allocation problems. */
4135 gc_assert((((unsigned long)region->free_pointer & LOWTAG_MASK) == 0)
4136 && ((nbytes & LOWTAG_MASK) == 0));
4138 /* Must be inside a PA section. */
4139 gc_assert(get_pseudo_atomic_atomic(thread));
4141 if (nbytes > large_allocation)
4142 large_allocation = nbytes;
4144 /* maybe we can do this quickly ... */
4145 new_free_pointer = region->free_pointer + nbytes;
4146 if (new_free_pointer <= region->end_addr) {
4147 new_obj = (void*)(region->free_pointer);
4148 region->free_pointer = new_free_pointer;
4149 return(new_obj); /* yup */
4152 /* We don't want to count nbytes against auto_gc_trigger unless we
4153 * have to: it speeds up the tenuring of objects and slows down
4154 * allocation. However, unless we do so when allocating _very_
4155 * large objects we are in danger of exhausting the heap without
4156 * running sufficient GCs.
4158 if (nbytes >= bytes_consed_between_gcs)
4159 trigger_bytes = nbytes;
4161 /* we have to go the long way around, it seems. Check whether we
4162 * should GC in the near future
4164 if (auto_gc_trigger && (bytes_allocated+trigger_bytes > auto_gc_trigger)) {
4165 /* Don't flood the system with interrupts if the need to gc is
4166 * already noted. This can happen for example when SUB-GC
4167 * allocates or after a gc triggered in a WITHOUT-GCING. */
4168 if (SymbolValue(GC_PENDING,thread) == NIL) {
4169 /* set things up so that GC happens when we finish the PA
4171 SetSymbolValue(GC_PENDING,T,thread);
4172 if (SymbolValue(GC_INHIBIT,thread) == NIL) {
4173 set_pseudo_atomic_interrupted(thread);
4174 #ifdef LISP_FEATURE_PPC
4175 /* PPC calls alloc() from a trap or from pa_alloc(),
4176 * look up the most context if it's from a trap. */
4178 os_context_t *context =
4179 thread->interrupt_data->allocation_trap_context;
4180 maybe_save_gc_mask_and_block_deferrables
4181 (context ? os_context_sigmask_addr(context) : NULL);
4184 maybe_save_gc_mask_and_block_deferrables(NULL);
4189 new_obj = gc_alloc_with_region(nbytes, page_type_flag, region, 0);
4191 #ifndef LISP_FEATURE_WIN32
4192 alloc_signal = SymbolValue(ALLOC_SIGNAL,thread);
4193 if ((alloc_signal & FIXNUM_TAG_MASK) == 0) {
4194 if ((signed long) alloc_signal <= 0) {
4195 SetSymbolValue(ALLOC_SIGNAL, T, thread);
4198 SetSymbolValue(ALLOC_SIGNAL,
4199 alloc_signal - (1 << N_FIXNUM_TAG_BITS),
4209 general_alloc(long nbytes, int page_type_flag)
4211 struct thread *thread = arch_os_get_current_thread();
4212 /* Select correct region, and call general_alloc_internal with it.
4213 * For other then boxed allocation we must lock first, since the
4214 * region is shared. */
4215 if (BOXED_PAGE_FLAG & page_type_flag) {
4216 #ifdef LISP_FEATURE_SB_THREAD
4217 struct alloc_region *region = (thread ? &(thread->alloc_region) : &boxed_region);
4219 struct alloc_region *region = &boxed_region;
4221 return general_alloc_internal(nbytes, page_type_flag, region, thread);
4222 } else if (UNBOXED_PAGE_FLAG == page_type_flag) {
4224 gc_assert(0 == thread_mutex_lock(&allocation_lock));
4225 obj = general_alloc_internal(nbytes, page_type_flag, &unboxed_region, thread);
4226 gc_assert(0 == thread_mutex_unlock(&allocation_lock));
4229 lose("bad page type flag: %d", page_type_flag);
4236 gc_assert(get_pseudo_atomic_atomic(arch_os_get_current_thread()));
4237 return general_alloc(nbytes, BOXED_PAGE_FLAG);
4241 * shared support for the OS-dependent signal handlers which
4242 * catch GENCGC-related write-protect violations
4244 void unhandled_sigmemoryfault(void* addr);
4246 /* Depending on which OS we're running under, different signals might
4247 * be raised for a violation of write protection in the heap. This
4248 * function factors out the common generational GC magic which needs
4249 * to invoked in this case, and should be called from whatever signal
4250 * handler is appropriate for the OS we're running under.
4252 * Return true if this signal is a normal generational GC thing that
4253 * we were able to handle, or false if it was abnormal and control
4254 * should fall through to the general SIGSEGV/SIGBUS/whatever logic.
4256 * We have two control flags for this: one causes us to ignore faults
4257 * on unprotected pages completely, and the second complains to stderr
4258 * but allows us to continue without losing.
4260 extern boolean ignore_memoryfaults_on_unprotected_pages;
4261 boolean ignore_memoryfaults_on_unprotected_pages = 0;
4263 extern boolean continue_after_memoryfault_on_unprotected_pages;
4264 boolean continue_after_memoryfault_on_unprotected_pages = 0;
4267 gencgc_handle_wp_violation(void* fault_addr)
4269 page_index_t page_index = find_page_index(fault_addr);
4272 FSHOW((stderr, "heap WP violation? fault_addr=%x, page_index=%d\n",
4273 fault_addr, page_index));
4276 /* Check whether the fault is within the dynamic space. */
4277 if (page_index == (-1)) {
4279 /* It can be helpful to be able to put a breakpoint on this
4280 * case to help diagnose low-level problems. */
4281 unhandled_sigmemoryfault(fault_addr);
4283 /* not within the dynamic space -- not our responsibility */
4288 ret = thread_mutex_lock(&free_pages_lock);
4289 gc_assert(ret == 0);
4290 if (page_table[page_index].write_protected) {
4291 /* Unprotect the page. */
4292 os_protect(page_address(page_index), GENCGC_CARD_BYTES, OS_VM_PROT_ALL);
4293 page_table[page_index].write_protected_cleared = 1;
4294 page_table[page_index].write_protected = 0;
4295 } else if (!ignore_memoryfaults_on_unprotected_pages) {
4296 /* The only acceptable reason for this signal on a heap
4297 * access is that GENCGC write-protected the page.
4298 * However, if two CPUs hit a wp page near-simultaneously,
4299 * we had better not have the second one lose here if it
4300 * does this test after the first one has already set wp=0
4302 if(page_table[page_index].write_protected_cleared != 1) {
4303 void lisp_backtrace(int frames);
4306 "Fault @ %p, page %"PAGE_INDEX_FMT" not marked as write-protected:\n"
4307 " boxed_region.first_page: %"PAGE_INDEX_FMT","
4308 " boxed_region.last_page %"PAGE_INDEX_FMT"\n"
4309 " page.region_start_offset: %"OS_VM_SIZE_FMT"\n"
4310 " page.bytes_used: %"PAGE_BYTES_FMT"\n"
4311 " page.allocated: %d\n"
4312 " page.write_protected: %d\n"
4313 " page.write_protected_cleared: %d\n"
4314 " page.generation: %d\n",
4317 boxed_region.first_page,
4318 boxed_region.last_page,
4319 page_table[page_index].region_start_offset,
4320 page_table[page_index].bytes_used,
4321 page_table[page_index].allocated,
4322 page_table[page_index].write_protected,
4323 page_table[page_index].write_protected_cleared,
4324 page_table[page_index].gen);
4325 if (!continue_after_memoryfault_on_unprotected_pages)
4329 ret = thread_mutex_unlock(&free_pages_lock);
4330 gc_assert(ret == 0);
4331 /* Don't worry, we can handle it. */
4335 /* This is to be called when we catch a SIGSEGV/SIGBUS, determine that
4336 * it's not just a case of the program hitting the write barrier, and
4337 * are about to let Lisp deal with it. It's basically just a
4338 * convenient place to set a gdb breakpoint. */
4340 unhandled_sigmemoryfault(void *addr)
4343 void gc_alloc_update_all_page_tables(void)
4345 /* Flush the alloc regions updating the tables. */
4348 gc_alloc_update_page_tables(BOXED_PAGE_FLAG, &th->alloc_region);
4349 gc_alloc_update_page_tables(UNBOXED_PAGE_FLAG, &unboxed_region);
4350 gc_alloc_update_page_tables(BOXED_PAGE_FLAG, &boxed_region);
4354 gc_set_region_empty(struct alloc_region *region)
4356 region->first_page = 0;
4357 region->last_page = -1;
4358 region->start_addr = page_address(0);
4359 region->free_pointer = page_address(0);
4360 region->end_addr = page_address(0);
4364 zero_all_free_pages()
4368 for (i = 0; i < last_free_page; i++) {
4369 if (page_free_p(i)) {
4370 #ifdef READ_PROTECT_FREE_PAGES
4371 os_protect(page_address(i),
4380 /* Things to do before doing a final GC before saving a core (without
4383 * + Pages in large_object pages aren't moved by the GC, so we need to
4384 * unset that flag from all pages.
4385 * + The pseudo-static generation isn't normally collected, but it seems
4386 * reasonable to collect it at least when saving a core. So move the
4387 * pages to a normal generation.
4390 prepare_for_final_gc ()
4393 for (i = 0; i < last_free_page; i++) {
4394 page_table[i].large_object = 0;
4395 if (page_table[i].gen == PSEUDO_STATIC_GENERATION) {
4396 int used = page_table[i].bytes_used;
4397 page_table[i].gen = HIGHEST_NORMAL_GENERATION;
4398 generations[PSEUDO_STATIC_GENERATION].bytes_allocated -= used;
4399 generations[HIGHEST_NORMAL_GENERATION].bytes_allocated += used;
4405 /* Do a non-conservative GC, and then save a core with the initial
4406 * function being set to the value of the static symbol
4407 * SB!VM:RESTART-LISP-FUNCTION */
4409 gc_and_save(char *filename, boolean prepend_runtime,
4410 boolean save_runtime_options,
4411 boolean compressed, int compression_level)
4414 void *runtime_bytes = NULL;
4415 size_t runtime_size;
4417 file = prepare_to_save(filename, prepend_runtime, &runtime_bytes,
4422 conservative_stack = 0;
4424 /* The filename might come from Lisp, and be moved by the now
4425 * non-conservative GC. */
4426 filename = strdup(filename);
4428 /* Collect twice: once into relatively high memory, and then back
4429 * into low memory. This compacts the retained data into the lower
4430 * pages, minimizing the size of the core file.
4432 prepare_for_final_gc();
4433 gencgc_alloc_start_page = last_free_page;
4434 collect_garbage(HIGHEST_NORMAL_GENERATION+1);
4436 prepare_for_final_gc();
4437 gencgc_alloc_start_page = -1;
4438 collect_garbage(HIGHEST_NORMAL_GENERATION+1);
4440 if (prepend_runtime)
4441 save_runtime_to_filehandle(file, runtime_bytes, runtime_size);
4443 /* The dumper doesn't know that pages need to be zeroed before use. */
4444 zero_all_free_pages();
4445 save_to_filehandle(file, filename, SymbolValue(RESTART_LISP_FUNCTION,0),
4446 prepend_runtime, save_runtime_options,
4447 compressed ? compression_level : COMPRESSION_LEVEL_NONE);
4448 /* Oops. Save still managed to fail. Since we've mangled the stack
4449 * beyond hope, there's not much we can do.
4450 * (beyond FUNCALLing RESTART_LISP_FUNCTION, but I suspect that's
4451 * going to be rather unsatisfactory too... */
4452 lose("Attempt to save core after non-conservative GC failed.\n");