summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp20
1 files changed, 9 insertions, 11 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp b/Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp
index 0a57afea56..25c6486033 100644
--- a/Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp
+++ b/Userland/Libraries/LibJS/Runtime/FinalizationRegistry.cpp
@@ -42,19 +42,17 @@ bool FinalizationRegistry::remove_by_token(Object& unregister_token)
return removed;
}
-void FinalizationRegistry::remove_swept_cells(Badge<Heap>, Span<Cell*> cells)
+void FinalizationRegistry::remove_dead_cells(Badge<Heap>)
{
- auto any_cells_were_swept = false;
- for (auto* cell : cells) {
- for (auto& record : m_records) {
- if (record.target != cell)
- continue;
- record.target = nullptr;
- any_cells_were_swept = true;
- break;
- }
+ auto any_cells_were_removed = false;
+ for (auto& record : m_records) {
+ if (!record.target || record.target->state() == Cell::State::Live)
+ continue;
+ record.target = nullptr;
+ any_cells_were_removed = true;
+ break;
}
- if (any_cells_were_swept)
+ if (any_cells_were_removed)
vm().enqueue_finalization_registry_cleanup_job(*this);
}