V8 release v9.3

Published · Tagged with release

Every six weeks, we create a new branch of V8 as part of our release process. Each version is branched from V8’s main Git branch immediately before a Chrome Beta milestone. Today we’re pleased to announce our newest branch, V8 version 9.3, which is in beta until its release in coordination with Chrome 93 Stable in several weeks. V8 v9.3 is filled with all sorts of developer-facing goodies. This post provides a preview of some of the highlights in anticipation of the release.

JavaScript #

Sparkplug batch compilation #

We released our super-fast new mid-tier JIT compiler Sparkplug in v9.1. For security reasons V8 write-protects code memory that it generates, requiring it to flip permissions between writable (during compilation) and executable. This is currently implemented using mprotect calls. However, since Sparkplug generates code so quickly, the cost of calling mprotect for each individual compiled function became a major bottleneck in the compilation time. In V8 v9.3 we’re introducing batch compilation for Sparkplug: Instead of compiling each function individually, we compile multiple functions in a batch. This amortises the cost of flipping memory page permissions by doing it only once per batch.

Batch compilation reduces overall compilation time (Ignition + Sparkplug) by up to 44% without regressing JavaScript execution. If we only look at the cost of compiling Sparkplug code the impact is obviously larger, e.g. a reduction of 82% for the docs_scrolling benchmark (see below) on Win 10. Surprisingly enough, batch compilation improved compilation performance by even more than the cost of W^X, since batching similar operations together tends to be better for the CPU anyway. In the chart below you can see the impact of W^X on compile time (Ignition + Sparkplug), and how well batch compilation mitigated that overhead.

Benchmarks

Object.hasOwn #

Object.hasOwn is an easier-to-reach-for alias for Object.prototype.hasOwnProperty.call.

For example:

Object.hasOwn({ prop: 42 }, 'prop')
// → true

Slightly more (but not much more!) details are available in our feature explainer.

Error cause #

Starting in v9.3, the various built-in Error constructors are extended to accept an options bag with a cause property for the second parameter. If such an options bag is passed, the value of the cause property is installed as an own property on the Error instance. This provides a standardized way to chain errors.

For example:

const parentError = new Error('parent');
const error = new Error('parent', { cause: parentError });
console.log(error.cause === parentError);
// → true

As usual, please see our more in-depth feature explainer.

Untrusted code mitigations disabled on Android #

Three years ago we introduced a set of code generation mitigations to defend against Spectre attacks. We always realized that this was a temporary stop-gap that only provided partial protection against Spectre attacks. The only effective protection is to isolate websites via Site Isolation. Site Isolation has been enabled on Chrome on desktop devices for some time, however enabling full Site Isolation on Android has been more of a challenge due to resource constraints. However, as of Chrome 92, Site Isolation on Android has been enabled on many more sites that contain sensitive data.

Thus, we have decided to disable V8’s code generation mitigations for Spectre on Android. These mitigations are less effective than Site Isolation and impose a performance cost. Disabling them brings Android on par with desktop platforms, where they have been turned off since V8 v7.0. By disabling these mitigations we have seen some significant improvements in benchmark performance on Android.

Performance improvements

V8 API #

Please use git log branch-heads/9.2..branch-heads/9.3 include/v8.h to get a list of the API changes.

Developers with an active V8 checkout can use git checkout -b 9.3 -t branch-heads/9.3 to experiment with the new features in V8 v9.3. Alternatively you can subscribe to Chrome’s Beta channel and try the new features out yourself soon.