c9d003f807
1. feedback_vector_allocation -> feedback_allocation like elsewhere. 2. A consistent --interrupt-budget prefix. 3. Remove the on-by-default --feedback-allocation-on-bytecode-size. Bug: v8:7700 Change-Id: I1d0af11e89398973a65bf9cb7c7722740d9452ea Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3463718 Auto-Submit: Jakob Gruber <jgruber@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#79097}
21 lines
497 B
JavaScript
21 lines
497 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: --opt --interrupt-budget=100 --interrupt-budget-for-feedback-allocation=10 --allow-natives-syntax
|
|
|
|
function f() {
|
|
let s = 0;
|
|
for (let i = 0; i < 10; i++) {
|
|
s += i;
|
|
}
|
|
return s;
|
|
}
|
|
|
|
%PrepareFunctionForOptimization(f, "allow heuristic optimization");
|
|
f();
|
|
f();
|
|
f();
|
|
%FinalizeOptimization();
|
|
assertOptimized(f);
|