e7f0f26f5e
This test observes GC behavior and needs the garbage collector to work in a somewhat predictable way. Bug: v8:13286 Change-Id: I24e6a4f33a644b5f1845cd34558da03fc196f7e5 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3898721 Commit-Queue: Seth Brenith <seth.brenith@microsoft.com> Reviewed-by: Simon Zünd <szuend@chromium.org> Cr-Commit-Position: refs/heads/main@{#83218}
63 lines
2.3 KiB
JavaScript
63 lines
2.3 KiB
JavaScript
// Copyright 2017 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
// Flags: --sampling-heap-profiler-suppress-randomness
|
|
// Flags: --no-stress-incremental-marking
|
|
|
|
(async function() {
|
|
let {contextGroup, Protocol} = InspectorTest.start('Checks sampling heap profiler methods.');
|
|
|
|
contextGroup.addScript(`
|
|
function generateTrash() {
|
|
var arr = new Array(100);
|
|
for (var i = 0; i < 3000; ++i) {
|
|
var s = {a:i, b: new Array(100).fill(42)};
|
|
arr[i % 100] = s;
|
|
}
|
|
return arr[30];
|
|
}
|
|
//# sourceURL=test.js`);
|
|
|
|
Protocol.HeapProfiler.enable();
|
|
|
|
await Protocol.HeapProfiler.startSampling({
|
|
samplingInterval: 1e4,
|
|
includeObjectsCollectedByMajorGC: false,
|
|
includeObjectsCollectedByMinorGC: false,
|
|
});
|
|
await Protocol.Runtime.evaluate({ expression: 'generateTrash()' });
|
|
const profile1 = await Protocol.HeapProfiler.stopSampling();
|
|
const size1 = nodeSize(profile1.result.profile.head);
|
|
InspectorTest.log('Retained size is less than 10KB:', size1 < 10000);
|
|
|
|
await Protocol.HeapProfiler.startSampling({
|
|
samplingInterval: 100,
|
|
includeObjectsCollectedByMajorGC: true,
|
|
includeObjectsCollectedByMinorGC: false,
|
|
});
|
|
await Protocol.Runtime.evaluate({ expression: 'generateTrash()' });
|
|
const profile2 = await Protocol.HeapProfiler.stopSampling();
|
|
const size2 = nodeSize(profile2.result.profile.head);
|
|
InspectorTest.log('Including major GC increases size:', size1 < size2);
|
|
|
|
await Protocol.HeapProfiler.startSampling({
|
|
samplingInterval: 100,
|
|
includeObjectsCollectedByMajorGC: true,
|
|
includeObjectsCollectedByMinorGC: true,
|
|
});
|
|
await Protocol.Runtime.evaluate({ expression: 'generateTrash()' });
|
|
const profile3 = await Protocol.HeapProfiler.stopSampling();
|
|
const size3 = nodeSize(profile3.result.profile.head);
|
|
InspectorTest.log('Minor GC collected more:', size3 > size2);
|
|
InspectorTest.log('Total allocation is greater than 100KB:', size3 > 100000);
|
|
|
|
InspectorTest.log('Successfully finished');
|
|
InspectorTest.completeTest();
|
|
|
|
function nodeSize(node) {
|
|
return node.children.reduce((res, child) => res + nodeSize(child),
|
|
node.callFrame.functionName === 'generateTrash' ? node.selfSize : 0);
|
|
}
|
|
})();
|