# Copyright (C) 2001-2006, The Perl Foundation. # $Id: dod.pod 13503 2006-07-24 15:26:45Z ambs $ =head1 NAME docs/dev/dod.pod - Dead object detection (DOD) =head1 Overview The DOD code performs dead object detection and reclamation, thereby implementing a mark and copy garbage collector. The official garbage collection PDD is PDD 9 and is located in the docs/pdds directory of the parrot distribution. This Pod file is only meant to describe the current state of the code and is not meant to replace a thorough understanding of PDD 9. =head1 Data Structures and Algorithms =head2 Marking (pass 1) Each PMC has a C member which, among other things, is used to facilitate garbage collection. The mark phase of the collection cycle goes though each PMC and sets the C bit in the C member. It also appends the PMC to the end of a list used for further (pass 2) marking. However, if the PMC has already been marked as used, the current end of list is returned (instead of appending the already processed PMC) to prevent endless looping. PMCs are detected in the following order =over 4 =item Global stash =item System stack =item Current PMC register set =item Stashes =item PMC register stack =item General/User stack =back =head2 Marking PMCs(pass 2) After all of the PMCs have been marked, then they are traversed a second time. This second phase looks for aggregate PMCs. In other words, some PMCs contain other PMCs, buffers, or buffers of PMCs. The second phase looks for those aggregate PMCs and marks the contained PMCs or buffers thereby ensuring they will not be collected. Furthermore, if the PMC has a custom mark function in its vtable, it is called at this point. It is important to note that those PMCs marked by this second phase will be added to the end of the traversal list in case they, themselves, have any aggregate PMCs that need to be marked. =head2 Marking Buffers After all PMCs have been marked, the non PMC buffers are examined. They are examined in the following order =over 4 =item Current String register set =item String register set stack =item General/User stack =item Control stack =back Once a buffer is found to be live, the C member of the buffer structure has the C bit set on. =head2 Collection After all of the buffers and PMCs in use have been marked live, the collection stage is started. First, PMCs are collected, followed by buffers. =over 4 =item Collecting PMCs To collect PMCs, each PMC arena is examined, from the most recently created backwards. Each PMC is examined to see if it is live, already on the free list, or constant. If it is not, then it is added to the free list and marked as being already on the free list. =item Collecting buffers To collect buffers, each Buffer arena is examined from the most recently created backwards. If the buffer is not live, not already on the free list and it is not a constant or copy on write, then it is added to the free pool for reuse. =back In both cases (PMC and buffer), the live flag is reset after examination for reclamation. =head1 History Initial Version by Mike Lambert on 2002.05.27 =head1 Notes The C function can be found in dod.h The C function can be found in headers.h =head1 References There are a number of references available for Garbage Collection. For example: =over 4 =item Garbage Collection Algorithms for Automatic Dynamic Memory Management by Jones and Lins =item L =back Also, the L web site has an archive of the parrot-porters and old perl6-internals mailing list which contains numerous discussions on the Parrot garbage collector.