Slide 7
Slide 7 text
The core idea behind the new parallel marking algorithm is simple. Instead of
scanning individual objects, the garbage collector scans memory in much larger,
contiguous blocks. The shared work queue tracks these coarse blocks instead of
individual objects, and the individual objects waiting to be scanned in a block are
tracked in that block itself.
— runtime: green tea garbage collector #73581
個々のオブジェクトではなく、大きな連続したブロック単位でメモリをスキャン
共有ワークキューは個々のオブジェクトではなくこれらの粗いブロックを追跡
Green Tea GCの基本概念
7