| Index: src/counters.h
|
| diff --git a/src/counters.h b/src/counters.h
|
| index af8e8b4553a77b989cf3f0936c72fd197a763ecf..2962442a7857d1fe602ca9074cec701cf77df632 100644
|
| --- a/src/counters.h
|
| +++ b/src/counters.h
|
| @@ -399,10 +399,7 @@ class AggregatedHistogramTimerScope {
|
| #define HISTOGRAM_PERCENTAGE_LIST(HP) \
|
| /* Heap fragmentation. */ \
|
| HP(external_fragmentation_total, V8.MemoryExternalFragmentationTotal) \
|
| - HP(external_fragmentation_old_pointer_space, \
|
| - V8.MemoryExternalFragmentationOldPointerSpace) \
|
| - HP(external_fragmentation_old_data_space, \
|
| - V8.MemoryExternalFragmentationOldDataSpace) \
|
| + HP(external_fragmentation_old_space, V8.MemoryExternalFragmentationOldSpace) \
|
| HP(external_fragmentation_code_space, \
|
| V8.MemoryExternalFragmentationCodeSpace) \
|
| HP(external_fragmentation_map_space, V8.MemoryExternalFragmentationMapSpace) \
|
| @@ -411,8 +408,7 @@ 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_pointer_space, V8.MemoryHeapFractionOldPointerSpace) \
|
| - HP(heap_fraction_old_data_space, V8.MemoryHeapFractionOldDataSpace) \
|
| + HP(heap_fraction_old_space, V8.MemoryHeapFractionOldSpace) \
|
| HP(heap_fraction_code_space, V8.MemoryHeapFractionCodeSpace) \
|
| HP(heap_fraction_map_space, V8.MemoryHeapFractionMapSpace) \
|
| HP(heap_fraction_cell_space, V8.MemoryHeapFractionCellSpace) \
|
| @@ -590,14 +586,9 @@ 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_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(old_space_bytes_available, V8.MemoryOldSpaceBytesAvailable) \
|
| + SC(old_space_bytes_committed, V8.MemoryOldSpaceBytesCommitted) \
|
| + SC(old_space_bytes_used, V8.MemoryOldSpaceBytesUsed) \
|
| SC(code_space_bytes_available, V8.MemoryCodeSpaceBytesAvailable) \
|
| SC(code_space_bytes_committed, V8.MemoryCodeSpaceBytesCommitted) \
|
| SC(code_space_bytes_used, V8.MemoryCodeSpaceBytesUsed) \
|
|
|