![]() |
v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
|
#include <heap-statistics.h>
Public Attributes | |
std::vector< size_t > | bucket_size |
std::vector< size_t > | free_count |
std::vector< size_t > | free_size |
Statistics of the freelist (used only in non-large object spaces). For each bucket in the freelist the statistics record the bucket size, the number of freelist entries in the bucket, and the overall allocated memory consumed by these freelist entries.
Definition at line 69 of file heap-statistics.h.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::bucket_size |
bucket sizes in the freelist.
Definition at line 71 of file heap-statistics.h.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::free_count |
number of freelist entries per bucket.
Definition at line 73 of file heap-statistics.h.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::free_size |
memory size consumed by freelist entries per size.
Definition at line 75 of file heap-statistics.h.