1.0.36.27: less mprotect calls in GENCGC
[sbcl.git] / src / runtime / gencgc.c
1 /*
2  * GENerational Conservative Garbage Collector for SBCL
3  */
4
5 /*
6  * This software is part of the SBCL system. See the README file for
7  * more information.
8  *
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.
14  */
15
16 /*
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>
23  * as
24  *   <ftp://ftp.cs.utexas.edu/pub/garbage/bigsurv.ps>.
25  */
26
27 #include <stdlib.h>
28 #include <stdio.h>
29 #include <signal.h>
30 #include <errno.h>
31 #include <string.h>
32 #include "sbcl.h"
33 #include "runtime.h"
34 #include "os.h"
35 #include "interr.h"
36 #include "globals.h"
37 #include "interrupt.h"
38 #include "validate.h"
39 #include "lispregs.h"
40 #include "arch.h"
41 #include "gc.h"
42 #include "gc-internal.h"
43 #include "thread.h"
44 #include "pseudo-atomic.h"
45 #include "alloc.h"
46 #include "genesis/vector.h"
47 #include "genesis/weak-pointer.h"
48 #include "genesis/fdefn.h"
49 #include "genesis/simple-fun.h"
50 #include "save.h"
51 #include "genesis/hash-table.h"
52 #include "genesis/instance.h"
53 #include "genesis/layout.h"
54 #include "gencgc.h"
55 #if defined(LUTEX_WIDETAG)
56 #include "pthread-lutex.h"
57 #endif
58
59 /* forward declarations */
60 page_index_t  gc_find_freeish_pages(long *restart_page_ptr, long nbytes,
61                                     int page_type_flag);
62
63 \f
64 /*
65  * GC parameters
66  */
67
68 /* Generations 0-5 are normal collected generations, 6 is only used as
69  * scratch space by the collector, and should never get collected.
70  */
71 enum {
72     SCRATCH_GENERATION = PSEUDO_STATIC_GENERATION+1,
73     NUM_GENERATIONS
74 };
75
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;
79
80 /* the minimum size (in bytes) for a large object*/
81 long large_object_size = 4 * PAGE_BYTES;
82
83 \f
84 /*
85  * debugging
86  */
87
88 /* the verbosity level. All non-error messages are disabled at level 0;
89  * and only a few rare messages are printed at level 1. */
90 #if QSHOW
91 boolean gencgc_verbose = 1;
92 #else
93 boolean gencgc_verbose = 0;
94 #endif
95
96 /* FIXME: At some point enable the various error-checking things below
97  * and see what they say. */
98
99 /* We hunt for pointers to old-space, when GCing generations >= verify_gen.
100  * Set verify_gens to HIGHEST_NORMAL_GENERATION + 1 to disable this kind of
101  * check. */
102 generation_index_t verify_gens = HIGHEST_NORMAL_GENERATION + 1;
103
104 /* Should we do a pre-scan verify of generation 0 before it's GCed? */
105 boolean pre_verify_gen_0 = 0;
106
107 /* Should we check for bad pointers after gc_free_heap is called
108  * from Lisp PURIFY? */
109 boolean verify_after_free_heap = 0;
110
111 /* Should we print a note when code objects are found in the dynamic space
112  * during a heap verify? */
113 boolean verify_dynamic_code_check = 0;
114
115 /* Should we check code objects for fixup errors after they are transported? */
116 boolean check_code_fixups = 0;
117
118 /* Should we check that newly allocated regions are zero filled? */
119 boolean gencgc_zero_check = 0;
120
121 /* Should we check that the free space is zero filled? */
122 boolean gencgc_enable_verify_zero_fill = 0;
123
124 /* Should we check that free pages are zero filled during gc_free_heap
125  * called after Lisp PURIFY? */
126 boolean gencgc_zero_check_during_free_heap = 0;
127
128 /* When loading a core, don't do a full scan of the memory for the
129  * memory region boundaries. (Set to true by coreparse.c if the core
130  * contained a pagetable entry).
131  */
132 boolean gencgc_partial_pickup = 0;
133
134 /* If defined, free pages are read-protected to ensure that nothing
135  * accesses them.
136  */
137
138 /* #define READ_PROTECT_FREE_PAGES */
139
140 \f
141 /*
142  * GC structures and variables
143  */
144
145 /* the total bytes allocated. These are seen by Lisp DYNAMIC-USAGE. */
146 unsigned long bytes_allocated = 0;
147 unsigned long auto_gc_trigger = 0;
148
149 /* the source and destination generations. These are set before a GC starts
150  * scavenging. */
151 generation_index_t from_space;
152 generation_index_t new_space;
153
154 /* Set to 1 when in GC */
155 boolean gc_active_p = 0;
156
157 /* should the GC be conservative on stack. If false (only right before
158  * saving a core), don't scan the stack / mark pages dont_move. */
159 static boolean conservative_stack = 1;
160
161 /* An array of page structures is allocated on gc initialization.
162  * This helps quickly map between an address its page structure.
163  * page_table_pages is set from the size of the dynamic space. */
164 page_index_t page_table_pages;
165 struct page *page_table;
166
167 static inline boolean page_allocated_p(page_index_t page) {
168     return (page_table[page].allocated != FREE_PAGE_FLAG);
169 }
170
171 static inline boolean page_no_region_p(page_index_t page) {
172     return !(page_table[page].allocated & OPEN_REGION_PAGE_FLAG);
173 }
174
175 static inline boolean page_allocated_no_region_p(page_index_t page) {
176     return ((page_table[page].allocated & (UNBOXED_PAGE_FLAG | BOXED_PAGE_FLAG))
177             && page_no_region_p(page));
178 }
179
180 static inline boolean page_free_p(page_index_t page) {
181     return (page_table[page].allocated == FREE_PAGE_FLAG);
182 }
183
184 static inline boolean page_boxed_p(page_index_t page) {
185     return (page_table[page].allocated & BOXED_PAGE_FLAG);
186 }
187
188 static inline boolean code_page_p(page_index_t page) {
189     return (page_table[page].allocated & CODE_PAGE_FLAG);
190 }
191
192 static inline boolean page_boxed_no_region_p(page_index_t page) {
193     return page_boxed_p(page) && page_no_region_p(page);
194 }
195
196 static inline boolean page_unboxed_p(page_index_t page) {
197     /* Both flags set == boxed code page */
198     return ((page_table[page].allocated & UNBOXED_PAGE_FLAG)
199             && !page_boxed_p(page));
200 }
201
202 static inline boolean protect_page_p(page_index_t page, generation_index_t generation) {
203     return (page_boxed_no_region_p(page)
204             && (page_table[page].bytes_used != 0)
205             && !page_table[page].dont_move
206             && (page_table[page].gen == generation));
207 }
208
209 /* To map addresses to page structures the address of the first page
210  * is needed. */
211 static void *heap_base = NULL;
212
213 /* Calculate the start address for the given page number. */
214 inline void *
215 page_address(page_index_t page_num)
216 {
217     return (heap_base + (page_num * PAGE_BYTES));
218 }
219
220 /* Calculate the address where the allocation region associated with
221  * the page starts. */
222 static inline void *
223 page_region_start(page_index_t page_index)
224 {
225     return page_address(page_index)-page_table[page_index].region_start_offset;
226 }
227
228 /* Find the page index within the page_table for the given
229  * address. Return -1 on failure. */
230 inline page_index_t
231 find_page_index(void *addr)
232 {
233     if (addr >= heap_base) {
234         page_index_t index = ((pointer_sized_uint_t)addr -
235                               (pointer_sized_uint_t)heap_base) / PAGE_BYTES;
236         if (index < page_table_pages)
237             return (index);
238     }
239     return (-1);
240 }
241
242 static size_t
243 npage_bytes(long npages)
244 {
245     gc_assert(npages>=0);
246     return ((unsigned long)npages)*PAGE_BYTES;
247 }
248
249 /* Check that X is a higher address than Y and return offset from Y to
250  * X in bytes. */
251 static inline
252 size_t void_diff(void *x, void *y)
253 {
254     gc_assert(x >= y);
255     return (pointer_sized_uint_t)x - (pointer_sized_uint_t)y;
256 }
257
258 /* a structure to hold the state of a generation
259  *
260  * CAUTION: If you modify this, make sure to touch up the alien
261  * definition in src/code/gc.lisp accordingly. ...or better yes,
262  * deal with the FIXME there...
263  */
264 struct generation {
265
266     /* the first page that gc_alloc() checks on its next call */
267     page_index_t alloc_start_page;
268
269     /* the first page that gc_alloc_unboxed() checks on its next call */
270     page_index_t alloc_unboxed_start_page;
271
272     /* the first page that gc_alloc_large (boxed) considers on its next
273      * call. (Although it always allocates after the boxed_region.) */
274     page_index_t alloc_large_start_page;
275
276     /* the first page that gc_alloc_large (unboxed) considers on its
277      * next call. (Although it always allocates after the
278      * current_unboxed_region.) */
279     page_index_t alloc_large_unboxed_start_page;
280
281     /* the bytes allocated to this generation */
282     unsigned long bytes_allocated;
283
284     /* the number of bytes at which to trigger a GC */
285     unsigned long gc_trigger;
286
287     /* to calculate a new level for gc_trigger */
288     unsigned long bytes_consed_between_gc;
289
290     /* the number of GCs since the last raise */
291     int num_gc;
292
293     /* the number of GCs to run on the generations before raising objects to the
294      * next generation */
295     int number_of_gcs_before_promotion;
296
297     /* the cumulative sum of the bytes allocated to this generation. It is
298      * cleared after a GC on this generations, and update before new
299      * objects are added from a GC of a younger generation. Dividing by
300      * the bytes_allocated will give the average age of the memory in
301      * this generation since its last GC. */
302     unsigned long cum_sum_bytes_allocated;
303
304     /* a minimum average memory age before a GC will occur helps
305      * prevent a GC when a large number of new live objects have been
306      * added, in which case a GC could be a waste of time */
307     double minimum_age_before_gc;
308
309     /* A linked list of lutex structures in this generation, used for
310      * implementing lutex finalization. */
311 #ifdef LUTEX_WIDETAG
312     struct lutex *lutexes;
313 #else
314     void *lutexes;
315 #endif
316 };
317
318 /* an array of generation structures. There needs to be one more
319  * generation structure than actual generations as the oldest
320  * generation is temporarily raised then lowered. */
321 struct generation generations[NUM_GENERATIONS];
322
323 /* the oldest generation that is will currently be GCed by default.
324  * Valid values are: 0, 1, ... HIGHEST_NORMAL_GENERATION
325  *
326  * The default of HIGHEST_NORMAL_GENERATION enables GC on all generations.
327  *
328  * Setting this to 0 effectively disables the generational nature of
329  * the GC. In some applications generational GC may not be useful
330  * because there are no long-lived objects.
331  *
332  * An intermediate value could be handy after moving long-lived data
333  * into an older generation so an unnecessary GC of this long-lived
334  * data can be avoided. */
335 generation_index_t gencgc_oldest_gen_to_gc = HIGHEST_NORMAL_GENERATION;
336
337 /* The maximum free page in the heap is maintained and used to update
338  * ALLOCATION_POINTER which is used by the room function to limit its
339  * search of the heap. XX Gencgc obviously needs to be better
340  * integrated with the Lisp code. */
341 page_index_t last_free_page;
342 \f
343 #ifdef LISP_FEATURE_SB_THREAD
344 /* This lock is to prevent multiple threads from simultaneously
345  * allocating new regions which overlap each other.  Note that the
346  * majority of GC is single-threaded, but alloc() may be called from
347  * >1 thread at a time and must be thread-safe.  This lock must be
348  * seized before all accesses to generations[] or to parts of
349  * page_table[] that other threads may want to see */
350 static pthread_mutex_t free_pages_lock = PTHREAD_MUTEX_INITIALIZER;
351 /* This lock is used to protect non-thread-local allocation. */
352 static pthread_mutex_t allocation_lock = PTHREAD_MUTEX_INITIALIZER;
353 #endif
354
355 \f
356 /*
357  * miscellaneous heap functions
358  */
359
360 /* Count the number of pages which are write-protected within the
361  * given generation. */
362 static long
363 count_write_protect_generation_pages(generation_index_t generation)
364 {
365     page_index_t i;
366     unsigned long count = 0;
367
368     for (i = 0; i < last_free_page; i++)
369         if (page_allocated_p(i)
370             && (page_table[i].gen == generation)
371             && (page_table[i].write_protected == 1))
372             count++;
373     return count;
374 }
375
376 /* Count the number of pages within the given generation. */
377 static long
378 count_generation_pages(generation_index_t generation)
379 {
380     page_index_t i;
381     long count = 0;
382
383     for (i = 0; i < last_free_page; i++)
384         if (page_allocated_p(i)
385             && (page_table[i].gen == generation))
386             count++;
387     return count;
388 }
389
390 #if QSHOW
391 static long
392 count_dont_move_pages(void)
393 {
394     page_index_t i;
395     long count = 0;
396     for (i = 0; i < last_free_page; i++) {
397         if (page_allocated_p(i)
398             && (page_table[i].dont_move != 0)) {
399             ++count;
400         }
401     }
402     return count;
403 }
404 #endif /* QSHOW */
405
406 /* Work through the pages and add up the number of bytes used for the
407  * given generation. */
408 static unsigned long
409 count_generation_bytes_allocated (generation_index_t gen)
410 {
411     page_index_t i;
412     unsigned long result = 0;
413     for (i = 0; i < last_free_page; i++) {
414         if (page_allocated_p(i)
415             && (page_table[i].gen == gen))
416             result += page_table[i].bytes_used;
417     }
418     return result;
419 }
420
421 /* Return the average age of the memory in a generation. */
422 extern double
423 generation_average_age(generation_index_t gen)
424 {
425     if (generations[gen].bytes_allocated == 0)
426         return 0.0;
427
428     return
429         ((double)generations[gen].cum_sum_bytes_allocated)
430         / ((double)generations[gen].bytes_allocated);
431 }
432
433 /* The verbose argument controls how much to print: 0 for normal
434  * level of detail; 1 for debugging. */
435 extern void
436 print_generation_stats() /* FIXME: should take FILE argument, or construct a string */
437 {
438     generation_index_t i;
439
440 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
441 #define FPU_STATE_SIZE 27
442     int fpu_state[FPU_STATE_SIZE];
443 #elif defined(LISP_FEATURE_PPC)
444 #define FPU_STATE_SIZE 32
445     long long fpu_state[FPU_STATE_SIZE];
446 #endif
447
448     /* This code uses the FP instructions which may be set up for Lisp
449      * so they need to be saved and reset for C. */
450     fpu_save(fpu_state);
451
452     /* Print the heap stats. */
453     fprintf(stderr,
454             " Gen StaPg UbSta LaSta LUbSt Boxed Unboxed LB   LUB  !move  Alloc  Waste   Trig    WP  GCs Mem-age\n");
455
456     for (i = 0; i < SCRATCH_GENERATION; i++) {
457         page_index_t j;
458         long boxed_cnt = 0;
459         long unboxed_cnt = 0;
460         long large_boxed_cnt = 0;
461         long large_unboxed_cnt = 0;
462         long pinned_cnt=0;
463
464         for (j = 0; j < last_free_page; j++)
465             if (page_table[j].gen == i) {
466
467                 /* Count the number of boxed pages within the given
468                  * generation. */
469                 if (page_boxed_p(j)) {
470                     if (page_table[j].large_object)
471                         large_boxed_cnt++;
472                     else
473                         boxed_cnt++;
474                 }
475                 if(page_table[j].dont_move) pinned_cnt++;
476                 /* Count the number of unboxed pages within the given
477                  * generation. */
478                 if (page_unboxed_p(j)) {
479                     if (page_table[j].large_object)
480                         large_unboxed_cnt++;
481                     else
482                         unboxed_cnt++;
483                 }
484             }
485
486         gc_assert(generations[i].bytes_allocated
487                   == count_generation_bytes_allocated(i));
488         fprintf(stderr,
489                 "   %1d: %5ld %5ld %5ld %5ld %5ld %5ld %5ld %5ld %5ld %8ld %5ld %8ld %4ld %3d %7.4f\n",
490                 i,
491                 generations[i].alloc_start_page,
492                 generations[i].alloc_unboxed_start_page,
493                 generations[i].alloc_large_start_page,
494                 generations[i].alloc_large_unboxed_start_page,
495                 boxed_cnt,
496                 unboxed_cnt,
497                 large_boxed_cnt,
498                 large_unboxed_cnt,
499                 pinned_cnt,
500                 generations[i].bytes_allocated,
501                 (npage_bytes(count_generation_pages(i))
502                  - generations[i].bytes_allocated),
503                 generations[i].gc_trigger,
504                 count_write_protect_generation_pages(i),
505                 generations[i].num_gc,
506                 generation_average_age(i));
507     }
508     fprintf(stderr,"   Total bytes allocated    = %lu\n", bytes_allocated);
509     fprintf(stderr,"   Dynamic-space-size bytes = %u\n", dynamic_space_size);
510
511     fpu_restore(fpu_state);
512 }
513 \f
514
515 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
516 void fast_bzero(void*, size_t); /* in <arch>-assem.S */
517 #endif
518
519 /* Zero the pages from START to END (inclusive), but use mmap/munmap instead
520  * if zeroing it ourselves, i.e. in practice give the memory back to the
521  * OS. Generally done after a large GC.
522  */
523 void zero_pages_with_mmap(page_index_t start, page_index_t end) {
524     int i;
525     void *addr = page_address(start), *new_addr;
526     size_t length = npage_bytes(1+end-start);
527
528     if (start > end)
529       return;
530
531     os_invalidate(addr, length);
532     new_addr = os_validate(addr, length);
533     if (new_addr == NULL || new_addr != addr) {
534         lose("remap_free_pages: page moved, 0x%08x ==> 0x%08x",
535              start, new_addr);
536     }
537
538     for (i = start; i <= end; i++) {
539         page_table[i].need_to_zero = 0;
540     }
541 }
542
543 /* Zero the pages from START to END (inclusive). Generally done just after
544  * a new region has been allocated.
545  */
546 static void
547 zero_pages(page_index_t start, page_index_t end) {
548     if (start > end)
549       return;
550
551 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
552     fast_bzero(page_address(start), npage_bytes(1+end-start));
553 #else
554     bzero(page_address(start), npage_bytes(1+end-start));
555 #endif
556
557 }
558
559 /* Zero the pages from START to END (inclusive), except for those
560  * pages that are known to already zeroed. Mark all pages in the
561  * ranges as non-zeroed.
562  */
563 static void
564 zero_dirty_pages(page_index_t start, page_index_t end) {
565     page_index_t i;
566
567     for (i = start; i <= end; i++) {
568         if (page_table[i].need_to_zero == 1) {
569             zero_pages(start, end);
570             break;
571         }
572     }
573
574     for (i = start; i <= end; i++) {
575         page_table[i].need_to_zero = 1;
576     }
577 }
578
579
580 /*
581  * To support quick and inline allocation, regions of memory can be
582  * allocated and then allocated from with just a free pointer and a
583  * check against an end address.
584  *
585  * Since objects can be allocated to spaces with different properties
586  * e.g. boxed/unboxed, generation, ages; there may need to be many
587  * allocation regions.
588  *
589  * Each allocation region may start within a partly used page. Many
590  * features of memory use are noted on a page wise basis, e.g. the
591  * generation; so if a region starts within an existing allocated page
592  * it must be consistent with this page.
593  *
594  * During the scavenging of the newspace, objects will be transported
595  * into an allocation region, and pointers updated to point to this
596  * allocation region. It is possible that these pointers will be
597  * scavenged again before the allocation region is closed, e.g. due to
598  * trans_list which jumps all over the place to cleanup the list. It
599  * is important to be able to determine properties of all objects
600  * pointed to when scavenging, e.g to detect pointers to the oldspace.
601  * Thus it's important that the allocation regions have the correct
602  * properties set when allocated, and not just set when closed. The
603  * region allocation routines return regions with the specified
604  * properties, and grab all the pages, setting their properties
605  * appropriately, except that the amount used is not known.
606  *
607  * These regions are used to support quicker allocation using just a
608  * free pointer. The actual space used by the region is not reflected
609  * in the pages tables until it is closed. It can't be scavenged until
610  * closed.
611  *
612  * When finished with the region it should be closed, which will
613  * update the page tables for the actual space used returning unused
614  * space. Further it may be noted in the new regions which is
615  * necessary when scavenging the newspace.
616  *
617  * Large objects may be allocated directly without an allocation
618  * region, the page tables are updated immediately.
619  *
620  * Unboxed objects don't contain pointers to other objects and so
621  * don't need scavenging. Further they can't contain pointers to
622  * younger generations so WP is not needed. By allocating pages to
623  * unboxed objects the whole page never needs scavenging or
624  * write-protecting. */
625
626 /* We are only using two regions at present. Both are for the current
627  * newspace generation. */
628 struct alloc_region boxed_region;
629 struct alloc_region unboxed_region;
630
631 /* The generation currently being allocated to. */
632 static generation_index_t gc_alloc_generation;
633
634 static inline page_index_t
635 generation_alloc_start_page(generation_index_t generation, int page_type_flag, int large)
636 {
637     if (large) {
638         if (UNBOXED_PAGE_FLAG == page_type_flag) {
639             return generations[generation].alloc_large_unboxed_start_page;
640         } else if (BOXED_PAGE_FLAG & page_type_flag) {
641             /* Both code and data. */
642             return generations[generation].alloc_large_start_page;
643         } else {
644             lose("bad page type flag: %d", page_type_flag);
645         }
646     } else {
647         if (UNBOXED_PAGE_FLAG == page_type_flag) {
648             return generations[generation].alloc_unboxed_start_page;
649         } else if (BOXED_PAGE_FLAG & page_type_flag) {
650             /* Both code and data. */
651             return generations[generation].alloc_start_page;
652         } else {
653             lose("bad page_type_flag: %d", page_type_flag);
654         }
655     }
656 }
657
658 static inline void
659 set_generation_alloc_start_page(generation_index_t generation, int page_type_flag, int large,
660                                 page_index_t page)
661 {
662     if (large) {
663         if (UNBOXED_PAGE_FLAG == page_type_flag) {
664             generations[generation].alloc_large_unboxed_start_page = page;
665         } else if (BOXED_PAGE_FLAG & page_type_flag) {
666             /* Both code and data. */
667             generations[generation].alloc_large_start_page = page;
668         } else {
669             lose("bad page type flag: %d", page_type_flag);
670         }
671     } else {
672         if (UNBOXED_PAGE_FLAG == page_type_flag) {
673             generations[generation].alloc_unboxed_start_page = page;
674         } else if (BOXED_PAGE_FLAG & page_type_flag) {
675             /* Both code and data. */
676             generations[generation].alloc_start_page = page;
677         } else {
678             lose("bad page type flag: %d", page_type_flag);
679         }
680     }
681 }
682
683 /* Find a new region with room for at least the given number of bytes.
684  *
685  * It starts looking at the current generation's alloc_start_page. So
686  * may pick up from the previous region if there is enough space. This
687  * keeps the allocation contiguous when scavenging the newspace.
688  *
689  * The alloc_region should have been closed by a call to
690  * gc_alloc_update_page_tables(), and will thus be in an empty state.
691  *
692  * To assist the scavenging functions write-protected pages are not
693  * used. Free pages should not be write-protected.
694  *
695  * It is critical to the conservative GC that the start of regions be
696  * known. To help achieve this only small regions are allocated at a
697  * time.
698  *
699  * During scavenging, pointers may be found to within the current
700  * region and the page generation must be set so that pointers to the
701  * from space can be recognized. Therefore the generation of pages in
702  * the region are set to gc_alloc_generation. To prevent another
703  * allocation call using the same pages, all the pages in the region
704  * are allocated, although they will initially be empty.
705  */
706 static void
707 gc_alloc_new_region(long nbytes, int page_type_flag, struct alloc_region *alloc_region)
708 {
709     page_index_t first_page;
710     page_index_t last_page;
711     unsigned long bytes_found;
712     page_index_t i;
713     int ret;
714
715     /*
716     FSHOW((stderr,
717            "/alloc_new_region for %d bytes from gen %d\n",
718            nbytes, gc_alloc_generation));
719     */
720
721     /* Check that the region is in a reset state. */
722     gc_assert((alloc_region->first_page == 0)
723               && (alloc_region->last_page == -1)
724               && (alloc_region->free_pointer == alloc_region->end_addr));
725     ret = thread_mutex_lock(&free_pages_lock);
726     gc_assert(ret == 0);
727     first_page = generation_alloc_start_page(gc_alloc_generation, page_type_flag, 0);
728     last_page=gc_find_freeish_pages(&first_page, nbytes, page_type_flag);
729     bytes_found=(PAGE_BYTES - page_table[first_page].bytes_used)
730             + npage_bytes(last_page-first_page);
731
732     /* Set up the alloc_region. */
733     alloc_region->first_page = first_page;
734     alloc_region->last_page = last_page;
735     alloc_region->start_addr = page_table[first_page].bytes_used
736         + page_address(first_page);
737     alloc_region->free_pointer = alloc_region->start_addr;
738     alloc_region->end_addr = alloc_region->start_addr + bytes_found;
739
740     /* Set up the pages. */
741
742     /* The first page may have already been in use. */
743     if (page_table[first_page].bytes_used == 0) {
744         page_table[first_page].allocated = page_type_flag;
745         page_table[first_page].gen = gc_alloc_generation;
746         page_table[first_page].large_object = 0;
747         page_table[first_page].region_start_offset = 0;
748     }
749
750     gc_assert(page_table[first_page].allocated == page_type_flag);
751     page_table[first_page].allocated |= OPEN_REGION_PAGE_FLAG;
752
753     gc_assert(page_table[first_page].gen == gc_alloc_generation);
754     gc_assert(page_table[first_page].large_object == 0);
755
756     for (i = first_page+1; i <= last_page; i++) {
757         page_table[i].allocated = page_type_flag;
758         page_table[i].gen = gc_alloc_generation;
759         page_table[i].large_object = 0;
760         /* This may not be necessary for unboxed regions (think it was
761          * broken before!) */
762         page_table[i].region_start_offset =
763             void_diff(page_address(i),alloc_region->start_addr);
764         page_table[i].allocated |= OPEN_REGION_PAGE_FLAG ;
765     }
766     /* Bump up last_free_page. */
767     if (last_page+1 > last_free_page) {
768         last_free_page = last_page+1;
769         /* do we only want to call this on special occasions? like for
770          * boxed_region? */
771         set_alloc_pointer((lispobj)page_address(last_free_page));
772     }
773     ret = thread_mutex_unlock(&free_pages_lock);
774     gc_assert(ret == 0);
775
776 #ifdef READ_PROTECT_FREE_PAGES
777     os_protect(page_address(first_page),
778                npage_bytes(1+last_page-first_page),
779                OS_VM_PROT_ALL);
780 #endif
781
782     /* If the first page was only partial, don't check whether it's
783      * zeroed (it won't be) and don't zero it (since the parts that
784      * we're interested in are guaranteed to be zeroed).
785      */
786     if (page_table[first_page].bytes_used) {
787         first_page++;
788     }
789
790     zero_dirty_pages(first_page, last_page);
791
792     /* we can do this after releasing free_pages_lock */
793     if (gencgc_zero_check) {
794         long *p;
795         for (p = (long *)alloc_region->start_addr;
796              p < (long *)alloc_region->end_addr; p++) {
797             if (*p != 0) {
798                 /* KLUDGE: It would be nice to use %lx and explicit casts
799                  * (long) in code like this, so that it is less likely to
800                  * break randomly when running on a machine with different
801                  * word sizes. -- WHN 19991129 */
802                 lose("The new region at %x is not zero (start=%p, end=%p).\n",
803                      p, alloc_region->start_addr, alloc_region->end_addr);
804             }
805         }
806     }
807 }
808
809 /* If the record_new_objects flag is 2 then all new regions created
810  * are recorded.
811  *
812  * If it's 1 then then it is only recorded if the first page of the
813  * current region is <= new_areas_ignore_page. This helps avoid
814  * unnecessary recording when doing full scavenge pass.
815  *
816  * The new_object structure holds the page, byte offset, and size of
817  * new regions of objects. Each new area is placed in the array of
818  * these structures pointer to by new_areas. new_areas_index holds the
819  * offset into new_areas.
820  *
821  * If new_area overflows NUM_NEW_AREAS then it stops adding them. The
822  * later code must detect this and handle it, probably by doing a full
823  * scavenge of a generation. */
824 #define NUM_NEW_AREAS 512
825 static int record_new_objects = 0;
826 static page_index_t new_areas_ignore_page;
827 struct new_area {
828     page_index_t page;
829     size_t offset;
830     size_t size;
831 };
832 static struct new_area (*new_areas)[];
833 static long new_areas_index;
834 long max_new_areas;
835
836 /* Add a new area to new_areas. */
837 static void
838 add_new_area(page_index_t first_page, size_t offset, size_t size)
839 {
840     unsigned long new_area_start,c;
841     long i;
842
843     /* Ignore if full. */
844     if (new_areas_index >= NUM_NEW_AREAS)
845         return;
846
847     switch (record_new_objects) {
848     case 0:
849         return;
850     case 1:
851         if (first_page > new_areas_ignore_page)
852             return;
853         break;
854     case 2:
855         break;
856     default:
857         gc_abort();
858     }
859
860     new_area_start = npage_bytes(first_page) + offset;
861
862     /* Search backwards for a prior area that this follows from. If
863        found this will save adding a new area. */
864     for (i = new_areas_index-1, c = 0; (i >= 0) && (c < 8); i--, c++) {
865         unsigned long area_end =
866             npage_bytes((*new_areas)[i].page)
867             + (*new_areas)[i].offset
868             + (*new_areas)[i].size;
869         /*FSHOW((stderr,
870                "/add_new_area S1 %d %d %d %d\n",
871                i, c, new_area_start, area_end));*/
872         if (new_area_start == area_end) {
873             /*FSHOW((stderr,
874                    "/adding to [%d] %d %d %d with %d %d %d:\n",
875                    i,
876                    (*new_areas)[i].page,
877                    (*new_areas)[i].offset,
878                    (*new_areas)[i].size,
879                    first_page,
880                    offset,
881                     size);*/
882             (*new_areas)[i].size += size;
883             return;
884         }
885     }
886
887     (*new_areas)[new_areas_index].page = first_page;
888     (*new_areas)[new_areas_index].offset = offset;
889     (*new_areas)[new_areas_index].size = size;
890     /*FSHOW((stderr,
891            "/new_area %d page %d offset %d size %d\n",
892            new_areas_index, first_page, offset, size));*/
893     new_areas_index++;
894
895     /* Note the max new_areas used. */
896     if (new_areas_index > max_new_areas)
897         max_new_areas = new_areas_index;
898 }
899
900 /* Update the tables for the alloc_region. The region may be added to
901  * the new_areas.
902  *
903  * When done the alloc_region is set up so that the next quick alloc
904  * will fail safely and thus a new region will be allocated. Further
905  * it is safe to try to re-update the page table of this reset
906  * alloc_region. */
907 void
908 gc_alloc_update_page_tables(int page_type_flag, struct alloc_region *alloc_region)
909 {
910     int more;
911     page_index_t first_page;
912     page_index_t next_page;
913     unsigned long bytes_used;
914     unsigned long orig_first_page_bytes_used;
915     unsigned long region_size;
916     unsigned long byte_cnt;
917     int ret;
918
919
920     first_page = alloc_region->first_page;
921
922     /* Catch an unused alloc_region. */
923     if ((first_page == 0) && (alloc_region->last_page == -1))
924         return;
925
926     next_page = first_page+1;
927
928     ret = thread_mutex_lock(&free_pages_lock);
929     gc_assert(ret == 0);
930     if (alloc_region->free_pointer != alloc_region->start_addr) {
931         /* some bytes were allocated in the region */
932         orig_first_page_bytes_used = page_table[first_page].bytes_used;
933
934         gc_assert(alloc_region->start_addr ==
935                   (page_address(first_page)
936                    + page_table[first_page].bytes_used));
937
938         /* All the pages used need to be updated */
939
940         /* Update the first page. */
941
942         /* If the page was free then set up the gen, and
943          * region_start_offset. */
944         if (page_table[first_page].bytes_used == 0)
945             gc_assert(page_table[first_page].region_start_offset == 0);
946         page_table[first_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
947
948         gc_assert(page_table[first_page].allocated & page_type_flag);
949         gc_assert(page_table[first_page].gen == gc_alloc_generation);
950         gc_assert(page_table[first_page].large_object == 0);
951
952         byte_cnt = 0;
953
954         /* Calculate the number of bytes used in this page. This is not
955          * always the number of new bytes, unless it was free. */
956         more = 0;
957         if ((bytes_used = void_diff(alloc_region->free_pointer,
958                                     page_address(first_page)))
959             >PAGE_BYTES) {
960             bytes_used = PAGE_BYTES;
961             more = 1;
962         }
963         page_table[first_page].bytes_used = bytes_used;
964         byte_cnt += bytes_used;
965
966
967         /* All the rest of the pages should be free. We need to set
968          * their region_start_offset pointer to the start of the
969          * region, and set the bytes_used. */
970         while (more) {
971             page_table[next_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
972             gc_assert(page_table[next_page].allocated & page_type_flag);
973             gc_assert(page_table[next_page].bytes_used == 0);
974             gc_assert(page_table[next_page].gen == gc_alloc_generation);
975             gc_assert(page_table[next_page].large_object == 0);
976
977             gc_assert(page_table[next_page].region_start_offset ==
978                       void_diff(page_address(next_page),
979                                 alloc_region->start_addr));
980
981             /* Calculate the number of bytes used in this page. */
982             more = 0;
983             if ((bytes_used = void_diff(alloc_region->free_pointer,
984                                         page_address(next_page)))>PAGE_BYTES) {
985                 bytes_used = PAGE_BYTES;
986                 more = 1;
987             }
988             page_table[next_page].bytes_used = bytes_used;
989             byte_cnt += bytes_used;
990
991             next_page++;
992         }
993
994         region_size = void_diff(alloc_region->free_pointer,
995                                 alloc_region->start_addr);
996         bytes_allocated += region_size;
997         generations[gc_alloc_generation].bytes_allocated += region_size;
998
999         gc_assert((byte_cnt- orig_first_page_bytes_used) == region_size);
1000
1001         /* Set the generations alloc restart page to the last page of
1002          * the region. */
1003         set_generation_alloc_start_page(gc_alloc_generation, page_type_flag, 0, next_page-1);
1004
1005         /* Add the region to the new_areas if requested. */
1006         if (BOXED_PAGE_FLAG & page_type_flag)
1007             add_new_area(first_page,orig_first_page_bytes_used, region_size);
1008
1009         /*
1010         FSHOW((stderr,
1011                "/gc_alloc_update_page_tables update %d bytes to gen %d\n",
1012                region_size,
1013                gc_alloc_generation));
1014         */
1015     } else {
1016         /* There are no bytes allocated. Unallocate the first_page if
1017          * there are 0 bytes_used. */
1018         page_table[first_page].allocated &= ~(OPEN_REGION_PAGE_FLAG);
1019         if (page_table[first_page].bytes_used == 0)
1020             page_table[first_page].allocated = FREE_PAGE_FLAG;
1021     }
1022
1023     /* Unallocate any unused pages. */
1024     while (next_page <= alloc_region->last_page) {
1025         gc_assert(page_table[next_page].bytes_used == 0);
1026         page_table[next_page].allocated = FREE_PAGE_FLAG;
1027         next_page++;
1028     }
1029     ret = thread_mutex_unlock(&free_pages_lock);
1030     gc_assert(ret == 0);
1031
1032     /* alloc_region is per-thread, we're ok to do this unlocked */
1033     gc_set_region_empty(alloc_region);
1034 }
1035
1036 static inline void *gc_quick_alloc(long nbytes);
1037
1038 /* Allocate a possibly large object. */
1039 void *
1040 gc_alloc_large(long nbytes, int page_type_flag, struct alloc_region *alloc_region)
1041 {
1042     page_index_t first_page;
1043     page_index_t last_page;
1044     int orig_first_page_bytes_used;
1045     long byte_cnt;
1046     int more;
1047     unsigned long bytes_used;
1048     page_index_t next_page;
1049     int ret;
1050
1051     ret = thread_mutex_lock(&free_pages_lock);
1052     gc_assert(ret == 0);
1053
1054     first_page = generation_alloc_start_page(gc_alloc_generation, page_type_flag, 1);
1055     if (first_page <= alloc_region->last_page) {
1056         first_page = alloc_region->last_page+1;
1057     }
1058
1059     last_page=gc_find_freeish_pages(&first_page,nbytes, page_type_flag);
1060
1061     gc_assert(first_page > alloc_region->last_page);
1062
1063     set_generation_alloc_start_page(gc_alloc_generation, page_type_flag, 1, last_page);
1064
1065     /* Set up the pages. */
1066     orig_first_page_bytes_used = page_table[first_page].bytes_used;
1067
1068     /* If the first page was free then set up the gen, and
1069      * region_start_offset. */
1070     if (page_table[first_page].bytes_used == 0) {
1071         page_table[first_page].allocated = page_type_flag;
1072         page_table[first_page].gen = gc_alloc_generation;
1073         page_table[first_page].region_start_offset = 0;
1074         page_table[first_page].large_object = 1;
1075     }
1076
1077     gc_assert(page_table[first_page].allocated == page_type_flag);
1078     gc_assert(page_table[first_page].gen == gc_alloc_generation);
1079     gc_assert(page_table[first_page].large_object == 1);
1080
1081     byte_cnt = 0;
1082
1083     /* Calc. the number of bytes used in this page. This is not
1084      * always the number of new bytes, unless it was free. */
1085     more = 0;
1086     if ((bytes_used = nbytes+orig_first_page_bytes_used) > PAGE_BYTES) {
1087         bytes_used = PAGE_BYTES;
1088         more = 1;
1089     }
1090     page_table[first_page].bytes_used = bytes_used;
1091     byte_cnt += bytes_used;
1092
1093     next_page = first_page+1;
1094
1095     /* All the rest of the pages should be free. We need to set their
1096      * region_start_offset pointer to the start of the region, and set
1097      * the bytes_used. */
1098     while (more) {
1099         gc_assert(page_free_p(next_page));
1100         gc_assert(page_table[next_page].bytes_used == 0);
1101         page_table[next_page].allocated = page_type_flag;
1102         page_table[next_page].gen = gc_alloc_generation;
1103         page_table[next_page].large_object = 1;
1104
1105         page_table[next_page].region_start_offset =
1106             npage_bytes(next_page-first_page) - orig_first_page_bytes_used;
1107
1108         /* Calculate the number of bytes used in this page. */
1109         more = 0;
1110         bytes_used=(nbytes+orig_first_page_bytes_used)-byte_cnt;
1111         if (bytes_used > PAGE_BYTES) {
1112             bytes_used = PAGE_BYTES;
1113             more = 1;
1114         }
1115         page_table[next_page].bytes_used = bytes_used;
1116         page_table[next_page].write_protected=0;
1117         page_table[next_page].dont_move=0;
1118         byte_cnt += bytes_used;
1119         next_page++;
1120     }
1121
1122     gc_assert((byte_cnt-orig_first_page_bytes_used) == nbytes);
1123
1124     bytes_allocated += nbytes;
1125     generations[gc_alloc_generation].bytes_allocated += nbytes;
1126
1127     /* Add the region to the new_areas if requested. */
1128     if (BOXED_PAGE_FLAG & page_type_flag)
1129         add_new_area(first_page,orig_first_page_bytes_used,nbytes);
1130
1131     /* Bump up last_free_page */
1132     if (last_page+1 > last_free_page) {
1133         last_free_page = last_page+1;
1134         set_alloc_pointer((lispobj)(page_address(last_free_page)));
1135     }
1136     ret = thread_mutex_unlock(&free_pages_lock);
1137     gc_assert(ret == 0);
1138
1139 #ifdef READ_PROTECT_FREE_PAGES
1140     os_protect(page_address(first_page),
1141                npage_bytes(1+last_page-first_page),
1142                OS_VM_PROT_ALL);
1143 #endif
1144
1145     zero_dirty_pages(first_page, last_page);
1146
1147     return page_address(first_page);
1148 }
1149
1150 static page_index_t gencgc_alloc_start_page = -1;
1151
1152 void
1153 gc_heap_exhausted_error_or_lose (long available, long requested)
1154 {
1155     struct thread *thread = arch_os_get_current_thread();
1156     /* Write basic information before doing anything else: if we don't
1157      * call to lisp this is a must, and even if we do there is always
1158      * the danger that we bounce back here before the error has been
1159      * handled, or indeed even printed.
1160      */
1161     fprintf(stderr, "Heap exhausted during %s: %ld bytes available, %ld requested.\n",
1162             gc_active_p ? "garbage collection" : "allocation",
1163             available, requested);
1164     if (gc_active_p || (available == 0)) {
1165         /* If we are in GC, or totally out of memory there is no way
1166          * to sanely transfer control to the lisp-side of things.
1167          */
1168         print_generation_stats();
1169         fprintf(stderr, "GC control variables:\n");
1170         fprintf(stderr, "          *GC-INHIBIT* = %s\n          *GC-PENDING* = %s\n",
1171                 SymbolValue(GC_INHIBIT,thread)==NIL ? "false" : "true",
1172                 (SymbolValue(GC_PENDING, thread) == T) ?
1173                 "true" : ((SymbolValue(GC_PENDING, thread) == NIL) ?
1174                   "false" : "in progress"));
1175 #ifdef LISP_FEATURE_SB_THREAD
1176         fprintf(stderr, " *STOP-FOR-GC-PENDING* = %s\n",
1177                 SymbolValue(STOP_FOR_GC_PENDING,thread)==NIL ? "false" : "true");
1178 #endif
1179         lose("Heap exhausted, game over.");
1180     }
1181     else {
1182         /* FIXME: assert free_pages_lock held */
1183         (void)thread_mutex_unlock(&free_pages_lock);
1184         gc_assert(get_pseudo_atomic_atomic(thread));
1185         clear_pseudo_atomic_atomic(thread);
1186         if (get_pseudo_atomic_interrupted(thread))
1187             do_pending_interrupt();
1188         /* Another issue is that signalling HEAP-EXHAUSTED error leads
1189          * to running user code at arbitrary places, even in a
1190          * WITHOUT-INTERRUPTS which may lead to a deadlock without
1191          * running out of the heap. So at this point all bets are
1192          * off. */
1193         if (SymbolValue(INTERRUPTS_ENABLED,thread) == NIL)
1194             corruption_warning_and_maybe_lose
1195                 ("Signalling HEAP-EXHAUSTED in a WITHOUT-INTERRUPTS.");
1196         funcall2(StaticSymbolFunction(HEAP_EXHAUSTED_ERROR),
1197                  alloc_number(available), alloc_number(requested));
1198         lose("HEAP-EXHAUSTED-ERROR fell through");
1199     }
1200 }
1201
1202 page_index_t
1203 gc_find_freeish_pages(page_index_t *restart_page_ptr, long nbytes,
1204                       int page_type_flag)
1205 {
1206     page_index_t first_page, last_page;
1207     page_index_t restart_page = *restart_page_ptr;
1208     long bytes_found = 0;
1209     long most_bytes_found = 0;
1210     /* FIXME: assert(free_pages_lock is held); */
1211
1212     /* Toggled by gc_and_save for heap compaction, normally -1. */
1213     if (gencgc_alloc_start_page != -1) {
1214         restart_page = gencgc_alloc_start_page;
1215     }
1216
1217     gc_assert(nbytes>=0);
1218     if (((unsigned long)nbytes)>=PAGE_BYTES) {
1219         /* Search for a contiguous free space of at least nbytes,
1220          * aligned on a page boundary. The page-alignment is strictly
1221          * speaking needed only for objects at least large_object_size
1222          * bytes in size. */
1223         do {
1224             first_page = restart_page;
1225             while ((first_page < page_table_pages) &&
1226                    page_allocated_p(first_page))
1227                 first_page++;
1228
1229             last_page = first_page;
1230             bytes_found = PAGE_BYTES;
1231             while ((bytes_found < nbytes) &&
1232                    (last_page < (page_table_pages-1)) &&
1233                    page_free_p(last_page+1)) {
1234                 last_page++;
1235                 bytes_found += PAGE_BYTES;
1236                 gc_assert(0 == page_table[last_page].bytes_used);
1237                 gc_assert(0 == page_table[last_page].write_protected);
1238             }
1239             if (bytes_found > most_bytes_found)
1240                 most_bytes_found = bytes_found;
1241             restart_page = last_page + 1;
1242         } while ((restart_page < page_table_pages) && (bytes_found < nbytes));
1243
1244     } else {
1245         /* Search for a page with at least nbytes of space. We prefer
1246          * not to split small objects on multiple pages, to reduce the
1247          * number of contiguous allocation regions spaning multiple
1248          * pages: this helps avoid excessive conservativism. */
1249         first_page = restart_page;
1250         while (first_page < page_table_pages) {
1251             if (page_free_p(first_page))
1252                 {
1253                     gc_assert(0 == page_table[first_page].bytes_used);
1254                     bytes_found = PAGE_BYTES;
1255                     break;
1256                 }
1257             else if ((page_table[first_page].allocated == page_type_flag) &&
1258                      (page_table[first_page].large_object == 0) &&
1259                      (page_table[first_page].gen == gc_alloc_generation) &&
1260                      (page_table[first_page].write_protected == 0) &&
1261                      (page_table[first_page].dont_move == 0))
1262                 {
1263                     bytes_found = PAGE_BYTES
1264                         - page_table[first_page].bytes_used;
1265                     if (bytes_found > most_bytes_found)
1266                         most_bytes_found = bytes_found;
1267                     if (bytes_found >= nbytes)
1268                         break;
1269                 }
1270             first_page++;
1271         }
1272         last_page = first_page;
1273         restart_page = first_page + 1;
1274     }
1275
1276     /* Check for a failure */
1277     if (bytes_found < nbytes) {
1278         gc_assert(restart_page >= page_table_pages);
1279         gc_heap_exhausted_error_or_lose(most_bytes_found, nbytes);
1280     }
1281
1282     gc_assert(page_table[first_page].write_protected == 0);
1283
1284     *restart_page_ptr = first_page;
1285     return last_page;
1286 }
1287
1288 /* Allocate bytes.  All the rest of the special-purpose allocation
1289  * functions will eventually call this  */
1290
1291 void *
1292 gc_alloc_with_region(long nbytes,int page_type_flag, struct alloc_region *my_region,
1293                      int quick_p)
1294 {
1295     void *new_free_pointer;
1296
1297     if (nbytes>=large_object_size)
1298         return gc_alloc_large(nbytes, page_type_flag, my_region);
1299
1300     /* Check whether there is room in the current alloc region. */
1301     new_free_pointer = my_region->free_pointer + nbytes;
1302
1303     /* fprintf(stderr, "alloc %d bytes from %p to %p\n", nbytes,
1304        my_region->free_pointer, new_free_pointer); */
1305
1306     if (new_free_pointer <= my_region->end_addr) {
1307         /* If so then allocate from the current alloc region. */
1308         void *new_obj = my_region->free_pointer;
1309         my_region->free_pointer = new_free_pointer;
1310
1311         /* Unless a `quick' alloc was requested, check whether the
1312            alloc region is almost empty. */
1313         if (!quick_p &&
1314             void_diff(my_region->end_addr,my_region->free_pointer) <= 32) {
1315             /* If so, finished with the current region. */
1316             gc_alloc_update_page_tables(page_type_flag, my_region);
1317             /* Set up a new region. */
1318             gc_alloc_new_region(32 /*bytes*/, page_type_flag, my_region);
1319         }
1320
1321         return((void *)new_obj);
1322     }
1323
1324     /* Else not enough free space in the current region: retry with a
1325      * new region. */
1326
1327     gc_alloc_update_page_tables(page_type_flag, my_region);
1328     gc_alloc_new_region(nbytes, page_type_flag, my_region);
1329     return gc_alloc_with_region(nbytes, page_type_flag, my_region,0);
1330 }
1331
1332 /* these are only used during GC: all allocation from the mutator calls
1333  * alloc() -> gc_alloc_with_region() with the appropriate per-thread
1334  * region */
1335
1336 static inline void *
1337 gc_quick_alloc(long nbytes)
1338 {
1339     return gc_general_alloc(nbytes, BOXED_PAGE_FLAG, ALLOC_QUICK);
1340 }
1341
1342 static inline void *
1343 gc_quick_alloc_large(long nbytes)
1344 {
1345     return gc_general_alloc(nbytes, BOXED_PAGE_FLAG ,ALLOC_QUICK);
1346 }
1347
1348 static inline void *
1349 gc_alloc_unboxed(long nbytes)
1350 {
1351     return gc_general_alloc(nbytes, UNBOXED_PAGE_FLAG, 0);
1352 }
1353
1354 static inline void *
1355 gc_quick_alloc_unboxed(long nbytes)
1356 {
1357     return gc_general_alloc(nbytes, UNBOXED_PAGE_FLAG, ALLOC_QUICK);
1358 }
1359
1360 static inline void *
1361 gc_quick_alloc_large_unboxed(long nbytes)
1362 {
1363     return gc_general_alloc(nbytes, UNBOXED_PAGE_FLAG, ALLOC_QUICK);
1364 }
1365 \f
1366
1367 /* Copy a large boxed object. If the object is in a large object
1368  * region then it is simply promoted, else it is copied. If it's large
1369  * enough then it's copied to a large object region.
1370  *
1371  * Vectors may have shrunk. If the object is not copied the space
1372  * needs to be reclaimed, and the page_tables corrected. */
1373 lispobj
1374 copy_large_object(lispobj object, long nwords)
1375 {
1376     int tag;
1377     lispobj *new;
1378     page_index_t first_page;
1379
1380     gc_assert(is_lisp_pointer(object));
1381     gc_assert(from_space_p(object));
1382     gc_assert((nwords & 0x01) == 0);
1383
1384
1385     /* Check whether it's in a large object region. */
1386     first_page = find_page_index((void *)object);
1387     gc_assert(first_page >= 0);
1388
1389     if (page_table[first_page].large_object) {
1390
1391         /* Promote the object. */
1392
1393         unsigned long remaining_bytes;
1394         page_index_t next_page;
1395         unsigned long bytes_freed;
1396         unsigned long old_bytes_used;
1397
1398         /* Note: Any page write-protection must be removed, else a
1399          * later scavenge_newspace may incorrectly not scavenge these
1400          * pages. This would not be necessary if they are added to the
1401          * new areas, but let's do it for them all (they'll probably
1402          * be written anyway?). */
1403
1404         gc_assert(page_table[first_page].region_start_offset == 0);
1405
1406         next_page = first_page;
1407         remaining_bytes = nwords*N_WORD_BYTES;
1408         while (remaining_bytes > PAGE_BYTES) {
1409             gc_assert(page_table[next_page].gen == from_space);
1410             gc_assert(page_boxed_p(next_page));
1411             gc_assert(page_table[next_page].large_object);
1412             gc_assert(page_table[next_page].region_start_offset ==
1413                       npage_bytes(next_page-first_page));
1414             gc_assert(page_table[next_page].bytes_used == PAGE_BYTES);
1415             /* Should have been unprotected by unprotect_oldspace(). */
1416             gc_assert(page_table[next_page].write_protected == 0);
1417
1418             page_table[next_page].gen = new_space;
1419
1420             remaining_bytes -= PAGE_BYTES;
1421             next_page++;
1422         }
1423
1424         /* Now only one page remains, but the object may have shrunk
1425          * so there may be more unused pages which will be freed. */
1426
1427         /* The object may have shrunk but shouldn't have grown. */
1428         gc_assert(page_table[next_page].bytes_used >= remaining_bytes);
1429
1430         page_table[next_page].gen = new_space;
1431         gc_assert(page_boxed_p(next_page));
1432
1433         /* Adjust the bytes_used. */
1434         old_bytes_used = page_table[next_page].bytes_used;
1435         page_table[next_page].bytes_used = remaining_bytes;
1436
1437         bytes_freed = old_bytes_used - remaining_bytes;
1438
1439         /* Free any remaining pages; needs care. */
1440         next_page++;
1441         while ((old_bytes_used == PAGE_BYTES) &&
1442                (page_table[next_page].gen == from_space) &&
1443                page_boxed_p(next_page) &&
1444                page_table[next_page].large_object &&
1445                (page_table[next_page].region_start_offset ==
1446                 npage_bytes(next_page - first_page))) {
1447             /* Checks out OK, free the page. Don't need to bother zeroing
1448              * pages as this should have been done before shrinking the
1449              * object. These pages shouldn't be write-protected as they
1450              * should be zero filled. */
1451             gc_assert(page_table[next_page].write_protected == 0);
1452
1453             old_bytes_used = page_table[next_page].bytes_used;
1454             page_table[next_page].allocated = FREE_PAGE_FLAG;
1455             page_table[next_page].bytes_used = 0;
1456             bytes_freed += old_bytes_used;
1457             next_page++;
1458         }
1459
1460         generations[from_space].bytes_allocated -= N_WORD_BYTES*nwords
1461             + bytes_freed;
1462         generations[new_space].bytes_allocated += N_WORD_BYTES*nwords;
1463         bytes_allocated -= bytes_freed;
1464
1465         /* Add the region to the new_areas if requested. */
1466         add_new_area(first_page,0,nwords*N_WORD_BYTES);
1467
1468         return(object);
1469     } else {
1470         /* Get tag of object. */
1471         tag = lowtag_of(object);
1472
1473         /* Allocate space. */
1474         new = gc_quick_alloc_large(nwords*N_WORD_BYTES);
1475
1476         memcpy(new,native_pointer(object),nwords*N_WORD_BYTES);
1477
1478         /* Return Lisp pointer of new object. */
1479         return ((lispobj) new) | tag;
1480     }
1481 }
1482
1483 /* to copy unboxed objects */
1484 lispobj
1485 copy_unboxed_object(lispobj object, long nwords)
1486 {
1487     long tag;
1488     lispobj *new;
1489
1490     gc_assert(is_lisp_pointer(object));
1491     gc_assert(from_space_p(object));
1492     gc_assert((nwords & 0x01) == 0);
1493
1494     /* Get tag of object. */
1495     tag = lowtag_of(object);
1496
1497     /* Allocate space. */
1498     new = gc_quick_alloc_unboxed(nwords*N_WORD_BYTES);
1499
1500     memcpy(new,native_pointer(object),nwords*N_WORD_BYTES);
1501
1502     /* Return Lisp pointer of new object. */
1503     return ((lispobj) new) | tag;
1504 }
1505
1506 /* to copy large unboxed objects
1507  *
1508  * If the object is in a large object region then it is simply
1509  * promoted, else it is copied. If it's large enough then it's copied
1510  * to a large object region.
1511  *
1512  * Bignums and vectors may have shrunk. If the object is not copied
1513  * the space needs to be reclaimed, and the page_tables corrected.
1514  *
1515  * KLUDGE: There's a lot of cut-and-paste duplication between this
1516  * function and copy_large_object(..). -- WHN 20000619 */
1517 lispobj
1518 copy_large_unboxed_object(lispobj object, long nwords)
1519 {
1520     int tag;
1521     lispobj *new;
1522     page_index_t first_page;
1523
1524     gc_assert(is_lisp_pointer(object));
1525     gc_assert(from_space_p(object));
1526     gc_assert((nwords & 0x01) == 0);
1527
1528     if ((nwords > 1024*1024) && gencgc_verbose) {
1529         FSHOW((stderr, "/copy_large_unboxed_object: %d bytes\n",
1530                nwords*N_WORD_BYTES));
1531     }
1532
1533     /* Check whether it's a large object. */
1534     first_page = find_page_index((void *)object);
1535     gc_assert(first_page >= 0);
1536
1537     if (page_table[first_page].large_object) {
1538         /* Promote the object. Note: Unboxed objects may have been
1539          * allocated to a BOXED region so it may be necessary to
1540          * change the region to UNBOXED. */
1541         unsigned long remaining_bytes;
1542         page_index_t next_page;
1543         unsigned long bytes_freed;
1544         unsigned long old_bytes_used;
1545
1546         gc_assert(page_table[first_page].region_start_offset == 0);
1547
1548         next_page = first_page;
1549         remaining_bytes = nwords*N_WORD_BYTES;
1550         while (remaining_bytes > PAGE_BYTES) {
1551             gc_assert(page_table[next_page].gen == from_space);
1552             gc_assert(page_allocated_no_region_p(next_page));
1553             gc_assert(page_table[next_page].large_object);
1554             gc_assert(page_table[next_page].region_start_offset ==
1555                       npage_bytes(next_page-first_page));
1556             gc_assert(page_table[next_page].bytes_used == PAGE_BYTES);
1557
1558             page_table[next_page].gen = new_space;
1559             page_table[next_page].allocated = UNBOXED_PAGE_FLAG;
1560             remaining_bytes -= PAGE_BYTES;
1561             next_page++;
1562         }
1563
1564         /* Now only one page remains, but the object may have shrunk so
1565          * there may be more unused pages which will be freed. */
1566
1567         /* Object may have shrunk but shouldn't have grown - check. */
1568         gc_assert(page_table[next_page].bytes_used >= remaining_bytes);
1569
1570         page_table[next_page].gen = new_space;
1571         page_table[next_page].allocated = UNBOXED_PAGE_FLAG;
1572
1573         /* Adjust the bytes_used. */
1574         old_bytes_used = page_table[next_page].bytes_used;
1575         page_table[next_page].bytes_used = remaining_bytes;
1576
1577         bytes_freed = old_bytes_used - remaining_bytes;
1578
1579         /* Free any remaining pages; needs care. */
1580         next_page++;
1581         while ((old_bytes_used == PAGE_BYTES) &&
1582                (page_table[next_page].gen == from_space) &&
1583                page_allocated_no_region_p(next_page) &&
1584                page_table[next_page].large_object &&
1585                (page_table[next_page].region_start_offset ==
1586                 npage_bytes(next_page - first_page))) {
1587             /* Checks out OK, free the page. Don't need to both zeroing
1588              * pages as this should have been done before shrinking the
1589              * object. These pages shouldn't be write-protected, even if
1590              * boxed they should be zero filled. */
1591             gc_assert(page_table[next_page].write_protected == 0);
1592
1593             old_bytes_used = page_table[next_page].bytes_used;
1594             page_table[next_page].allocated = FREE_PAGE_FLAG;
1595             page_table[next_page].bytes_used = 0;
1596             bytes_freed += old_bytes_used;
1597             next_page++;
1598         }
1599
1600         if ((bytes_freed > 0) && gencgc_verbose) {
1601             FSHOW((stderr,
1602                    "/copy_large_unboxed bytes_freed=%d\n",
1603                    bytes_freed));
1604         }
1605
1606         generations[from_space].bytes_allocated -=
1607             nwords*N_WORD_BYTES + bytes_freed;
1608         generations[new_space].bytes_allocated += nwords*N_WORD_BYTES;
1609         bytes_allocated -= bytes_freed;
1610
1611         return(object);
1612     }
1613     else {
1614         /* Get tag of object. */
1615         tag = lowtag_of(object);
1616
1617         /* Allocate space. */
1618         new = gc_quick_alloc_large_unboxed(nwords*N_WORD_BYTES);
1619
1620         /* Copy the object. */
1621         memcpy(new,native_pointer(object),nwords*N_WORD_BYTES);
1622
1623         /* Return Lisp pointer of new object. */
1624         return ((lispobj) new) | tag;
1625     }
1626 }
1627
1628
1629
1630 \f
1631
1632 /*
1633  * code and code-related objects
1634  */
1635 /*
1636 static lispobj trans_fun_header(lispobj object);
1637 static lispobj trans_boxed(lispobj object);
1638 */
1639
1640 /* Scan a x86 compiled code object, looking for possible fixups that
1641  * have been missed after a move.
1642  *
1643  * Two types of fixups are needed:
1644  * 1. Absolute fixups to within the code object.
1645  * 2. Relative fixups to outside the code object.
1646  *
1647  * Currently only absolute fixups to the constant vector, or to the
1648  * code area are checked. */
1649 void
1650 sniff_code_object(struct code *code, unsigned long displacement)
1651 {
1652 #ifdef LISP_FEATURE_X86
1653     long nheader_words, ncode_words, nwords;
1654     void *p;
1655     void *constants_start_addr = NULL, *constants_end_addr;
1656     void *code_start_addr, *code_end_addr;
1657     int fixup_found = 0;
1658
1659     if (!check_code_fixups)
1660         return;
1661
1662     FSHOW((stderr, "/sniffing code: %p, %lu\n", code, displacement));
1663
1664     ncode_words = fixnum_value(code->code_size);
1665     nheader_words = HeaderValue(*(lispobj *)code);
1666     nwords = ncode_words + nheader_words;
1667
1668     constants_start_addr = (void *)code + 5*N_WORD_BYTES;
1669     constants_end_addr = (void *)code + nheader_words*N_WORD_BYTES;
1670     code_start_addr = (void *)code + nheader_words*N_WORD_BYTES;
1671     code_end_addr = (void *)code + nwords*N_WORD_BYTES;
1672
1673     /* Work through the unboxed code. */
1674     for (p = code_start_addr; p < code_end_addr; p++) {
1675         void *data = *(void **)p;
1676         unsigned d1 = *((unsigned char *)p - 1);
1677         unsigned d2 = *((unsigned char *)p - 2);
1678         unsigned d3 = *((unsigned char *)p - 3);
1679         unsigned d4 = *((unsigned char *)p - 4);
1680 #if QSHOW
1681         unsigned d5 = *((unsigned char *)p - 5);
1682         unsigned d6 = *((unsigned char *)p - 6);
1683 #endif
1684
1685         /* Check for code references. */
1686         /* Check for a 32 bit word that looks like an absolute
1687            reference to within the code adea of the code object. */
1688         if ((data >= (code_start_addr-displacement))
1689             && (data < (code_end_addr-displacement))) {
1690             /* function header */
1691             if ((d4 == 0x5e)
1692                 && (((unsigned)p - 4 - 4*HeaderValue(*((unsigned *)p-1))) ==
1693                     (unsigned)code)) {
1694                 /* Skip the function header */
1695                 p += 6*4 - 4 - 1;
1696                 continue;
1697             }
1698             /* the case of PUSH imm32 */
1699             if (d1 == 0x68) {
1700                 fixup_found = 1;
1701                 FSHOW((stderr,
1702                        "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1703                        p, d6, d5, d4, d3, d2, d1, data));
1704                 FSHOW((stderr, "/PUSH $0x%.8x\n", data));
1705             }
1706             /* the case of MOV [reg-8],imm32 */
1707             if ((d3 == 0xc7)
1708                 && (d2==0x40 || d2==0x41 || d2==0x42 || d2==0x43
1709                     || d2==0x45 || d2==0x46 || d2==0x47)
1710                 && (d1 == 0xf8)) {
1711                 fixup_found = 1;
1712                 FSHOW((stderr,
1713                        "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1714                        p, d6, d5, d4, d3, d2, d1, data));
1715                 FSHOW((stderr, "/MOV [reg-8],$0x%.8x\n", data));
1716             }
1717             /* the case of LEA reg,[disp32] */
1718             if ((d2 == 0x8d) && ((d1 & 0xc7) == 5)) {
1719                 fixup_found = 1;
1720                 FSHOW((stderr,
1721                        "/code ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1722                        p, d6, d5, d4, d3, d2, d1, data));
1723                 FSHOW((stderr,"/LEA reg,[$0x%.8x]\n", data));
1724             }
1725         }
1726
1727         /* Check for constant references. */
1728         /* Check for a 32 bit word that looks like an absolute
1729            reference to within the constant vector. Constant references
1730            will be aligned. */
1731         if ((data >= (constants_start_addr-displacement))
1732             && (data < (constants_end_addr-displacement))
1733             && (((unsigned)data & 0x3) == 0)) {
1734             /*  Mov eax,m32 */
1735             if (d1 == 0xa1) {
1736                 fixup_found = 1;
1737                 FSHOW((stderr,
1738                        "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1739                        p, d6, d5, d4, d3, d2, d1, data));
1740                 FSHOW((stderr,"/MOV eax,0x%.8x\n", data));
1741             }
1742
1743             /*  the case of MOV m32,EAX */
1744             if (d1 == 0xa3) {
1745                 fixup_found = 1;
1746                 FSHOW((stderr,
1747                        "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1748                        p, d6, d5, d4, d3, d2, d1, data));
1749                 FSHOW((stderr, "/MOV 0x%.8x,eax\n", data));
1750             }
1751
1752             /* the case of CMP m32,imm32 */
1753             if ((d1 == 0x3d) && (d2 == 0x81)) {
1754                 fixup_found = 1;
1755                 FSHOW((stderr,
1756                        "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1757                        p, d6, d5, d4, d3, d2, d1, data));
1758                 /* XX Check this */
1759                 FSHOW((stderr, "/CMP 0x%.8x,immed32\n", data));
1760             }
1761
1762             /* Check for a mod=00, r/m=101 byte. */
1763             if ((d1 & 0xc7) == 5) {
1764                 /* Cmp m32,reg */
1765                 if (d2 == 0x39) {
1766                     fixup_found = 1;
1767                     FSHOW((stderr,
1768                            "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1769                            p, d6, d5, d4, d3, d2, d1, data));
1770                     FSHOW((stderr,"/CMP 0x%.8x,reg\n", data));
1771                 }
1772                 /* the case of CMP reg32,m32 */
1773                 if (d2 == 0x3b) {
1774                     fixup_found = 1;
1775                     FSHOW((stderr,
1776                            "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1777                            p, d6, d5, d4, d3, d2, d1, data));
1778                     FSHOW((stderr, "/CMP reg32,0x%.8x\n", data));
1779                 }
1780                 /* the case of MOV m32,reg32 */
1781                 if (d2 == 0x89) {
1782                     fixup_found = 1;
1783                     FSHOW((stderr,
1784                            "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1785                            p, d6, d5, d4, d3, d2, d1, data));
1786                     FSHOW((stderr, "/MOV 0x%.8x,reg32\n", data));
1787                 }
1788                 /* the case of MOV reg32,m32 */
1789                 if (d2 == 0x8b) {
1790                     fixup_found = 1;
1791                     FSHOW((stderr,
1792                            "/abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1793                            p, d6, d5, d4, d3, d2, d1, data));
1794                     FSHOW((stderr, "/MOV reg32,0x%.8x\n", data));
1795                 }
1796                 /* the case of LEA reg32,m32 */
1797                 if (d2 == 0x8d) {
1798                     fixup_found = 1;
1799                     FSHOW((stderr,
1800                            "abs const ref @%x: %.2x %.2x %.2x %.2x %.2x %.2x (%.8x)\n",
1801                            p, d6, d5, d4, d3, d2, d1, data));
1802                     FSHOW((stderr, "/LEA reg32,0x%.8x\n", data));
1803                 }
1804             }
1805         }
1806     }
1807
1808     /* If anything was found, print some information on the code
1809      * object. */
1810     if (fixup_found) {
1811         FSHOW((stderr,
1812                "/compiled code object at %x: header words = %d, code words = %d\n",
1813                code, nheader_words, ncode_words));
1814         FSHOW((stderr,
1815                "/const start = %x, end = %x\n",
1816                constants_start_addr, constants_end_addr));
1817         FSHOW((stderr,
1818                "/code start = %x, end = %x\n",
1819                code_start_addr, code_end_addr));
1820     }
1821 #endif
1822 }
1823
1824 void
1825 gencgc_apply_code_fixups(struct code *old_code, struct code *new_code)
1826 {
1827 /* x86-64 uses pc-relative addressing instead of this kludge */
1828 #ifndef LISP_FEATURE_X86_64
1829     long nheader_words, ncode_words, nwords;
1830     void *constants_start_addr, *constants_end_addr;
1831     void *code_start_addr, *code_end_addr;
1832     lispobj fixups = NIL;
1833     unsigned long displacement =
1834         (unsigned long)new_code - (unsigned long)old_code;
1835     struct vector *fixups_vector;
1836
1837     ncode_words = fixnum_value(new_code->code_size);
1838     nheader_words = HeaderValue(*(lispobj *)new_code);
1839     nwords = ncode_words + nheader_words;
1840     /* FSHOW((stderr,
1841              "/compiled code object at %x: header words = %d, code words = %d\n",
1842              new_code, nheader_words, ncode_words)); */
1843     constants_start_addr = (void *)new_code + 5*N_WORD_BYTES;
1844     constants_end_addr = (void *)new_code + nheader_words*N_WORD_BYTES;
1845     code_start_addr = (void *)new_code + nheader_words*N_WORD_BYTES;
1846     code_end_addr = (void *)new_code + nwords*N_WORD_BYTES;
1847     /*
1848     FSHOW((stderr,
1849            "/const start = %x, end = %x\n",
1850            constants_start_addr,constants_end_addr));
1851     FSHOW((stderr,
1852            "/code start = %x; end = %x\n",
1853            code_start_addr,code_end_addr));
1854     */
1855
1856     /* The first constant should be a pointer to the fixups for this
1857        code objects. Check. */
1858     fixups = new_code->constants[0];
1859
1860     /* It will be 0 or the unbound-marker if there are no fixups (as
1861      * will be the case if the code object has been purified, for
1862      * example) and will be an other pointer if it is valid. */
1863     if ((fixups == 0) || (fixups == UNBOUND_MARKER_WIDETAG) ||
1864         !is_lisp_pointer(fixups)) {
1865         /* Check for possible errors. */
1866         if (check_code_fixups)
1867             sniff_code_object(new_code, displacement);
1868
1869         return;
1870     }
1871
1872     fixups_vector = (struct vector *)native_pointer(fixups);
1873
1874     /* Could be pointing to a forwarding pointer. */
1875     /* FIXME is this always in from_space?  if so, could replace this code with
1876      * forwarding_pointer_p/forwarding_pointer_value */
1877     if (is_lisp_pointer(fixups) &&
1878         (find_page_index((void*)fixups_vector) != -1) &&
1879         (fixups_vector->header == 0x01)) {
1880         /* If so, then follow it. */
1881         /*SHOW("following pointer to a forwarding pointer");*/
1882         fixups_vector =
1883             (struct vector *)native_pointer((lispobj)fixups_vector->length);
1884     }
1885
1886     /*SHOW("got fixups");*/
1887
1888     if (widetag_of(fixups_vector->header) == SIMPLE_ARRAY_WORD_WIDETAG) {
1889         /* Got the fixups for the code block. Now work through the vector,
1890            and apply a fixup at each address. */
1891         long length = fixnum_value(fixups_vector->length);
1892         long i;
1893         for (i = 0; i < length; i++) {
1894             unsigned long offset = fixups_vector->data[i];
1895             /* Now check the current value of offset. */
1896             unsigned long old_value =
1897                 *(unsigned long *)((unsigned long)code_start_addr + offset);
1898
1899             /* If it's within the old_code object then it must be an
1900              * absolute fixup (relative ones are not saved) */
1901             if ((old_value >= (unsigned long)old_code)
1902                 && (old_value < ((unsigned long)old_code
1903                                  + nwords*N_WORD_BYTES)))
1904                 /* So add the dispacement. */
1905                 *(unsigned long *)((unsigned long)code_start_addr + offset) =
1906                     old_value + displacement;
1907             else
1908                 /* It is outside the old code object so it must be a
1909                  * relative fixup (absolute fixups are not saved). So
1910                  * subtract the displacement. */
1911                 *(unsigned long *)((unsigned long)code_start_addr + offset) =
1912                     old_value - displacement;
1913         }
1914     } else {
1915         /* This used to just print a note to stderr, but a bogus fixup seems to
1916          * indicate real heap corruption, so a hard hailure is in order. */
1917         lose("fixup vector %p has a bad widetag: %d\n",
1918              fixups_vector, widetag_of(fixups_vector->header));
1919     }
1920
1921     /* Check for possible errors. */
1922     if (check_code_fixups) {
1923         sniff_code_object(new_code,displacement);
1924     }
1925 #endif
1926 }
1927
1928
1929 static lispobj
1930 trans_boxed_large(lispobj object)
1931 {
1932     lispobj header;
1933     unsigned long length;
1934
1935     gc_assert(is_lisp_pointer(object));
1936
1937     header = *((lispobj *) native_pointer(object));
1938     length = HeaderValue(header) + 1;
1939     length = CEILING(length, 2);
1940
1941     return copy_large_object(object, length);
1942 }
1943
1944 /* Doesn't seem to be used, delete it after the grace period. */
1945 #if 0
1946 static lispobj
1947 trans_unboxed_large(lispobj object)
1948 {
1949     lispobj header;
1950     unsigned long length;
1951
1952     gc_assert(is_lisp_pointer(object));
1953
1954     header = *((lispobj *) native_pointer(object));
1955     length = HeaderValue(header) + 1;
1956     length = CEILING(length, 2);
1957
1958     return copy_large_unboxed_object(object, length);
1959 }
1960 #endif
1961
1962 \f
1963 /*
1964  * Lutexes. Using the normal finalization machinery for finalizing
1965  * lutexes is tricky, since the finalization depends on working lutexes.
1966  * So we track the lutexes in the GC and finalize them manually.
1967  */
1968
1969 #if defined(LUTEX_WIDETAG)
1970
1971 /*
1972  * Start tracking LUTEX in the GC, by adding it to the linked list of
1973  * lutexes in the nursery generation. The caller is responsible for
1974  * locking, and GCs must be inhibited until the registration is
1975  * complete.
1976  */
1977 void
1978 gencgc_register_lutex (struct lutex *lutex) {
1979     int index = find_page_index(lutex);
1980     generation_index_t gen;
1981     struct lutex *head;
1982
1983     /* This lutex is in static space, so we don't need to worry about
1984      * finalizing it.
1985      */
1986     if (index == -1)
1987         return;
1988
1989     gen = page_table[index].gen;
1990
1991     gc_assert(gen >= 0);
1992     gc_assert(gen < NUM_GENERATIONS);
1993
1994     head = generations[gen].lutexes;
1995
1996     lutex->gen = gen;
1997     lutex->next = head;
1998     lutex->prev = NULL;
1999     if (head)
2000         head->prev = lutex;
2001     generations[gen].lutexes = lutex;
2002 }
2003
2004 /*
2005  * Stop tracking LUTEX in the GC by removing it from the appropriate
2006  * linked lists. This will only be called during GC, so no locking is
2007  * needed.
2008  */
2009 void
2010 gencgc_unregister_lutex (struct lutex *lutex) {
2011     if (lutex->prev) {
2012         lutex->prev->next = lutex->next;
2013     } else {
2014         generations[lutex->gen].lutexes = lutex->next;
2015     }
2016
2017     if (lutex->next) {
2018         lutex->next->prev = lutex->prev;
2019     }
2020
2021     lutex->next = NULL;
2022     lutex->prev = NULL;
2023     lutex->gen = -1;
2024 }
2025
2026 /*
2027  * Mark all lutexes in generation GEN as not live.
2028  */
2029 static void
2030 unmark_lutexes (generation_index_t gen) {
2031     struct lutex *lutex = generations[gen].lutexes;
2032
2033     while (lutex) {
2034         lutex->live = 0;
2035         lutex = lutex->next;
2036     }
2037 }
2038
2039 /*
2040  * Finalize all lutexes in generation GEN that have not been marked live.
2041  */
2042 static void
2043 reap_lutexes (generation_index_t gen) {
2044     struct lutex *lutex = generations[gen].lutexes;
2045
2046     while (lutex) {
2047         struct lutex *next = lutex->next;
2048         if (!lutex->live) {
2049             lutex_destroy((tagged_lutex_t) lutex);
2050             gencgc_unregister_lutex(lutex);
2051         }
2052         lutex = next;
2053     }
2054 }
2055
2056 /*
2057  * Mark LUTEX as live.
2058  */
2059 static void
2060 mark_lutex (lispobj tagged_lutex) {
2061     struct lutex *lutex = (struct lutex*) native_pointer(tagged_lutex);
2062
2063     lutex->live = 1;
2064 }
2065
2066 /*
2067  * Move all lutexes in generation FROM to generation TO.
2068  */
2069 static void
2070 move_lutexes (generation_index_t from, generation_index_t to) {
2071     struct lutex *tail = generations[from].lutexes;
2072
2073     /* Nothing to move */
2074     if (!tail)
2075         return;
2076
2077     /* Change the generation of the lutexes in FROM. */
2078     while (tail->next) {
2079         tail->gen = to;
2080         tail = tail->next;
2081     }
2082     tail->gen = to;
2083
2084     /* Link the last lutex in the FROM list to the start of the TO list */
2085     tail->next = generations[to].lutexes;
2086
2087     /* And vice versa */
2088     if (generations[to].lutexes) {
2089         generations[to].lutexes->prev = tail;
2090     }
2091
2092     /* And update the generations structures to match this */
2093     generations[to].lutexes = generations[from].lutexes;
2094     generations[from].lutexes = NULL;
2095 }
2096
2097 static long
2098 scav_lutex(lispobj *where, lispobj object)
2099 {
2100     mark_lutex((lispobj) where);
2101
2102     return CEILING(sizeof(struct lutex)/sizeof(lispobj), 2);
2103 }
2104
2105 static lispobj
2106 trans_lutex(lispobj object)
2107 {
2108     struct lutex *lutex = (struct lutex *) native_pointer(object);
2109     lispobj copied;
2110     size_t words = CEILING(sizeof(struct lutex)/sizeof(lispobj), 2);
2111     gc_assert(is_lisp_pointer(object));
2112     copied = copy_object(object, words);
2113
2114     /* Update the links, since the lutex moved in memory. */
2115     if (lutex->next) {
2116         lutex->next->prev = (struct lutex *) native_pointer(copied);
2117     }
2118
2119     if (lutex->prev) {
2120         lutex->prev->next = (struct lutex *) native_pointer(copied);
2121     } else {
2122         generations[lutex->gen].lutexes =
2123           (struct lutex *) native_pointer(copied);
2124     }
2125
2126     return copied;
2127 }
2128
2129 static long
2130 size_lutex(lispobj *where)
2131 {
2132     return CEILING(sizeof(struct lutex)/sizeof(lispobj), 2);
2133 }
2134 #endif /* LUTEX_WIDETAG */
2135
2136 \f
2137 /*
2138  * weak pointers
2139  */
2140
2141 /* XX This is a hack adapted from cgc.c. These don't work too
2142  * efficiently with the gencgc as a list of the weak pointers is
2143  * maintained within the objects which causes writes to the pages. A
2144  * limited attempt is made to avoid unnecessary writes, but this needs
2145  * a re-think. */
2146 #define WEAK_POINTER_NWORDS \
2147     CEILING((sizeof(struct weak_pointer) / sizeof(lispobj)), 2)
2148
2149 static long
2150 scav_weak_pointer(lispobj *where, lispobj object)
2151 {
2152     /* Since we overwrite the 'next' field, we have to make
2153      * sure not to do so for pointers already in the list.
2154      * Instead of searching the list of weak_pointers each
2155      * time, we ensure that next is always NULL when the weak
2156      * pointer isn't in the list, and not NULL otherwise.
2157      * Since we can't use NULL to denote end of list, we
2158      * use a pointer back to the same weak_pointer.
2159      */
2160     struct weak_pointer * wp = (struct weak_pointer*)where;
2161
2162     if (NULL == wp->next) {
2163         wp->next = weak_pointers;
2164         weak_pointers = wp;
2165         if (NULL == wp->next)
2166             wp->next = wp;
2167     }
2168
2169     /* Do not let GC scavenge the value slot of the weak pointer.
2170      * (That is why it is a weak pointer.) */
2171
2172     return WEAK_POINTER_NWORDS;
2173 }
2174
2175 \f
2176 lispobj *
2177 search_read_only_space(void *pointer)
2178 {
2179     lispobj *start = (lispobj *) READ_ONLY_SPACE_START;
2180     lispobj *end = (lispobj *) SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0);
2181     if ((pointer < (void *)start) || (pointer >= (void *)end))
2182         return NULL;
2183     return (gc_search_space(start,
2184                             (((lispobj *)pointer)+2)-start,
2185                             (lispobj *) pointer));
2186 }
2187
2188 lispobj *
2189 search_static_space(void *pointer)
2190 {
2191     lispobj *start = (lispobj *)STATIC_SPACE_START;
2192     lispobj *end = (lispobj *)SymbolValue(STATIC_SPACE_FREE_POINTER,0);
2193     if ((pointer < (void *)start) || (pointer >= (void *)end))
2194         return NULL;
2195     return (gc_search_space(start,
2196                             (((lispobj *)pointer)+2)-start,
2197                             (lispobj *) pointer));
2198 }
2199
2200 /* a faster version for searching the dynamic space. This will work even
2201  * if the object is in a current allocation region. */
2202 lispobj *
2203 search_dynamic_space(void *pointer)
2204 {
2205     page_index_t page_index = find_page_index(pointer);
2206     lispobj *start;
2207
2208     /* The address may be invalid, so do some checks. */
2209     if ((page_index == -1) || page_free_p(page_index))
2210         return NULL;
2211     start = (lispobj *)page_region_start(page_index);
2212     return (gc_search_space(start,
2213                             (((lispobj *)pointer)+2)-start,
2214                             (lispobj *)pointer));
2215 }
2216
2217 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
2218
2219 /* Helper for valid_lisp_pointer_p and
2220  * possibly_valid_dynamic_space_pointer.
2221  *
2222  * pointer is the pointer to validate, and start_addr is the address
2223  * of the enclosing object.
2224  */
2225 static int
2226 looks_like_valid_lisp_pointer_p(lispobj *pointer, lispobj *start_addr)
2227 {
2228     if (!is_lisp_pointer((lispobj)pointer)) {
2229         return 0;
2230     }
2231
2232     /* Check that the object pointed to is consistent with the pointer
2233      * low tag. */
2234     switch (lowtag_of((lispobj)pointer)) {
2235     case FUN_POINTER_LOWTAG:
2236         /* Start_addr should be the enclosing code object, or a closure
2237          * header. */
2238         switch (widetag_of(*start_addr)) {
2239         case CODE_HEADER_WIDETAG:
2240             /* This case is probably caught above. */
2241             break;
2242         case CLOSURE_HEADER_WIDETAG:
2243         case FUNCALLABLE_INSTANCE_HEADER_WIDETAG:
2244             if ((unsigned long)pointer !=
2245                 ((unsigned long)start_addr+FUN_POINTER_LOWTAG)) {
2246                 if (gencgc_verbose) {
2247                     FSHOW((stderr,
2248                            "/Wf2: %x %x %x\n",
2249                            pointer, start_addr, *start_addr));
2250                 }
2251                 return 0;
2252             }
2253             break;
2254         default:
2255             if (gencgc_verbose) {
2256                 FSHOW((stderr,
2257                        "/Wf3: %x %x %x\n",
2258                        pointer, start_addr, *start_addr));
2259             }
2260             return 0;
2261         }
2262         break;
2263     case LIST_POINTER_LOWTAG:
2264         if ((unsigned long)pointer !=
2265             ((unsigned long)start_addr+LIST_POINTER_LOWTAG)) {
2266             if (gencgc_verbose) {
2267                 FSHOW((stderr,
2268                        "/Wl1: %x %x %x\n",
2269                        pointer, start_addr, *start_addr));
2270             }
2271             return 0;
2272         }
2273         /* Is it plausible cons? */
2274         if ((is_lisp_pointer(start_addr[0]) ||
2275              is_lisp_immediate(start_addr[0])) &&
2276             (is_lisp_pointer(start_addr[1]) ||
2277              is_lisp_immediate(start_addr[1])))
2278             break;
2279         else {
2280             if (gencgc_verbose) {
2281                 FSHOW((stderr,
2282                        "/Wl2: %x %x %x\n",
2283                        pointer, start_addr, *start_addr));
2284             }
2285             return 0;
2286         }
2287     case INSTANCE_POINTER_LOWTAG:
2288         if ((unsigned long)pointer !=
2289             ((unsigned long)start_addr+INSTANCE_POINTER_LOWTAG)) {
2290             if (gencgc_verbose) {
2291                 FSHOW((stderr,
2292                        "/Wi1: %x %x %x\n",
2293                        pointer, start_addr, *start_addr));
2294             }
2295             return 0;
2296         }
2297         if (widetag_of(start_addr[0]) != INSTANCE_HEADER_WIDETAG) {
2298             if (gencgc_verbose) {
2299                 FSHOW((stderr,
2300                        "/Wi2: %x %x %x\n",
2301                        pointer, start_addr, *start_addr));
2302             }
2303             return 0;
2304         }
2305         break;
2306     case OTHER_POINTER_LOWTAG:
2307         if ((unsigned long)pointer !=
2308             ((unsigned long)start_addr+OTHER_POINTER_LOWTAG)) {
2309             if (gencgc_verbose) {
2310                 FSHOW((stderr,
2311                        "/Wo1: %x %x %x\n",
2312                        pointer, start_addr, *start_addr));
2313             }
2314             return 0;
2315         }
2316         /* Is it plausible?  Not a cons. XXX should check the headers. */
2317         if (is_lisp_pointer(start_addr[0]) || ((start_addr[0] & 3) == 0)) {
2318             if (gencgc_verbose) {
2319                 FSHOW((stderr,
2320                        "/Wo2: %x %x %x\n",
2321                        pointer, start_addr, *start_addr));
2322             }
2323             return 0;
2324         }
2325         switch (widetag_of(start_addr[0])) {
2326         case UNBOUND_MARKER_WIDETAG:
2327         case NO_TLS_VALUE_MARKER_WIDETAG:
2328         case CHARACTER_WIDETAG:
2329 #if N_WORD_BITS == 64
2330         case SINGLE_FLOAT_WIDETAG:
2331 #endif
2332             if (gencgc_verbose) {
2333                 FSHOW((stderr,
2334                        "*Wo3: %x %x %x\n",
2335                        pointer, start_addr, *start_addr));
2336             }
2337             return 0;
2338
2339             /* only pointed to by function pointers? */
2340         case CLOSURE_HEADER_WIDETAG:
2341         case FUNCALLABLE_INSTANCE_HEADER_WIDETAG:
2342             if (gencgc_verbose) {
2343                 FSHOW((stderr,
2344                        "*Wo4: %x %x %x\n",
2345                        pointer, start_addr, *start_addr));
2346             }
2347             return 0;
2348
2349         case INSTANCE_HEADER_WIDETAG:
2350             if (gencgc_verbose) {
2351                 FSHOW((stderr,
2352                        "*Wo5: %x %x %x\n",
2353                        pointer, start_addr, *start_addr));
2354             }
2355             return 0;
2356
2357             /* the valid other immediate pointer objects */
2358         case SIMPLE_VECTOR_WIDETAG:
2359         case RATIO_WIDETAG:
2360         case COMPLEX_WIDETAG:
2361 #ifdef COMPLEX_SINGLE_FLOAT_WIDETAG
2362         case COMPLEX_SINGLE_FLOAT_WIDETAG:
2363 #endif
2364 #ifdef COMPLEX_DOUBLE_FLOAT_WIDETAG
2365         case COMPLEX_DOUBLE_FLOAT_WIDETAG:
2366 #endif
2367 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
2368         case COMPLEX_LONG_FLOAT_WIDETAG:
2369 #endif
2370         case SIMPLE_ARRAY_WIDETAG:
2371         case COMPLEX_BASE_STRING_WIDETAG:
2372 #ifdef COMPLEX_CHARACTER_STRING_WIDETAG
2373         case COMPLEX_CHARACTER_STRING_WIDETAG:
2374 #endif
2375         case COMPLEX_VECTOR_NIL_WIDETAG:
2376         case COMPLEX_BIT_VECTOR_WIDETAG:
2377         case COMPLEX_VECTOR_WIDETAG:
2378         case COMPLEX_ARRAY_WIDETAG:
2379         case VALUE_CELL_HEADER_WIDETAG:
2380         case SYMBOL_HEADER_WIDETAG:
2381         case FDEFN_WIDETAG:
2382         case CODE_HEADER_WIDETAG:
2383         case BIGNUM_WIDETAG:
2384 #if N_WORD_BITS != 64
2385         case SINGLE_FLOAT_WIDETAG:
2386 #endif
2387         case DOUBLE_FLOAT_WIDETAG:
2388 #ifdef LONG_FLOAT_WIDETAG
2389         case LONG_FLOAT_WIDETAG:
2390 #endif
2391         case SIMPLE_BASE_STRING_WIDETAG:
2392 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
2393         case SIMPLE_CHARACTER_STRING_WIDETAG:
2394 #endif
2395         case SIMPLE_BIT_VECTOR_WIDETAG:
2396         case SIMPLE_ARRAY_NIL_WIDETAG:
2397         case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
2398         case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
2399         case SIMPLE_ARRAY_UNSIGNED_BYTE_7_WIDETAG:
2400         case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
2401         case SIMPLE_ARRAY_UNSIGNED_BYTE_15_WIDETAG:
2402         case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
2403 #ifdef  SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG
2404         case SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG:
2405 #endif
2406         case SIMPLE_ARRAY_UNSIGNED_BYTE_31_WIDETAG:
2407         case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
2408 #ifdef  SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG
2409         case SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG:
2410 #endif
2411 #ifdef  SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG
2412         case SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG:
2413 #endif
2414 #ifdef  SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG
2415         case SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG:
2416 #endif
2417 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
2418         case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
2419 #endif
2420 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
2421         case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
2422 #endif
2423 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG
2424         case SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG:
2425 #endif
2426 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
2427         case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
2428 #endif
2429 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG
2430         case SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG:
2431 #endif
2432 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG
2433         case SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG:
2434 #endif
2435         case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
2436         case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
2437 #ifdef SIMPLE_ARRAY_LONG_FLOAT_WIDETAG
2438         case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
2439 #endif
2440 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
2441         case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
2442 #endif
2443 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
2444         case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
2445 #endif
2446 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
2447         case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
2448 #endif
2449         case SAP_WIDETAG:
2450         case WEAK_POINTER_WIDETAG:
2451 #ifdef LUTEX_WIDETAG
2452         case LUTEX_WIDETAG:
2453 #endif
2454             break;
2455
2456         default:
2457             if (gencgc_verbose) {
2458                 FSHOW((stderr,
2459                        "/Wo6: %x %x %x\n",
2460                        pointer, start_addr, *start_addr));
2461             }
2462             return 0;
2463         }
2464         break;
2465     default:
2466         if (gencgc_verbose) {
2467             FSHOW((stderr,
2468                    "*W?: %x %x %x\n",
2469                    pointer, start_addr, *start_addr));
2470         }
2471         return 0;
2472     }
2473
2474     /* looks good */
2475     return 1;
2476 }
2477
2478 /* Used by the debugger to validate possibly bogus pointers before
2479  * calling MAKE-LISP-OBJ on them.
2480  *
2481  * FIXME: We would like to make this perfect, because if the debugger
2482  * constructs a reference to a bugs lisp object, and it ends up in a
2483  * location scavenged by the GC all hell breaks loose.
2484  *
2485  * Whereas possibly_valid_dynamic_space_pointer has to be conservative
2486  * and return true for all valid pointers, this could actually be eager
2487  * and lie about a few pointers without bad results... but that should
2488  * be reflected in the name.
2489  */
2490 int
2491 valid_lisp_pointer_p(lispobj *pointer)
2492 {
2493     lispobj *start;
2494     if (((start=search_dynamic_space(pointer))!=NULL) ||
2495         ((start=search_static_space(pointer))!=NULL) ||
2496         ((start=search_read_only_space(pointer))!=NULL))
2497         return looks_like_valid_lisp_pointer_p(pointer, start);
2498     else
2499         return 0;
2500 }
2501
2502 /* Is there any possibility that pointer is a valid Lisp object
2503  * reference, and/or something else (e.g. subroutine call return
2504  * address) which should prevent us from moving the referred-to thing?
2505  * This is called from preserve_pointers() */
2506 static int
2507 possibly_valid_dynamic_space_pointer(lispobj *pointer)
2508 {
2509     lispobj *start_addr;
2510
2511     /* Find the object start address. */
2512     if ((start_addr = search_dynamic_space(pointer)) == NULL) {
2513         return 0;
2514     }
2515
2516     return looks_like_valid_lisp_pointer_p(pointer, start_addr);
2517 }
2518
2519 /* Adjust large bignum and vector objects. This will adjust the
2520  * allocated region if the size has shrunk, and move unboxed objects
2521  * into unboxed pages. The pages are not promoted here, and the
2522  * promoted region is not added to the new_regions; this is really
2523  * only designed to be called from preserve_pointer(). Shouldn't fail
2524  * if this is missed, just may delay the moving of objects to unboxed
2525  * pages, and the freeing of pages. */
2526 static void
2527 maybe_adjust_large_object(lispobj *where)
2528 {
2529     page_index_t first_page;
2530     page_index_t next_page;
2531     long nwords;
2532
2533     unsigned long remaining_bytes;
2534     unsigned long bytes_freed;
2535     unsigned long old_bytes_used;
2536
2537     int boxed;
2538
2539     /* Check whether it's a vector or bignum object. */
2540     switch (widetag_of(where[0])) {
2541     case SIMPLE_VECTOR_WIDETAG:
2542         boxed = BOXED_PAGE_FLAG;
2543         break;
2544     case BIGNUM_WIDETAG:
2545     case SIMPLE_BASE_STRING_WIDETAG:
2546 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
2547     case SIMPLE_CHARACTER_STRING_WIDETAG:
2548 #endif
2549     case SIMPLE_BIT_VECTOR_WIDETAG:
2550     case SIMPLE_ARRAY_NIL_WIDETAG:
2551     case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
2552     case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
2553     case SIMPLE_ARRAY_UNSIGNED_BYTE_7_WIDETAG:
2554     case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
2555     case SIMPLE_ARRAY_UNSIGNED_BYTE_15_WIDETAG:
2556     case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
2557 #ifdef  SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG
2558     case SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG:
2559 #endif
2560     case SIMPLE_ARRAY_UNSIGNED_BYTE_31_WIDETAG:
2561     case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
2562 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG
2563     case SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG:
2564 #endif
2565 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG
2566     case SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG:
2567 #endif
2568 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG
2569     case SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG:
2570 #endif
2571 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
2572     case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
2573 #endif
2574 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
2575     case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
2576 #endif
2577 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG
2578     case SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG:
2579 #endif
2580 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
2581     case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
2582 #endif
2583 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG
2584     case SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG:
2585 #endif
2586 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG
2587     case SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG:
2588 #endif
2589     case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
2590     case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
2591 #ifdef SIMPLE_ARRAY_LONG_FLOAT_WIDETAG
2592     case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
2593 #endif
2594 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
2595     case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
2596 #endif
2597 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
2598     case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
2599 #endif
2600 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
2601     case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
2602 #endif
2603         boxed = UNBOXED_PAGE_FLAG;
2604         break;
2605     default:
2606         return;
2607     }
2608
2609     /* Find its current size. */
2610     nwords = (sizetab[widetag_of(where[0])])(where);
2611
2612     first_page = find_page_index((void *)where);
2613     gc_assert(first_page >= 0);
2614
2615     /* Note: Any page write-protection must be removed, else a later
2616      * scavenge_newspace may incorrectly not scavenge these pages.
2617      * This would not be necessary if they are added to the new areas,
2618      * but lets do it for them all (they'll probably be written
2619      * anyway?). */
2620
2621     gc_assert(page_table[first_page].region_start_offset == 0);
2622
2623     next_page = first_page;
2624     remaining_bytes = nwords*N_WORD_BYTES;
2625     while (remaining_bytes > PAGE_BYTES) {
2626         gc_assert(page_table[next_page].gen == from_space);
2627         gc_assert(page_allocated_no_region_p(next_page));
2628         gc_assert(page_table[next_page].large_object);
2629         gc_assert(page_table[next_page].region_start_offset ==
2630                   npage_bytes(next_page-first_page));
2631         gc_assert(page_table[next_page].bytes_used == PAGE_BYTES);
2632
2633         page_table[next_page].allocated = boxed;
2634
2635         /* Shouldn't be write-protected at this stage. Essential that the
2636          * pages aren't. */
2637         gc_assert(!page_table[next_page].write_protected);
2638         remaining_bytes -= PAGE_BYTES;
2639         next_page++;
2640     }
2641
2642     /* Now only one page remains, but the object may have shrunk so
2643      * there may be more unused pages which will be freed. */
2644
2645     /* Object may have shrunk but shouldn't have grown - check. */
2646     gc_assert(page_table[next_page].bytes_used >= remaining_bytes);
2647
2648     page_table[next_page].allocated = boxed;
2649     gc_assert(page_table[next_page].allocated ==
2650               page_table[first_page].allocated);
2651
2652     /* Adjust the bytes_used. */
2653     old_bytes_used = page_table[next_page].bytes_used;
2654     page_table[next_page].bytes_used = remaining_bytes;
2655
2656     bytes_freed = old_bytes_used - remaining_bytes;
2657
2658     /* Free any remaining pages; needs care. */
2659     next_page++;
2660     while ((old_bytes_used == PAGE_BYTES) &&
2661            (page_table[next_page].gen == from_space) &&
2662            page_allocated_no_region_p(next_page) &&
2663            page_table[next_page].large_object &&
2664            (page_table[next_page].region_start_offset ==
2665             npage_bytes(next_page - first_page))) {
2666         /* It checks out OK, free the page. We don't need to both zeroing
2667          * pages as this should have been done before shrinking the
2668          * object. These pages shouldn't be write protected as they
2669          * should be zero filled. */
2670         gc_assert(page_table[next_page].write_protected == 0);
2671
2672         old_bytes_used = page_table[next_page].bytes_used;
2673         page_table[next_page].allocated = FREE_PAGE_FLAG;
2674         page_table[next_page].bytes_used = 0;
2675         bytes_freed += old_bytes_used;
2676         next_page++;
2677     }
2678
2679     if ((bytes_freed > 0) && gencgc_verbose) {
2680         FSHOW((stderr,
2681                "/maybe_adjust_large_object() freed %d\n",
2682                bytes_freed));
2683     }
2684
2685     generations[from_space].bytes_allocated -= bytes_freed;
2686     bytes_allocated -= bytes_freed;
2687
2688     return;
2689 }
2690
2691 /* Take a possible pointer to a Lisp object and mark its page in the
2692  * page_table so that it will not be relocated during a GC.
2693  *
2694  * This involves locating the page it points to, then backing up to
2695  * the start of its region, then marking all pages dont_move from there
2696  * up to the first page that's not full or has a different generation
2697  *
2698  * It is assumed that all the page static flags have been cleared at
2699  * the start of a GC.
2700  *
2701  * It is also assumed that the current gc_alloc() region has been
2702  * flushed and the tables updated. */
2703
2704 static void
2705 preserve_pointer(void *addr)
2706 {
2707     page_index_t addr_page_index = find_page_index(addr);
2708     page_index_t first_page;
2709     page_index_t i;
2710     unsigned int region_allocation;
2711
2712     /* quick check 1: Address is quite likely to have been invalid. */
2713     if ((addr_page_index == -1)
2714         || page_free_p(addr_page_index)
2715         || (page_table[addr_page_index].bytes_used == 0)
2716         || (page_table[addr_page_index].gen != from_space)
2717         /* Skip if already marked dont_move. */
2718         || (page_table[addr_page_index].dont_move != 0))
2719         return;
2720     gc_assert(!(page_table[addr_page_index].allocated&OPEN_REGION_PAGE_FLAG));
2721     /* (Now that we know that addr_page_index is in range, it's
2722      * safe to index into page_table[] with it.) */
2723     region_allocation = page_table[addr_page_index].allocated;
2724
2725     /* quick check 2: Check the offset within the page.
2726      *
2727      */
2728     if (((unsigned long)addr & (PAGE_BYTES - 1)) >
2729         page_table[addr_page_index].bytes_used)
2730         return;
2731
2732     /* Filter out anything which can't be a pointer to a Lisp object
2733      * (or, as a special case which also requires dont_move, a return
2734      * address referring to something in a CodeObject). This is
2735      * expensive but important, since it vastly reduces the
2736      * probability that random garbage will be bogusly interpreted as
2737      * a pointer which prevents a page from moving. */
2738     if (!(code_page_p(addr_page_index)
2739           || (is_lisp_pointer((lispobj)addr) &&
2740               possibly_valid_dynamic_space_pointer(addr))))
2741         return;
2742
2743     /* Find the beginning of the region.  Note that there may be
2744      * objects in the region preceding the one that we were passed a
2745      * pointer to: if this is the case, we will write-protect all the
2746      * previous objects' pages too.     */
2747
2748 #if 0
2749     /* I think this'd work just as well, but without the assertions.
2750      * -dan 2004.01.01 */
2751     first_page = find_page_index(page_region_start(addr_page_index))
2752 #else
2753     first_page = addr_page_index;
2754     while (page_table[first_page].region_start_offset != 0) {
2755         --first_page;
2756         /* Do some checks. */
2757         gc_assert(page_table[first_page].bytes_used == PAGE_BYTES);
2758         gc_assert(page_table[first_page].gen == from_space);
2759         gc_assert(page_table[first_page].allocated == region_allocation);
2760     }
2761 #endif
2762
2763     /* Adjust any large objects before promotion as they won't be
2764      * copied after promotion. */
2765     if (page_table[first_page].large_object) {
2766         maybe_adjust_large_object(page_address(first_page));
2767         /* If a large object has shrunk then addr may now point to a
2768          * free area in which case it's ignored here. Note it gets
2769          * through the valid pointer test above because the tail looks
2770          * like conses. */
2771         if (page_free_p(addr_page_index)
2772             || (page_table[addr_page_index].bytes_used == 0)
2773             /* Check the offset within the page. */
2774             || (((unsigned long)addr & (PAGE_BYTES - 1))
2775                 > page_table[addr_page_index].bytes_used)) {
2776             FSHOW((stderr,
2777                    "weird? ignore ptr 0x%x to freed area of large object\n",
2778                    addr));
2779             return;
2780         }
2781         /* It may have moved to unboxed pages. */
2782         region_allocation = page_table[first_page].allocated;
2783     }
2784
2785     /* Now work forward until the end of this contiguous area is found,
2786      * marking all pages as dont_move. */
2787     for (i = first_page; ;i++) {
2788         gc_assert(page_table[i].allocated == region_allocation);
2789
2790         /* Mark the page static. */
2791         page_table[i].dont_move = 1;
2792
2793         /* Move the page to the new_space. XX I'd rather not do this
2794          * but the GC logic is not quite able to copy with the static
2795          * pages remaining in the from space. This also requires the
2796          * generation bytes_allocated counters be updated. */
2797         page_table[i].gen = new_space;
2798         generations[new_space].bytes_allocated += page_table[i].bytes_used;
2799         generations[from_space].bytes_allocated -= page_table[i].bytes_used;
2800
2801         /* It is essential that the pages are not write protected as
2802          * they may have pointers into the old-space which need
2803          * scavenging. They shouldn't be write protected at this
2804          * stage. */
2805         gc_assert(!page_table[i].write_protected);
2806
2807         /* Check whether this is the last page in this contiguous block.. */
2808         if ((page_table[i].bytes_used < PAGE_BYTES)
2809             /* ..or it is PAGE_BYTES and is the last in the block */
2810             || page_free_p(i+1)
2811             || (page_table[i+1].bytes_used == 0) /* next page free */
2812             || (page_table[i+1].gen != from_space) /* diff. gen */
2813             || (page_table[i+1].region_start_offset == 0))
2814             break;
2815     }
2816
2817     /* Check that the page is now static. */
2818     gc_assert(page_table[addr_page_index].dont_move != 0);
2819 }
2820
2821 #endif  // defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
2822
2823 \f
2824 /* If the given page is not write-protected, then scan it for pointers
2825  * to younger generations or the top temp. generation, if no
2826  * suspicious pointers are found then the page is write-protected.
2827  *
2828  * Care is taken to check for pointers to the current gc_alloc()
2829  * region if it is a younger generation or the temp. generation. This
2830  * frees the caller from doing a gc_alloc_update_page_tables(). Actually
2831  * the gc_alloc_generation does not need to be checked as this is only
2832  * called from scavenge_generation() when the gc_alloc generation is
2833  * younger, so it just checks if there is a pointer to the current
2834  * region.
2835  *
2836  * We return 1 if the page was write-protected, else 0. */
2837 static int
2838 update_page_write_prot(page_index_t page)
2839 {
2840     generation_index_t gen = page_table[page].gen;
2841     long j;
2842     int wp_it = 1;
2843     void **page_addr = (void **)page_address(page);
2844     long num_words = page_table[page].bytes_used / N_WORD_BYTES;
2845
2846     /* Shouldn't be a free page. */
2847     gc_assert(page_allocated_p(page));
2848     gc_assert(page_table[page].bytes_used != 0);
2849
2850     /* Skip if it's already write-protected, pinned, or unboxed */
2851     if (page_table[page].write_protected
2852         /* FIXME: What's the reason for not write-protecting pinned pages? */
2853         || page_table[page].dont_move
2854         || page_unboxed_p(page))
2855         return (0);
2856
2857     /* Scan the page for pointers to younger generations or the
2858      * top temp. generation. */
2859
2860     for (j = 0; j < num_words; j++) {
2861         void *ptr = *(page_addr+j);
2862         page_index_t index = find_page_index(ptr);
2863
2864         /* Check that it's in the dynamic space */
2865         if (index != -1)
2866             if (/* Does it point to a younger or the temp. generation? */
2867                 (page_allocated_p(index)
2868                  && (page_table[index].bytes_used != 0)
2869                  && ((page_table[index].gen < gen)
2870                      || (page_table[index].gen == SCRATCH_GENERATION)))
2871
2872                 /* Or does it point within a current gc_alloc() region? */
2873                 || ((boxed_region.start_addr <= ptr)
2874                     && (ptr <= boxed_region.free_pointer))
2875                 || ((unboxed_region.start_addr <= ptr)
2876                     && (ptr <= unboxed_region.free_pointer))) {
2877                 wp_it = 0;
2878                 break;
2879             }
2880     }
2881
2882     if (wp_it == 1) {
2883         /* Write-protect the page. */
2884         /*FSHOW((stderr, "/write-protecting page %d gen %d\n", page, gen));*/
2885
2886         os_protect((void *)page_addr,
2887                    PAGE_BYTES,
2888                    OS_VM_PROT_READ|OS_VM_PROT_EXECUTE);
2889
2890         /* Note the page as protected in the page tables. */
2891         page_table[page].write_protected = 1;
2892     }
2893
2894     return (wp_it);
2895 }
2896
2897 /* Scavenge all generations from FROM to TO, inclusive, except for
2898  * new_space which needs special handling, as new objects may be
2899  * added which are not checked here - use scavenge_newspace generation.
2900  *
2901  * Write-protected pages should not have any pointers to the
2902  * from_space so do need scavenging; thus write-protected pages are
2903  * not always scavenged. There is some code to check that these pages
2904  * are not written; but to check fully the write-protected pages need
2905  * to be scavenged by disabling the code to skip them.
2906  *
2907  * Under the current scheme when a generation is GCed the younger
2908  * generations will be empty. So, when a generation is being GCed it
2909  * is only necessary to scavenge the older generations for pointers
2910  * not the younger. So a page that does not have pointers to younger
2911  * generations does not need to be scavenged.
2912  *
2913  * The write-protection can be used to note pages that don't have
2914  * pointers to younger pages. But pages can be written without having
2915  * pointers to younger generations. After the pages are scavenged here
2916  * they can be scanned for pointers to younger generations and if
2917  * there are none the page can be write-protected.
2918  *
2919  * One complication is when the newspace is the top temp. generation.
2920  *
2921  * Enabling SC_GEN_CK scavenges the write-protected pages and checks
2922  * that none were written, which they shouldn't be as they should have
2923  * no pointers to younger generations. This breaks down for weak
2924  * pointers as the objects contain a link to the next and are written
2925  * if a weak pointer is scavenged. Still it's a useful check. */
2926 static void
2927 scavenge_generations(generation_index_t from, generation_index_t to)
2928 {
2929     page_index_t i;
2930     int num_wp = 0;
2931
2932 #define SC_GEN_CK 0
2933 #if SC_GEN_CK
2934     /* Clear the write_protected_cleared flags on all pages. */
2935     for (i = 0; i < page_table_pages; i++)
2936         page_table[i].write_protected_cleared = 0;
2937 #endif
2938
2939     for (i = 0; i < last_free_page; i++) {
2940         generation_index_t generation = page_table[i].gen;
2941         if (page_boxed_p(i)
2942             && (page_table[i].bytes_used != 0)
2943             && (generation != new_space)
2944             && (generation >= from)
2945             && (generation <= to)) {
2946             page_index_t last_page,j;
2947             int write_protected=1;
2948
2949             /* This should be the start of a region */
2950             gc_assert(page_table[i].region_start_offset == 0);
2951
2952             /* Now work forward until the end of the region */
2953             for (last_page = i; ; last_page++) {
2954                 write_protected =
2955                     write_protected && page_table[last_page].write_protected;
2956                 if ((page_table[last_page].bytes_used < PAGE_BYTES)
2957                     /* Or it is PAGE_BYTES and is the last in the block */
2958                     || (!page_boxed_p(last_page+1))
2959                     || (page_table[last_page+1].bytes_used == 0)
2960                     || (page_table[last_page+1].gen != generation)
2961                     || (page_table[last_page+1].region_start_offset == 0))
2962                     break;
2963             }
2964             if (!write_protected) {
2965                 scavenge(page_address(i),
2966                          ((unsigned long)(page_table[last_page].bytes_used
2967                                           + npage_bytes(last_page-i)))
2968                          /N_WORD_BYTES);
2969
2970                 /* Now scan the pages and write protect those that
2971                  * don't have pointers to younger generations. */
2972                 if (enable_page_protection) {
2973                     for (j = i; j <= last_page; j++) {
2974                         num_wp += update_page_write_prot(j);
2975                     }
2976                 }
2977                 if ((gencgc_verbose > 1) && (num_wp != 0)) {
2978                     FSHOW((stderr,
2979                            "/write protected %d pages within generation %d\n",
2980                            num_wp, generation));
2981                 }
2982             }
2983             i = last_page;
2984         }
2985     }
2986
2987 #if SC_GEN_CK
2988     /* Check that none of the write_protected pages in this generation
2989      * have been written to. */
2990     for (i = 0; i < page_table_pages; i++) {
2991         if (page_allocated_p(i)
2992             && (page_table[i].bytes_used != 0)
2993             && (page_table[i].gen == generation)
2994             && (page_table[i].write_protected_cleared != 0)) {
2995             FSHOW((stderr, "/scavenge_generation() %d\n", generation));
2996             FSHOW((stderr,
2997                    "/page bytes_used=%d region_start_offset=%lu dont_move=%d\n",
2998                     page_table[i].bytes_used,
2999                     page_table[i].region_start_offset,
3000                     page_table[i].dont_move));
3001             lose("write to protected page %d in scavenge_generation()\n", i);
3002         }
3003     }
3004 #endif
3005 }
3006
3007 \f
3008 /* Scavenge a newspace generation. As it is scavenged new objects may
3009  * be allocated to it; these will also need to be scavenged. This
3010  * repeats until there are no more objects unscavenged in the
3011  * newspace generation.
3012  *
3013  * To help improve the efficiency, areas written are recorded by
3014  * gc_alloc() and only these scavenged. Sometimes a little more will be
3015  * scavenged, but this causes no harm. An easy check is done that the
3016  * scavenged bytes equals the number allocated in the previous
3017  * scavenge.
3018  *
3019  * Write-protected pages are not scanned except if they are marked
3020  * dont_move in which case they may have been promoted and still have
3021  * pointers to the from space.
3022  *
3023  * Write-protected pages could potentially be written by alloc however
3024  * to avoid having to handle re-scavenging of write-protected pages
3025  * gc_alloc() does not write to write-protected pages.
3026  *
3027  * New areas of objects allocated are recorded alternatively in the two
3028  * new_areas arrays below. */
3029 static struct new_area new_areas_1[NUM_NEW_AREAS];
3030 static struct new_area new_areas_2[NUM_NEW_AREAS];
3031
3032 /* Do one full scan of the new space generation. This is not enough to
3033  * complete the job as new objects may be added to the generation in
3034  * the process which are not scavenged. */
3035 static void
3036 scavenge_newspace_generation_one_scan(generation_index_t generation)
3037 {
3038     page_index_t i;
3039
3040     FSHOW((stderr,
3041            "/starting one full scan of newspace generation %d\n",
3042            generation));
3043     for (i = 0; i < last_free_page; i++) {
3044         /* Note that this skips over open regions when it encounters them. */
3045         if (page_boxed_p(i)
3046             && (page_table[i].bytes_used != 0)
3047             && (page_table[i].gen == generation)
3048             && ((page_table[i].write_protected == 0)
3049                 /* (This may be redundant as write_protected is now
3050                  * cleared before promotion.) */
3051                 || (page_table[i].dont_move == 1))) {
3052             page_index_t last_page;
3053             int all_wp=1;
3054
3055             /* The scavenge will start at the region_start_offset of
3056              * page i.
3057              *
3058              * We need to find the full extent of this contiguous
3059              * block in case objects span pages.
3060              *
3061              * Now work forward until the end of this contiguous area
3062              * is found. A small area is preferred as there is a
3063              * better chance of its pages being write-protected. */
3064             for (last_page = i; ;last_page++) {
3065                 /* If all pages are write-protected and movable,
3066                  * then no need to scavenge */
3067                 all_wp=all_wp && page_table[last_page].write_protected &&
3068                     !page_table[last_page].dont_move;
3069
3070                 /* Check whether this is the last page in this
3071                  * contiguous block */
3072                 if ((page_table[last_page].bytes_used < PAGE_BYTES)
3073                     /* Or it is PAGE_BYTES and is the last in the block */
3074                     || (!page_boxed_p(last_page+1))
3075                     || (page_table[last_page+1].bytes_used == 0)
3076                     || (page_table[last_page+1].gen != generation)
3077                     || (page_table[last_page+1].region_start_offset == 0))
3078                     break;
3079             }
3080
3081             /* Do a limited check for write-protected pages.  */
3082             if (!all_wp) {
3083                 long nwords = (((unsigned long)
3084                                (page_table[last_page].bytes_used
3085                                 + npage_bytes(last_page-i)
3086                                 + page_table[i].region_start_offset))
3087                                / N_WORD_BYTES);
3088                 new_areas_ignore_page = last_page;
3089
3090                 scavenge(page_region_start(i), nwords);
3091
3092             }
3093             i = last_page;
3094         }
3095     }
3096     FSHOW((stderr,
3097            "/done with one full scan of newspace generation %d\n",
3098            generation));
3099 }
3100
3101 /* Do a complete scavenge of the newspace generation. */
3102 static void
3103 scavenge_newspace_generation(generation_index_t generation)
3104 {
3105     long i;
3106
3107     /* the new_areas array currently being written to by gc_alloc() */
3108     struct new_area (*current_new_areas)[] = &new_areas_1;
3109     long current_new_areas_index;
3110
3111     /* the new_areas created by the previous scavenge cycle */
3112     struct new_area (*previous_new_areas)[] = NULL;
3113     long previous_new_areas_index;
3114
3115     /* Flush the current regions updating the tables. */
3116     gc_alloc_update_all_page_tables();
3117
3118     /* Turn on the recording of new areas by gc_alloc(). */
3119     new_areas = current_new_areas;
3120     new_areas_index = 0;
3121
3122     /* Don't need to record new areas that get scavenged anyway during
3123      * scavenge_newspace_generation_one_scan. */
3124     record_new_objects = 1;
3125
3126     /* Start with a full scavenge. */
3127     scavenge_newspace_generation_one_scan(generation);
3128
3129     /* Record all new areas now. */
3130     record_new_objects = 2;
3131
3132     /* Give a chance to weak hash tables to make other objects live.
3133      * FIXME: The algorithm implemented here for weak hash table gcing
3134      * is O(W^2+N) as Bruno Haible warns in
3135      * http://www.haible.de/bruno/papers/cs/weak/WeakDatastructures-writeup.html
3136      * see "Implementation 2". */
3137     scav_weak_hash_tables();
3138
3139     /* Flush the current regions updating the tables. */
3140     gc_alloc_update_all_page_tables();
3141
3142     /* Grab new_areas_index. */
3143     current_new_areas_index = new_areas_index;
3144
3145     /*FSHOW((stderr,
3146              "The first scan is finished; current_new_areas_index=%d.\n",
3147              current_new_areas_index));*/
3148
3149     while (current_new_areas_index > 0) {
3150         /* Move the current to the previous new areas */
3151         previous_new_areas = current_new_areas;
3152         previous_new_areas_index = current_new_areas_index;
3153
3154         /* Scavenge all the areas in previous new areas. Any new areas
3155          * allocated are saved in current_new_areas. */
3156
3157         /* Allocate an array for current_new_areas; alternating between
3158          * new_areas_1 and 2 */
3159         if (previous_new_areas == &new_areas_1)
3160             current_new_areas = &new_areas_2;
3161         else
3162             current_new_areas = &new_areas_1;
3163
3164         /* Set up for gc_alloc(). */
3165         new_areas = current_new_areas;
3166         new_areas_index = 0;
3167
3168         /* Check whether previous_new_areas had overflowed. */
3169         if (previous_new_areas_index >= NUM_NEW_AREAS) {
3170
3171             /* New areas of objects allocated have been lost so need to do a
3172              * full scan to be sure! If this becomes a problem try
3173              * increasing NUM_NEW_AREAS. */
3174             if (gencgc_verbose) {
3175                 SHOW("new_areas overflow, doing full scavenge");
3176             }
3177
3178             /* Don't need to record new areas that get scavenged
3179              * anyway during scavenge_newspace_generation_one_scan. */
3180             record_new_objects = 1;
3181
3182             scavenge_newspace_generation_one_scan(generation);
3183
3184             /* Record all new areas now. */
3185             record_new_objects = 2;
3186
3187             scav_weak_hash_tables();
3188
3189             /* Flush the current regions updating the tables. */
3190             gc_alloc_update_all_page_tables();
3191
3192         } else {
3193
3194             /* Work through previous_new_areas. */
3195             for (i = 0; i < previous_new_areas_index; i++) {
3196                 page_index_t page = (*previous_new_areas)[i].page;
3197                 size_t offset = (*previous_new_areas)[i].offset;
3198                 size_t size = (*previous_new_areas)[i].size / N_WORD_BYTES;
3199                 gc_assert((*previous_new_areas)[i].size % N_WORD_BYTES == 0);
3200                 scavenge(page_address(page)+offset, size);
3201             }
3202
3203             scav_weak_hash_tables();
3204
3205             /* Flush the current regions updating the tables. */
3206             gc_alloc_update_all_page_tables();
3207         }
3208
3209         current_new_areas_index = new_areas_index;
3210
3211         /*FSHOW((stderr,
3212                  "The re-scan has finished; current_new_areas_index=%d.\n",
3213                  current_new_areas_index));*/
3214     }
3215
3216     /* Turn off recording of areas allocated by gc_alloc(). */
3217     record_new_objects = 0;
3218
3219 #if SC_NS_GEN_CK
3220     /* Check that none of the write_protected pages in this generation
3221      * have been written to. */
3222     for (i = 0; i < page_table_pages; i++) {
3223         if (page_allocated_p(i)
3224             && (page_table[i].bytes_used != 0)
3225             && (page_table[i].gen == generation)
3226             && (page_table[i].write_protected_cleared != 0)
3227             && (page_table[i].dont_move == 0)) {
3228             lose("write protected page %d written to in scavenge_newspace_generation\ngeneration=%d dont_move=%d\n",
3229                  i, generation, page_table[i].dont_move);
3230         }
3231     }
3232 #endif
3233 }
3234 \f
3235 /* Un-write-protect all the pages in from_space. This is done at the
3236  * start of a GC else there may be many page faults while scavenging
3237  * the newspace (I've seen drive the system time to 99%). These pages
3238  * would need to be unprotected anyway before unmapping in
3239  * free_oldspace; not sure what effect this has on paging.. */
3240 static void
3241 unprotect_oldspace(void)
3242 {
3243     page_index_t i;
3244     void *region_addr = 0;
3245     void *page_addr = 0;
3246     unsigned long region_bytes = 0;
3247
3248     for (i = 0; i < last_free_page; i++) {
3249         if (page_allocated_p(i)
3250             && (page_table[i].bytes_used != 0)
3251             && (page_table[i].gen == from_space)) {
3252
3253             /* Remove any write-protection. We should be able to rely
3254              * on the write-protect flag to avoid redundant calls. */
3255             if (page_table[i].write_protected) {
3256                 page_table[i].write_protected = 0;
3257                 page_addr = page_address(i);
3258                 if (!region_addr) {
3259                     /* First region. */
3260                     region_addr = page_addr;
3261                     region_bytes = PAGE_BYTES;
3262                 } else if (region_addr + region_bytes == page_addr) {
3263                     /* Region continue. */
3264                     region_bytes += PAGE_BYTES;
3265                 } else {
3266                     /* Unprotect previous region. */
3267                     os_protect(region_addr, region_bytes, OS_VM_PROT_ALL);
3268                     /* First page in new region. */
3269                     region_addr = page_addr;
3270                     region_bytes = PAGE_BYTES;
3271                 }
3272             }
3273         }
3274     }
3275     if (region_addr) {
3276         /* Unprotect last region. */
3277         os_protect(region_addr, region_bytes, OS_VM_PROT_ALL);
3278     }
3279 }
3280
3281 /* Work through all the pages and free any in from_space. This
3282  * assumes that all objects have been copied or promoted to an older
3283  * generation. Bytes_allocated and the generation bytes_allocated
3284  * counter are updated. The number of bytes freed is returned. */
3285 static unsigned long
3286 free_oldspace(void)
3287 {
3288     unsigned long bytes_freed = 0;
3289     page_index_t first_page, last_page;
3290
3291     first_page = 0;
3292
3293     do {
3294         /* Find a first page for the next region of pages. */
3295         while ((first_page < last_free_page)
3296                && (page_free_p(first_page)
3297                    || (page_table[first_page].bytes_used == 0)
3298                    || (page_table[first_page].gen != from_space)))
3299             first_page++;
3300
3301         if (first_page >= last_free_page)
3302             break;
3303
3304         /* Find the last page of this region. */
3305         last_page = first_page;
3306
3307         do {
3308             /* Free the page. */
3309             bytes_freed += page_table[last_page].bytes_used;
3310             generations[page_table[last_page].gen].bytes_allocated -=
3311                 page_table[last_page].bytes_used;
3312             page_table[last_page].allocated = FREE_PAGE_FLAG;
3313             page_table[last_page].bytes_used = 0;
3314             /* Should already be unprotected by unprotect_oldspace(). */
3315             gc_assert(!page_table[last_page].write_protected);
3316             last_page++;
3317         }
3318         while ((last_page < last_free_page)
3319                && page_allocated_p(last_page)
3320                && (page_table[last_page].bytes_used != 0)
3321                && (page_table[last_page].gen == from_space));
3322
3323 #ifdef READ_PROTECT_FREE_PAGES
3324         os_protect(page_address(first_page),
3325                    npage_bytes(last_page-first_page),
3326                    OS_VM_PROT_NONE);
3327 #endif
3328         first_page = last_page;
3329     } while (first_page < last_free_page);
3330
3331     bytes_allocated -= bytes_freed;
3332     return bytes_freed;
3333 }
3334 \f
3335 #if 0
3336 /* Print some information about a pointer at the given address. */
3337 static void
3338 print_ptr(lispobj *addr)
3339 {
3340     /* If addr is in the dynamic space then out the page information. */
3341     page_index_t pi1 = find_page_index((void*)addr);
3342
3343     if (pi1 != -1)
3344         fprintf(stderr,"  %x: page %d  alloc %d  gen %d  bytes_used %d  offset %lu  dont_move %d\n",
3345                 (unsigned long) addr,
3346                 pi1,
3347                 page_table[pi1].allocated,
3348                 page_table[pi1].gen,
3349                 page_table[pi1].bytes_used,
3350                 page_table[pi1].region_start_offset,
3351                 page_table[pi1].dont_move);
3352     fprintf(stderr,"  %x %x %x %x (%x) %x %x %x %x\n",
3353             *(addr-4),
3354             *(addr-3),
3355             *(addr-2),
3356             *(addr-1),
3357             *(addr-0),
3358             *(addr+1),
3359             *(addr+2),
3360             *(addr+3),
3361             *(addr+4));
3362 }
3363 #endif
3364
3365 static void
3366 verify_space(lispobj *start, size_t words)
3367 {
3368     int is_in_dynamic_space = (find_page_index((void*)start) != -1);
3369     int is_in_readonly_space =
3370         (READ_ONLY_SPACE_START <= (unsigned long)start &&
3371          (unsigned long)start < SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0));
3372
3373     while (words > 0) {
3374         size_t count = 1;
3375         lispobj thing = *(lispobj*)start;
3376
3377         if (is_lisp_pointer(thing)) {
3378             page_index_t page_index = find_page_index((void*)thing);
3379             long to_readonly_space =
3380                 (READ_ONLY_SPACE_START <= thing &&
3381                  thing < SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0));
3382             long to_static_space =
3383                 (STATIC_SPACE_START <= thing &&
3384                  thing < SymbolValue(STATIC_SPACE_FREE_POINTER,0));
3385
3386             /* Does it point to the dynamic space? */
3387             if (page_index != -1) {
3388                 /* If it's within the dynamic space it should point to a used
3389                  * page. XX Could check the offset too. */
3390                 if (page_allocated_p(page_index)
3391                     && (page_table[page_index].bytes_used == 0))
3392                     lose ("Ptr %x @ %x sees free page.\n", thing, start);
3393                 /* Check that it doesn't point to a forwarding pointer! */
3394                 if (*((lispobj *)native_pointer(thing)) == 0x01) {
3395                     lose("Ptr %x @ %x sees forwarding ptr.\n", thing, start);
3396                 }
3397                 /* Check that its not in the RO space as it would then be a
3398                  * pointer from the RO to the dynamic space. */
3399                 if (is_in_readonly_space) {
3400                     lose("ptr to dynamic space %x from RO space %x\n",
3401                          thing, start);
3402                 }
3403                 /* Does it point to a plausible object? This check slows
3404                  * it down a lot (so it's commented out).
3405                  *
3406                  * "a lot" is serious: it ate 50 minutes cpu time on
3407                  * my duron 950 before I came back from lunch and
3408                  * killed it.
3409                  *
3410                  *   FIXME: Add a variable to enable this
3411                  * dynamically. */
3412                 /*
3413                 if (!possibly_valid_dynamic_space_pointer((lispobj *)thing)) {
3414                     lose("ptr %x to invalid object %x\n", thing, start);
3415                 }
3416                 */
3417             } else {
3418                 /* Verify that it points to another valid space. */
3419                 if (!to_readonly_space && !to_static_space) {
3420                     lose("Ptr %x @ %x sees junk.\n", thing, start);
3421                 }
3422             }
3423         } else {
3424             if (!(fixnump(thing))) {
3425                 /* skip fixnums */
3426                 switch(widetag_of(*start)) {
3427
3428                     /* boxed objects */
3429                 case SIMPLE_VECTOR_WIDETAG:
3430                 case RATIO_WIDETAG:
3431                 case COMPLEX_WIDETAG:
3432                 case SIMPLE_ARRAY_WIDETAG:
3433                 case COMPLEX_BASE_STRING_WIDETAG:
3434 #ifdef COMPLEX_CHARACTER_STRING_WIDETAG
3435                 case COMPLEX_CHARACTER_STRING_WIDETAG:
3436 #endif
3437                 case COMPLEX_VECTOR_NIL_WIDETAG:
3438                 case COMPLEX_BIT_VECTOR_WIDETAG:
3439                 case COMPLEX_VECTOR_WIDETAG:
3440                 case COMPLEX_ARRAY_WIDETAG:
3441                 case CLOSURE_HEADER_WIDETAG:
3442                 case FUNCALLABLE_INSTANCE_HEADER_WIDETAG:
3443                 case VALUE_CELL_HEADER_WIDETAG:
3444                 case SYMBOL_HEADER_WIDETAG:
3445                 case CHARACTER_WIDETAG:
3446 #if N_WORD_BITS == 64
3447                 case SINGLE_FLOAT_WIDETAG:
3448 #endif
3449                 case UNBOUND_MARKER_WIDETAG:
3450                 case FDEFN_WIDETAG:
3451                     count = 1;
3452                     break;
3453
3454                 case INSTANCE_HEADER_WIDETAG:
3455                     {
3456                         lispobj nuntagged;
3457                         long ntotal = HeaderValue(thing);
3458                         lispobj layout = ((struct instance *)start)->slots[0];
3459                         if (!layout) {
3460                             count = 1;
3461                             break;
3462                         }
3463                         nuntagged = ((struct layout *)
3464                                      native_pointer(layout))->n_untagged_slots;
3465                         verify_space(start + 1,
3466                                      ntotal - fixnum_value(nuntagged));
3467                         count = ntotal + 1;
3468                         break;
3469                     }
3470                 case CODE_HEADER_WIDETAG:
3471                     {
3472                         lispobj object = *start;
3473                         struct code *code;
3474                         long nheader_words, ncode_words, nwords;
3475                         lispobj fheaderl;
3476                         struct simple_fun *fheaderp;
3477
3478                         code = (struct code *) start;
3479
3480                         /* Check that it's not in the dynamic space.
3481                          * FIXME: Isn't is supposed to be OK for code
3482                          * objects to be in the dynamic space these days? */
3483                         if (is_in_dynamic_space
3484                             /* It's ok if it's byte compiled code. The trace
3485                              * table offset will be a fixnum if it's x86
3486                              * compiled code - check.
3487                              *
3488                              * FIXME: #^#@@! lack of abstraction here..
3489                              * This line can probably go away now that
3490                              * there's no byte compiler, but I've got
3491                              * too much to worry about right now to try
3492                              * to make sure. -- WHN 2001-10-06 */
3493                             && fixnump(code->trace_table_offset)
3494                             /* Only when enabled */
3495                             && verify_dynamic_code_check) {
3496                             FSHOW((stderr,
3497                                    "/code object at %x in the dynamic space\n",
3498                                    start));
3499                         }
3500
3501                         ncode_words = fixnum_value(code->code_size);
3502                         nheader_words = HeaderValue(object);
3503                         nwords = ncode_words + nheader_words;
3504                         nwords = CEILING(nwords, 2);
3505                         /* Scavenge the boxed section of the code data block */
3506                         verify_space(start + 1, nheader_words - 1);
3507
3508                         /* Scavenge the boxed section of each function
3509                          * object in the code data block. */
3510                         fheaderl = code->entry_points;
3511                         while (fheaderl != NIL) {
3512                             fheaderp =
3513                                 (struct simple_fun *) native_pointer(fheaderl);
3514                             gc_assert(widetag_of(fheaderp->header) ==
3515                                       SIMPLE_FUN_HEADER_WIDETAG);
3516                             verify_space(&fheaderp->name, 1);
3517                             verify_space(&fheaderp->arglist, 1);
3518                             verify_space(&fheaderp->type, 1);
3519                             fheaderl = fheaderp->next;
3520                         }
3521                         count = nwords;
3522                         break;
3523                     }
3524
3525                     /* unboxed objects */
3526                 case BIGNUM_WIDETAG:
3527 #if N_WORD_BITS != 64
3528                 case SINGLE_FLOAT_WIDETAG:
3529 #endif
3530                 case DOUBLE_FLOAT_WIDETAG:
3531 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
3532                 case LONG_FLOAT_WIDETAG:
3533 #endif
3534 #ifdef COMPLEX_SINGLE_FLOAT_WIDETAG
3535                 case COMPLEX_SINGLE_FLOAT_WIDETAG:
3536 #endif
3537 #ifdef COMPLEX_DOUBLE_FLOAT_WIDETAG
3538                 case COMPLEX_DOUBLE_FLOAT_WIDETAG:
3539 #endif
3540 #ifdef COMPLEX_LONG_FLOAT_WIDETAG
3541                 case COMPLEX_LONG_FLOAT_WIDETAG:
3542 #endif
3543                 case SIMPLE_BASE_STRING_WIDETAG:
3544 #ifdef SIMPLE_CHARACTER_STRING_WIDETAG
3545                 case SIMPLE_CHARACTER_STRING_WIDETAG:
3546 #endif
3547                 case SIMPLE_BIT_VECTOR_WIDETAG:
3548                 case SIMPLE_ARRAY_NIL_WIDETAG:
3549                 case SIMPLE_ARRAY_UNSIGNED_BYTE_2_WIDETAG:
3550                 case SIMPLE_ARRAY_UNSIGNED_BYTE_4_WIDETAG:
3551                 case SIMPLE_ARRAY_UNSIGNED_BYTE_7_WIDETAG:
3552                 case SIMPLE_ARRAY_UNSIGNED_BYTE_8_WIDETAG:
3553                 case SIMPLE_ARRAY_UNSIGNED_BYTE_15_WIDETAG:
3554                 case SIMPLE_ARRAY_UNSIGNED_BYTE_16_WIDETAG:
3555 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG
3556                 case SIMPLE_ARRAY_UNSIGNED_BYTE_29_WIDETAG:
3557 #endif
3558                 case SIMPLE_ARRAY_UNSIGNED_BYTE_31_WIDETAG:
3559                 case SIMPLE_ARRAY_UNSIGNED_BYTE_32_WIDETAG:
3560 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG
3561                 case SIMPLE_ARRAY_UNSIGNED_BYTE_60_WIDETAG:
3562 #endif
3563 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG
3564                 case SIMPLE_ARRAY_UNSIGNED_BYTE_63_WIDETAG:
3565 #endif
3566 #ifdef SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG
3567                 case SIMPLE_ARRAY_UNSIGNED_BYTE_64_WIDETAG:
3568 #endif
3569 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG
3570                 case SIMPLE_ARRAY_SIGNED_BYTE_8_WIDETAG:
3571 #endif
3572 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG
3573                 case SIMPLE_ARRAY_SIGNED_BYTE_16_WIDETAG:
3574 #endif
3575 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG
3576                 case SIMPLE_ARRAY_SIGNED_BYTE_30_WIDETAG:
3577 #endif
3578 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG
3579                 case SIMPLE_ARRAY_SIGNED_BYTE_32_WIDETAG:
3580 #endif
3581 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG
3582                 case SIMPLE_ARRAY_SIGNED_BYTE_61_WIDETAG:
3583 #endif
3584 #ifdef SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG
3585                 case SIMPLE_ARRAY_SIGNED_BYTE_64_WIDETAG:
3586 #endif
3587                 case SIMPLE_ARRAY_SINGLE_FLOAT_WIDETAG:
3588                 case SIMPLE_ARRAY_DOUBLE_FLOAT_WIDETAG:
3589 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
3590                 case SIMPLE_ARRAY_LONG_FLOAT_WIDETAG:
3591 #endif
3592 #ifdef SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG
3593                 case SIMPLE_ARRAY_COMPLEX_SINGLE_FLOAT_WIDETAG:
3594 #endif
3595 #ifdef SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG
3596                 case SIMPLE_ARRAY_COMPLEX_DOUBLE_FLOAT_WIDETAG:
3597 #endif
3598 #ifdef SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG
3599                 case SIMPLE_ARRAY_COMPLEX_LONG_FLOAT_WIDETAG:
3600 #endif
3601                 case SAP_WIDETAG:
3602                 case WEAK_POINTER_WIDETAG:
3603 #ifdef LUTEX_WIDETAG
3604                 case LUTEX_WIDETAG:
3605 #endif
3606 #ifdef NO_TLS_VALUE_MARKER_WIDETAG
3607                 case NO_TLS_VALUE_MARKER_WIDETAG:
3608 #endif
3609                     count = (sizetab[widetag_of(*start)])(start);
3610                     break;
3611
3612                 default:
3613                     lose("Unhandled widetag 0x%x at 0x%x\n",
3614                          widetag_of(*start), start);
3615                 }
3616             }
3617         }
3618         start += count;
3619         words -= count;
3620     }
3621 }
3622
3623 static void
3624 verify_gc(void)
3625 {
3626     /* FIXME: It would be nice to make names consistent so that
3627      * foo_size meant size *in* *bytes* instead of size in some
3628      * arbitrary units. (Yes, this caused a bug, how did you guess?:-)
3629      * Some counts of lispobjs are called foo_count; it might be good
3630      * to grep for all foo_size and rename the appropriate ones to
3631      * foo_count. */
3632     long read_only_space_size =
3633         (lispobj*)SymbolValue(READ_ONLY_SPACE_FREE_POINTER,0)
3634         - (lispobj*)READ_ONLY_SPACE_START;
3635     long static_space_size =
3636         (lispobj*)SymbolValue(STATIC_SPACE_FREE_POINTER,0)
3637         - (lispobj*)STATIC_SPACE_START;
3638     struct thread *th;
3639     for_each_thread(th) {
3640     long binding_stack_size =
3641         (lispobj*)get_binding_stack_pointer(th)
3642             - (lispobj*)th->binding_stack_start;
3643         verify_space(th->binding_stack_start, binding_stack_size);
3644     }
3645     verify_space((lispobj*)READ_ONLY_SPACE_START, read_only_space_size);
3646     verify_space((lispobj*)STATIC_SPACE_START   , static_space_size);
3647 }
3648
3649 static void
3650 verify_generation(generation_index_t generation)
3651 {
3652     page_index_t i;
3653
3654     for (i = 0; i < last_free_page; i++) {
3655         if (page_allocated_p(i)
3656             && (page_table[i].bytes_used != 0)
3657             && (page_table[i].gen == generation)) {
3658             page_index_t last_page;
3659             int region_allocation = page_table[i].allocated;
3660
3661             /* This should be the start of a contiguous block */
3662             gc_assert(page_table[i].region_start_offset == 0);
3663
3664             /* Need to find the full extent of this contiguous block in case
3665                objects span pages. */
3666
3667             /* Now work forward until the end of this contiguous area is
3668                found. */
3669             for (last_page = i; ;last_page++)
3670                 /* Check whether this is the last page in this contiguous
3671                  * block. */
3672                 if ((page_table[last_page].bytes_used < PAGE_BYTES)
3673                     /* Or it is PAGE_BYTES and is the last in the block */
3674                     || (page_table[last_page+1].allocated != region_allocation)
3675                     || (page_table[last_page+1].bytes_used == 0)
3676                     || (page_table[last_page+1].gen != generation)
3677                     || (page_table[last_page+1].region_start_offset == 0))
3678                     break;
3679
3680             verify_space(page_address(i),
3681                          ((unsigned long)
3682                           (page_table[last_page].bytes_used
3683                            + npage_bytes(last_page-i)))
3684                          / N_WORD_BYTES);
3685             i = last_page;
3686         }
3687     }
3688 }
3689
3690 /* Check that all the free space is zero filled. */
3691 static void
3692 verify_zero_fill(void)
3693 {
3694     page_index_t page;
3695
3696     for (page = 0; page < last_free_page; page++) {
3697         if (page_free_p(page)) {
3698             /* The whole page should be zero filled. */
3699             long *start_addr = (long *)page_address(page);
3700             long size = 1024;
3701             long i;
3702             for (i = 0; i < size; i++) {
3703                 if (start_addr[i] != 0) {
3704                     lose("free page not zero at %x\n", start_addr + i);
3705                 }
3706             }
3707         } else {
3708             long free_bytes = PAGE_BYTES - page_table[page].bytes_used;
3709             if (free_bytes > 0) {
3710                 long *start_addr = (long *)((unsigned long)page_address(page)
3711                                           + page_table[page].bytes_used);
3712                 long size = free_bytes / N_WORD_BYTES;
3713                 long i;
3714                 for (i = 0; i < size; i++) {
3715                     if (start_addr[i] != 0) {
3716                         lose("free region not zero at %x\n", start_addr + i);
3717                     }
3718                 }
3719             }
3720         }
3721     }
3722 }
3723
3724 /* External entry point for verify_zero_fill */
3725 void
3726 gencgc_verify_zero_fill(void)
3727 {
3728     /* Flush the alloc regions updating the tables. */
3729     gc_alloc_update_all_page_tables();
3730     SHOW("verifying zero fill");
3731     verify_zero_fill();
3732 }
3733
3734 static void
3735 verify_dynamic_space(void)
3736 {
3737     generation_index_t i;
3738
3739     for (i = 0; i <= HIGHEST_NORMAL_GENERATION; i++)
3740         verify_generation(i);
3741
3742     if (gencgc_enable_verify_zero_fill)
3743         verify_zero_fill();
3744 }
3745 \f
3746 /* Write-protect all the dynamic boxed pages in the given generation. */
3747 static void
3748 write_protect_generation_pages(generation_index_t generation)
3749 {
3750     page_index_t start;
3751
3752     gc_assert(generation < SCRATCH_GENERATION);
3753
3754     for (start = 0; start < last_free_page; start++) {
3755         if (protect_page_p(start, generation)) {
3756             void *page_start;
3757             page_index_t last;
3758
3759             /* Note the page as protected in the page tables. */
3760             page_table[start].write_protected = 1;
3761
3762             for (last = start + 1; last < last_free_page; last++) {
3763                 if (!protect_page_p(last, generation))
3764                   break;
3765                 page_table[last].write_protected = 1;
3766             }
3767
3768             page_start = (void *)page_address(start);
3769
3770             os_protect(page_start,
3771                        npage_bytes(last - start),
3772                        OS_VM_PROT_READ | OS_VM_PROT_EXECUTE);
3773
3774             start = last;
3775         }
3776     }
3777
3778     if (gencgc_verbose > 1) {
3779         FSHOW((stderr,
3780                "/write protected %d of %d pages in generation %d\n",
3781                count_write_protect_generation_pages(generation),
3782                count_generation_pages(generation),
3783                generation));
3784     }
3785 }
3786
3787 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
3788
3789 static void
3790 scavenge_control_stack()
3791 {
3792     unsigned long control_stack_size;
3793
3794     /* This is going to be a big problem when we try to port threads
3795      * to PPC... CLH */
3796     struct thread *th = arch_os_get_current_thread();
3797     lispobj *control_stack =
3798         (lispobj *)(th->control_stack_start);
3799
3800     control_stack_size = current_control_stack_pointer - control_stack;
3801     scavenge(control_stack, control_stack_size);
3802 }
3803
3804 /* Scavenging Interrupt Contexts */
3805
3806 static int boxed_registers[] = BOXED_REGISTERS;
3807
3808 static void
3809 scavenge_interrupt_context(os_context_t * context)
3810 {
3811     int i;
3812
3813 #ifdef reg_LIP
3814     unsigned long lip;
3815     unsigned long lip_offset;
3816     int lip_register_pair;
3817 #endif
3818     unsigned long pc_code_offset;
3819
3820 #ifdef ARCH_HAS_LINK_REGISTER
3821     unsigned long lr_code_offset;
3822 #endif
3823 #ifdef ARCH_HAS_NPC_REGISTER
3824     unsigned long npc_code_offset;
3825 #endif
3826
3827 #ifdef reg_LIP
3828     /* Find the LIP's register pair and calculate it's offset */
3829     /* before we scavenge the context. */
3830
3831     /*
3832      * I (RLT) think this is trying to find the boxed register that is
3833      * closest to the LIP address, without going past it.  Usually, it's
3834      * reg_CODE or reg_LRA.  But sometimes, nothing can be found.
3835      */
3836     lip = *os_context_register_addr(context, reg_LIP);
3837     lip_offset = 0x7FFFFFFF;
3838     lip_register_pair = -1;
3839     for (i = 0; i < (sizeof(boxed_registers) / sizeof(int)); i++) {
3840         unsigned long reg;
3841         long offset;
3842         int index;
3843
3844         index = boxed_registers[i];
3845         reg = *os_context_register_addr(context, index);
3846         if ((reg & ~((1L<<N_LOWTAG_BITS)-1)) <= lip) {
3847             offset = lip - reg;
3848             if (offset < lip_offset) {
3849                 lip_offset = offset;
3850                 lip_register_pair = index;
3851             }
3852         }
3853     }
3854 #endif /* reg_LIP */
3855
3856     /* Compute the PC's offset from the start of the CODE */
3857     /* register. */
3858     pc_code_offset = *os_context_pc_addr(context)
3859         - *os_context_register_addr(context, reg_CODE);
3860 #ifdef ARCH_HAS_NPC_REGISTER
3861     npc_code_offset = *os_context_npc_addr(context)
3862         - *os_context_register_addr(context, reg_CODE);
3863 #endif /* ARCH_HAS_NPC_REGISTER */
3864
3865 #ifdef ARCH_HAS_LINK_REGISTER
3866     lr_code_offset =
3867         *os_context_lr_addr(context) -
3868         *os_context_register_addr(context, reg_CODE);
3869 #endif
3870
3871     /* Scanvenge all boxed registers in the context. */
3872     for (i = 0; i < (sizeof(boxed_registers) / sizeof(int)); i++) {
3873         int index;
3874         lispobj foo;
3875
3876         index = boxed_registers[i];
3877         foo = *os_context_register_addr(context, index);
3878         scavenge(&foo, 1);
3879         *os_context_register_addr(context, index) = foo;
3880
3881         scavenge((lispobj*) &(*os_context_register_addr(context, index)), 1);
3882     }
3883
3884 #ifdef reg_LIP
3885     /* Fix the LIP */
3886
3887     /*
3888      * But what happens if lip_register_pair is -1?
3889      * *os_context_register_addr on Solaris (see
3890      * solaris_register_address in solaris-os.c) will return
3891      * &context->uc_mcontext.gregs[2]. But gregs[2] is REG_nPC. Is
3892      * that what we really want? My guess is that that is not what we
3893      * want, so if lip_register_pair is -1, we don't touch reg_LIP at
3894      * all. But maybe it doesn't really matter if LIP is trashed?
3895      */
3896     if (lip_register_pair >= 0) {
3897         *os_context_register_addr(context, reg_LIP) =
3898             *os_context_register_addr(context, lip_register_pair)
3899             + lip_offset;
3900     }
3901 #endif /* reg_LIP */
3902
3903     /* Fix the PC if it was in from space */
3904     if (from_space_p(*os_context_pc_addr(context)))
3905         *os_context_pc_addr(context) =
3906             *os_context_register_addr(context, reg_CODE) + pc_code_offset;
3907
3908 #ifdef ARCH_HAS_LINK_REGISTER
3909     /* Fix the LR ditto; important if we're being called from
3910      * an assembly routine that expects to return using blr, otherwise
3911      * harmless */
3912     if (from_space_p(*os_context_lr_addr(context)))
3913         *os_context_lr_addr(context) =
3914             *os_context_register_addr(context, reg_CODE) + lr_code_offset;
3915 #endif
3916
3917 #ifdef ARCH_HAS_NPC_REGISTER
3918     if (from_space_p(*os_context_npc_addr(context)))
3919         *os_context_npc_addr(context) =
3920             *os_context_register_addr(context, reg_CODE) + npc_code_offset;
3921 #endif /* ARCH_HAS_NPC_REGISTER */
3922 }
3923
3924 void
3925 scavenge_interrupt_contexts(void)
3926 {
3927     int i, index;
3928     os_context_t *context;
3929
3930     struct thread *th=arch_os_get_current_thread();
3931
3932     index = fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,0));
3933
3934 #if defined(DEBUG_PRINT_CONTEXT_INDEX)
3935     printf("Number of active contexts: %d\n", index);
3936 #endif
3937
3938     for (i = 0; i < index; i++) {
3939         context = th->interrupt_contexts[i];
3940         scavenge_interrupt_context(context);
3941     }
3942 }
3943
3944 #endif
3945
3946 #if defined(LISP_FEATURE_SB_THREAD)
3947 static void
3948 preserve_context_registers (os_context_t *c)
3949 {
3950     void **ptr;
3951     /* On Darwin the signal context isn't a contiguous block of memory,
3952      * so just preserve_pointering its contents won't be sufficient.
3953      */
3954 #if defined(LISP_FEATURE_DARWIN)
3955 #if defined LISP_FEATURE_X86
3956     preserve_pointer((void*)*os_context_register_addr(c,reg_EAX));
3957     preserve_pointer((void*)*os_context_register_addr(c,reg_ECX));
3958     preserve_pointer((void*)*os_context_register_addr(c,reg_EDX));
3959     preserve_pointer((void*)*os_context_register_addr(c,reg_EBX));
3960     preserve_pointer((void*)*os_context_register_addr(c,reg_ESI));
3961     preserve_pointer((void*)*os_context_register_addr(c,reg_EDI));
3962     preserve_pointer((void*)*os_context_pc_addr(c));
3963 #elif defined LISP_FEATURE_X86_64
3964     preserve_pointer((void*)*os_context_register_addr(c,reg_RAX));
3965     preserve_pointer((void*)*os_context_register_addr(c,reg_RCX));
3966     preserve_pointer((void*)*os_context_register_addr(c,reg_RDX));
3967     preserve_pointer((void*)*os_context_register_addr(c,reg_RBX));
3968     preserve_pointer((void*)*os_context_register_addr(c,reg_RSI));
3969     preserve_pointer((void*)*os_context_register_addr(c,reg_RDI));
3970     preserve_pointer((void*)*os_context_register_addr(c,reg_R8));
3971     preserve_pointer((void*)*os_context_register_addr(c,reg_R9));
3972     preserve_pointer((void*)*os_context_register_addr(c,reg_R10));
3973     preserve_pointer((void*)*os_context_register_addr(c,reg_R11));
3974     preserve_pointer((void*)*os_context_register_addr(c,reg_R12));
3975     preserve_pointer((void*)*os_context_register_addr(c,reg_R13));
3976     preserve_pointer((void*)*os_context_register_addr(c,reg_R14));
3977     preserve_pointer((void*)*os_context_register_addr(c,reg_R15));
3978     preserve_pointer((void*)*os_context_pc_addr(c));
3979 #else
3980     #error "preserve_context_registers needs to be tweaked for non-x86 Darwin"
3981 #endif
3982 #endif
3983     for(ptr = ((void **)(c+1))-1; ptr>=(void **)c; ptr--) {
3984         preserve_pointer(*ptr);
3985     }
3986 }
3987 #endif
3988
3989 /* Garbage collect a generation. If raise is 0 then the remains of the
3990  * generation are not raised to the next generation. */
3991 static void
3992 garbage_collect_generation(generation_index_t generation, int raise)
3993 {
3994     unsigned long bytes_freed;
3995     page_index_t i;
3996     unsigned long static_space_size;
3997 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
3998     struct thread *th;
3999 #endif
4000     gc_assert(generation <= HIGHEST_NORMAL_GENERATION);
4001
4002     /* The oldest generation can't be raised. */
4003     gc_assert((generation != HIGHEST_NORMAL_GENERATION) || (raise == 0));
4004
4005     /* Check if weak hash tables were processed in the previous GC. */
4006     gc_assert(weak_hash_tables == NULL);
4007
4008     /* Initialize the weak pointer list. */
4009     weak_pointers = NULL;
4010
4011 #ifdef LUTEX_WIDETAG
4012     unmark_lutexes(generation);
4013 #endif
4014
4015     /* When a generation is not being raised it is transported to a
4016      * temporary generation (NUM_GENERATIONS), and lowered when
4017      * done. Set up this new generation. There should be no pages
4018      * allocated to it yet. */
4019     if (!raise) {
4020          gc_assert(generations[SCRATCH_GENERATION].bytes_allocated == 0);
4021     }
4022
4023     /* Set the global src and dest. generations */
4024     from_space = generation;
4025     if (raise)
4026         new_space = generation+1;
4027     else
4028         new_space = SCRATCH_GENERATION;
4029
4030     /* Change to a new space for allocation, resetting the alloc_start_page */
4031     gc_alloc_generation = new_space;
4032     generations[new_space].alloc_start_page = 0;
4033     generations[new_space].alloc_unboxed_start_page = 0;
4034     generations[new_space].alloc_large_start_page = 0;
4035     generations[new_space].alloc_large_unboxed_start_page = 0;
4036
4037     /* Before any pointers are preserved, the dont_move flags on the
4038      * pages need to be cleared. */
4039     for (i = 0; i < last_free_page; i++)
4040         if(page_table[i].gen==from_space)
4041             page_table[i].dont_move = 0;
4042
4043     /* Un-write-protect the old-space pages. This is essential for the
4044      * promoted pages as they may contain pointers into the old-space
4045      * which need to be scavenged. It also helps avoid unnecessary page
4046      * faults as forwarding pointers are written into them. They need to
4047      * be un-protected anyway before unmapping later. */
4048     unprotect_oldspace();
4049
4050     /* Scavenge the stacks' conservative roots. */
4051
4052     /* there are potentially two stacks for each thread: the main
4053      * stack, which may contain Lisp pointers, and the alternate stack.
4054      * We don't ever run Lisp code on the altstack, but it may
4055      * host a sigcontext with lisp objects in it */
4056
4057     /* what we need to do: (1) find the stack pointer for the main
4058      * stack; scavenge it (2) find the interrupt context on the
4059      * alternate stack that might contain lisp values, and scavenge
4060      * that */
4061
4062     /* we assume that none of the preceding applies to the thread that
4063      * initiates GC.  If you ever call GC from inside an altstack
4064      * handler, you will lose. */
4065
4066 #if defined(LISP_FEATURE_X86) || defined(LISP_FEATURE_X86_64)
4067     /* And if we're saving a core, there's no point in being conservative. */
4068     if (conservative_stack) {
4069         for_each_thread(th) {
4070             void **ptr;
4071             void **esp=(void **)-1;
4072 #ifdef LISP_FEATURE_SB_THREAD
4073             long i,free;
4074             if(th==arch_os_get_current_thread()) {
4075                 /* Somebody is going to burn in hell for this, but casting
4076                  * it in two steps shuts gcc up about strict aliasing. */
4077                 esp = (void **)((void *)&raise);
4078             } else {
4079                 void **esp1;
4080                 free=fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,th));
4081                 for(i=free-1;i>=0;i--) {
4082                     os_context_t *c=th->interrupt_contexts[i];
4083                     esp1 = (void **) *os_context_register_addr(c,reg_SP);
4084                     if (esp1>=(void **)th->control_stack_start &&
4085                         esp1<(void **)th->control_stack_end) {
4086                         if(esp1<esp) esp=esp1;
4087                         preserve_context_registers(c);
4088                     }
4089                 }
4090             }
4091 #else
4092             esp = (void **)((void *)&raise);
4093 #endif
4094             for (ptr = ((void **)th->control_stack_end)-1; ptr >= esp;  ptr--) {
4095                 preserve_pointer(*ptr);
4096             }
4097         }
4098     }
4099 #endif
4100
4101 #if QSHOW
4102     if (gencgc_verbose > 1) {
4103         long num_dont_move_pages = count_dont_move_pages();
4104         fprintf(stderr,
4105                 "/non-movable pages due to conservative pointers = %d (%d bytes)\n",
4106                 num_dont_move_pages,
4107                 npage_bytes(num_dont_move_pages));
4108     }
4109 #endif
4110
4111     /* Scavenge all the rest of the roots. */
4112
4113 #if !defined(LISP_FEATURE_X86) && !defined(LISP_FEATURE_X86_64)
4114     /*
4115      * If not x86, we need to scavenge the interrupt context(s) and the
4116      * control stack.
4117      */
4118     scavenge_interrupt_contexts();
4119     scavenge_control_stack();
4120 #endif
4121
4122     /* Scavenge the Lisp functions of the interrupt handlers, taking
4123      * care to avoid SIG_DFL and SIG_IGN. */
4124     for (i = 0; i < NSIG; i++) {
4125         union interrupt_handler handler = interrupt_handlers[i];
4126         if (!ARE_SAME_HANDLER(handler.c, SIG_IGN) &&
4127             !ARE_SAME_HANDLER(handler.c, SIG_DFL)) {
4128             scavenge((lispobj *)(interrupt_handlers + i), 1);
4129         }
4130     }
4131     /* Scavenge the binding stacks. */
4132     {
4133         struct thread *th;
4134         for_each_thread(th) {
4135             long len= (lispobj *)get_binding_stack_pointer(th) -
4136                 th->binding_stack_start;
4137             scavenge((lispobj *) th->binding_stack_start,len);
4138 #ifdef LISP_FEATURE_SB_THREAD
4139             /* do the tls as well */
4140             len=fixnum_value(SymbolValue(FREE_TLS_INDEX,0)) -
4141                 (sizeof (struct thread))/(sizeof (lispobj));
4142             scavenge((lispobj *) (th+1),len);
4143 #endif
4144         }
4145     }
4146
4147     /* The original CMU CL code had scavenge-read-only-space code
4148      * controlled by the Lisp-level variable
4149      * *SCAVENGE-READ-ONLY-SPACE*. It was disabled by default, and it
4150      * wasn't documented under what circumstances it was useful or
4151      * safe to turn it on, so it's been turned off in SBCL. If you
4152      * want/need this functionality, and can test and document it,
4153      * please submit a patch. */
4154 #if 0
4155     if (SymbolValue(SCAVENGE_READ_ONLY_SPACE) != NIL) {
4156         unsigned long read_only_space_size =
4157             (lispobj*)SymbolValue(READ_ONLY_SPACE_FREE_POINTER) -
4158             (lispobj*)READ_ONLY_SPACE_START;
4159         FSHOW((stderr,
4160                "/scavenge read only space: %d bytes\n",
4161                read_only_space_size * sizeof(lispobj)));
4162         scavenge( (lispobj *) READ_ONLY_SPACE_START, read_only_space_size);
4163     }
4164 #endif
4165
4166     /* Scavenge static space. */
4167     static_space_size =
4168         (lispobj *)SymbolValue(STATIC_SPACE_FREE_POINTER,0) -
4169         (lispobj *)STATIC_SPACE_START;
4170     if (gencgc_verbose > 1) {
4171         FSHOW((stderr,
4172                "/scavenge static space: %d bytes\n",
4173                static_space_size * sizeof(lispobj)));
4174     }
4175     scavenge( (lispobj *) STATIC_SPACE_START, static_space_size);
4176
4177     /* All generations but the generation being GCed need to be
4178      * scavenged. The new_space generation needs special handling as
4179      * objects may be moved in - it is handled separately below. */
4180     scavenge_generations(generation+1, PSEUDO_STATIC_GENERATION);
4181
4182     /* Finally scavenge the new_space generation. Keep going until no
4183      * more objects are moved into the new generation */
4184     scavenge_newspace_generation(new_space);
4185
4186     /* FIXME: I tried reenabling this check when debugging unrelated
4187      * GC weirdness ca. sbcl-0.6.12.45, and it failed immediately.
4188      * Since the current GC code seems to work well, I'm guessing that
4189      * this debugging code is just stale, but I haven't tried to
4190      * figure it out. It should be figured out and then either made to
4191      * work or just deleted. */
4192 #define RESCAN_CHECK 0
4193 #if RESCAN_CHECK
4194     /* As a check re-scavenge the newspace once; no new objects should
4195      * be found. */
4196     {
4197         long old_bytes_allocated = bytes_allocated;
4198         long bytes_allocated;
4199
4200         /* Start with a full scavenge. */
4201         scavenge_newspace_generation_one_scan(new_space);
4202
4203         /* Flush the current regions, updating the tables. */
4204         gc_alloc_update_all_page_tables();
4205
4206         bytes_allocated = bytes_allocated - old_bytes_allocated;
4207
4208         if (bytes_allocated != 0) {
4209             lose("Rescan of new_space allocated %d more bytes.\n",
4210                  bytes_allocated);
4211         }
4212     }
4213 #endif
4214
4215     scan_weak_hash_tables();
4216     scan_weak_pointers();
4217
4218     /* Flush the current regions, updating the tables. */
4219     gc_alloc_update_all_page_tables();
4220
4221     /* Free the pages in oldspace, but not those marked dont_move. */
4222     bytes_freed = free_oldspace();
4223
4224     /* If the GC is not raising the age then lower the generation back
4225      * to its normal generation number */
4226     if (!raise) {
4227         for (i = 0; i < last_free_page; i++)
4228             if ((page_table[i].bytes_used != 0)
4229                 && (page_table[i].gen == SCRATCH_GENERATION))
4230                 page_table[i].gen = generation;
4231         gc_assert(generations[generation].bytes_allocated == 0);
4232         generations[generation].bytes_allocated =
4233             generations[SCRATCH_GENERATION].bytes_allocated;
4234         generations[SCRATCH_GENERATION].bytes_allocated = 0;
4235     }
4236
4237     /* Reset the alloc_start_page for generation. */
4238     generations[generation].alloc_start_page = 0;
4239     generations[generation].alloc_unboxed_start_page = 0;
4240     generations[generation].alloc_large_start_page = 0;
4241     generations[generation].alloc_large_unboxed_start_page = 0;
4242
4243     if (generation >= verify_gens) {
4244         if (gencgc_verbose) {
4245             SHOW("verifying");
4246         }
4247         verify_gc();
4248         verify_dynamic_space();
4249     }
4250
4251     /* Set the new gc trigger for the GCed generation. */
4252     generations[generation].gc_trigger =
4253         generations[generation].bytes_allocated
4254         + generations[generation].bytes_consed_between_gc;
4255
4256     if (raise)
4257         generations[generation].num_gc = 0;
4258     else
4259         ++generations[generation].num_gc;
4260
4261 #ifdef LUTEX_WIDETAG
4262     reap_lutexes(generation);
4263     if (raise)
4264         move_lutexes(generation, generation+1);
4265 #endif
4266 }
4267
4268 /* Update last_free_page, then SymbolValue(ALLOCATION_POINTER). */
4269 long
4270 update_dynamic_space_free_pointer(void)
4271 {
4272     page_index_t last_page = -1, i;
4273
4274     for (i = 0; i < last_free_page; i++)
4275         if (page_allocated_p(i) && (page_table[i].bytes_used != 0))
4276             last_page = i;
4277
4278     last_free_page = last_page+1;
4279
4280     set_alloc_pointer((lispobj)(page_address(last_free_page)));
4281     return 0; /* dummy value: return something ... */
4282 }
4283
4284 static void
4285 remap_free_pages (page_index_t from, page_index_t to)
4286 {
4287     page_index_t first_page, last_page;
4288
4289     for (first_page = from; first_page <= to; first_page++) {
4290         if (page_allocated_p(first_page) ||
4291             (page_table[first_page].need_to_zero == 0)) {
4292             continue;
4293         }
4294
4295         last_page = first_page + 1;
4296         while (page_free_p(last_page) &&
4297                (last_page < to) &&
4298                (page_table[last_page].need_to_zero == 1)) {
4299             last_page++;
4300         }
4301
4302         /* There's a mysterious Solaris/x86 problem with using mmap
4303          * tricks for memory zeroing. See sbcl-devel thread
4304          * "Re: patch: standalone executable redux".
4305          */
4306 #if defined(LISP_FEATURE_SUNOS)
4307         zero_pages(first_page, last_page-1);
4308 #else
4309         zero_pages_with_mmap(first_page, last_page-1);
4310 #endif
4311
4312         first_page = last_page;
4313     }
4314 }
4315
4316 generation_index_t small_generation_limit = 1;
4317
4318 /* GC all generations newer than last_gen, raising the objects in each
4319  * to the next older generation - we finish when all generations below
4320  * last_gen are empty.  Then if last_gen is due for a GC, or if
4321  * last_gen==NUM_GENERATIONS (the scratch generation?  eh?) we GC that
4322  * too.  The valid range for last_gen is: 0,1,...,NUM_GENERATIONS.
4323  *
4324  * We stop collecting at gencgc_oldest_gen_to_gc, even if this is less than
4325  * last_gen (oh, and note that by default it is NUM_GENERATIONS-1) */
4326 void
4327 collect_garbage(generation_index_t last_gen)
4328 {
4329     generation_index_t gen = 0, i;
4330     int raise;
4331     int gen_to_wp;
4332     /* The largest value of last_free_page seen since the time
4333      * remap_free_pages was called. */
4334     static page_index_t high_water_mark = 0;
4335
4336     FSHOW((stderr, "/entering collect_garbage(%d)\n", last_gen));
4337
4338     gc_active_p = 1;
4339
4340     if (last_gen > HIGHEST_NORMAL_GENERATION+1) {
4341         FSHOW((stderr,
4342                "/collect_garbage: last_gen = %d, doing a level 0 GC\n",
4343                last_gen));
4344         last_gen = 0;
4345     }
4346
4347     /* Flush the alloc regions updating the tables. */
4348     gc_alloc_update_all_page_tables();
4349
4350     /* Verify the new objects created by Lisp code. */
4351     if (pre_verify_gen_0) {
4352         FSHOW((stderr, "pre-checking generation 0\n"));
4353         verify_generation(0);
4354     }
4355
4356     if (gencgc_verbose > 1)
4357         print_generation_stats();
4358
4359     do {
4360         /* Collect the generation. */
4361
4362         if (gen >= gencgc_oldest_gen_to_gc) {
4363             /* Never raise the oldest generation. */
4364             raise = 0;
4365         } else {
4366             raise =
4367                 (gen < last_gen)
4368                 || (generations[gen].num_gc >= generations[gen].number_of_gcs_before_promotion);
4369         }
4370
4371         if (gencgc_verbose > 1) {
4372             FSHOW((stderr,
4373                    "starting GC of generation %d with raise=%d alloc=%d trig=%d GCs=%d\n",
4374                    gen,
4375                    raise,
4376                    generations[gen].bytes_allocated,
4377                    generations[gen].gc_trigger,
4378                    generations[gen].num_gc));
4379         }
4380
4381         /* If an older generation is being filled, then update its
4382          * memory age. */
4383         if (raise == 1) {
4384             generations[gen+1].cum_sum_bytes_allocated +=
4385                 generations[gen+1].bytes_allocated;
4386         }
4387
4388         garbage_collect_generation(gen, raise);
4389
4390         /* Reset the memory age cum_sum. */
4391         generations[gen].cum_sum_bytes_allocated = 0;
4392
4393         if (gencgc_verbose > 1) {
4394             FSHOW((stderr, "GC of generation %d finished:\n", gen));
4395             print_generation_stats();
4396         }
4397
4398         gen++;
4399     } while ((gen <= gencgc_oldest_gen_to_gc)
4400              && ((gen < last_gen)
4401                  || ((gen <= gencgc_oldest_gen_to_gc)
4402                      && raise
4403                      && (generations[gen].bytes_allocated
4404                          > generations[gen].gc_trigger)
4405                      && (generation_average_age(gen)
4406                          > generations[gen].minimum_age_before_gc))));
4407
4408     /* Now if gen-1 was raised all generations before gen are empty.
4409      * If it wasn't raised then all generations before gen-1 are empty.
4410      *
4411      * Now objects within this gen's pages cannot point to younger
4412      * generations unless they are written to. This can be exploited
4413      * by write-protecting the pages of gen; then when younger
4414      * generations are GCed only the pages which have been written
4415      * need scanning. */
4416     if (raise)
4417         gen_to_wp = gen;
4418     else
4419         gen_to_wp = gen - 1;
4420
4421     /* There's not much point in WPing pages in generation 0 as it is
4422      * never scavenged (except promoted pages). */
4423     if ((gen_to_wp > 0) && enable_page_protection) {
4424         /* Check that they are all empty. */
4425         for (i = 0; i < gen_to_wp; i++) {
4426             if (generations[i].bytes_allocated)
4427                 lose("trying to write-protect gen. %d when gen. %d nonempty\n",
4428                      gen_to_wp, i);
4429         }
4430         write_protect_generation_pages(gen_to_wp);
4431     }
4432
4433     /* Set gc_alloc() back to generation 0. The current regions should
4434      * be flushed after the above GCs. */
4435     gc_assert((boxed_region.free_pointer - boxed_region.start_addr) == 0);
4436     gc_alloc_generation = 0;
4437
4438     /* Save the high-water mark before updating last_free_page */
4439     if (last_free_page > high_water_mark)
4440         high_water_mark = last_free_page;
4441
4442     update_dynamic_space_free_pointer();
4443
4444     auto_gc_trigger = bytes_allocated + bytes_consed_between_gcs;
4445     if(gencgc_verbose)
4446         fprintf(stderr,"Next gc when %ld bytes have been consed\n",
4447                 auto_gc_trigger);
4448
4449     /* If we did a big GC (arbitrarily defined as gen > 1), release memory
4450      * back to the OS.
4451      */
4452     if (gen > small_generation_limit) {
4453         if (last_free_page > high_water_mark)
4454             high_water_mark = last_free_page;
4455         remap_free_pages(0, high_water_mark);
4456         high_water_mark = 0;
4457     }
4458
4459     gc_active_p = 0;
4460
4461     SHOW("returning from collect_garbage");
4462 }
4463
4464 /* This is called by Lisp PURIFY when it is finished. All live objects
4465  * will have been moved to the RO and Static heaps. The dynamic space
4466  * will need a full re-initialization. We don't bother having Lisp
4467  * PURIFY flush the current gc_alloc() region, as the page_tables are
4468  * re-initialized, and every page is zeroed to be sure. */
4469 void
4470 gc_free_heap(void)
4471 {
4472     page_index_t page;
4473
4474     if (gencgc_verbose > 1) {
4475         SHOW("entering gc_free_heap");
4476     }
4477
4478     for (page = 0; page < page_table_pages; page++) {
4479         /* Skip free pages which should already be zero filled. */
4480         if (page_allocated_p(page)) {
4481             void *page_start, *addr;
4482
4483             /* Mark the page free. The other slots are assumed invalid
4484              * when it is a FREE_PAGE_FLAG and bytes_used is 0 and it
4485              * should not be write-protected -- except that the
4486              * generation is used for the current region but it sets
4487              * that up. */
4488             page_table[page].allocated = FREE_PAGE_FLAG;
4489             page_table[page].bytes_used = 0;
4490
4491 #ifndef LISP_FEATURE_WIN32 /* Pages already zeroed on win32? Not sure
4492                             * about this change. */
4493             /* Zero the page. */
4494             page_start = (void *)page_address(page);
4495
4496             /* First, remove any write-protection. */
4497             os_protect(page_start, PAGE_BYTES, OS_VM_PROT_ALL);
4498             page_table[page].write_protected = 0;
4499
4500             os_invalidate(page_start,PAGE_BYTES);
4501             addr = os_validate(page_start,PAGE_BYTES);
4502             if (addr == NULL || addr != page_start) {
4503                 lose("gc_free_heap: page moved, 0x%08x ==> 0x%08x\n",
4504                      page_start,
4505                      addr);
4506             }
4507 #else
4508             page_table[page].write_protected = 0;
4509 #endif
4510         } else if (gencgc_zero_check_during_free_heap) {
4511             /* Double-check that the page is zero filled. */
4512             long *page_start;
4513             page_index_t i;
4514             gc_assert(page_free_p(page));
4515             gc_assert(page_table[page].bytes_used == 0);
4516             page_start = (long *)page_address(page);
4517             for (i=0; i<1024; i++) {
4518                 if (page_start[i] != 0) {
4519                     lose("free region not zero at %x\n", page_start + i);
4520                 }
4521             }
4522         }
4523     }
4524
4525     bytes_allocated = 0;
4526
4527     /* Initialize the generations. */
4528     for (page = 0; page < NUM_GENERATIONS; page++) {
4529         generations[page].alloc_start_page = 0;
4530         generations[page].alloc_unboxed_start_page = 0;
4531         generations[page].alloc_large_start_page = 0;
4532         generations[page].alloc_large_unboxed_start_page = 0;
4533         generations[page].bytes_allocated = 0;
4534         generations[page].gc_trigger = 2000000;
4535         generations[page].num_gc = 0;
4536         generations[page].cum_sum_bytes_allocated = 0;
4537         generations[page].lutexes = NULL;
4538     }
4539
4540     if (gencgc_verbose > 1)
4541         print_generation_stats();
4542
4543     /* Initialize gc_alloc(). */
4544     gc_alloc_generation = 0;
4545
4546     gc_set_region_empty(&boxed_region);
4547     gc_set_region_empty(&unboxed_region);
4548
4549     last_free_page = 0;
4550     set_alloc_pointer((lispobj)((char *)heap_base));
4551
4552     if (verify_after_free_heap) {
4553         /* Check whether purify has left any bad pointers. */
4554         FSHOW((stderr, "checking after free_heap\n"));
4555         verify_gc();
4556     }
4557 }
4558 \f
4559 void
4560 gc_init(void)
4561 {
4562     page_index_t i;
4563
4564     /* Compute the number of pages needed for the dynamic space.
4565      * Dynamic space size should be aligned on page size. */
4566     page_table_pages = dynamic_space_size/PAGE_BYTES;
4567     gc_assert(dynamic_space_size == npage_bytes(page_table_pages));
4568
4569     page_table = calloc(page_table_pages, sizeof(struct page));
4570     gc_assert(page_table);
4571
4572     gc_init_tables();
4573     scavtab[WEAK_POINTER_WIDETAG] = scav_weak_pointer;
4574     transother[SIMPLE_ARRAY_WIDETAG] = trans_boxed_large;
4575
4576 #ifdef LUTEX_WIDETAG
4577     scavtab[LUTEX_WIDETAG] = scav_lutex;
4578     transother[LUTEX_WIDETAG] = trans_lutex;
4579     sizetab[LUTEX_WIDETAG] = size_lutex;
4580 #endif
4581
4582     heap_base = (void*)DYNAMIC_SPACE_START;
4583
4584     /* Initialize each page structure. */
4585     for (i = 0; i < page_table_pages; i++) {
4586         /* Initialize all pages as free. */
4587         page_table[i].allocated = FREE_PAGE_FLAG;
4588         page_table[i].bytes_used = 0;
4589
4590         /* Pages are not write-protected at startup. */
4591         page_table[i].write_protected = 0;
4592     }
4593
4594     bytes_allocated = 0;
4595
4596     /* Initialize the generations.
4597      *
4598      * FIXME: very similar to code in gc_free_heap(), should be shared */
4599     for (i = 0; i < NUM_GENERATIONS; i++) {
4600         generations[i].alloc_start_page = 0;
4601         generations[i].alloc_unboxed_start_page = 0;
4602         generations[i].alloc_large_start_page = 0;
4603         generations[i].alloc_large_unboxed_start_page = 0;
4604         generations[i].bytes_allocated = 0;
4605         generations[i].gc_trigger = 2000000;
4606         generations[i].num_gc = 0;
4607         generations[i].cum_sum_bytes_allocated = 0;
4608         /* the tune-able parameters */
4609         generations[i].bytes_consed_between_gc = 2000000;
4610         generations[i].number_of_gcs_before_promotion = 1;
4611         generations[i].minimum_age_before_gc = 0.75;
4612         generations[i].lutexes = NULL;
4613     }
4614
4615     /* Initialize gc_alloc. */
4616     gc_alloc_generation = 0;
4617     gc_set_region_empty(&boxed_region);
4618     gc_set_region_empty(&unboxed_region);
4619
4620     last_free_page = 0;
4621 }
4622
4623 /*  Pick up the dynamic space from after a core load.
4624  *
4625  *  The ALLOCATION_POINTER points to the end of the dynamic space.
4626  */
4627
4628 static void
4629 gencgc_pickup_dynamic(void)
4630 {
4631     page_index_t page = 0;
4632     void *alloc_ptr = (void *)get_alloc_pointer();
4633     lispobj *prev=(lispobj *)page_address(page);
4634     generation_index_t gen = PSEUDO_STATIC_GENERATION;
4635     do {
4636         lispobj *first,*ptr= (lispobj *)page_address(page);
4637         page_table[page].gen = gen;
4638         page_table[page].bytes_used = PAGE_BYTES;
4639         page_table[page].large_object = 0;
4640         page_table[page].write_protected = 0;
4641         page_table[page].write_protected_cleared = 0;
4642         page_table[page].dont_move = 0;
4643         page_table[page].need_to_zero = 1;
4644
4645         if (!gencgc_partial_pickup) {
4646             page_table[page].allocated = BOXED_PAGE_FLAG;
4647             first=gc_search_space(prev,(ptr+2)-prev,ptr);
4648             if(ptr == first)
4649                 prev=ptr;
4650             page_table[page].region_start_offset =
4651                 page_address(page) - (void *)prev;
4652         }
4653         page++;
4654     } while (page_address(page) < alloc_ptr);
4655
4656 #ifdef LUTEX_WIDETAG
4657     /* Lutexes have been registered in generation 0 by coreparse, and
4658      * need to be moved to the right one manually.
4659      */
4660     move_lutexes(0, PSEUDO_STATIC_GENERATION);
4661 #endif
4662
4663     last_free_page = page;
4664
4665     generations[gen].bytes_allocated = npage_bytes(page);
4666     bytes_allocated = npage_bytes(page);
4667
4668     gc_alloc_update_all_page_tables();
4669     write_protect_generation_pages(gen);
4670 }
4671
4672 void
4673 gc_initialize_pointers(void)
4674 {
4675     gencgc_pickup_dynamic();
4676 }
4677 \f
4678
4679 /* alloc(..) is the external interface for memory allocation. It
4680  * allocates to generation 0. It is not called from within the garbage
4681  * collector as it is only external uses that need the check for heap
4682  * size (GC trigger) and to disable the interrupts (interrupts are
4683  * always disabled during a GC).
4684  *
4685  * The vops that call alloc(..) assume that the returned space is zero-filled.
4686  * (E.g. the most significant word of a 2-word bignum in MOVE-FROM-UNSIGNED.)
4687  *
4688  * The check for a GC trigger is only performed when the current
4689  * region is full, so in most cases it's not needed. */
4690
4691 static inline lispobj *
4692 general_alloc_internal(long nbytes, int page_type_flag, struct alloc_region *region,
4693                        struct thread *thread)
4694 {
4695 #ifndef LISP_FEATURE_WIN32
4696     lispobj alloc_signal;
4697 #endif
4698     void *new_obj;
4699     void *new_free_pointer;
4700
4701     gc_assert(nbytes>0);
4702
4703     /* Check for alignment allocation problems. */
4704     gc_assert((((unsigned long)region->free_pointer & LOWTAG_MASK) == 0)
4705               && ((nbytes & LOWTAG_MASK) == 0));
4706
4707     /* Must be inside a PA section. */
4708     gc_assert(get_pseudo_atomic_atomic(thread));
4709
4710     /* maybe we can do this quickly ... */
4711     new_free_pointer = region->free_pointer + nbytes;
4712     if (new_free_pointer <= region->end_addr) {
4713         new_obj = (void*)(region->free_pointer);
4714         region->free_pointer = new_free_pointer;
4715         return(new_obj);        /* yup */
4716     }
4717
4718     /* we have to go the long way around, it seems. Check whether we
4719      * should GC in the near future
4720      */
4721     if (auto_gc_trigger && bytes_allocated > auto_gc_trigger) {
4722         /* Don't flood the system with interrupts if the need to gc is
4723          * already noted. This can happen for example when SUB-GC
4724          * allocates or after a gc triggered in a WITHOUT-GCING. */
4725         if (SymbolValue(GC_PENDING,thread) == NIL) {
4726             /* set things up so that GC happens when we finish the PA
4727              * section */
4728             SetSymbolValue(GC_PENDING,T,thread);
4729             if (SymbolValue(GC_INHIBIT,thread) == NIL) {
4730                 set_pseudo_atomic_interrupted(thread);
4731 #ifdef LISP_FEATURE_PPC
4732                 /* PPC calls alloc() from a trap or from pa_alloc(),
4733                  * look up the most context if it's from a trap. */
4734                 {
4735                     os_context_t *context =
4736                         thread->interrupt_data->allocation_trap_context;
4737                     maybe_save_gc_mask_and_block_deferrables
4738                         (context ? os_context_sigmask_addr(context) : NULL);
4739                 }
4740 #else
4741                 maybe_save_gc_mask_and_block_deferrables(NULL);
4742 #endif
4743             }
4744         }
4745     }
4746     new_obj = gc_alloc_with_region(nbytes, page_type_flag, region, 0);
4747
4748 #ifndef LISP_FEATURE_WIN32
4749     alloc_signal = SymbolValue(ALLOC_SIGNAL,thread);
4750     if ((alloc_signal & FIXNUM_TAG_MASK) == 0) {
4751         if ((signed long) alloc_signal <= 0) {
4752             SetSymbolValue(ALLOC_SIGNAL, T, thread);
4753             raise(SIGPROF);
4754         } else {
4755             SetSymbolValue(ALLOC_SIGNAL,
4756                            alloc_signal - (1 << N_FIXNUM_TAG_BITS),
4757                            thread);
4758         }
4759     }
4760 #endif
4761
4762     return (new_obj);
4763 }
4764
4765 lispobj *
4766 general_alloc(long nbytes, int page_type_flag)
4767 {
4768     struct thread *thread = arch_os_get_current_thread();
4769     /* Select correct region, and call general_alloc_internal with it.
4770      * For other then boxed allocation we must lock first, since the
4771      * region is shared. */
4772     if (BOXED_PAGE_FLAG & page_type_flag) {
4773 #ifdef LISP_FEATURE_SB_THREAD
4774         struct alloc_region *region = (thread ? &(thread->alloc_region) : &boxed_region);
4775 #else
4776         struct alloc_region *region = &boxed_region;
4777 #endif
4778         return general_alloc_internal(nbytes, page_type_flag, region, thread);
4779     } else if (UNBOXED_PAGE_FLAG == page_type_flag) {
4780         lispobj * obj;
4781         gc_assert(0 == thread_mutex_lock(&allocation_lock));
4782         obj = general_alloc_internal(nbytes, page_type_flag, &unboxed_region, thread);
4783         gc_assert(0 == thread_mutex_unlock(&allocation_lock));
4784         return obj;
4785     } else {
4786         lose("bad page type flag: %d", page_type_flag);
4787     }
4788 }
4789
4790 lispobj *
4791 alloc(long nbytes)
4792 {
4793     gc_assert(get_pseudo_atomic_atomic(arch_os_get_current_thread()));
4794     return general_alloc(nbytes, BOXED_PAGE_FLAG);
4795 }
4796 \f
4797 /*
4798  * shared support for the OS-dependent signal handlers which
4799  * catch GENCGC-related write-protect violations
4800  */
4801 void unhandled_sigmemoryfault(void* addr);
4802
4803 /* Depending on which OS we're running under, different signals might
4804  * be raised for a violation of write protection in the heap. This
4805  * function factors out the common generational GC magic which needs
4806  * to invoked in this case, and should be called from whatever signal
4807  * handler is appropriate for the OS we're running under.
4808  *
4809  * Return true if this signal is a normal generational GC thing that
4810  * we were able to handle, or false if it was abnormal and control
4811  * should fall through to the general SIGSEGV/SIGBUS/whatever logic. */
4812
4813 int
4814 gencgc_handle_wp_violation(void* fault_addr)
4815 {
4816     page_index_t page_index = find_page_index(fault_addr);
4817
4818 #if QSHOW_SIGNALS
4819     FSHOW((stderr, "heap WP violation? fault_addr=%x, page_index=%d\n",
4820            fault_addr, page_index));
4821 #endif
4822
4823     /* Check whether the fault is within the dynamic space. */
4824     if (page_index == (-1)) {
4825
4826         /* It can be helpful to be able to put a breakpoint on this
4827          * case to help diagnose low-level problems. */
4828         unhandled_sigmemoryfault(fault_addr);
4829
4830         /* not within the dynamic space -- not our responsibility */
4831         return 0;
4832
4833     } else {
4834         int ret;
4835         ret = thread_mutex_lock(&free_pages_lock);
4836         gc_assert(ret == 0);
4837         if (page_table[page_index].write_protected) {
4838             /* Unprotect the page. */
4839             os_protect(page_address(page_index), PAGE_BYTES, OS_VM_PROT_ALL);
4840             page_table[page_index].write_protected_cleared = 1;
4841             page_table[page_index].write_protected = 0;
4842         } else {
4843             /* The only acceptable reason for this signal on a heap
4844              * access is that GENCGC write-protected the page.
4845              * However, if two CPUs hit a wp page near-simultaneously,
4846              * we had better not have the second one lose here if it
4847              * does this test after the first one has already set wp=0
4848              */
4849             if(page_table[page_index].write_protected_cleared != 1)
4850                 lose("fault in heap page %d not marked as write-protected\nboxed_region.first_page: %d, boxed_region.last_page %d\n",
4851                      page_index, boxed_region.first_page,
4852                      boxed_region.last_page);
4853         }
4854         ret = thread_mutex_unlock(&free_pages_lock);
4855         gc_assert(ret == 0);
4856         /* Don't worry, we can handle it. */
4857         return 1;
4858     }
4859 }
4860 /* This is to be called when we catch a SIGSEGV/SIGBUS, determine that
4861  * it's not just a case of the program hitting the write barrier, and
4862  * are about to let Lisp deal with it. It's basically just a
4863  * convenient place to set a gdb breakpoint. */
4864 void
4865 unhandled_sigmemoryfault(void *addr)
4866 {}
4867
4868 void gc_alloc_update_all_page_tables(void)
4869 {
4870     /* Flush the alloc regions updating the tables. */
4871     struct thread *th;
4872     for_each_thread(th)
4873         gc_alloc_update_page_tables(BOXED_PAGE_FLAG, &th->alloc_region);
4874     gc_alloc_update_page_tables(UNBOXED_PAGE_FLAG, &unboxed_region);
4875     gc_alloc_update_page_tables(BOXED_PAGE_FLAG, &boxed_region);
4876 }
4877
4878 void
4879 gc_set_region_empty(struct alloc_region *region)
4880 {
4881     region->first_page = 0;
4882     region->last_page = -1;
4883     region->start_addr = page_address(0);
4884     region->free_pointer = page_address(0);
4885     region->end_addr = page_address(0);
4886 }
4887
4888 static void
4889 zero_all_free_pages()
4890 {
4891     page_index_t i;
4892
4893     for (i = 0; i < last_free_page; i++) {
4894         if (page_free_p(i)) {
4895 #ifdef READ_PROTECT_FREE_PAGES
4896             os_protect(page_address(i),
4897                        PAGE_BYTES,
4898                        OS_VM_PROT_ALL);
4899 #endif
4900             zero_pages(i, i);
4901         }
4902     }
4903 }
4904
4905 /* Things to do before doing a final GC before saving a core (without
4906  * purify).
4907  *
4908  * + Pages in large_object pages aren't moved by the GC, so we need to
4909  *   unset that flag from all pages.
4910  * + The pseudo-static generation isn't normally collected, but it seems
4911  *   reasonable to collect it at least when saving a core. So move the
4912  *   pages to a normal generation.
4913  */
4914 static void
4915 prepare_for_final_gc ()
4916 {
4917     page_index_t i;
4918     for (i = 0; i < last_free_page; i++) {
4919         page_table[i].large_object = 0;
4920         if (page_table[i].gen == PSEUDO_STATIC_GENERATION) {
4921             int used = page_table[i].bytes_used;
4922             page_table[i].gen = HIGHEST_NORMAL_GENERATION;
4923             generations[PSEUDO_STATIC_GENERATION].bytes_allocated -= used;
4924             generations[HIGHEST_NORMAL_GENERATION].bytes_allocated += used;
4925         }
4926     }
4927 }
4928
4929
4930 /* Do a non-conservative GC, and then save a core with the initial
4931  * function being set to the value of the static symbol
4932  * SB!VM:RESTART-LISP-FUNCTION */
4933 void
4934 gc_and_save(char *filename, boolean prepend_runtime,
4935             boolean save_runtime_options)
4936 {
4937     FILE *file;
4938     void *runtime_bytes = NULL;
4939     size_t runtime_size;
4940
4941     file = prepare_to_save(filename, prepend_runtime, &runtime_bytes,
4942                            &runtime_size);
4943     if (file == NULL)
4944        return;
4945
4946     conservative_stack = 0;
4947
4948     /* The filename might come from Lisp, and be moved by the now
4949      * non-conservative GC. */
4950     filename = strdup(filename);
4951
4952     /* Collect twice: once into relatively high memory, and then back
4953      * into low memory. This compacts the retained data into the lower
4954      * pages, minimizing the size of the core file.
4955      */
4956     prepare_for_final_gc();
4957     gencgc_alloc_start_page = last_free_page;
4958     collect_garbage(HIGHEST_NORMAL_GENERATION+1);
4959
4960     prepare_for_final_gc();
4961     gencgc_alloc_start_page = -1;
4962     collect_garbage(HIGHEST_NORMAL_GENERATION+1);
4963
4964     if (prepend_runtime)
4965         save_runtime_to_filehandle(file, runtime_bytes, runtime_size);
4966
4967     /* The dumper doesn't know that pages need to be zeroed before use. */
4968     zero_all_free_pages();
4969     save_to_filehandle(file, filename, SymbolValue(RESTART_LISP_FUNCTION,0),
4970                        prepend_runtime, save_runtime_options);
4971     /* Oops. Save still managed to fail. Since we've mangled the stack
4972      * beyond hope, there's not much we can do.
4973      * (beyond FUNCALLing RESTART_LISP_FUNCTION, but I suspect that's
4974      * going to be rather unsatisfactory too... */
4975     lose("Attempt to save core after non-conservative GC failed.\n");
4976 }