9c5053bf4d
- Add Map, WeakMap, Set, and WeakSet initial prototype maps to native context. - Set and WeakSet constructors check whether prototype map differs from initial before choosing the fast path. Bug: chromium:798026 Change-Id: I5f9cc2463f89e17f06a66b565c625fce133d01fb Reviewed-on: https://chromium-review.googlesource.com/853698 Commit-Queue: Peter Wong <peter.wm.wong@gmail.com> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/master@{#50691}
49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
// Copyright 2018 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: --allow-natives-syntax --opt
|
|
|
|
function TestMapConstructorEntrySideEffect(ctor) {
|
|
const k1 = {};
|
|
const k2 = {};
|
|
const k3 = {};
|
|
let callCount = 0;
|
|
const input = [
|
|
Object.defineProperty([, 1], "0", {
|
|
get() {
|
|
input.length = 2;
|
|
return k1;
|
|
}
|
|
}),
|
|
[k2, 2],
|
|
Object.defineProperty([, 3], "0", {
|
|
get() {
|
|
callCount++;
|
|
return k3;
|
|
}
|
|
})
|
|
];
|
|
const col = new ctor(input);
|
|
|
|
assertEquals(0, callCount);
|
|
if ('size' in col) assertEquals(2, col.size);
|
|
assertEquals(col.get(k1), 1);
|
|
assertEquals(col.get(k2), 2);
|
|
assertFalse(col.has(k3));
|
|
}
|
|
|
|
TestMapConstructorEntrySideEffect(Map);
|
|
TestMapConstructorEntrySideEffect(Map);
|
|
TestMapConstructorEntrySideEffect(Map);
|
|
%OptimizeFunctionOnNextCall(TestMapConstructorEntrySideEffect);
|
|
TestMapConstructorEntrySideEffect(Map);
|
|
assertOptimized(TestMapConstructorEntrySideEffect);
|
|
|
|
TestMapConstructorEntrySideEffect(WeakMap);
|
|
TestMapConstructorEntrySideEffect(WeakMap);
|
|
TestMapConstructorEntrySideEffect(WeakMap);
|
|
%OptimizeFunctionOnNextCall(TestMapConstructorEntrySideEffect);
|
|
TestMapConstructorEntrySideEffect(WeakMap);
|
|
assertOptimized(TestMapConstructorEntrySideEffect);
|