Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: src/heap/heap.cc

Issue 1113233002: Adding api to get last gc object statistics for chrome://tracing. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Addressing ulan's comments. Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« include/v8.h ('K') | « src/heap/heap.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api.h" 8 #include "src/api.h"
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/base/once.h" 10 #include "src/base/once.h"
(...skipping 6421 matching lines...) Expand 10 before | Expand all | Expand 10 after
6432 static_cast<int>(object_sizes_[index])); \ 6432 static_cast<int>(object_sizes_[index])); \
6433 counters->size_of_CODE_AGE_##name()->Decrement( \ 6433 counters->size_of_CODE_AGE_##name()->Decrement( \
6434 static_cast<int>(object_sizes_last_time_[index])); 6434 static_cast<int>(object_sizes_last_time_[index]));
6435 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT) 6435 CODE_AGE_LIST_COMPLETE(ADJUST_LAST_TIME_OBJECT_COUNT)
6436 #undef ADJUST_LAST_TIME_OBJECT_COUNT 6436 #undef ADJUST_LAST_TIME_OBJECT_COUNT
6437 6437
6438 MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_)); 6438 MemCopy(object_counts_last_time_, object_counts_, sizeof(object_counts_));
6439 MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_)); 6439 MemCopy(object_sizes_last_time_, object_sizes_, sizeof(object_sizes_));
6440 ClearObjectStats(); 6440 ClearObjectStats();
6441 } 6441 }
6442
6443
6444 const char* Heap::GetObjectTypeName(size_t index) {
6445 if (index >= OBJECT_STATS_COUNT) return nullptr;
6446
6447 switch (static_cast<int>(index)) {
6448 #define COMPARE_AND_RETURN_NAME(name) \
6449 case name: \
6450 return #name;
6451 INSTANCE_TYPE_LIST(COMPARE_AND_RETURN_NAME)
6452 #undef COMPARE_AND_RETURN_NAME
6453 #define COMPARE_AND_RETURN_NAME(name) \
6454 case FIRST_CODE_KIND_SUB_TYPE + Code::name: \
6455 return "CODE_TYPE/CODE_KIND/" #name;
6456 CODE_KIND_LIST(COMPARE_AND_RETURN_NAME)
6457 #undef COMPARE_AND_RETURN_NAME
6458 #define COMPARE_AND_RETURN_NAME(name) \
6459 case FIRST_FIXED_ARRAY_SUB_TYPE + name: \
6460 return "FIXED_ARRAY_TYPE/" #name;
6461 FIXED_ARRAY_SUB_INSTANCE_TYPE_LIST(COMPARE_AND_RETURN_NAME)
6462 #undef COMPARE_AND_RETURN_NAME
6463 #define COMPARE_AND_RETURN_NAME(name) \
6464 case FIRST_CODE_AGE_SUB_TYPE + Code::k##name##CodeAge - Code::kFirstCodeAge: \
6465 return "CODE_TYPE/CODE_AGE/" #name;
6466 CODE_AGE_LIST_COMPLETE(COMPARE_AND_RETURN_NAME)
6467 #undef COMPARE_AND_RETURN_NAME
6468 }
6469 return nullptr;
6470 }
6442 } 6471 }
6443 } // namespace v8::internal 6472 } // namespace v8::internal
OLDNEW
« include/v8.h ('K') | « src/heap/heap.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698