#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.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::bucket_size |
bucket sizes in the freelist.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::free_count |
number of freelist entries per bucket.
std::vector<size_t> cppgc::HeapStatistics::FreeListStatistics::free_size |
memory size consumed by freelist entries per size.