mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 05:28:11 +00:00
LibJS: Rename collect_roots() => gather_roots()
Since this is about finding the things we should *not* garabge collect, it seemed wrong to call it "collect_something" :^)
This commit is contained in:
parent
8dc6416bba
commit
f1f14945cf
4 changed files with 6 additions and 6 deletions
|
@ -62,14 +62,14 @@ Cell* Heap::allocate_cell(size_t size)
|
|||
void Heap::collect_garbage()
|
||||
{
|
||||
HashTable<Cell*> roots;
|
||||
collect_roots(roots);
|
||||
gather_roots(roots);
|
||||
mark_live_cells(roots);
|
||||
sweep_dead_cells();
|
||||
}
|
||||
|
||||
void Heap::collect_roots(HashTable<Cell*>& roots)
|
||||
void Heap::gather_roots(HashTable<Cell*>& roots)
|
||||
{
|
||||
m_interpreter.collect_roots({}, roots);
|
||||
m_interpreter.gather_roots({}, roots);
|
||||
|
||||
#ifdef HEAP_DEBUG
|
||||
dbg() << "collect_roots:";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue