Commit d3b56b91 authored by Ulan Degenbaev's avatar Ulan Degenbaev Committed by Commit Bot

[heap] Add a flag for tracing duplicates in heap.

Passing --trace_duplicate_threshold_kb=XX will print stats about
duplicates on the heap in Heap::CollectAllAvailableGarbage function.

One way to trigger the tracing is to force GC in DevTools.

Change-Id: I535ae202c796c3dcf7262a0d0bfd2702f44ac27a
Reviewed-on: https://chromium-review.googlesource.com/888746Reviewed-by: 's avatarMichael Lippautz <mlippautz@chromium.org>
Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#50896}
parent 874eadd1
...@@ -1104,6 +1104,9 @@ DEFINE_BOOL(print_handles, false, "report handles after GC") ...@@ -1104,6 +1104,9 @@ DEFINE_BOOL(print_handles, false, "report handles after GC")
DEFINE_BOOL(check_handle_count, false, DEFINE_BOOL(check_handle_count, false,
"Check that there are not too many handles at GC") "Check that there are not too many handles at GC")
DEFINE_BOOL(print_global_handles, false, "report global handles after GC") DEFINE_BOOL(print_global_handles, false, "report global handles after GC")
DEFINE_INT(trace_duplicate_threshold_kb, 0,
"print duplicate objects in the heap if their size is more than "
"given threshold")
// TurboFan debug-only flags. // TurboFan debug-only flags.
DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis") DEFINE_BOOL(trace_turbo_escape, false, "enable tracing in escape analysis")
......
...@@ -1112,6 +1112,66 @@ void Heap::CollectAllGarbage(int flags, GarbageCollectionReason gc_reason, ...@@ -1112,6 +1112,66 @@ void Heap::CollectAllGarbage(int flags, GarbageCollectionReason gc_reason,
set_current_gc_flags(kNoGCFlags); set_current_gc_flags(kNoGCFlags);
} }
namespace {
intptr_t CompareWords(int size, HeapObject* a, HeapObject* b) {
int words = size / kPointerSize;
DCHECK_EQ(a->Size(), size);
DCHECK_EQ(b->Size(), size);
intptr_t* slot_a = reinterpret_cast<intptr_t*>(a->address());
intptr_t* slot_b = reinterpret_cast<intptr_t*>(b->address());
for (int i = 0; i < words; i++) {
if (*slot_a != *slot_b) {
return *slot_a - *slot_b;
}
slot_a++;
slot_b++;
}
return 0;
}
void ReportDuplicates(int size, std::vector<HeapObject*>& objects) {
if (objects.size() == 0) return;
sort(objects.begin(), objects.end(), [size](HeapObject* a, HeapObject* b) {
intptr_t c = CompareWords(size, a, b);
if (c != 0) return c < 0;
return a < b;
});
std::vector<std::pair<int, HeapObject*>> duplicates;
HeapObject* current = objects[0];
int count = 1;
for (size_t i = 1; i < objects.size(); i++) {
if (CompareWords(size, current, objects[i]) == 0) {
count++;
} else {
if (count > 1) {
duplicates.push_back(std::make_pair(count - 1, current));
}
count = 1;
current = objects[i];
}
}
if (count > 1) {
duplicates.push_back(std::make_pair(count - 1, current));
}
int threshold = FLAG_trace_duplicate_threshold_kb * KB;
sort(duplicates.begin(), duplicates.end());
for (auto it = duplicates.rbegin(); it != duplicates.rend(); ++it) {
int duplicate_bytes = it->first * size;
if (duplicate_bytes < threshold) break;
PrintF("%d duplicates of size %d each (%dKB)\n", it->first, size,
duplicate_bytes / KB);
PrintF("Sample object: ");
it->second->Print();
PrintF("============================\n");
}
}
} // anonymous namespace
void Heap::CollectAllAvailableGarbage(GarbageCollectionReason gc_reason) { void Heap::CollectAllAvailableGarbage(GarbageCollectionReason gc_reason) {
// Since we are ignoring the return value, the exact choice of space does // Since we are ignoring the return value, the exact choice of space does
// not matter, so long as we do not specify NEW_SPACE, which would not // not matter, so long as we do not specify NEW_SPACE, which would not
...@@ -1151,6 +1211,28 @@ void Heap::CollectAllAvailableGarbage(GarbageCollectionReason gc_reason) { ...@@ -1151,6 +1211,28 @@ void Heap::CollectAllAvailableGarbage(GarbageCollectionReason gc_reason) {
set_current_gc_flags(kNoGCFlags); set_current_gc_flags(kNoGCFlags);
new_space_->Shrink(); new_space_->Shrink();
UncommitFromSpace(); UncommitFromSpace();
if (FLAG_trace_duplicate_threshold_kb) {
std::map<int, std::vector<HeapObject*>> objects_by_size;
PagedSpaces spaces(this);
for (PagedSpace* space = spaces.next(); space != nullptr;
space = spaces.next()) {
HeapObjectIterator it(space);
for (HeapObject* obj = it.Next(); obj != nullptr; obj = it.Next()) {
objects_by_size[obj->Size()].push_back(obj);
}
}
{
LargeObjectIterator it(lo_space());
for (HeapObject* obj = it.Next(); obj != nullptr; obj = it.Next()) {
objects_by_size[obj->Size()].push_back(obj);
}
}
for (auto it = objects_by_size.rbegin(); it != objects_by_size.rend();
++it) {
ReportDuplicates(it->first, it->second);
}
}
} }
void Heap::ReportExternalMemoryPressure() { void Heap::ReportExternalMemoryPressure() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment