Firefox's JavaScript engine is significantly faster



We found that the

just-in-time compiler (JIT) included in Firefox is significantly faster than version 83, which is scheduled to be released in November. Version 83 is available as a Nightly version at the time of writing the article.

Dogfooding Warp
https://groups.google.com/g/mozilla.dev.platform/c/1PHhxBxSehQ

Firefox's JIT is getting significantly faster | Hacker News
https://news.ycombinator.com/item?id=24590174

JIT is a technology that improves the speed of code execution by compiling frequently executed code in advance. The web browser is equipped with JIT to execute JavaScript at high speed and realize comfortable web browsing.

The JIT compiler 'Ion Builder' that was installed in Firefox so far was complicated and had security concerns, and it was said that extra processing was included. It is reported that the newly developed JIT compiler 'Warp Builder' improves performance by about 5% to 10% by reducing internal type information, optimizing the cache, and simplifying the structure. ..

You can download the Nightly version of Firefox 83 from:

Firefox Nightly 83.0a1, See All New Features, Updates and Fixes
https://www.mozilla.org/en-US/firefox/83.0a1/releasenotes/

This time, I tried benchmarking with Speedometer in 'Nightly version of Firefox with Warp Builder off', 'Nightly version of Firefox with Warp Builder on', and 'Chrome'. First of all, the result of Firefox with Warp Builder turned off is as follows.



This is the result of turning on Warp Builder in the Nightly version of Firefox. Benchmark results are significantly better than when WarpBuilder is turned off.



Chrome results are somewhere between when Warp Builder is turned off and on in Firefox.



The official version of Firefox 83 for Warp Builder will be released on November 17, 2020.

in Software, Posted by darkhorse_log