| Index: src/heap.cc
|
| diff --git a/src/heap.cc b/src/heap.cc
|
| index fa358c53929127218fbd4fd719d5bec8d3bab3b0..1f6415cb63947ddbad2c70b86a5f230ea32c3384 100644
|
| --- a/src/heap.cc
|
| +++ b/src/heap.cc
|
| @@ -7944,17 +7944,18 @@ void Heap::CheckpointObjectStats() {
|
| static_cast<int>(object_sizes_last_time_[index]));
|
| FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(ADJUST_LAST_TIME_OBJECT_COUNT)
|
| #undef ADJUST_LAST_TIME_OBJECT_COUNT
|
| -#define ADJUST_LAST_TIME_OBJECT_COUNT(name) \
|
| - index = FIRST_CODE_AGE_SUB_TYPE + Code::k##name##CodeAge; \
|
| - counters->count_of_CODE_AGE_##name()->Increment( \
|
| - static_cast<int>(object_counts_[index])); \
|
| - counters->count_of_CODE_AGE_##name()->Decrement( \
|
| - static_cast<int>(object_counts_last_time_[index])); \
|
| - counters->size_of_CODE_AGE_##name()->Increment( \
|
| - static_cast<int>(object_sizes_[index])); \
|
| - counters->size_of_CODE_AGE_##name()->Decrement( \
|
| +#define ADJUST_LAST_TIME_OBJECT_COUNT(name) \
|
| + index = \
|
| + FIRST_CODE_AGE_SUB_TYPE + Code::k##name##CodeAge - Code::kFirstCodeAge; \
|
| + counters->count_of_CODE_AGE_##name()->Increment( \
|
| + static_cast<int>(object_counts_[index])); \
|
| + counters->count_of_CODE_AGE_##name()->Decrement( \
|
| + static_cast<int>(object_counts_last_time_[index])); \
|
| + counters->size_of_CODE_AGE_##name()->Increment( \
|
| + static_cast<int>(object_sizes_[index])); \
|
| + counters->size_of_CODE_AGE_##name()->Decrement( \
|
| static_cast<int>(object_sizes_last_time_[index]));
|
| - CODE_AGE_LIST_WITH_NO_AGE(ADJUST_LAST_TIME_OBJECT_COUNT)
|
| + CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT)
|
| #undef ADJUST_LAST_TIME_OBJECT_COUNT
|
|
|
| OS::MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_));
|
|
|