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