| Index: src/v8-counters.h
|
| diff --git a/src/v8-counters.h b/src/v8-counters.h
|
| index 476021cdbb90182e1f82d6c8253007e7eadd2f9a..55e1e5c8292f4962e4448475f3f8ea93410bfc9a 100644
|
| --- a/src/v8-counters.h
|
| +++ b/src/v8-counters.h
|
| @@ -101,6 +101,8 @@ namespace internal {
|
| V8.MemoryHeapSamplePropertyCellSpaceCommitted) \
|
| HM(heap_sample_code_space_committed, \
|
| V8.MemoryHeapSampleCodeSpaceCommitted) \
|
| + HM(heap_sample_maximum_committed, \
|
| + V8.MemoryHeapSampleMaximumCommitted) \
|
|
|
|
|
| // WARNING: STATS_COUNTER_LIST_* is a very large macro that is causing MSVC
|
| @@ -341,7 +343,7 @@ class Counters {
|
| { return &count_of_CODE_AGE_##name##_; } \
|
| StatsCounter* size_of_CODE_AGE_##name() \
|
| { return &size_of_CODE_AGE_##name##_; }
|
| - CODE_AGE_LIST_WITH_NO_AGE(SC)
|
| + CODE_AGE_LIST_COMPLETE(SC)
|
| #undef SC
|
|
|
| enum Id {
|
| @@ -371,7 +373,7 @@ class Counters {
|
| #undef COUNTER_ID
|
| #define COUNTER_ID(name) kCountOfCODE_AGE__##name, \
|
| kSizeOfCODE_AGE__##name,
|
| - CODE_AGE_LIST_WITH_NO_AGE(COUNTER_ID)
|
| + CODE_AGE_LIST_COMPLETE(COUNTER_ID)
|
| #undef COUNTER_ID
|
| stats_counter_count
|
| };
|
| @@ -421,7 +423,7 @@ class Counters {
|
| #define SC(name) \
|
| StatsCounter size_of_CODE_AGE_##name##_; \
|
| StatsCounter count_of_CODE_AGE_##name##_;
|
| - CODE_AGE_LIST_WITH_NO_AGE(SC)
|
| + CODE_AGE_LIST_COMPLETE(SC)
|
| #undef SC
|
|
|
| friend class Isolate;
|
|
|