void BlockDirectory::sweep() { m_unswept.forEachSetBit( [&] (size_t index) { MarkedBlock::Handle* block = m_blocks[index]; block->sweep(nullptr); }); }
void MarkedAllocator::sweep() { m_unswept.forEachSetBit( [&] (size_t index) { MarkedBlock::Handle* block = m_blocks[index]; block->sweep(); }); }