forked from LeenkxTeam/Kmake
36 lines
1.0 KiB
JavaScript
36 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
|
|
|
|
let glob_nan = NaN;
|
|
|
|
function* foo(n) {
|
|
let v = n ? 3 : 7;
|
|
|
|
// Running the function only once doesn't collect enough feedback for the next
|
|
// line, which will thus lead to an uncondition deopt there.
|
|
class C { [undefined] }
|
|
|
|
// The following loop will still be emitted, despite the unconditional deopt
|
|
// above, because there is a yield inside (that is, it looks like the body is
|
|
// reachable despite the deopt above; it's not, but Maglev doesn't realize
|
|
// it).
|
|
for (let i = (() => 1)(); glob_nan;) {
|
|
yield 42;
|
|
}
|
|
|
|
yield v + 18;
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(foo);
|
|
let gen = foo(3);
|
|
assertEquals(21, gen.next().value);
|
|
assertEquals(undefined, gen.next().value);
|
|
|
|
%OptimizeFunctionOnNextCall(foo);
|
|
gen = foo(3);
|
|
assertEquals(21, gen.next().value);
|
|
assertEquals(undefined, gen.next().value);
|