summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/WeakRef.cpp
blob: 868cea84576636b964a899ee8f0e8e7ef81ce2aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/*
 * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#include <LibJS/Runtime/WeakRef.h>

namespace JS {

WeakRef* WeakRef::create(GlobalObject& global_object, Object* object)
{
    return global_object.heap().allocate<WeakRef>(global_object, object, *global_object.weak_ref_prototype());
}

WeakRef::WeakRef(Object* object, Object& prototype)
    : Object(prototype)
    , WeakContainer(heap())
    , m_value(object)
    , m_last_execution_generation(vm().execution_generation())
{
}

WeakRef::~WeakRef()
{
}

void WeakRef::remove_swept_cells(Badge<Heap>, Vector<Cell*>& cells)
{
    VERIFY(m_value);
    for (auto* cell : cells) {
        if (m_value != cell)
            continue;
        m_value = nullptr;
        // This is an optimization, we deregister from the garbage collector early (even if we were not garbage collected ourself yet)
        // to reduce the garbage collection overhead, which we can do because a cleared weak ref cannot be reused.
        WeakContainer::deregister();
        break;
    }
}

void WeakRef::visit_edges(Visitor& visitor)
{
    Object::visit_edges(visitor);

    if (vm().execution_generation() == m_last_execution_generation)
        visitor.visit(m_value);
}

}