Chromium Code Reviews| Index: src/counters.h |
| diff --git a/src/counters.h b/src/counters.h |
| index 539b182915caf8423f39286cb83b2a15701a08c4..7c835021fc0b3a0a471d7bc11729e29bea3e3521 100644 |
| --- a/src/counters.h |
| +++ b/src/counters.h |
| @@ -396,44 +396,29 @@ class AggregatedHistogramTimerScope { |
| AHT(compile_lazy, V8.CompileLazyMicroSeconds) |
| -#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_code_space, \ |
| - V8.MemoryExternalFragmentationCodeSpace) \ |
| - HP(external_fragmentation_map_space, \ |
| - V8.MemoryExternalFragmentationMapSpace) \ |
| - HP(external_fragmentation_cell_space, \ |
| - V8.MemoryExternalFragmentationCellSpace) \ |
| - HP(external_fragmentation_property_cell_space, \ |
| - V8.MemoryExternalFragmentationPropertyCellSpace) \ |
| - 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_code_space, \ |
| - V8.MemoryHeapFractionCodeSpace) \ |
| - HP(heap_fraction_map_space, \ |
| - V8.MemoryHeapFractionMapSpace) \ |
| - HP(heap_fraction_cell_space, \ |
| - V8.MemoryHeapFractionCellSpace) \ |
| - HP(heap_fraction_property_cell_space, \ |
| - V8.MemoryHeapFractionPropertyCellSpace) \ |
| - HP(heap_fraction_lo_space, \ |
| - V8.MemoryHeapFractionLoSpace) \ |
| - /* Percentage of crankshafted codegen. */ \ |
| - HP(codegen_fraction_crankshaft, \ |
| - V8.CodegenFractionCrankshaft) \ |
| +#define HISTOGRAM_PERCENTAGE_LIST(HP) \ |
| + /* Heap fragmentation. */ \ |
| + HP(external_fragmentation_total, V8.MemoryExternalFragmentationTotal) \ |
|
ulan
2015/03/18 07:27:27
This will require change in chromium histograms.xm
|
| + HP(external_fragmentation_old_space, V8.MemoryExternalFragmentationOldSpace) \ |
| + HP(external_fragmentation_code_space, \ |
| + V8.MemoryExternalFragmentationCodeSpace) \ |
| + HP(external_fragmentation_map_space, V8.MemoryExternalFragmentationMapSpace) \ |
| + HP(external_fragmentation_cell_space, \ |
| + V8.MemoryExternalFragmentationCellSpace) \ |
| + HP(external_fragmentation_property_cell_space, \ |
| + V8.MemoryExternalFragmentationPropertyCellSpace) \ |
| + 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_code_space, V8.MemoryHeapFractionCodeSpace) \ |
| + HP(heap_fraction_map_space, V8.MemoryHeapFractionMapSpace) \ |
| + HP(heap_fraction_cell_space, V8.MemoryHeapFractionCellSpace) \ |
| + HP(heap_fraction_property_cell_space, \ |
| + V8.MemoryHeapFractionPropertyCellSpace) \ |
| + HP(heap_fraction_lo_space, V8.MemoryHeapFractionLoSpace) \ |
| + /* Percentage of crankshafted codegen. */ \ |
| + HP(codegen_fraction_crankshaft, V8.CodegenFractionCrankshaft) |
| #define HISTOGRAM_MEMORY_LIST(HM) \ |
| @@ -606,14 +591,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) \ |