v8
V8 is Google’s open source high-performance JavaScript and WebAssembly engine, written in C++.
Loading...
Searching...
No Matches
cppgc::HeapStatistics Struct Referencefinal

#include <heap-statistics.h>

Collaboration diagram for cppgc::HeapStatistics:

Classes

struct  FreeListStatistics
 
struct  ObjectStatsEntry
 
struct  PageStatistics
 
struct  SpaceStatistics
 

Public Types

enum  DetailLevel : uint8_t { kBrief , kDetailed }
 

Public Attributes

size_t committed_size_bytes = 0
 
size_t resident_size_bytes = 0
 
size_t used_size_bytes = 0
 
size_t pooled_memory_size_bytes = 0
 
DetailLevel detail_level
 
std::vector< SpaceStatisticsspace_stats
 
std::vector< std::string > type_names
 

Detailed Description

HeapStatistics contains memory consumption and utilization statistics for a cppgc heap.

Definition at line 19 of file heap-statistics.h.

Member Enumeration Documentation

◆ DetailLevel

Specifies the detail level of the heap statistics. Brief statistics contain only the top-level allocated and used memory statistics for the entire heap. Detailed statistics also contain a break down per space and page, as well as freelist statistics and object type histograms. Note that used memory reported by brief statistics and detailed statistics might differ slightly.

Enumerator
kBrief 
kDetailed 

Definition at line 28 of file heap-statistics.h.

Member Data Documentation

◆ committed_size_bytes

size_t cppgc::HeapStatistics::committed_size_bytes = 0

Overall committed amount of memory for the heap.

Definition at line 100 of file heap-statistics.h.

◆ detail_level

DetailLevel cppgc::HeapStatistics::detail_level

Detail level of this HeapStatistics.

Definition at line 108 of file heap-statistics.h.

◆ pooled_memory_size_bytes

size_t cppgc::HeapStatistics::pooled_memory_size_bytes = 0

Memory retained in the page pool, not used directly by the heap.

Definition at line 106 of file heap-statistics.h.

◆ resident_size_bytes

size_t cppgc::HeapStatistics::resident_size_bytes = 0

Resident amount of memory held by the heap.

Definition at line 102 of file heap-statistics.h.

◆ space_stats

std::vector<SpaceStatistics> cppgc::HeapStatistics::space_stats

Statistics for each of the spaces in the heap. Filled only when detail_level is DetailLevel::kDetailed.

Definition at line 112 of file heap-statistics.h.

◆ type_names

std::vector<std::string> cppgc::HeapStatistics::type_names

Vector of cppgc::GarbageCollected type names.

Definition at line 117 of file heap-statistics.h.

◆ used_size_bytes

size_t cppgc::HeapStatistics::used_size_bytes = 0

Amount of memory actually used on the heap.

Definition at line 104 of file heap-statistics.h.


The documentation for this struct was generated from the following file: