df251e4496
We should verify the consistency of the objects we produced after deserializing successfully. Bug: v8:11525 Change-Id: Ieec1aa7112ab6eda0c61a1a9ab78e86ad8352942 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3813061 Commit-Queue: 王澳 <wangao.james@bytedance.com> Reviewed-by: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#82272}
128 lines
3.9 KiB
JavaScript
128 lines
3.9 KiB
JavaScript
// Copyright 2022 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: --experimental-d8-web-snapshot-api --allow-natives-syntax --harmony-rab-gsab --verify-heap
|
|
|
|
'use strict';
|
|
|
|
d8.file.execute('test/mjsunit/web-snapshot/web-snapshot-helpers.js');
|
|
|
|
(function TestDataView() {
|
|
function createObjects() {
|
|
const buffer = new ArrayBuffer(10);
|
|
const array1 = new DataView(buffer, 0, 5);
|
|
const array2 = new DataView(buffer, 5, 5);
|
|
const array3 = new DataView(buffer, 2, 5);
|
|
for (let i = 0; i < 5; i++) {
|
|
array1.setUint8(i, i);
|
|
array2.setUint8(i, i);
|
|
}
|
|
globalThis.array1 = array1;
|
|
globalThis.array2 = array2;
|
|
globalThis.array3 = array3;
|
|
}
|
|
const {array1, array2, array3} = takeAndUseWebSnapshot(createObjects, [
|
|
'array1',
|
|
'array2',
|
|
'array3'
|
|
]);
|
|
assertEquals(array1.byteLength, 5);
|
|
assertEquals(array1.byteOffset, 0);
|
|
assertEquals(array2.byteLength, 5);
|
|
assertEquals(array2.byteOffset, 5);
|
|
assertEquals(array3.byteLength, 5);
|
|
assertEquals(array3.byteOffset, 2);
|
|
|
|
for (let i = 0; i < 5; i++) {
|
|
assertEquals(array1.getUint8(i), i);
|
|
assertEquals(array2.getUint8(i), i);
|
|
}
|
|
assertSame(array1.buffer, array2.buffer);
|
|
assertSame(array1.buffer, array3.buffer);
|
|
|
|
new DataView(array1.buffer).setUint8(2, 10);
|
|
assertTrue(array1.getUint8(2) === 10);
|
|
assertTrue(array3.getUint8(0) === 10);
|
|
})();
|
|
|
|
(function TestResizableDataView() {
|
|
function createObjects() {
|
|
let resizableArrayBuffer = new ArrayBuffer(1024, {
|
|
maxByteLength: 1024 * 2,
|
|
});
|
|
// 0 offset, auto length
|
|
let array1 = new DataView(resizableArrayBuffer);
|
|
globalThis.array1 = array1;
|
|
|
|
// Non-0 offset, auto length
|
|
let array2 = new DataView(resizableArrayBuffer, 256);
|
|
globalThis.array2 = array2;
|
|
|
|
// Non-0 offset, fixed length
|
|
let array3 = new DataView(resizableArrayBuffer, 128, 4);
|
|
globalThis.array3 = array3;
|
|
}
|
|
const {array1, array2, array3} = takeAndUseWebSnapshot(createObjects, [
|
|
'array1',
|
|
'array2',
|
|
'array3',
|
|
]);
|
|
assertTrue(array1.buffer.resizable);
|
|
assertEquals(array1.buffer.maxByteLength, 2048);
|
|
assertEquals(array1.byteLength, 1024);
|
|
assertEquals(array1.byteOffset, 0);
|
|
assertEquals(array2.byteLength, 768); // 1024 - 256
|
|
assertEquals(array2.byteOffset, 256);
|
|
assertEquals(array3.byteLength, 4);
|
|
assertEquals(array3.byteOffset, 128);
|
|
|
|
array1.buffer.resize(1024 * 2);
|
|
assertEquals(array1.byteLength, 2048);
|
|
assertEquals(array2.byteLength, 1792); // 2048 - 256
|
|
assertEquals(array3.byteLength, 4);
|
|
|
|
assertSame(array1.buffer, array2.buffer);
|
|
assertSame(array1.buffer, array3.buffer);
|
|
})();
|
|
|
|
(function TestGrowableDataView() {
|
|
function createObjects() {
|
|
let resizableArrayBuffer = new SharedArrayBuffer(1024, {
|
|
maxByteLength: 1024 * 2,
|
|
});
|
|
// 0 offset, auto length
|
|
let array1 = new DataView(resizableArrayBuffer);
|
|
globalThis.array1 = array1;
|
|
|
|
// Non-0 offset, auto length
|
|
let array2 = new DataView(resizableArrayBuffer, 256);
|
|
globalThis.array2 = array2;
|
|
|
|
// Non-0 offset, fixed length
|
|
let array3 = new DataView(resizableArrayBuffer, 128, 4);
|
|
globalThis.array3 = array3;
|
|
}
|
|
const {array1, array2, array3} = takeAndUseWebSnapshot(createObjects, [
|
|
'array1',
|
|
'array2',
|
|
'array3',
|
|
]);
|
|
assertTrue(array1.buffer.growable);
|
|
assertEquals(array1.buffer.maxByteLength, 2048);
|
|
assertEquals(array1.byteLength, 1024);
|
|
assertEquals(array1.byteOffset, 0);
|
|
assertEquals(array2.byteLength, 768); // 1024 - 256
|
|
assertEquals(array2.byteOffset, 256);
|
|
assertEquals(array3.byteLength, 4);
|
|
assertEquals(array3.byteOffset, 128);
|
|
|
|
array1.buffer.grow(1024 * 2);
|
|
assertEquals(array1.byteLength, 2048);
|
|
assertEquals(array2.byteLength, 1792); // 2048 - 256
|
|
assertEquals(array3.byteLength, 4);
|
|
|
|
assertSame(array1.buffer, array2.buffer);
|
|
assertSame(array1.buffer, array3.buffer);
|
|
})();
|