| Index: src/heap.h
|
| ===================================================================
|
| --- src/heap.h (revision 3413)
|
| +++ src/heap.h (working copy)
|
| @@ -1152,24 +1152,26 @@
|
|
|
| class HeapStats {
|
| public:
|
| - int new_space_size;
|
| - int new_space_capacity;
|
| - int old_pointer_space_size;
|
| - int old_pointer_space_capacity;
|
| - int old_data_space_size;
|
| - int old_data_space_capacity;
|
| - int code_space_size;
|
| - int code_space_capacity;
|
| - int map_space_size;
|
| - int map_space_capacity;
|
| - int cell_space_size;
|
| - int cell_space_capacity;
|
| - int lo_space_size;
|
| - int global_handle_count;
|
| - int weak_global_handle_count;
|
| - int pending_global_handle_count;
|
| - int near_death_global_handle_count;
|
| - int destroyed_global_handle_count;
|
| + int *start_marker;
|
| + int *new_space_size;
|
| + int *new_space_capacity;
|
| + int *old_pointer_space_size;
|
| + int *old_pointer_space_capacity;
|
| + int *old_data_space_size;
|
| + int *old_data_space_capacity;
|
| + int *code_space_size;
|
| + int *code_space_capacity;
|
| + int *map_space_size;
|
| + int *map_space_capacity;
|
| + int *cell_space_size;
|
| + int *cell_space_capacity;
|
| + int *lo_space_size;
|
| + int *global_handle_count;
|
| + int *weak_global_handle_count;
|
| + int *pending_global_handle_count;
|
| + int *near_death_global_handle_count;
|
| + int *destroyed_global_handle_count;
|
| + int *end_marker;
|
| };
|
|
|
|
|
|
|