ikarus/src
Abdulaziz Ghuloum 372c3e369b Change of strategy in the garbage collector.
Previously: when a generation (say 2) is collected, 
  everything in gen 0 moves to gen 1
  everything in gen 1 moves to gen 2
  everything in gen 2 moves to gen 3

Now: when a generation (say 2 again) is collected
  everything in gen 0 moves to gen 3
  everything in gen 1 moves to gen 3
  everything in gen 2 moves to gen 3

So, some objects get a leap from young to old if they're lucky to be
in the right time.

Consequences: when an object is moved by the collector, we don't
need to track old->new pointers and masks because all moved objects
are clean now.  This both simplifies the collector and makes it more
efficient and might open the door for further optimization
opportunities.  For bootstrap time, we get about 5% overall 
saving and about 20% GC-time saving.  Not bad.

BEFORE:
running stats for macro expansion:
    45 collections
    2558 ms elapsed cpu time, including 212 ms collecting
    2576 ms elapsed real time, including 216 ms collecting
    186972152 bytes allocated
running stats for code generation and serialization:
    86 collections
    4365 ms elapsed cpu time, including 1444 ms collecting
    4374 ms elapsed real time, including 1449 ms collecting
    362819096 bytes allocated
running stats for the entire bootstrap process:
    131 collections
    6928 ms elapsed cpu time, including 1657 ms collecting
    6953 ms elapsed real time, including 1666 ms collecting
    549818232 bytes allocated

AFTER:
running stats for macro expansion:
    45 collections
    2506 ms elapsed cpu time, including 169 ms collecting
    2511 ms elapsed real time, including 171 ms collecting
    186968056 bytes allocated
running stats for code generation and serialization:
    86 collections
    4083 ms elapsed cpu time, including 1189 ms collecting
    4085 ms elapsed real time, including 1191 ms collecting
    362810904 bytes allocated
running stats for the entire bootstrap process:
    131 collections
    6591 ms elapsed cpu time, including 1359 ms collecting
    6599 ms elapsed real time, including 1362 ms collecting
    549805944 bytes allocated
Happy Happy Joy Joy
2007-12-15 10:43:29 -05:00
..
lab * some additions to the expander to support r6rs records. 2007-10-14 16:37:55 -04:00
old-tests * added an (ikarus system $bytevectors) library 2007-05-15 12:29:47 -04:00
Makefile.am Fixes bug 175057: Added time-gmt-offset procedure that takes a time 2007-12-09 07:20:49 -05:00
Makefile.in Fixes bug 175057: Added time-gmt-offset procedure that takes a time 2007-12-09 07:20:49 -05:00
cpu_has_sse2.s Fixes bug 173467. Ikarus now probes the cpuid for SSE2 support. 2007-12-03 00:29:36 -05:00
how-to-optimize-arg-checks.tex renamed lib dir to src 2006-12-10 23:13:16 -05:00
ikarus-collect.c Change of strategy in the garbage collector. 2007-12-15 10:43:29 -05:00
ikarus-data.h substantial speedup for new io layer 2007-12-12 21:22:05 -05:00
ikarus-enter.s Fixed dynamic loading problem in the cygwin port. Apparently, no 2007-11-23 02:29:46 -05:00
ikarus-exec.c * renamed ik_alloc to ik_unsafe_alloc since it was unsafe to call it 2007-11-18 09:12:00 -05:00
ikarus-fasl.c Fixes bug 164823: ikarus.boot remaining open 2007-11-30 07:06:30 -05:00
ikarus-flonums.c * renamed ik_alloc to ik_unsafe_alloc since it was unsafe to call it 2007-11-18 09:12:00 -05:00
ikarus-io.c Weeded out gcc warnings and added -Wall as a configure flag. 2007-12-10 15:02:25 -05:00
ikarus-main.c Weeded out gcc warnings and added -Wall as a configure flag. 2007-12-10 15:02:25 -05:00
ikarus-numerics.c Fixes bug 163540: allocation in bignum arithmetic does not garbage collect. 2007-11-18 10:37:13 -05:00
ikarus-print.c * Added license stubs to all *.ss and *.[ch] files. 2007-10-25 16:27:34 -04:00
ikarus-runtime.c slight change to implementation of time-gmt-offset so that the 2007-12-11 19:32:34 -05:00
ikarus-symbol-table.c Fixes minor bugs 173386 and 173381: added typecast and chmod. 2007-12-01 23:54:44 -05:00
ikarus-verify-integrity.c * Added license stubs to all *.ss and *.[ch] files. 2007-10-25 16:27:34 -04:00
ikarus-weak-pairs.c * Added license stubs to all *.ss and *.[ch] files. 2007-10-25 16:27:34 -04:00
ikarus-winmmap.c * Added license stubs to all *.ss and *.[ch] files. 2007-10-25 16:27:34 -04:00
ikarus-winmmap.h * Added license stubs to all *.ss and *.[ch] files. 2007-10-25 16:27:34 -04:00
scheme-script.c Weeded out gcc warnings and added -Wall as a configure flag. 2007-12-10 15:02:25 -05:00
tags.txt * removed bin directory. 2007-10-17 20:03:31 -04:00