Index: src/counters.h |
diff --git a/src/counters.h b/src/counters.h |
index e62c51a9a7b670b4d3b2aabccf7e4af01fd7ee02..e20a49fa3ff5cde490244bbc50d627cb78b40ba8 100644 |
--- a/src/counters.h |
+++ b/src/counters.h |
@@ -399,7 +399,10 @@ class AggregatedHistogramTimerScope { |
#define HISTOGRAM_PERCENTAGE_LIST(HP) \ |
/* Heap fragmentation. */ \ |
HP(external_fragmentation_total, V8.MemoryExternalFragmentationTotal) \ |
- HP(external_fragmentation_old_space, V8.MemoryExternalFragmentationOldSpace) \ |
+ HP(external_fragmentation_old_pointer_space, \ |
+ V8.MemoryExternalFragmentationOldPointerSpace) \ |
+ HP(external_fragmentation_old_data_space, \ |
+ V8.MemoryExternalFragmentationOldDataSpace) \ |
HP(external_fragmentation_code_space, \ |
V8.MemoryExternalFragmentationCodeSpace) \ |
HP(external_fragmentation_map_space, V8.MemoryExternalFragmentationMapSpace) \ |
@@ -408,7 +411,8 @@ class AggregatedHistogramTimerScope { |
HP(external_fragmentation_lo_space, V8.MemoryExternalFragmentationLoSpace) \ |
/* Percentages of heap committed to each space. */ \ |
HP(heap_fraction_new_space, V8.MemoryHeapFractionNewSpace) \ |
- HP(heap_fraction_old_space, V8.MemoryHeapFractionOldSpace) \ |
+ HP(heap_fraction_old_pointer_space, V8.MemoryHeapFractionOldPointerSpace) \ |
+ HP(heap_fraction_old_data_space, V8.MemoryHeapFractionOldDataSpace) \ |
HP(heap_fraction_code_space, V8.MemoryHeapFractionCodeSpace) \ |
HP(heap_fraction_map_space, V8.MemoryHeapFractionMapSpace) \ |
HP(heap_fraction_cell_space, V8.MemoryHeapFractionCellSpace) \ |
@@ -585,9 +589,14 @@ class AggregatedHistogramTimerScope { |
SC(new_space_bytes_available, V8.MemoryNewSpaceBytesAvailable) \ |
SC(new_space_bytes_committed, V8.MemoryNewSpaceBytesCommitted) \ |
SC(new_space_bytes_used, V8.MemoryNewSpaceBytesUsed) \ |
- SC(old_space_bytes_available, V8.MemoryOldSpaceBytesAvailable) \ |
- SC(old_space_bytes_committed, V8.MemoryOldSpaceBytesCommitted) \ |
- SC(old_space_bytes_used, V8.MemoryOldSpaceBytesUsed) \ |
+ SC(old_pointer_space_bytes_available, \ |
+ V8.MemoryOldPointerSpaceBytesAvailable) \ |
+ SC(old_pointer_space_bytes_committed, \ |
+ V8.MemoryOldPointerSpaceBytesCommitted) \ |
+ SC(old_pointer_space_bytes_used, V8.MemoryOldPointerSpaceBytesUsed) \ |
+ SC(old_data_space_bytes_available, V8.MemoryOldDataSpaceBytesAvailable) \ |
+ SC(old_data_space_bytes_committed, V8.MemoryOldDataSpaceBytesCommitted) \ |
+ SC(old_data_space_bytes_used, V8.MemoryOldDataSpaceBytesUsed) \ |
SC(code_space_bytes_available, V8.MemoryCodeSpaceBytesAvailable) \ |
SC(code_space_bytes_committed, V8.MemoryCodeSpaceBytesCommitted) \ |
SC(code_space_bytes_used, V8.MemoryCodeSpaceBytesUsed) \ |