PR-URL: https://github.com/nodejs/node/pull/58070 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
38 lines
1.0 KiB
JavaScript
38 lines
1.0 KiB
JavaScript
// Copyright 2024 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 --turbolev --turbofan
|
|
|
|
function g(b) {
|
|
if (b) {
|
|
throw_before_this_function_is_not_defined();
|
|
}
|
|
}
|
|
%NeverOptimizeFunction(g);
|
|
|
|
function foo(n, r, b) {
|
|
let v = n >>> r; // {v} here has Uint32 representation.
|
|
try {
|
|
g(b);
|
|
v = 45;
|
|
g(true);
|
|
} catch(e) {
|
|
// {v} here is a Phi with a Uint32 and an Int32 input.
|
|
return v + 3;
|
|
}
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
assertEquals(48, foo(23, 3, false));
|
|
assertEquals(5, foo(23, 3, true));
|
|
assertEquals(48, foo(-1478558121, 0, false));
|
|
assertEquals(2816409178, foo(-1478558121, 0, true));
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
assertEquals(48, foo(23, 3, false));
|
|
assertEquals(5, foo(23, 3, true));
|
|
// Making sure that negative numbers are turned into positive ones by `>>> 0`.
|
|
assertEquals(48, foo(-1478558121, 0, false));
|
|
assertEquals(2816409178, foo(-1478558121, 0, true));
|