v8/test/mjsunit/measure-memory.js
Ulan Degenbaev 8024204828 [api] New v8::Isolate::MeasureMemory API with per-context sizes
This adds a new API function that can be customized by the embedder
by providing a delegate that defines contexts to be measured and
reports the results to JS.

A memory measurement request is carried out as follows:

1) MeasureMemory(delegate) invocation enqueues a new request in
   MemoryMeasurement::received_ and schedules a delayed GC task.

2) At the start of the next GC (that is triggered either by the
   GC schedule or by the delayed task) each request in received_
   moves to processing_. Per-context marking worklists are created
   for each native context that was selected by the delegates
   (using the ShouldMeasure predicate).

3) At the end of the GC the sizes of the native contexts are
   recorded for each request in processing_. The requests move
   to the done_ list and result reporting task is scheduled.

4) When the result reporting task runs it invokes the
   MeasurementComplete function of each delegate in done_.


Bug: chromium:973627

Change-Id: I0254cae693c5b8fab7c85a9eca0a3a128210b6c4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1981493
Commit-Queue: Ulan Degenbaev <ulan@chromium.org>
Reviewed-by: Hannes Payer <hpayer@chromium.org>
Reviewed-by: Toon Verwaest <verwaest@chromium.org>
Reviewed-by: Dominik Inführ <dinfuehr@chromium.org>
Cr-Commit-Position: refs/heads/master@{#65856}
2020-01-19 16:43:57 +00:00

60 lines
1.9 KiB
JavaScript

// Copyright 2019 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: --expose-gc
load('test/mjsunit/mjsunit.js');
function assertLessThanOrEqual(a, b) {
assertTrue(a <= b, `Expected ${a} <= ${b}`);
}
function checkMeasureMemoryResultField(field) {
assertTrue('jsMemoryEstimate' in field);
assertTrue('jsMemoryRange' in field);
assertEquals('number', typeof field.jsMemoryEstimate);
assertEquals(2, field.jsMemoryRange.length);
assertEquals('number', typeof field.jsMemoryRange[0]);
assertEquals('number', typeof field.jsMemoryRange[1]);
assertLessThanOrEqual(field.jsMemoryRange[0],
field.jsMemoryRange[1]);
assertLessThanOrEqual(field.jsMemoryRange[0],
field.jsMemoryEstimate);
assertLessThanOrEqual(field.jsMemoryEstimate,
field.jsMemoryRange[1]);
}
function checkMeasureMemoryResult(result, detailed) {
assertTrue('total' in result);
checkMeasureMemoryResultField(result.total);
if (detailed) {
assertTrue('current' in result);
checkMeasureMemoryResultField(result.current);
assertTrue('other' in result);
for (let other of result.other) {
checkMeasureMemoryResultField(other);
}
}
}
if (this.performance && performance.measureMemory) {
assertPromiseResult((async () => {
let result = await performance.measureMemory();
checkMeasureMemoryResult(result, false);
})());
assertPromiseResult((async () => {
let result = await performance.measureMemory({detailed: false});
checkMeasureMemoryResult(result, false);
})());
assertPromiseResult((async () => {
let result = await performance.measureMemory({detailed: true});
print(JSON.stringify(result));
checkMeasureMemoryResult(result, true);
})());
// Force a GC to complete memory measurement.
gc();
}