2257f6b145
- Remove flag --block-concurrent-recompilation and its implementation, including %UnblockConcurrentCompilation. - Rewrite tests that used it in terms of the primitives introduced in my previous CL: https://chromium-review.googlesource.com/c/v8/v8/+/3071400/ - Remove "sync"/"no sync" arguments from %GetOptimizationStatus, assertOptimized, etc. These are now always "no sync": they don't do any magic. - Remove "if %IsConcurrentRecompilationSupported then quit" from some tests in favor of --concurrent-recompilation in their Flags line. Bug: v8:12041, v8:7790 Change-Id: I966aae4fec85e6f9e7aeed2ba2c12e9198a3991f Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3077149 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Reviewed-by: Jakob Gruber <jgruber@chromium.org> Commit-Queue: Georg Neis <neis@chromium.org> Cr-Commit-Position: refs/heads/master@{#76298}
39 lines
943 B
JavaScript
39 lines
943 B
JavaScript
// Copyright 2019 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 --runtime-calls-stats --expose-gc
|
|
|
|
// Try to exercise the runtime stats code for optimization and GC.
|
|
|
|
// Optimize some functions both in the foreground and in the background.
|
|
function test(x) {
|
|
return 1 + Math.sin(x);
|
|
}
|
|
|
|
function testConcurrent(x) {
|
|
return 1 + Math.cos(x);
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(test);
|
|
test(0.5);
|
|
test(0.6);
|
|
%OptimizeFunctionOnNextCall(test);
|
|
for (var i = 0; i < 100; ++i) {
|
|
test(0.7);
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(testConcurrent);
|
|
testConcurrent(0.5);
|
|
testConcurrent(0.6);
|
|
%DisableOptimizationFinalization();
|
|
%OptimizeFunctionOnNextCall(testConcurrent, 'concurrent');
|
|
for (var i = 0; i < 100; ++i) {
|
|
testConcurrent(0.7);
|
|
}
|
|
|
|
%FinalizeOptimization();
|
|
%GetOptimizationStatus(testConcurrent);
|
|
|
|
gc();
|