Cheney's algorithm


Cheney's algorithm, first described in a 1970 ACM paper by C.J. Cheney, is a stop and copy method of tracing garbage collection in computer software systems. In this scheme, the heap is divided into two equal halves, only one of which is in use at any one time. Garbage collection is performed by copying live objects from one semispace to the other, which then becomes the new heap. The entire old heap is then discarded in one piece. It is an improvement on the previous stop and copy technique.
Cheney's algorithm reclaims items as follows:
Once all to-space references have been examined and updated, garbage collection is complete.
The algorithm needs no stack and only two pointers outside of the from-space and to-space: a pointer to the beginning of free space in the to-space, and a pointer to the next word in to-space that needs to be examined. For this reason, it is sometimes called a "two-finger" collector—it only needs "two fingers" pointing into the to-space to keep track of its state. The data between the two fingers represents work remaining for it to do.
The forwarding pointer is used only during the garbage collection process; when a reference to an object already in to-space is found, the reference can be updated quickly simply by updating its pointer to match the forwarding pointer.
Because the strategy is to exhaust all live references, and then all references in referenced objects, this is known as a breadth-first list copying garbage collection scheme.

Sample algorithm


initialize =
tospace = N/2
fromspace = 0
allocPtr = fromspace
scanPtr = whatever -- only used during collection


allocate =
If allocPtr + n > fromspace+ N/2
collect
EndIf
If allocPtr + n > fromspace+ N/2
fail “insufficient memory”
EndIf
o = allocPtr
allocPtr = allocPtr + n
return o


collect =
swap
allocPtr = fromspace
scanPtr = fromspace
-- scan every root you've got
ForEach root in the stack -- or elsewhere
root = copy
EndForEach

-- scan objects in the heap
While scanPtr < allocPtr
ForEach reference r from o
r = copy
EndForEach
scanPtr = scanPtr + o.size -- points to the next object in the heap, if any
EndWhile


copy =
If o has no forwarding address
o' = allocPtr
allocPtr = allocPtr + size
copy the contents of o to o'
forwarding-address = o'
EndIf
return forwarding-address

Semispace

Cheney based his work on the semispace garbage collector, which was published a year earlier by R.R. Fenichel and J.C. Yochelson.

Equivalence to tri-color abstraction

Cheney's algorithm is an example of a tri-color marking garbage collector. The first member of the gray set is the stack itself. Objects referenced on the stack are copied into the to-space, which contains members of the black and gray sets.
The algorithm moves any white objects to the gray set by copying them to the to-space. Objects that are between the scanning pointer and the free-space pointer on the to-space area are members of the gray set still to be scanned. Objects below the scanning pointer belong to the black set. Objects are moved to the black set by simply moving the scanning pointer over them.
When the scanning pointer reaches the free-space pointer, the gray set is empty, and the algorithm ends.