2 * stop and copy GC based on Cheney's algorithm
6 * This software is part of the SBCL system. See the README file for
9 * This software is derived from the CMU CL system, which was
10 * written at Carnegie Mellon University and released into the
11 * public domain. The software is in the public domain and is
12 * provided with absolutely no warranty. See the COPYING and CREDITS
13 * files for more information.
18 #include <sys/resource.h>
24 #include "gc-internal.h"
26 #include "interrupt.h"
30 #include "genesis/static-symbols.h"
31 #include "genesis/primitive-objects.h"
34 /* So you need to debug? */
37 #define DEBUG_SPACE_PREDICATES
38 #define DEBUG_SCAVENGE_VERBOSE
39 #define DEBUG_COPY_VERBOSE
44 lispobj *from_space_free_pointer;
47 lispobj *new_space_free_pointer;
49 static void scavenge_newspace(void);
50 static void scavenge_interrupt_contexts(void);
51 extern struct interrupt_data * global_interrupt_data;
54 /* collecting garbage */
58 tv_diff(struct timeval *x, struct timeval *y)
60 return (((double) x->tv_sec + (double) x->tv_usec * 1.0e-6) -
61 ((double) y->tv_sec + (double) y->tv_usec * 1.0e-6));
65 #define BYTES_ZERO_BEFORE_END (1<<12)
67 /* FIXME do we need this? Doesn't it duplicate lisp code in
68 * scrub-control-stack? */
73 u32 *ptr = (u32 *)current_control_stack_pointer;
79 } while (((unsigned long)ptr) & (BYTES_ZERO_BEFORE_END-1));
84 } while (((unsigned long)ptr) & (BYTES_ZERO_BEFORE_END-1));
91 gc_general_alloc(int bytes, int unboxed_p, int quick_p) {
92 lispobj *new=new_space_free_pointer;
93 new_space_free_pointer+=(bytes/4);
97 lispobj copy_large_unboxed_object(lispobj object, int nwords) {
98 return copy_object(object,nwords);
100 lispobj copy_unboxed_object(lispobj object, int nwords) {
101 return copy_object(object,nwords);
103 lispobj copy_large_object(lispobj object, int nwords) {
104 return copy_object(object,nwords);
107 /* Note: The generic GC interface we're implementing passes us a
108 * last_generation argument. That's meaningless for us, since we're
109 * not a generational GC. So we ignore it. */
111 collect_garbage(unsigned ignore)
114 struct timeval start_tv, stop_tv;
115 struct rusage start_rusage, stop_rusage;
116 double real_time, system_time, user_time;
117 double percent_retained, gc_rate;
118 unsigned long size_discarded;
119 unsigned long size_retained;
121 lispobj *current_static_space_free_pointer;
122 unsigned long static_space_size;
123 unsigned long control_stack_size, binding_stack_size;
125 struct thread *th=arch_os_get_current_thread();
126 struct interrupt_data *data=
127 th ? th->interrupt_data : global_interrupt_data;
131 printf("[Collecting garbage ... \n");
133 getrusage(RUSAGE_SELF, &start_rusage);
134 gettimeofday(&start_tv, (struct timezone *) 0);
138 sigaddset_blockable(&tmp);
139 sigprocmask(SIG_BLOCK, &tmp, &old);
141 current_static_space_free_pointer =
142 (lispobj *) ((unsigned long)
143 SymbolValue(STATIC_SPACE_FREE_POINTER,0));
146 /* Set up from space and new space pointers. */
148 from_space = current_dynamic_space;
149 from_space_free_pointer = dynamic_space_free_pointer;
152 fprintf(stderr,"from_space = %lx\n",
153 (unsigned long) current_dynamic_space);
155 if (current_dynamic_space == (lispobj *) DYNAMIC_0_SPACE_START)
156 new_space = (lispobj *)DYNAMIC_1_SPACE_START;
157 else if (current_dynamic_space == (lispobj *) DYNAMIC_1_SPACE_START)
158 new_space = (lispobj *) DYNAMIC_0_SPACE_START;
160 lose("GC lossage. Current dynamic space is bogus!\n");
162 new_space_free_pointer = new_space;
164 /* Initialize the weak pointer list. */
165 weak_pointers = (struct weak_pointer *) NULL;
168 /* Scavenge all of the roots. */
170 printf("Scavenging interrupt contexts ...\n");
172 scavenge_interrupt_contexts();
175 printf("Scavenging interrupt handlers (%d bytes) ...\n",
176 (int)sizeof(interrupt_handlers));
178 scavenge((lispobj *) data->interrupt_handlers,
179 sizeof(data->interrupt_handlers) / sizeof(lispobj));
181 /* _size quantities are in units of sizeof(lispobj) - i.e. 4 */
183 current_control_stack_pointer-
184 (lispobj *)th->control_stack_start;
186 printf("Scavenging the control stack at %p (%ld words) ...\n",
187 ((lispobj *)th->control_stack_start),
190 scavenge(((lispobj *)th->control_stack_start), control_stack_size);
194 current_binding_stack_pointer -
195 (lispobj *)th->binding_stack_start;
197 printf("Scavenging the binding stack %x - %x (%d words) ...\n",
198 th->binding_stack_start,current_binding_stack_pointer,
199 (int)(binding_stack_size));
201 scavenge(((lispobj *)th->binding_stack_start), binding_stack_size);
204 current_static_space_free_pointer - (lispobj *) STATIC_SPACE_START;
206 printf("Scavenging static space %x - %x (%d words) ...\n",
207 STATIC_SPACE_START,current_static_space_free_pointer,
208 (int)(static_space_size));
210 scavenge(((lispobj *)STATIC_SPACE_START), static_space_size);
212 /* Scavenge newspace. */
214 printf("Scavenging new space (%d bytes) ...\n",
215 (int)((new_space_free_pointer - new_space) * sizeof(lispobj)));
220 #if defined(DEBUG_PRINT_GARBAGE)
221 print_garbage(from_space, from_space_free_pointer);
224 /* Scan the weak pointers. */
226 printf("Scanning weak pointers ...\n");
228 scan_weak_pointers();
233 printf("Flipping spaces ...\n");
236 os_zero((os_vm_address_t) current_dynamic_space,
237 (os_vm_size_t) DYNAMIC_SPACE_SIZE);
239 current_dynamic_space = new_space;
240 dynamic_space_free_pointer = new_space_free_pointer;
243 size_discarded = (from_space_free_pointer - from_space) * sizeof(lispobj);
244 size_retained = (new_space_free_pointer - new_space) * sizeof(lispobj);
249 printf("Zeroing empty part of control stack ...\n");
253 sigprocmask(SIG_SETMASK, &old, 0);
257 gettimeofday(&stop_tv, (struct timezone *) 0);
258 getrusage(RUSAGE_SELF, &stop_rusage);
262 percent_retained = (((float) size_retained) /
263 ((float) size_discarded)) * 100.0;
265 printf("Total of %ld bytes out of %ld bytes retained (%3.2f%%).\n",
266 size_retained, size_discarded, percent_retained);
268 real_time = tv_diff(&stop_tv, &start_tv);
269 user_time = tv_diff(&stop_rusage.ru_utime, &start_rusage.ru_utime);
270 system_time = tv_diff(&stop_rusage.ru_stime, &start_rusage.ru_stime);
273 printf("Statistics:\n");
274 printf("%10.2f sec of real time\n", real_time);
275 printf("%10.2f sec of user time,\n", user_time);
276 printf("%10.2f sec of system time.\n", system_time);
278 printf("Statistics: %10.2fs real, %10.2fs user, %10.2fs system.\n",
279 real_time, user_time, system_time);
282 gc_rate = ((float) size_retained / (float) (1<<20)) / real_time;
284 printf("%10.2f M bytes/sec collected.\n", gc_rate);
286 /* os_flush_icache((os_vm_address_t) 0, sizeof(unsigned long)); */
287 /* Maybe FIXME: it's possible that we could significantly reduce
288 * RSS by zeroing the from_space or madvise(MADV_DONTNEED) or
289 * similar os-dependent tricks here */
296 scavenge_newspace(void)
298 lispobj *here, *next;
301 while (here < new_space_free_pointer) {
302 /* printf("here=%lx, new_space_free_pointer=%lx\n",
303 here,new_space_free_pointer); */
304 next = new_space_free_pointer;
305 scavenge(here, next - here);
308 /* printf("done with newspace\n"); */
311 /* scavenging interrupt contexts */
313 static int boxed_registers[] = BOXED_REGISTERS;
316 scavenge_interrupt_context(os_context_t *context)
321 unsigned long lip_offset;
322 int lip_register_pair;
324 unsigned long pc_code_offset;
325 #ifdef ARCH_HAS_LINK_REGISTER
326 unsigned long lr_code_offset;
328 #ifdef ARCH_HAS_NPC_REGISTER
329 unsigned long npc_code_offset;
331 #ifdef DEBUG_SCAVENGE_VERBOSE
332 fprintf(stderr, "Scavenging interrupt context at 0x%x\n",context);
334 /* Find the LIP's register pair and calculate its offset */
335 /* before we scavenge the context. */
337 lip = *os_context_register_addr(context, reg_LIP);
338 /* 0x7FFFFFFF or 0x7FFFFFFFFFFFFFFF ? */
339 lip_offset = 0x7FFFFFFF;
340 lip_register_pair = -1;
341 for (i = 0; i < (sizeof(boxed_registers) / sizeof(int)); i++) {
346 index = boxed_registers[i];
347 reg = *os_context_register_addr(context, index);
348 /* would be using PTR if not for integer length issues */
349 if ((reg & ~((1L<<N_LOWTAG_BITS)-1)) <= lip) {
351 if (offset < lip_offset) {
353 lip_register_pair = index;
359 /* Compute the PC's offset from the start of the CODE */
362 *os_context_pc_addr(context) -
363 *os_context_register_addr(context, reg_CODE);
364 #ifdef ARCH_HAS_NPC_REGISTER
366 *os_context_npc_addr(context) -
367 *os_context_register_addr(context, reg_CODE);
369 #ifdef ARCH_HAS_LINK_REGISTER
371 *os_context_lr_addr(context) -
372 *os_context_register_addr(context, reg_CODE);
375 /* Scavenge all boxed registers in the context. */
376 for (i = 0; i < (sizeof(boxed_registers) / sizeof(int)); i++) {
380 index = boxed_registers[i];
381 foo = *os_context_register_addr(context,index);
382 scavenge((lispobj *) &foo, 1);
383 *os_context_register_addr(context,index) = foo;
385 /* this is unlikely to work as intended on bigendian
386 * 64 bit platforms */
389 os_context_register_addr(context, index), 1);
394 *os_context_register_addr(context, reg_LIP) =
395 *os_context_register_addr(context, lip_register_pair) + lip_offset;
398 /* Fix the PC if it was in from space */
399 if (from_space_p(*os_context_pc_addr(context)))
400 *os_context_pc_addr(context) =
401 *os_context_register_addr(context, reg_CODE) + pc_code_offset;
402 #ifdef ARCH_HAS_LINK_REGISTER
403 /* Fix the LR ditto; important if we're being called from
404 * an assembly routine that expects to return using blr, otherwise
406 if (from_space_p(*os_context_lr_addr(context)))
407 *os_context_lr_addr(context) =
408 *os_context_register_addr(context, reg_CODE) + lr_code_offset;
411 #ifdef ARCH_HAS_NPC_REGISTER
412 if (from_space_p(*os_context_npc_addr(context)))
413 *os_context_npc_addr(context) =
414 *os_context_register_addr(context, reg_CODE) + npc_code_offset;
418 void scavenge_interrupt_contexts(void)
421 os_context_t *context;
423 struct thread *th=arch_os_get_current_thread();
424 struct interrupt_data *data=
425 th ? th->interrupt_data : global_interrupt_data;
427 index = fixnum_value(SymbolValue(FREE_INTERRUPT_CONTEXT_INDEX,0));
430 #ifdef DEBUG_SCAVENGE_VERBOSE
431 fprintf(stderr, "%d interrupt contexts to scan\n",index);
433 for (i = 0; i < index; i++) {
434 context = th->interrupt_contexts[i];
435 scavenge_interrupt_context(context);
443 print_garbage(lispobj *from_space, lispobj *from_space_free_pointer)
446 int total_words_not_copied;
448 printf("Scanning from space ...\n");
450 total_words_not_copied = 0;
452 while (start < from_space_free_pointer) {
454 int forwardp, type, nwords;
458 forwardp = is_lisp_pointer(object) && new_space_p(object);
464 tag = lowtag_of(object);
467 case LIST_POINTER_LOWTAG:
470 case INSTANCE_POINTER_LOWTAG:
471 printf("Don't know about instances yet!\n");
474 case FUN_POINTER_LOWTAG:
477 case OTHER_POINTER_LOWTAG:
478 pointer = (lispobj *) native_pointer(object);
480 type = widetag_of(header);
481 nwords = (sizetab[type])(pointer);
483 default: nwords=1; /* shut yer whinging, gcc */
486 type = widetag_of(object);
487 nwords = (sizetab[type])(start);
488 total_words_not_copied += nwords;
489 printf("%4d words not copied at 0x%16lx; ",
490 nwords, (unsigned long) start);
491 printf("Header word is 0x%08x\n",
492 (unsigned int) object);
496 printf("%d total words not copied.\n", total_words_not_copied);
500 /* code and code-related objects */
502 /* FIXME (1) this could probably be defined using something like
503 * sizeof(lispobj)*floor(sizeof(struct simple_fun)/sizeof(lispobj))
504 * - FUN_POINTER_LOWTAG
505 * as I'm reasonably sure that simple_fun->code must always be the
506 * last slot in the object
508 * FIXME (2) it also appears in purify.c, and it has a different value
509 * for SPARC users in that bit
512 #define FUN_RAW_ADDR_OFFSET (6*sizeof(lispobj) - FUN_POINTER_LOWTAG)
514 /* Note: on the sparc we don't have to do anything special for fdefns, */
515 /* 'cause the raw-addr has a function lowtag. */
516 #ifndef LISP_FEATURE_SPARC
518 scav_fdefn(lispobj *where, lispobj object)
522 fdefn = (struct fdefn *)where;
524 if ((char *)(fdefn->fun + FUN_RAW_ADDR_OFFSET)
525 == (char *)((unsigned long)(fdefn->raw_addr))) {
526 scavenge(where + 1, sizeof(struct fdefn)/sizeof(lispobj) - 1);
528 (u32) ((char *) LOW_WORD(fdefn->fun)) + FUN_RAW_ADDR_OFFSET;
529 return sizeof(struct fdefn) / sizeof(lispobj);
538 /* vector-like objects */
540 /* #define NWORDS(x,y) (CEILING((x),(y)) / (y)) */
543 scav_vector(lispobj *where, lispobj object)
545 if (HeaderValue(object) == subtype_VectorValidHashing) {
547 (subtype_VectorMustRehash<<N_WIDETAG_BITS) | SIMPLE_VECTOR_WIDETAG;
556 #define WEAK_POINTER_NWORDS \
557 CEILING((sizeof(struct weak_pointer) / sizeof(lispobj)), 2)
560 scav_weak_pointer(lispobj *where, lispobj object)
562 /* Do not let GC scavenge the value slot of the weak pointer */
563 /* (that is why it is a weak pointer). Note: we could use */
564 /* the scav_unboxed method here. */
566 return WEAK_POINTER_NWORDS;
570 /* initialization. if gc_init can be moved to after core load, we could
571 * combine these two functions */
577 scavtab[SIMPLE_VECTOR_WIDETAG] = scav_vector;
578 scavtab[WEAK_POINTER_WIDETAG] = scav_weak_pointer;
582 gc_initialize_pointers(void)
584 /* FIXME: We do nothing here. We (briefly) misguidedly attempted
585 to set current_dynamic_space to DYNAMIC_0_SPACE_START here,
586 forgetting that (a) actually it could be the other and (b) it's
587 set in coreparse.c anyway. There's a FIXME note left here to
588 note that current_dynamic_space is a violation of OAOO: we can
589 tell which dynamic space we're currently in by looking at
590 dynamic_space_free_pointer. -- CSR, 2002-08-09 */
596 /* noise to manipulate the gc trigger stuff */
598 void set_auto_gc_trigger(os_vm_size_t dynamic_usage)
600 os_vm_address_t addr=(os_vm_address_t)current_dynamic_space
603 long length = DYNAMIC_SPACE_SIZE - dynamic_usage;
605 if (addr < (os_vm_address_t)dynamic_space_free_pointer) {
607 "set_auto_gc_trigger: tried to set gc trigger too low! (%d < %p)\n",
608 (unsigned int)dynamic_usage,
609 (os_vm_address_t)dynamic_space_free_pointer
610 - (os_vm_address_t)current_dynamic_space);
613 else if (length < 0) {
615 "set_auto_gc_trigger: tried to set gc trigger too high! (%p)\n",
620 addr=os_round_up_to_page(addr);
621 length=os_trunc_size_to_page(length);
623 #if defined(SUNOS) || defined(SOLARIS)
624 os_invalidate(addr,length);
626 os_protect(addr, length, 0);
629 current_auto_gc_trigger = (lispobj *)addr;
632 void clear_auto_gc_trigger(void)
634 if (current_auto_gc_trigger!=NULL){
635 #if defined(SUNOS) || defined(SOLARIS)/* don't want to force whole space into swapping mode... */
636 os_vm_address_t addr=(os_vm_address_t)current_auto_gc_trigger;
638 DYNAMIC_SPACE_SIZE + (os_vm_address_t)current_dynamic_space - addr;
640 os_validate(addr,length);
642 os_protect((os_vm_address_t)current_dynamic_space,
647 current_auto_gc_trigger = NULL;