Changes between Version 12 and Version 13 of Commentary/Rts/Storage/GC
- Timestamp:
- Aug 19, 2011 9:04:54 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Commentary/Rts/Storage/GC
v12 v13 62 62 === nursery === 63 63 64 A `nursery` is a list of blocks into which the mutator allocates new (small) objects. For re saons of locality, we want to re-use the list of blocks for the nursery after each GC, so we keep the nursery blocks rather than freeing and re-allocating a new nursery after GC.64 A `nursery` is a list of blocks into which the mutator allocates new (small) objects. For reasons of locality, we want to re-use the list of blocks for the nursery after each GC, so we keep the nursery blocks rather than freeing and re-allocating a new nursery after GC. 65 65 66 66 The struct `nursery` contains only two fields