-
-
Notifications
You must be signed in to change notification settings - Fork 37.5k
Expand file tree
/
Copy pathcppgc_helpers.cc
More file actions
26 lines (23 loc) · 774 Bytes
/
Copy pathcppgc_helpers.cc
File metadata and controls
26 lines (23 loc) · 774 Bytes
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
#include "cppgc_helpers.h" // NOLINT(build/include_inline)
#include "cppgc_helpers-inl.h"
namespace node {
void CppgcWrapperList::Cleanup() {
while (!IsEmpty()) {
CppgcWrapperListNode* node = PopFront();
CppgcMixin* wrapper = node->persistent.Get();
if (wrapper != nullptr) wrapper->Finalize();
node->realm = nullptr;
}
}
void CppgcWrapperList::MemoryInfo(MemoryTracker* tracker) const {
for (auto node : *this) {
CppgcMixin* ptr = node->persistent.Get();
if (ptr != nullptr) {
// TODO(addaleax): Add weak edges instead of no edges once
// https://github.com/v8/v8/commit/e37cadf1143a8c5bbe44c0408186b5a26cc23863
// is available for us
tracker->Track(ptr, MemoryTracker::kWeakEdge);
}
}
}
} // namespace node