Skip to content

Commit

Permalink
Occasionally optimize to Maglev instead of TF
Browse files Browse the repository at this point in the history
We now optimize to Maglev instead of TF in 10% when using
%OptimizeFunctionOnNextCall.
  • Loading branch information
carl-smith committed Jun 3, 2024
1 parent e366dcc commit 5df42b0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Sources/FuzzilliCli/Profiles/V8Profile.swift
Original file line number Diff line number Diff line change
Expand Up @@ -514,6 +514,9 @@ let v8Profile = Profile(
if probability(0.1) {
args.append("--stress-ic")
}
if probability(0.1) {
args.append("--optimize-on-next-call-optimizes-to-maglev")
}

//
// More exotic configuration changes.
Expand Down

0 comments on commit 5df42b0

Please sign in to comment.