5d6a571f6e
This is a reland of 30c6bd45be
Original change's description:
> [weakrefs] Ship WeakRef and FinalizationRegistry.
>
> I2S: https://groups.google.com/a/chromium.org/g/blink-dev/c/L04PqDk9eMU
> Bug: v8:8179
> Change-Id: I52aaa62cdab981b802fa4a986d60421ef6efcfbb
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2158371
> Commit-Queue: Shu-yu Guo <syg@chromium.org>
> Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
> Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
> Cr-Commit-Position: refs/heads/master@{#67295}
Bug: v8:8179
Change-Id: If132d88b5a8dbe06ba7a8f80f19f33d9553ca62f
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2160017
Reviewed-by: Ross McIlroy <rmcilroy@chromium.org>
Reviewed-by: Ulan Degenbaev <ulan@chromium.org>
Commit-Queue: Shu-yu Guo <syg@chromium.org>
Cr-Commit-Position: refs/heads/master@{#67324}
148 lines
3.5 KiB
JavaScript
148 lines
3.5 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 --noalways-opt
|
|
|
|
// Known symbols abstract equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo() { return a == b; }
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertFalse(foo());
|
|
assertFalse(foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertFalse(foo());
|
|
})();
|
|
|
|
// Known symbols abstract in-equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo() { return a != b; }
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertTrue(foo());
|
|
assertTrue(foo());
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue(foo());
|
|
})();
|
|
|
|
// Known symbol on one side abstract equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo(a) { return a == b; }
|
|
|
|
// Warmup
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertTrue(foo(b));
|
|
assertFalse(foo(a));
|
|
assertTrue(foo(b));
|
|
assertFalse(foo(a));
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue(foo(b));
|
|
// Re-prepare the function immediately to make sure type feedback isn't
|
|
// cleared by untimely gc, as re-optimization on new feedback is tested below
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertFalse(foo(a));
|
|
assertOptimized(foo);
|
|
|
|
// Make optimized code bail out
|
|
assertFalse(foo("a"));
|
|
assertUnoptimized(foo);
|
|
|
|
// Make sure TurboFan learns the new feedback
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertFalse(foo("a"));
|
|
assertOptimized(foo);
|
|
})();
|
|
|
|
// Known symbol on one side abstract in-equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo(a) { return a != b; }
|
|
|
|
// Warmup
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertFalse(foo(b));
|
|
assertTrue(foo(a));
|
|
assertFalse(foo(b));
|
|
assertTrue(foo(a));
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertFalse(foo(b));
|
|
assertTrue(foo(a));
|
|
|
|
// Make optimized code bail out
|
|
assertTrue(foo("a"));
|
|
assertUnoptimized(foo);
|
|
|
|
// Make sure TurboFan learns the new feedback
|
|
%PrepareFunctionForOptimization(foo);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue(foo("a"));
|
|
assertOptimized(foo);
|
|
})();
|
|
|
|
// Feedback based symbol abstract equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo(a, b) { return a == b; }
|
|
|
|
// Warmup
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertTrue(foo(b, b));
|
|
assertFalse(foo(a, b));
|
|
assertTrue(foo(a, a));
|
|
assertFalse(foo(b, a));
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue(foo(a, a));
|
|
assertFalse(foo(b, a));
|
|
|
|
// Make optimized code bail out
|
|
assertFalse(foo("a", b));
|
|
assertUnoptimized(foo);
|
|
|
|
// Make sure TurboFan learns the new feedback
|
|
%PrepareFunctionForOptimization(foo);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertFalse(foo("a", b));
|
|
assertOptimized(foo);
|
|
})();
|
|
|
|
// Feedback based symbol abstract in-equality.
|
|
(function() {
|
|
const a = Symbol("a");
|
|
const b = Symbol("b");
|
|
|
|
function foo(a, b) { return a != b; }
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertFalse(foo(b, b));
|
|
assertTrue(foo(a, b));
|
|
assertFalse(foo(a, a));
|
|
assertTrue(foo(b, a));
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertFalse(foo(a, a));
|
|
assertTrue(foo(b, a));
|
|
|
|
// Make optimized code bail out
|
|
assertTrue(foo("a", b));
|
|
assertUnoptimized(foo);
|
|
|
|
// Make sure TurboFan learns the new feedback
|
|
%PrepareFunctionForOptimization(foo);
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertTrue(foo("a", b));
|
|
assertOptimized(foo);
|
|
})();
|