9f902b7483
... to reduce compilation overhead on the main thread for OSR Bug: v8:12161 Change-Id: I54ca5fa6201405daf92dac9cf51d5de4b46577b3 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3369361 Reviewed-by: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Fanchen Kong <fanchen.kong@intel.com> Cr-Commit-Position: refs/heads/main@{#79188}
63 lines
1.3 KiB
JavaScript
63 lines
1.3 KiB
JavaScript
// Copyright 2015 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 --use-osr
|
|
|
|
"use strict";
|
|
|
|
function test(expected, func) {
|
|
assertEquals(expected, func());
|
|
assertEquals(expected, func());
|
|
assertEquals(expected, func());
|
|
}
|
|
|
|
function foo() {
|
|
var result = 0;
|
|
{
|
|
let x = 0;
|
|
var temp_x = x;
|
|
var first = 1;
|
|
outer: while (true) {
|
|
let x = temp_x;
|
|
if (first == 1) first = 0;
|
|
else x = x + 1 | 0;
|
|
var flag = 1;
|
|
for (; flag == 1; (flag = 0, temp_x = x)) {
|
|
if (x < 2) {
|
|
result = x; %OptimizeOsr(0, "concurrent");
|
|
%PrepareFunctionForOptimization(foo);
|
|
} else {
|
|
break outer;
|
|
}
|
|
}
|
|
if (flag == 1) break;
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
%PrepareFunctionForOptimization(foo);
|
|
|
|
test(1, foo);
|
|
|
|
|
|
function smo() {
|
|
var result = 0;
|
|
{
|
|
let x = 11;
|
|
outer: while (true) {
|
|
let y = x;
|
|
for (var i = 0; i < 5; i++) {
|
|
%OptimizeOsr(0, "concurrent");
|
|
%PrepareFunctionForOptimization(smo);
|
|
if (i) break outer;
|
|
else result = y;
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
%PrepareFunctionForOptimization(smo);
|
|
|
|
test(11, smo);
|